pm_common.h 1.42 KB
Newer Older
1
2
3
/*
 * Copyright (c) 2013-2015, ARM Limited and Contributors. All rights reserved.
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
9
10
11
 */

/*
 * Contains definitions of commonly used macros and data types needed
 * for PU Power Management. This file should be common for all PU's.
 */

12
13
#ifndef PM_COMMON_H
#define PM_COMMON_H
14
15

#include <stdint.h>
16
17
18

#include <common/debug.h>

19
20
21
22
23
#include "pm_defs.h"

#define PAYLOAD_ARG_CNT		6U
#define PAYLOAD_ARG_SIZE	4U	/* size in bytes */

24
25
26
27
28
#define ZYNQMP_TZ_VERSION_MAJOR		1
#define ZYNQMP_TZ_VERSION_MINOR		0
#define ZYNQMP_TZ_VERSION		((ZYNQMP_TZ_VERSION_MAJOR << 16) | \
					ZYNQMP_TZ_VERSION_MINOR)

29
30
/**
 * pm_ipi - struct for capturing IPI-channel specific info
31
32
 * @local_ipi_id	Local IPI agent ID
 * @remote_ipi_id	Remote IPI Agent ID
33
34
35
 * @buffer_base	base address for payload buffer
 */
struct pm_ipi {
36
37
	const uint32_t local_ipi_id;
	const uint32_t remote_ipi_id;
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
	const uintptr_t buffer_base;
};

/**
 * pm_proc - struct for capturing processor related info
 * @node_id	node-ID of the processor
 * @pwrdn_mask	cpu-specific mask to be used for power control register
 * @ipi		pointer to IPI channel structure
 *		(in APU all processors share one IPI channel)
 */
struct pm_proc {
	const enum pm_node_id node_id;
	const unsigned int pwrdn_mask;
	const struct pm_ipi *ipi;
};

const struct pm_proc *pm_get_proc(unsigned int cpuid);
const struct pm_proc *pm_get_proc_by_node(enum pm_node_id nid);

57
#endif /* PM_COMMON_H */