Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 1 | /* |
Jolly Shah | 259afe5 | 2019-01-09 12:37:57 -0800 | [diff] [blame] | 2 | * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved. |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Contains definitions of commonly used macros and data types needed |
| 9 | * for PU Power Management. This file should be common for all PU's. |
| 10 | */ |
| 11 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 12 | #ifndef PM_COMMON_H |
| 13 | #define PM_COMMON_H |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 14 | |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 15 | #include <stdint.h> |
Jolly Shah | 259afe5 | 2019-01-09 12:37:57 -0800 | [diff] [blame] | 16 | #include <plat_pm_common.h> |
Rajan Vaja | c7ee23d | 2018-02-14 23:10:54 -0800 | [diff] [blame] | 17 | |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 18 | /** |
| 19 | * pm_ipi - struct for capturing IPI-channel specific info |
Jolly Shah | 36c930b | 2019-01-07 12:51:40 -0800 | [diff] [blame] | 20 | * @local_ipi_id Local IPI agent ID |
| 21 | * @remote_ipi_id Remote IPI Agent ID |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 22 | * @buffer_base base address for payload buffer |
| 23 | */ |
| 24 | struct pm_ipi { |
Jolly Shah | 36c930b | 2019-01-07 12:51:40 -0800 | [diff] [blame] | 25 | const uint32_t local_ipi_id; |
| 26 | const uint32_t remote_ipi_id; |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 27 | const uintptr_t buffer_base; |
| 28 | }; |
| 29 | |
| 30 | /** |
| 31 | * pm_proc - struct for capturing processor related info |
| 32 | * @node_id node-ID of the processor |
| 33 | * @pwrdn_mask cpu-specific mask to be used for power control register |
| 34 | * @ipi pointer to IPI channel structure |
| 35 | * (in APU all processors share one IPI channel) |
| 36 | */ |
| 37 | struct pm_proc { |
Jolly Shah | 259afe5 | 2019-01-09 12:37:57 -0800 | [diff] [blame] | 38 | const uint32_t node_id; |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 39 | const unsigned int pwrdn_mask; |
| 40 | const struct pm_ipi *ipi; |
| 41 | }; |
| 42 | |
| 43 | const struct pm_proc *pm_get_proc(unsigned int cpuid); |
Soren Brinkmann | 76fcae3 | 2016-03-06 20:16:27 -0800 | [diff] [blame] | 44 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 45 | #endif /* PM_COMMON_H */ |