blob: 163e8916f2fa30019a56c137a61de48856f25653 [file] [log] [blame]
Soren Brinkmann76fcae32016-03-06 20:16:27 -08001/*
Jolly Shah16fe5ab2019-01-08 11:16:16 -08002 * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
Soren Brinkmann76fcae32016-03-06 20:16:27 -08003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soren Brinkmann76fcae32016-03-06 20:16:27 -08005 */
6
7/*
8 * APU specific definition of processors in the subsystem as well as functions
9 * for getting information about and changing state of the APU.
10 */
11
Filip Drazic4c0765a2016-07-26 12:11:33 +020012#include <assert.h>
Filip Drazic4c0765a2016-07-26 12:11:33 +020013#include <string.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000014
15#include <common/bl_common.h>
16#include <drivers/arm/gic_common.h>
17#include <drivers/arm/gicv2.h>
18#include <lib/bakery_lock.h>
19#include <lib/mmio.h>
20#include <lib/utils.h>
21
Jolly Shah259afe52019-01-09 12:37:57 -080022#include <plat_ipi.h>
Jolly Shah16fe5ab2019-01-08 11:16:16 -080023#include <zynqmp_def.h>
Soren Brinkmann76fcae32016-03-06 20:16:27 -080024#include "pm_api_sys.h"
25#include "pm_client.h"
26#include "pm_ipi.h"
Soren Brinkmann76fcae32016-03-06 20:16:27 -080027
Filip Drazic4c0765a2016-07-26 12:11:33 +020028#define IRQ_MAX 84
29#define NUM_GICD_ISENABLER ((IRQ_MAX >> 5) + 1)
Soren Brinkmann76fcae32016-03-06 20:16:27 -080030#define UNDEFINED_CPUID (~0)
Filip Drazic0bd9d0c2016-07-20 17:17:39 +020031
Siva Durga Prasad Paladugu43b23a32018-04-27 16:26:47 +053032#define PM_SUSPEND_MODE_STD 0
33#define PM_SUSPEND_MODE_POWER_OFF 1
34
Stefan Krsmanovic2b783662016-05-20 15:51:09 +020035DEFINE_BAKERY_LOCK(pm_client_secure_lock);
Soren Brinkmann76fcae32016-03-06 20:16:27 -080036
Soren Brinkmann76fcae32016-03-06 20:16:27 -080037extern const struct pm_ipi apu_ipi;
38
Jolly Shah259afe52019-01-09 12:37:57 -080039const struct pm_ipi apu_ipi = {
40 .local_ipi_id = IPI_ID_APU,
41 .remote_ipi_id = IPI_ID_PMU0,
42 .buffer_base = IPI_BUFFER_APU_BASE,
43};
44
Siva Durga Prasad Paladugu43b23a32018-04-27 16:26:47 +053045static uint32_t suspend_mode = PM_SUSPEND_MODE_STD;
46
Soren Brinkmann76fcae32016-03-06 20:16:27 -080047/* Order in pm_procs_all array must match cpu ids */
Soren Brinkmann4ae19c42017-07-01 20:24:47 -070048static const struct pm_proc pm_procs_all[] = {
Soren Brinkmann76fcae32016-03-06 20:16:27 -080049 {
50 .node_id = NODE_APU_0,
51 .pwrdn_mask = APU_0_PWRCTL_CPUPWRDWNREQ_MASK,
52 .ipi = &apu_ipi,
53 },
54 {
55 .node_id = NODE_APU_1,
56 .pwrdn_mask = APU_1_PWRCTL_CPUPWRDWNREQ_MASK,
57 .ipi = &apu_ipi,
58 },
59 {
60 .node_id = NODE_APU_2,
61 .pwrdn_mask = APU_2_PWRCTL_CPUPWRDWNREQ_MASK,
62 .ipi = &apu_ipi,
63 },
64 {
65 .node_id = NODE_APU_3,
66 .pwrdn_mask = APU_3_PWRCTL_CPUPWRDWNREQ_MASK,
67 .ipi = &apu_ipi,
68 },
69};
70
Filip Drazic4c0765a2016-07-26 12:11:33 +020071/* Interrupt to PM node ID map */
72static enum pm_node_id irq_node_map[IRQ_MAX + 1] = {
73 NODE_UNKNOWN,
74 NODE_UNKNOWN,
75 NODE_UNKNOWN,
76 NODE_UNKNOWN, /* 3 */
77 NODE_UNKNOWN,
78 NODE_UNKNOWN,
79 NODE_UNKNOWN,
80 NODE_UNKNOWN, /* 7 */
81 NODE_UNKNOWN,
82 NODE_UNKNOWN,
83 NODE_UNKNOWN,
84 NODE_UNKNOWN, /* 11 */
85 NODE_UNKNOWN,
86 NODE_UNKNOWN,
87 NODE_NAND,
88 NODE_QSPI, /* 15 */
89 NODE_GPIO,
90 NODE_I2C_0,
91 NODE_I2C_1,
92 NODE_SPI_0, /* 19 */
93 NODE_SPI_1,
94 NODE_UART_0,
95 NODE_UART_1,
96 NODE_CAN_0, /* 23 */
97 NODE_CAN_1,
98 NODE_UNKNOWN,
99 NODE_RTC,
100 NODE_RTC, /* 27 */
101 NODE_UNKNOWN,
102 NODE_UNKNOWN,
103 NODE_UNKNOWN,
104 NODE_UNKNOWN, /* 31 */
105 NODE_UNKNOWN,
106 NODE_UNKNOWN,
107 NODE_UNKNOWN,
108 NODE_UNKNOWN, /* 35, NODE_IPI_APU */
109 NODE_TTC_0,
110 NODE_TTC_0,
111 NODE_TTC_0,
112 NODE_TTC_1, /* 39 */
113 NODE_TTC_1,
114 NODE_TTC_1,
115 NODE_TTC_2,
116 NODE_TTC_2, /* 43 */
117 NODE_TTC_2,
118 NODE_TTC_3,
119 NODE_TTC_3,
120 NODE_TTC_3, /* 47 */
121 NODE_SD_0,
122 NODE_SD_1,
123 NODE_SD_0,
124 NODE_SD_1, /* 51 */
125 NODE_UNKNOWN,
126 NODE_UNKNOWN,
127 NODE_UNKNOWN,
128 NODE_UNKNOWN, /* 55 */
129 NODE_UNKNOWN,
130 NODE_ETH_0,
131 NODE_ETH_0,
132 NODE_ETH_1, /* 59 */
133 NODE_ETH_1,
134 NODE_ETH_2,
135 NODE_ETH_2,
136 NODE_ETH_3, /* 63 */
137 NODE_ETH_3,
138 NODE_USB_0,
139 NODE_USB_0,
140 NODE_USB_0, /* 67 */
141 NODE_USB_0,
142 NODE_USB_0,
143 NODE_USB_1,
144 NODE_USB_1, /* 71 */
145 NODE_USB_1,
146 NODE_USB_1,
147 NODE_USB_1,
148 NODE_USB_0, /* 75 */
149 NODE_USB_0,
150 NODE_ADMA,
151 NODE_ADMA,
152 NODE_ADMA, /* 79 */
153 NODE_ADMA,
154 NODE_ADMA,
155 NODE_ADMA,
156 NODE_ADMA, /* 83 */
157 NODE_ADMA,
158};
159
160/**
161 * irq_to_pm_node - Get PM node ID corresponding to the interrupt number
162 * @irq: Interrupt number
163 *
164 * Return: PM node ID corresponding to the specified interrupt
165 */
166static enum pm_node_id irq_to_pm_node(unsigned int irq)
167{
168 assert(irq <= IRQ_MAX);
169 return irq_node_map[irq];
170}
171
172/**
173 * pm_client_set_wakeup_sources - Set all slaves with enabled interrupts as wake
174 * sources in the PMU firmware
175 */
176static void pm_client_set_wakeup_sources(void)
177{
178 uint32_t reg_num;
179 uint8_t pm_wakeup_nodes_set[NODE_MAX];
180 uintptr_t isenabler1 = BASE_GICD_BASE + GICD_ISENABLER + 4;
181
Siva Durga Prasad Paladugu43b23a32018-04-27 16:26:47 +0530182 /* In case of power-off suspend, only NODE_EXTERN must be set */
183 if (suspend_mode == PM_SUSPEND_MODE_POWER_OFF) {
184 enum pm_ret_status ret;
185
186 ret = pm_set_wakeup_source(NODE_APU, NODE_EXTERN, 1);
187 /**
188 * If NODE_EXTERN could not be set as wake source, proceed with
189 * standard suspend (no one will wake the system otherwise)
190 */
191 if (ret == PM_RET_SUCCESS)
192 return;
193 }
194
Douglas Raillarda8954fc2017-01-26 15:54:44 +0000195 zeromem(&pm_wakeup_nodes_set, sizeof(pm_wakeup_nodes_set));
Filip Drazic4c0765a2016-07-26 12:11:33 +0200196
197 for (reg_num = 0; reg_num < NUM_GICD_ISENABLER; reg_num++) {
198 uint32_t base_irq = reg_num << ISENABLER_SHIFT;
199 uint32_t reg = mmio_read_32(isenabler1 + (reg_num << 2));
200
201 if (!reg)
202 continue;
203
204 while (reg) {
205 enum pm_node_id node;
206 uint32_t idx, ret, irq, lowest_set = reg & (-reg);
207
208 idx = __builtin_ctz(lowest_set);
209 irq = base_irq + idx;
210
211 if (irq > IRQ_MAX)
212 break;
213
214 node = irq_to_pm_node(irq);
215 reg &= ~lowest_set;
216
217 if ((node != NODE_UNKNOWN) &&
218 (!pm_wakeup_nodes_set[node])) {
219 ret = pm_set_wakeup_source(NODE_APU, node, 1);
220 pm_wakeup_nodes_set[node] = !ret;
221 }
222 }
223 }
224}
225
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800226/**
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800227 * pm_get_proc() - returns pointer to the proc structure
228 * @cpuid: id of the cpu whose proc struct pointer should be returned
229 *
230 * Return: pointer to a proc structure if proc is found, otherwise NULL
231 */
232const struct pm_proc *pm_get_proc(unsigned int cpuid)
233{
234 if (cpuid < ARRAY_SIZE(pm_procs_all))
235 return &pm_procs_all[cpuid];
236
237 return NULL;
238}
239
240/**
241 * pm_get_proc_by_node() - returns pointer to the proc structure
242 * @nid: node id of the processor
243 *
244 * Return: pointer to a proc structure if proc is found, otherwise NULL
245 */
246const struct pm_proc *pm_get_proc_by_node(enum pm_node_id nid)
247{
248 for (size_t i = 0; i < ARRAY_SIZE(pm_procs_all); i++) {
249 if (nid == pm_procs_all[i].node_id)
250 return &pm_procs_all[i];
251 }
252 return NULL;
253}
254
255/**
256 * pm_get_cpuid() - get the local cpu ID for a global node ID
257 * @nid: node id of the processor
258 *
259 * Return: the cpu ID (starting from 0) for the subsystem
260 */
261static unsigned int pm_get_cpuid(enum pm_node_id nid)
262{
263 for (size_t i = 0; i < ARRAY_SIZE(pm_procs_all); i++) {
264 if (pm_procs_all[i].node_id == nid)
265 return i;
266 }
267 return UNDEFINED_CPUID;
268}
269
270const struct pm_proc *primary_proc = &pm_procs_all[0];
271
272/**
273 * pm_client_suspend() - Client-specific suspend actions
274 *
275 * This function should contain any PU-specific actions
276 * required prior to sending suspend request to PMU
Filip Drazic4c0765a2016-07-26 12:11:33 +0200277 * Actions taken depend on the state system is suspending to.
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800278 */
Filip Drazic4c0765a2016-07-26 12:11:33 +0200279void pm_client_suspend(const struct pm_proc *proc, unsigned int state)
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800280{
Stefan Krsmanovic2b783662016-05-20 15:51:09 +0200281 bakery_lock_get(&pm_client_secure_lock);
282
Filip Drazic4c0765a2016-07-26 12:11:33 +0200283 if (state == PM_STATE_SUSPEND_TO_RAM)
284 pm_client_set_wakeup_sources();
285
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800286 /* Set powerdown request */
287 mmio_write_32(APU_PWRCTL, mmio_read_32(APU_PWRCTL) | proc->pwrdn_mask);
Stefan Krsmanovic2b783662016-05-20 15:51:09 +0200288
289 bakery_lock_release(&pm_client_secure_lock);
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800290}
291
292
293/**
294 * pm_client_abort_suspend() - Client-specific abort-suspend actions
295 *
296 * This function should contain any PU-specific actions
297 * required for aborting a prior suspend request
298 */
299void pm_client_abort_suspend(void)
300{
301 /* Enable interrupts at processor level (for current cpu) */
302 gicv2_cpuif_enable();
Stefan Krsmanovic2b783662016-05-20 15:51:09 +0200303
304 bakery_lock_get(&pm_client_secure_lock);
305
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800306 /* Clear powerdown request */
307 mmio_write_32(APU_PWRCTL,
308 mmio_read_32(APU_PWRCTL) & ~primary_proc->pwrdn_mask);
Stefan Krsmanovic2b783662016-05-20 15:51:09 +0200309
310 bakery_lock_release(&pm_client_secure_lock);
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800311}
312
313/**
314 * pm_client_wakeup() - Client-specific wakeup actions
315 *
316 * This function should contain any PU-specific actions
317 * required for waking up another APU core
318 */
319void pm_client_wakeup(const struct pm_proc *proc)
320{
321 unsigned int cpuid = pm_get_cpuid(proc->node_id);
322
323 if (cpuid == UNDEFINED_CPUID)
324 return;
325
Stefan Krsmanovic2b783662016-05-20 15:51:09 +0200326 bakery_lock_get(&pm_client_secure_lock);
327
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800328 /* clear powerdown bit for affected cpu */
329 uint32_t val = mmio_read_32(APU_PWRCTL);
330 val &= ~(proc->pwrdn_mask);
331 mmio_write_32(APU_PWRCTL, val);
Stefan Krsmanovic2b783662016-05-20 15:51:09 +0200332
333 bakery_lock_release(&pm_client_secure_lock);
Soren Brinkmann76fcae32016-03-06 20:16:27 -0800334}
Siva Durga Prasad Paladugu43b23a32018-04-27 16:26:47 +0530335
336enum pm_ret_status pm_set_suspend_mode(uint32_t mode)
337{
338 if ((mode != PM_SUSPEND_MODE_STD) &&
339 (mode != PM_SUSPEND_MODE_POWER_OFF))
340 return PM_RET_ERROR_ARGS;
341
342 suspend_mode = mode;
343 return PM_RET_SUCCESS;
344}