blob: 11fd6667de32466331c5fa7587ef76f234bd9558 [file] [log] [blame]
Yann Gautier9aea69e2018-07-24 17:13:36 +02001/*
Yann Gautiera2e2a302019-02-14 11:13:39 +01002 * Copyright (C) 2018-2019, STMicroelectronics - All Rights Reserved
Yann Gautier9aea69e2018-07-24 17:13:36 +02003 *
4 * SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
5 */
6
Yann Gautier9aea69e2018-07-24 17:13:36 +02007#include <assert.h>
Yann Gautier9aea69e2018-07-24 17:13:36 +02008#include <errno.h>
Yann Gautier9aea69e2018-07-24 17:13:36 +02009#include <stdint.h>
Antonio Nino Diaz00086e32018-08-16 16:46:06 +010010#include <stdio.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011
12#include <libfdt.h>
13
Yann Gautier57e282b2019-01-07 11:17:24 +010014#include <platform_def.h>
15
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000016#include <arch.h>
17#include <arch_helpers.h>
18#include <common/debug.h>
19#include <drivers/delay_timer.h>
20#include <drivers/generic_delay_timer.h>
Yann Gautier4d429472019-02-14 11:15:20 +010021#include <drivers/st/stm32mp_clkfunc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000022#include <drivers/st/stm32mp1_clk.h>
23#include <drivers/st/stm32mp1_clkfunc.h>
24#include <drivers/st/stm32mp1_rcc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000025#include <dt-bindings/clock/stm32mp1-clksrc.h>
26#include <lib/mmio.h>
Yann Gautiere4a3c352019-02-14 10:53:33 +010027#include <lib/spinlock.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000028#include <lib/utils_def.h>
29#include <plat/common/platform.h>
30
Yann Gautier2299d572019-02-14 11:14:39 +010031#define MAX_HSI_HZ 64000000
Yann Gautiere4a3c352019-02-14 10:53:33 +010032#define USB_PHY_48_MHZ 48000000
Yann Gautier9aea69e2018-07-24 17:13:36 +020033
Yann Gautier2299d572019-02-14 11:14:39 +010034#define TIMEOUT_US_200MS U(200000)
35#define TIMEOUT_US_1S U(1000000)
Yann Gautier9aea69e2018-07-24 17:13:36 +020036
Yann Gautier2299d572019-02-14 11:14:39 +010037#define PLLRDY_TIMEOUT TIMEOUT_US_200MS
38#define CLKSRC_TIMEOUT TIMEOUT_US_200MS
39#define CLKDIV_TIMEOUT TIMEOUT_US_200MS
40#define HSIDIV_TIMEOUT TIMEOUT_US_200MS
41#define OSCRDY_TIMEOUT TIMEOUT_US_1S
Yann Gautier9aea69e2018-07-24 17:13:36 +020042
43enum stm32mp1_parent_id {
44/* Oscillators are defined in enum stm32mp_osc_id */
45
46/* Other parent source */
47 _HSI_KER = NB_OSC,
48 _HSE_KER,
49 _HSE_KER_DIV2,
50 _CSI_KER,
51 _PLL1_P,
52 _PLL1_Q,
53 _PLL1_R,
54 _PLL2_P,
55 _PLL2_Q,
56 _PLL2_R,
57 _PLL3_P,
58 _PLL3_Q,
59 _PLL3_R,
60 _PLL4_P,
61 _PLL4_Q,
62 _PLL4_R,
63 _ACLK,
64 _PCLK1,
65 _PCLK2,
66 _PCLK3,
67 _PCLK4,
68 _PCLK5,
69 _HCLK6,
70 _HCLK2,
71 _CK_PER,
72 _CK_MPU,
Yann Gautiered342322019-02-15 17:33:27 +010073 _CK_MCU,
Yann Gautiere4a3c352019-02-14 10:53:33 +010074 _USB_PHY_48,
Yann Gautier9aea69e2018-07-24 17:13:36 +020075 _PARENT_NB,
76 _UNKNOWN_ID = 0xff,
77};
78
Yann Gautiere4a3c352019-02-14 10:53:33 +010079/* Lists only the parent clock we are interested in */
Yann Gautier9aea69e2018-07-24 17:13:36 +020080enum stm32mp1_parent_sel {
Yann Gautiere4a3c352019-02-14 10:53:33 +010081 _I2C12_SEL,
82 _I2C35_SEL,
83 _STGEN_SEL,
Yann Gautier9aea69e2018-07-24 17:13:36 +020084 _I2C46_SEL,
Yann Gautiere4a3c352019-02-14 10:53:33 +010085 _SPI6_SEL,
86 _USART1_SEL,
87 _RNG1_SEL,
Yann Gautier9aea69e2018-07-24 17:13:36 +020088 _UART6_SEL,
89 _UART24_SEL,
90 _UART35_SEL,
91 _UART78_SEL,
92 _SDMMC12_SEL,
93 _SDMMC3_SEL,
94 _QSPI_SEL,
95 _FMC_SEL,
Yann Gautiere4a3c352019-02-14 10:53:33 +010096 _ASS_SEL,
Yann Gautiered342322019-02-15 17:33:27 +010097 _MSS_SEL,
Yann Gautier9aea69e2018-07-24 17:13:36 +020098 _USBPHY_SEL,
99 _USBO_SEL,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200100 _PARENT_SEL_NB,
101 _UNKNOWN_SEL = 0xff,
102};
103
104enum stm32mp1_pll_id {
105 _PLL1,
106 _PLL2,
107 _PLL3,
108 _PLL4,
109 _PLL_NB
110};
111
112enum stm32mp1_div_id {
113 _DIV_P,
114 _DIV_Q,
115 _DIV_R,
116 _DIV_NB,
117};
118
119enum stm32mp1_clksrc_id {
120 CLKSRC_MPU,
121 CLKSRC_AXI,
Yann Gautiered342322019-02-15 17:33:27 +0100122 CLKSRC_MCU,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200123 CLKSRC_PLL12,
124 CLKSRC_PLL3,
125 CLKSRC_PLL4,
126 CLKSRC_RTC,
127 CLKSRC_MCO1,
128 CLKSRC_MCO2,
129 CLKSRC_NB
130};
131
132enum stm32mp1_clkdiv_id {
133 CLKDIV_MPU,
134 CLKDIV_AXI,
Yann Gautiered342322019-02-15 17:33:27 +0100135 CLKDIV_MCU,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200136 CLKDIV_APB1,
137 CLKDIV_APB2,
138 CLKDIV_APB3,
139 CLKDIV_APB4,
140 CLKDIV_APB5,
141 CLKDIV_RTC,
142 CLKDIV_MCO1,
143 CLKDIV_MCO2,
144 CLKDIV_NB
145};
146
147enum stm32mp1_pllcfg {
148 PLLCFG_M,
149 PLLCFG_N,
150 PLLCFG_P,
151 PLLCFG_Q,
152 PLLCFG_R,
153 PLLCFG_O,
154 PLLCFG_NB
155};
156
157enum stm32mp1_pllcsg {
158 PLLCSG_MOD_PER,
159 PLLCSG_INC_STEP,
160 PLLCSG_SSCG_MODE,
161 PLLCSG_NB
162};
163
164enum stm32mp1_plltype {
165 PLL_800,
166 PLL_1600,
167 PLL_TYPE_NB
168};
169
170struct stm32mp1_pll {
171 uint8_t refclk_min;
172 uint8_t refclk_max;
173 uint8_t divn_max;
174};
175
176struct stm32mp1_clk_gate {
177 uint16_t offset;
178 uint8_t bit;
179 uint8_t index;
180 uint8_t set_clr;
Yann Gautiere4a3c352019-02-14 10:53:33 +0100181 uint8_t sel; /* Relates to enum stm32mp1_parent_sel */
182 uint8_t fixed; /* Relates to enum stm32mp1_parent_id */
Yann Gautier9aea69e2018-07-24 17:13:36 +0200183};
184
185struct stm32mp1_clk_sel {
186 uint16_t offset;
187 uint8_t src;
188 uint8_t msk;
189 uint8_t nb_parent;
190 const uint8_t *parent;
191};
192
193#define REFCLK_SIZE 4
194struct stm32mp1_clk_pll {
195 enum stm32mp1_plltype plltype;
196 uint16_t rckxselr;
197 uint16_t pllxcfgr1;
198 uint16_t pllxcfgr2;
199 uint16_t pllxfracr;
200 uint16_t pllxcr;
201 uint16_t pllxcsgr;
202 enum stm32mp_osc_id refclk[REFCLK_SIZE];
203};
204
Yann Gautiere4a3c352019-02-14 10:53:33 +0100205/* Clocks with selectable source and non set/clr register access */
206#define _CLK_SELEC(off, b, idx, s) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200207 { \
208 .offset = (off), \
209 .bit = (b), \
210 .index = (idx), \
211 .set_clr = 0, \
212 .sel = (s), \
213 .fixed = _UNKNOWN_ID, \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200214 }
215
Yann Gautiere4a3c352019-02-14 10:53:33 +0100216/* Clocks with fixed source and non set/clr register access */
217#define _CLK_FIXED(off, b, idx, f) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200218 { \
219 .offset = (off), \
220 .bit = (b), \
221 .index = (idx), \
222 .set_clr = 0, \
223 .sel = _UNKNOWN_SEL, \
224 .fixed = (f), \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200225 }
226
Yann Gautiere4a3c352019-02-14 10:53:33 +0100227/* Clocks with selectable source and set/clr register access */
228#define _CLK_SC_SELEC(off, b, idx, s) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200229 { \
230 .offset = (off), \
231 .bit = (b), \
232 .index = (idx), \
233 .set_clr = 1, \
234 .sel = (s), \
235 .fixed = _UNKNOWN_ID, \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200236 }
237
Yann Gautiere4a3c352019-02-14 10:53:33 +0100238/* Clocks with fixed source and set/clr register access */
239#define _CLK_SC_FIXED(off, b, idx, f) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200240 { \
241 .offset = (off), \
242 .bit = (b), \
243 .index = (idx), \
244 .set_clr = 1, \
245 .sel = _UNKNOWN_SEL, \
246 .fixed = (f), \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200247 }
248
Yann Gautiere4a3c352019-02-14 10:53:33 +0100249#define _CLK_PARENT(idx, off, s, m, p) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200250 [(idx)] = { \
251 .offset = (off), \
252 .src = (s), \
253 .msk = (m), \
254 .parent = (p), \
Yann Gautiere4a3c352019-02-14 10:53:33 +0100255 .nb_parent = ARRAY_SIZE(p) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200256 }
257
Yann Gautiere4a3c352019-02-14 10:53:33 +0100258#define _CLK_PLL(idx, type, off1, off2, off3, \
259 off4, off5, off6, \
260 p1, p2, p3, p4) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200261 [(idx)] = { \
262 .plltype = (type), \
263 .rckxselr = (off1), \
264 .pllxcfgr1 = (off2), \
265 .pllxcfgr2 = (off3), \
266 .pllxfracr = (off4), \
267 .pllxcr = (off5), \
268 .pllxcsgr = (off6), \
269 .refclk[0] = (p1), \
270 .refclk[1] = (p2), \
271 .refclk[2] = (p3), \
272 .refclk[3] = (p4), \
273 }
274
275static const uint8_t stm32mp1_clks[][2] = {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100276 { CK_PER, _CK_PER },
277 { CK_MPU, _CK_MPU },
278 { CK_AXI, _ACLK },
Yann Gautiered342322019-02-15 17:33:27 +0100279 { CK_MCU, _CK_MCU },
Yann Gautiere4a3c352019-02-14 10:53:33 +0100280 { CK_HSE, _HSE },
281 { CK_CSI, _CSI },
282 { CK_LSI, _LSI },
283 { CK_LSE, _LSE },
284 { CK_HSI, _HSI },
285 { CK_HSE_DIV2, _HSE_KER_DIV2 },
Yann Gautier9aea69e2018-07-24 17:13:36 +0200286};
287
Yann Gautiere4a3c352019-02-14 10:53:33 +0100288#define NB_GATES ARRAY_SIZE(stm32mp1_clk_gate)
289
Yann Gautier9aea69e2018-07-24 17:13:36 +0200290static const struct stm32mp1_clk_gate stm32mp1_clk_gate[] = {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100291 _CLK_FIXED(RCC_DDRITFCR, 0, DDRC1, _ACLK),
292 _CLK_FIXED(RCC_DDRITFCR, 1, DDRC1LP, _ACLK),
293 _CLK_FIXED(RCC_DDRITFCR, 2, DDRC2, _ACLK),
294 _CLK_FIXED(RCC_DDRITFCR, 3, DDRC2LP, _ACLK),
295 _CLK_FIXED(RCC_DDRITFCR, 4, DDRPHYC, _PLL2_R),
296 _CLK_FIXED(RCC_DDRITFCR, 5, DDRPHYCLP, _PLL2_R),
297 _CLK_FIXED(RCC_DDRITFCR, 6, DDRCAPB, _PCLK4),
298 _CLK_FIXED(RCC_DDRITFCR, 7, DDRCAPBLP, _PCLK4),
299 _CLK_FIXED(RCC_DDRITFCR, 8, AXIDCG, _ACLK),
300 _CLK_FIXED(RCC_DDRITFCR, 9, DDRPHYCAPB, _PCLK4),
301 _CLK_FIXED(RCC_DDRITFCR, 10, DDRPHYCAPBLP, _PCLK4),
302
303 _CLK_SC_FIXED(RCC_MP_APB1ENSETR, 6, TIM12_K, _PCLK1),
304 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 14, USART2_K, _UART24_SEL),
305 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 15, USART3_K, _UART35_SEL),
306 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 16, UART4_K, _UART24_SEL),
307 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 17, UART5_K, _UART35_SEL),
308 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 18, UART7_K, _UART78_SEL),
309 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 19, UART8_K, _UART78_SEL),
310 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 21, I2C1_K, _I2C12_SEL),
311 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 22, I2C2_K, _I2C12_SEL),
312 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 23, I2C3_K, _I2C35_SEL),
313 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 24, I2C5_K, _I2C35_SEL),
314
315 _CLK_SC_FIXED(RCC_MP_APB2ENSETR, 2, TIM15_K, _PCLK2),
316 _CLK_SC_SELEC(RCC_MP_APB2ENSETR, 13, USART6_K, _UART6_SEL),
317
318 _CLK_SC_SELEC(RCC_MP_APB4ENSETR, 8, DDRPERFM, _UNKNOWN_SEL),
319 _CLK_SC_SELEC(RCC_MP_APB4ENSETR, 15, IWDG2, _UNKNOWN_SEL),
320 _CLK_SC_SELEC(RCC_MP_APB4ENSETR, 16, USBPHY_K, _USBPHY_SEL),
321
322 _CLK_SC_SELEC(RCC_MP_APB5ENSETR, 0, SPI6_K, _SPI6_SEL),
323 _CLK_SC_SELEC(RCC_MP_APB5ENSETR, 2, I2C4_K, _I2C46_SEL),
324 _CLK_SC_SELEC(RCC_MP_APB5ENSETR, 3, I2C6_K, _I2C46_SEL),
325 _CLK_SC_SELEC(RCC_MP_APB5ENSETR, 4, USART1_K, _USART1_SEL),
326 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 8, RTCAPB, _PCLK5),
327 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 11, TZC1, _PCLK5),
328 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 12, TZC2, _PCLK5),
329 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 13, TZPC, _PCLK5),
330 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 15, IWDG1, _PCLK5),
331 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 16, BSEC, _PCLK5),
332 _CLK_SC_SELEC(RCC_MP_APB5ENSETR, 20, STGEN_K, _STGEN_SEL),
333
334 _CLK_SC_SELEC(RCC_MP_AHB2ENSETR, 8, USBO_K, _USBO_SEL),
335 _CLK_SC_SELEC(RCC_MP_AHB2ENSETR, 16, SDMMC3_K, _SDMMC3_SEL),
336
337 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 0, GPIOA, _UNKNOWN_SEL),
338 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 1, GPIOB, _UNKNOWN_SEL),
339 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 2, GPIOC, _UNKNOWN_SEL),
340 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 3, GPIOD, _UNKNOWN_SEL),
341 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 4, GPIOE, _UNKNOWN_SEL),
342 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 5, GPIOF, _UNKNOWN_SEL),
343 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 6, GPIOG, _UNKNOWN_SEL),
344 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 7, GPIOH, _UNKNOWN_SEL),
345 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 8, GPIOI, _UNKNOWN_SEL),
346 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 9, GPIOJ, _UNKNOWN_SEL),
347 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 10, GPIOK, _UNKNOWN_SEL),
348
349 _CLK_SC_FIXED(RCC_MP_AHB5ENSETR, 0, GPIOZ, _PCLK5),
350 _CLK_SC_FIXED(RCC_MP_AHB5ENSETR, 4, CRYP1, _PCLK5),
351 _CLK_SC_FIXED(RCC_MP_AHB5ENSETR, 5, HASH1, _PCLK5),
352 _CLK_SC_SELEC(RCC_MP_AHB5ENSETR, 6, RNG1_K, _RNG1_SEL),
353 _CLK_SC_FIXED(RCC_MP_AHB5ENSETR, 8, BKPSRAM, _PCLK5),
354
355 _CLK_SC_SELEC(RCC_MP_AHB6ENSETR, 12, FMC_K, _FMC_SEL),
356 _CLK_SC_SELEC(RCC_MP_AHB6ENSETR, 14, QSPI_K, _QSPI_SEL),
357 _CLK_SC_SELEC(RCC_MP_AHB6ENSETR, 16, SDMMC1_K, _SDMMC12_SEL),
358 _CLK_SC_SELEC(RCC_MP_AHB6ENSETR, 17, SDMMC2_K, _SDMMC12_SEL),
359 _CLK_SC_SELEC(RCC_MP_AHB6ENSETR, 24, USBH, _UNKNOWN_SEL),
360
361 _CLK_SELEC(RCC_DBGCFGR, 8, CK_DBG, _UNKNOWN_SEL),
362};
363
364static const uint8_t i2c12_parents[] = {
365 _PCLK1, _PLL4_R, _HSI_KER, _CSI_KER
366};
367
368static const uint8_t i2c35_parents[] = {
369 _PCLK1, _PLL4_R, _HSI_KER, _CSI_KER
370};
371
372static const uint8_t stgen_parents[] = {
373 _HSI_KER, _HSE_KER
374};
375
376static const uint8_t i2c46_parents[] = {
377 _PCLK5, _PLL3_Q, _HSI_KER, _CSI_KER
378};
379
380static const uint8_t spi6_parents[] = {
381 _PCLK5, _PLL4_Q, _HSI_KER, _CSI_KER, _HSE_KER, _PLL3_Q
382};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200383
Yann Gautiere4a3c352019-02-14 10:53:33 +0100384static const uint8_t usart1_parents[] = {
385 _PCLK5, _PLL3_Q, _HSI_KER, _CSI_KER, _PLL4_Q, _HSE_KER
386};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200387
Yann Gautiere4a3c352019-02-14 10:53:33 +0100388static const uint8_t rng1_parents[] = {
389 _CSI, _PLL4_R, _LSE, _LSI
390};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200391
Yann Gautiere4a3c352019-02-14 10:53:33 +0100392static const uint8_t uart6_parents[] = {
393 _PCLK2, _PLL4_Q, _HSI_KER, _CSI_KER, _HSE_KER
394};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200395
Yann Gautiere4a3c352019-02-14 10:53:33 +0100396static const uint8_t uart234578_parents[] = {
397 _PCLK1, _PLL4_Q, _HSI_KER, _CSI_KER, _HSE_KER
398};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200399
Yann Gautiere4a3c352019-02-14 10:53:33 +0100400static const uint8_t sdmmc12_parents[] = {
401 _HCLK6, _PLL3_R, _PLL4_P, _HSI_KER
402};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200403
Yann Gautiere4a3c352019-02-14 10:53:33 +0100404static const uint8_t sdmmc3_parents[] = {
405 _HCLK2, _PLL3_R, _PLL4_P, _HSI_KER
406};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200407
Yann Gautiere4a3c352019-02-14 10:53:33 +0100408static const uint8_t qspi_parents[] = {
409 _ACLK, _PLL3_R, _PLL4_P, _CK_PER
410};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200411
Yann Gautiere4a3c352019-02-14 10:53:33 +0100412static const uint8_t fmc_parents[] = {
413 _ACLK, _PLL3_R, _PLL4_P, _CK_PER
414};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200415
Yann Gautiere4a3c352019-02-14 10:53:33 +0100416static const uint8_t ass_parents[] = {
417 _HSI, _HSE, _PLL2
Yann Gautier9aea69e2018-07-24 17:13:36 +0200418};
419
Yann Gautiered342322019-02-15 17:33:27 +0100420static const uint8_t mss_parents[] = {
421 _HSI, _HSE, _CSI, _PLL3
422};
423
Yann Gautiere4a3c352019-02-14 10:53:33 +0100424static const uint8_t usbphy_parents[] = {
425 _HSE_KER, _PLL4_R, _HSE_KER_DIV2
426};
427
428static const uint8_t usbo_parents[] = {
429 _PLL4_R, _USB_PHY_48
430};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200431
432static const struct stm32mp1_clk_sel stm32mp1_clk_sel[_PARENT_SEL_NB] = {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100433 _CLK_PARENT(_I2C12_SEL, RCC_I2C12CKSELR, 0, 0x7, i2c12_parents),
434 _CLK_PARENT(_I2C35_SEL, RCC_I2C35CKSELR, 0, 0x7, i2c35_parents),
435 _CLK_PARENT(_STGEN_SEL, RCC_STGENCKSELR, 0, 0x3, stgen_parents),
436 _CLK_PARENT(_I2C46_SEL, RCC_I2C46CKSELR, 0, 0x7, i2c46_parents),
437 _CLK_PARENT(_SPI6_SEL, RCC_SPI6CKSELR, 0, 0x7, spi6_parents),
438 _CLK_PARENT(_USART1_SEL, RCC_UART1CKSELR, 0, 0x7, usart1_parents),
439 _CLK_PARENT(_RNG1_SEL, RCC_RNG1CKSELR, 0, 0x3, rng1_parents),
440 _CLK_PARENT(_UART6_SEL, RCC_UART6CKSELR, 0, 0x7, uart6_parents),
441 _CLK_PARENT(_UART24_SEL, RCC_UART24CKSELR, 0, 0x7, uart234578_parents),
442 _CLK_PARENT(_UART35_SEL, RCC_UART35CKSELR, 0, 0x7, uart234578_parents),
443 _CLK_PARENT(_UART78_SEL, RCC_UART78CKSELR, 0, 0x7, uart234578_parents),
444 _CLK_PARENT(_SDMMC12_SEL, RCC_SDMMC12CKSELR, 0, 0x7, sdmmc12_parents),
445 _CLK_PARENT(_SDMMC3_SEL, RCC_SDMMC3CKSELR, 0, 0x7, sdmmc3_parents),
446 _CLK_PARENT(_QSPI_SEL, RCC_QSPICKSELR, 0, 0xf, qspi_parents),
447 _CLK_PARENT(_FMC_SEL, RCC_FMCCKSELR, 0, 0xf, fmc_parents),
448 _CLK_PARENT(_ASS_SEL, RCC_ASSCKSELR, 0, 0x3, ass_parents),
Yann Gautiered342322019-02-15 17:33:27 +0100449 _CLK_PARENT(_MSS_SEL, RCC_MSSCKSELR, 0, 0x3, mss_parents),
Yann Gautiere4a3c352019-02-14 10:53:33 +0100450 _CLK_PARENT(_USBPHY_SEL, RCC_USBCKSELR, 0, 0x3, usbphy_parents),
451 _CLK_PARENT(_USBO_SEL, RCC_USBCKSELR, 4, 0x1, usbo_parents),
Yann Gautier9aea69e2018-07-24 17:13:36 +0200452};
453
454/* Define characteristic of PLL according type */
455#define DIVN_MIN 24
456static const struct stm32mp1_pll stm32mp1_pll[PLL_TYPE_NB] = {
457 [PLL_800] = {
458 .refclk_min = 4,
459 .refclk_max = 16,
460 .divn_max = 99,
461 },
462 [PLL_1600] = {
463 .refclk_min = 8,
464 .refclk_max = 16,
465 .divn_max = 199,
466 },
467};
468
469/* PLLNCFGR2 register divider by output */
470static const uint8_t pllncfgr2[_DIV_NB] = {
471 [_DIV_P] = RCC_PLLNCFGR2_DIVP_SHIFT,
472 [_DIV_Q] = RCC_PLLNCFGR2_DIVQ_SHIFT,
Yann Gautiere4a3c352019-02-14 10:53:33 +0100473 [_DIV_R] = RCC_PLLNCFGR2_DIVR_SHIFT,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200474};
475
476static const struct stm32mp1_clk_pll stm32mp1_clk_pll[_PLL_NB] = {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100477 _CLK_PLL(_PLL1, PLL_1600,
478 RCC_RCK12SELR, RCC_PLL1CFGR1, RCC_PLL1CFGR2,
479 RCC_PLL1FRACR, RCC_PLL1CR, RCC_PLL1CSGR,
480 _HSI, _HSE, _UNKNOWN_OSC_ID, _UNKNOWN_OSC_ID),
481 _CLK_PLL(_PLL2, PLL_1600,
482 RCC_RCK12SELR, RCC_PLL2CFGR1, RCC_PLL2CFGR2,
483 RCC_PLL2FRACR, RCC_PLL2CR, RCC_PLL2CSGR,
484 _HSI, _HSE, _UNKNOWN_OSC_ID, _UNKNOWN_OSC_ID),
485 _CLK_PLL(_PLL3, PLL_800,
486 RCC_RCK3SELR, RCC_PLL3CFGR1, RCC_PLL3CFGR2,
487 RCC_PLL3FRACR, RCC_PLL3CR, RCC_PLL3CSGR,
488 _HSI, _HSE, _CSI, _UNKNOWN_OSC_ID),
489 _CLK_PLL(_PLL4, PLL_800,
490 RCC_RCK4SELR, RCC_PLL4CFGR1, RCC_PLL4CFGR2,
491 RCC_PLL4FRACR, RCC_PLL4CR, RCC_PLL4CSGR,
492 _HSI, _HSE, _CSI, _I2S_CKIN),
Yann Gautier9aea69e2018-07-24 17:13:36 +0200493};
494
495/* Prescaler table lookups for clock computation */
Yann Gautiered342322019-02-15 17:33:27 +0100496/* div = /1 /2 /4 /8 / 16 /64 /128 /512 */
497static const uint8_t stm32mp1_mcu_div[16] = {
498 0, 1, 2, 3, 4, 6, 7, 8, 9, 9, 9, 9, 9, 9, 9, 9
499};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200500
501/* div = /1 /2 /4 /8 /16 : same divider for PMU and APBX */
502#define stm32mp1_mpu_div stm32mp1_mpu_apbx_div
503#define stm32mp1_apbx_div stm32mp1_mpu_apbx_div
504static const uint8_t stm32mp1_mpu_apbx_div[8] = {
505 0, 1, 2, 3, 4, 4, 4, 4
506};
507
508/* div = /1 /2 /3 /4 */
509static const uint8_t stm32mp1_axi_div[8] = {
510 1, 2, 3, 4, 4, 4, 4, 4
511};
512
Yann Gautiere4a3c352019-02-14 10:53:33 +0100513/* RCC clock device driver private */
514static unsigned long stm32mp1_osc[NB_OSC];
515static struct spinlock reg_lock;
516static unsigned int gate_refcounts[NB_GATES];
517static struct spinlock refcount_lock;
518
519static const struct stm32mp1_clk_gate *gate_ref(unsigned int idx)
520{
521 return &stm32mp1_clk_gate[idx];
522}
Yann Gautier9aea69e2018-07-24 17:13:36 +0200523
Yann Gautiere4a3c352019-02-14 10:53:33 +0100524static const struct stm32mp1_clk_sel *clk_sel_ref(unsigned int idx)
525{
526 return &stm32mp1_clk_sel[idx];
527}
Yann Gautier9aea69e2018-07-24 17:13:36 +0200528
Yann Gautiere4a3c352019-02-14 10:53:33 +0100529static const struct stm32mp1_clk_pll *pll_ref(unsigned int idx)
530{
531 return &stm32mp1_clk_pll[idx];
532}
533
534static int stm32mp1_lock_available(void)
535{
536 /* The spinlocks are used only when MMU is enabled */
537 return (read_sctlr() & SCTLR_M_BIT) && (read_sctlr() & SCTLR_C_BIT);
538}
539
540static void stm32mp1_clk_lock(struct spinlock *lock)
541{
542 if (stm32mp1_lock_available() == 0U) {
543 return;
544 }
545
546 /* Assume interrupts are masked */
547 spin_lock(lock);
548}
549
550static void stm32mp1_clk_unlock(struct spinlock *lock)
551{
552 if (stm32mp1_lock_available() == 0U) {
553 return;
554 }
555
556 spin_unlock(lock);
557}
558
559bool stm32mp1_rcc_is_secure(void)
560{
561 uintptr_t rcc_base = stm32mp_rcc_base();
562
563 return (mmio_read_32(rcc_base + RCC_TZCR) & RCC_TZCR_TZEN) != 0;
564}
565
Yann Gautiered342322019-02-15 17:33:27 +0100566bool stm32mp1_rcc_is_mckprot(void)
567{
568 uintptr_t rcc_base = stm32mp_rcc_base();
569
570 return (mmio_read_32(rcc_base + RCC_TZCR) & RCC_TZCR_MCKPROT) != 0;
571}
572
Yann Gautiere4a3c352019-02-14 10:53:33 +0100573void stm32mp1_clk_rcc_regs_lock(void)
574{
575 stm32mp1_clk_lock(&reg_lock);
576}
577
578void stm32mp1_clk_rcc_regs_unlock(void)
579{
580 stm32mp1_clk_unlock(&reg_lock);
581}
582
583static unsigned long stm32mp1_clk_get_fixed(enum stm32mp_osc_id idx)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200584{
585 if (idx >= NB_OSC) {
586 return 0;
587 }
588
Yann Gautiere4a3c352019-02-14 10:53:33 +0100589 return stm32mp1_osc[idx];
Yann Gautier9aea69e2018-07-24 17:13:36 +0200590}
591
Yann Gautiere4a3c352019-02-14 10:53:33 +0100592static int stm32mp1_clk_get_gated_id(unsigned long id)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200593{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100594 unsigned int i;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200595
Yann Gautiere4a3c352019-02-14 10:53:33 +0100596 for (i = 0U; i < NB_GATES; i++) {
597 if (gate_ref(i)->index == id) {
Yann Gautier9aea69e2018-07-24 17:13:36 +0200598 return i;
599 }
600 }
601
602 ERROR("%s: clk id %d not found\n", __func__, (uint32_t)id);
603
604 return -EINVAL;
605}
606
Yann Gautiere4a3c352019-02-14 10:53:33 +0100607static enum stm32mp1_parent_sel stm32mp1_clk_get_sel(int i)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200608{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100609 return (enum stm32mp1_parent_sel)(gate_ref(i)->sel);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200610}
611
Yann Gautiere4a3c352019-02-14 10:53:33 +0100612static enum stm32mp1_parent_id stm32mp1_clk_get_fixed_parent(int i)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200613{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100614 return (enum stm32mp1_parent_id)(gate_ref(i)->fixed);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200615}
616
Yann Gautiere4a3c352019-02-14 10:53:33 +0100617static int stm32mp1_clk_get_parent(unsigned long id)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200618{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100619 const struct stm32mp1_clk_sel *sel;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200620 uint32_t j, p_sel;
621 int i;
622 enum stm32mp1_parent_id p;
623 enum stm32mp1_parent_sel s;
Yann Gautiere4a3c352019-02-14 10:53:33 +0100624 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200625
Yann Gautiere4a3c352019-02-14 10:53:33 +0100626 for (j = 0U; j < ARRAY_SIZE(stm32mp1_clks); j++) {
Yann Gautier9aea69e2018-07-24 17:13:36 +0200627 if (stm32mp1_clks[j][0] == id) {
628 return (int)stm32mp1_clks[j][1];
629 }
630 }
631
Yann Gautiere4a3c352019-02-14 10:53:33 +0100632 i = stm32mp1_clk_get_gated_id(id);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200633 if (i < 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100634 panic();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200635 }
636
Yann Gautiere4a3c352019-02-14 10:53:33 +0100637 p = stm32mp1_clk_get_fixed_parent(i);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200638 if (p < _PARENT_NB) {
639 return (int)p;
640 }
641
Yann Gautiere4a3c352019-02-14 10:53:33 +0100642 s = stm32mp1_clk_get_sel(i);
643 if (s == _UNKNOWN_SEL) {
Yann Gautier9aea69e2018-07-24 17:13:36 +0200644 return -EINVAL;
645 }
Yann Gautiere4a3c352019-02-14 10:53:33 +0100646 if (s >= _PARENT_SEL_NB) {
647 panic();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200648 }
649
Yann Gautiere4a3c352019-02-14 10:53:33 +0100650 sel = clk_sel_ref(s);
651 p_sel = (mmio_read_32(rcc_base + sel->offset) >> sel->src) & sel->msk;
652 if (p_sel < sel->nb_parent) {
653 return (int)sel->parent[p_sel];
654 }
Yann Gautier9aea69e2018-07-24 17:13:36 +0200655
656 return -EINVAL;
657}
658
Yann Gautiere4a3c352019-02-14 10:53:33 +0100659static unsigned long stm32mp1_pll_get_fref(const struct stm32mp1_clk_pll *pll)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200660{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100661 uint32_t selr = mmio_read_32(stm32mp_rcc_base() + pll->rckxselr);
662 uint32_t src = selr & RCC_SELR_REFCLK_SRC_MASK;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200663
Yann Gautiere4a3c352019-02-14 10:53:33 +0100664 return stm32mp1_clk_get_fixed(pll->refclk[src]);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200665}
666
667/*
668 * pll_get_fvco() : return the VCO or (VCO / 2) frequency for the requested PLL
669 * - PLL1 & PLL2 => return VCO / 2 with Fpll_y_ck = FVCO / 2 * (DIVy + 1)
670 * - PLL3 & PLL4 => return VCO with Fpll_y_ck = FVCO / (DIVy + 1)
671 * => in all cases Fpll_y_ck = pll_get_fvco() / (DIVy + 1)
672 */
Yann Gautiere4a3c352019-02-14 10:53:33 +0100673static unsigned long stm32mp1_pll_get_fvco(const struct stm32mp1_clk_pll *pll)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200674{
Yann Gautier9aea69e2018-07-24 17:13:36 +0200675 unsigned long refclk, fvco;
676 uint32_t cfgr1, fracr, divm, divn;
Yann Gautiere4a3c352019-02-14 10:53:33 +0100677 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200678
Yann Gautiere4a3c352019-02-14 10:53:33 +0100679 cfgr1 = mmio_read_32(rcc_base + pll->pllxcfgr1);
680 fracr = mmio_read_32(rcc_base + pll->pllxfracr);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200681
682 divm = (cfgr1 & (RCC_PLLNCFGR1_DIVM_MASK)) >> RCC_PLLNCFGR1_DIVM_SHIFT;
683 divn = cfgr1 & RCC_PLLNCFGR1_DIVN_MASK;
684
Yann Gautiere4a3c352019-02-14 10:53:33 +0100685 refclk = stm32mp1_pll_get_fref(pll);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200686
687 /*
688 * With FRACV :
689 * Fvco = Fck_ref * ((DIVN + 1) + FRACV / 2^13) / (DIVM + 1)
690 * Without FRACV
691 * Fvco = Fck_ref * ((DIVN + 1) / (DIVM + 1)
692 */
693 if ((fracr & RCC_PLLNFRACR_FRACLE) != 0U) {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100694 uint32_t fracv = (fracr & RCC_PLLNFRACR_FRACV_MASK) >>
695 RCC_PLLNFRACR_FRACV_SHIFT;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200696 unsigned long long numerator, denominator;
697
Yann Gautiere4a3c352019-02-14 10:53:33 +0100698 numerator = (((unsigned long long)divn + 1U) << 13) + fracv;
699 numerator = refclk * numerator;
700 denominator = ((unsigned long long)divm + 1U) << 13;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200701 fvco = (unsigned long)(numerator / denominator);
702 } else {
703 fvco = (unsigned long)(refclk * (divn + 1U) / (divm + 1U));
704 }
705
706 return fvco;
707}
708
Yann Gautiere4a3c352019-02-14 10:53:33 +0100709static unsigned long stm32mp1_read_pll_freq(enum stm32mp1_pll_id pll_id,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200710 enum stm32mp1_div_id div_id)
711{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100712 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200713 unsigned long dfout;
714 uint32_t cfgr2, divy;
715
716 if (div_id >= _DIV_NB) {
717 return 0;
718 }
719
Yann Gautiere4a3c352019-02-14 10:53:33 +0100720 cfgr2 = mmio_read_32(stm32mp_rcc_base() + pll->pllxcfgr2);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200721 divy = (cfgr2 >> pllncfgr2[div_id]) & RCC_PLLNCFGR2_DIVX_MASK;
722
Yann Gautiere4a3c352019-02-14 10:53:33 +0100723 dfout = stm32mp1_pll_get_fvco(pll) / (divy + 1U);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200724
725 return dfout;
726}
727
Yann Gautiere4a3c352019-02-14 10:53:33 +0100728static unsigned long get_clock_rate(int p)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200729{
730 uint32_t reg, clkdiv;
731 unsigned long clock = 0;
Yann Gautiere4a3c352019-02-14 10:53:33 +0100732 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200733
734 switch (p) {
735 case _CK_MPU:
736 /* MPU sub system */
Yann Gautiere4a3c352019-02-14 10:53:33 +0100737 reg = mmio_read_32(rcc_base + RCC_MPCKSELR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200738 switch (reg & RCC_SELR_SRC_MASK) {
739 case RCC_MPCKSELR_HSI:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100740 clock = stm32mp1_clk_get_fixed(_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200741 break;
742 case RCC_MPCKSELR_HSE:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100743 clock = stm32mp1_clk_get_fixed(_HSE);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200744 break;
745 case RCC_MPCKSELR_PLL:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100746 clock = stm32mp1_read_pll_freq(_PLL1, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200747 break;
748 case RCC_MPCKSELR_PLL_MPUDIV:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100749 clock = stm32mp1_read_pll_freq(_PLL1, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200750
Yann Gautiere4a3c352019-02-14 10:53:33 +0100751 reg = mmio_read_32(rcc_base + RCC_MPCKDIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200752 clkdiv = reg & RCC_MPUDIV_MASK;
753 if (clkdiv != 0U) {
754 clock /= stm32mp1_mpu_div[clkdiv];
755 }
Yann Gautier9aea69e2018-07-24 17:13:36 +0200756 break;
757 default:
758 break;
759 }
760 break;
761 /* AXI sub system */
762 case _ACLK:
763 case _HCLK2:
764 case _HCLK6:
765 case _PCLK4:
766 case _PCLK5:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100767 reg = mmio_read_32(rcc_base + RCC_ASSCKSELR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200768 switch (reg & RCC_SELR_SRC_MASK) {
769 case RCC_ASSCKSELR_HSI:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100770 clock = stm32mp1_clk_get_fixed(_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200771 break;
772 case RCC_ASSCKSELR_HSE:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100773 clock = stm32mp1_clk_get_fixed(_HSE);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200774 break;
775 case RCC_ASSCKSELR_PLL:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100776 clock = stm32mp1_read_pll_freq(_PLL2, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200777 break;
778 default:
779 break;
780 }
781
782 /* System clock divider */
Yann Gautiere4a3c352019-02-14 10:53:33 +0100783 reg = mmio_read_32(rcc_base + RCC_AXIDIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200784 clock /= stm32mp1_axi_div[reg & RCC_AXIDIV_MASK];
785
786 switch (p) {
787 case _PCLK4:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100788 reg = mmio_read_32(rcc_base + RCC_APB4DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200789 clock >>= stm32mp1_apbx_div[reg & RCC_APBXDIV_MASK];
790 break;
791 case _PCLK5:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100792 reg = mmio_read_32(rcc_base + RCC_APB5DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200793 clock >>= stm32mp1_apbx_div[reg & RCC_APBXDIV_MASK];
794 break;
795 default:
796 break;
797 }
798 break;
Yann Gautiered342322019-02-15 17:33:27 +0100799 /* MCU sub system */
800 case _CK_MCU:
801 case _PCLK1:
802 case _PCLK2:
803 case _PCLK3:
804 reg = mmio_read_32(rcc_base + RCC_MSSCKSELR);
805 switch (reg & RCC_SELR_SRC_MASK) {
806 case RCC_MSSCKSELR_HSI:
807 clock = stm32mp1_clk_get_fixed(_HSI);
808 break;
809 case RCC_MSSCKSELR_HSE:
810 clock = stm32mp1_clk_get_fixed(_HSE);
811 break;
812 case RCC_MSSCKSELR_CSI:
813 clock = stm32mp1_clk_get_fixed(_CSI);
814 break;
815 case RCC_MSSCKSELR_PLL:
816 clock = stm32mp1_read_pll_freq(_PLL3, _DIV_P);
817 break;
818 default:
819 break;
820 }
821
822 /* MCU clock divider */
823 reg = mmio_read_32(rcc_base + RCC_MCUDIVR);
824 clock >>= stm32mp1_mcu_div[reg & RCC_MCUDIV_MASK];
825
826 switch (p) {
827 case _PCLK1:
828 reg = mmio_read_32(rcc_base + RCC_APB1DIVR);
829 clock >>= stm32mp1_apbx_div[reg & RCC_APBXDIV_MASK];
830 break;
831 case _PCLK2:
832 reg = mmio_read_32(rcc_base + RCC_APB2DIVR);
833 clock >>= stm32mp1_apbx_div[reg & RCC_APBXDIV_MASK];
834 break;
835 case _PCLK3:
836 reg = mmio_read_32(rcc_base + RCC_APB3DIVR);
837 clock >>= stm32mp1_apbx_div[reg & RCC_APBXDIV_MASK];
838 break;
839 case _CK_MCU:
840 default:
841 break;
842 }
843 break;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200844 case _CK_PER:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100845 reg = mmio_read_32(rcc_base + RCC_CPERCKSELR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200846 switch (reg & RCC_SELR_SRC_MASK) {
847 case RCC_CPERCKSELR_HSI:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100848 clock = stm32mp1_clk_get_fixed(_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200849 break;
850 case RCC_CPERCKSELR_HSE:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100851 clock = stm32mp1_clk_get_fixed(_HSE);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200852 break;
853 case RCC_CPERCKSELR_CSI:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100854 clock = stm32mp1_clk_get_fixed(_CSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200855 break;
856 default:
857 break;
858 }
859 break;
860 case _HSI:
861 case _HSI_KER:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100862 clock = stm32mp1_clk_get_fixed(_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200863 break;
864 case _CSI:
865 case _CSI_KER:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100866 clock = stm32mp1_clk_get_fixed(_CSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200867 break;
868 case _HSE:
869 case _HSE_KER:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100870 clock = stm32mp1_clk_get_fixed(_HSE);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200871 break;
872 case _HSE_KER_DIV2:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100873 clock = stm32mp1_clk_get_fixed(_HSE) >> 1;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200874 break;
875 case _LSI:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100876 clock = stm32mp1_clk_get_fixed(_LSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200877 break;
878 case _LSE:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100879 clock = stm32mp1_clk_get_fixed(_LSE);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200880 break;
881 /* PLL */
882 case _PLL1_P:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100883 clock = stm32mp1_read_pll_freq(_PLL1, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200884 break;
885 case _PLL1_Q:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100886 clock = stm32mp1_read_pll_freq(_PLL1, _DIV_Q);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200887 break;
888 case _PLL1_R:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100889 clock = stm32mp1_read_pll_freq(_PLL1, _DIV_R);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200890 break;
891 case _PLL2_P:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100892 clock = stm32mp1_read_pll_freq(_PLL2, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200893 break;
894 case _PLL2_Q:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100895 clock = stm32mp1_read_pll_freq(_PLL2, _DIV_Q);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200896 break;
897 case _PLL2_R:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100898 clock = stm32mp1_read_pll_freq(_PLL2, _DIV_R);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200899 break;
900 case _PLL3_P:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100901 clock = stm32mp1_read_pll_freq(_PLL3, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200902 break;
903 case _PLL3_Q:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100904 clock = stm32mp1_read_pll_freq(_PLL3, _DIV_Q);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200905 break;
906 case _PLL3_R:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100907 clock = stm32mp1_read_pll_freq(_PLL3, _DIV_R);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200908 break;
909 case _PLL4_P:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100910 clock = stm32mp1_read_pll_freq(_PLL4, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200911 break;
912 case _PLL4_Q:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100913 clock = stm32mp1_read_pll_freq(_PLL4, _DIV_Q);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200914 break;
915 case _PLL4_R:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100916 clock = stm32mp1_read_pll_freq(_PLL4, _DIV_R);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200917 break;
918 /* Other */
919 case _USB_PHY_48:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100920 clock = USB_PHY_48_MHZ;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200921 break;
922 default:
923 break;
924 }
925
926 return clock;
927}
928
Yann Gautiere4a3c352019-02-14 10:53:33 +0100929static void __clk_enable(struct stm32mp1_clk_gate const *gate)
930{
931 uintptr_t rcc_base = stm32mp_rcc_base();
932
933 if (gate->set_clr != 0U) {
934 mmio_write_32(rcc_base + gate->offset, BIT(gate->bit));
935 } else {
936 mmio_setbits_32(rcc_base + gate->offset, BIT(gate->bit));
937 }
938
939 VERBOSE("Clock %d has been enabled", gate->index);
940}
941
942static void __clk_disable(struct stm32mp1_clk_gate const *gate)
943{
944 uintptr_t rcc_base = stm32mp_rcc_base();
945
946 if (gate->set_clr != 0U) {
947 mmio_write_32(rcc_base + gate->offset + RCC_MP_ENCLRR_OFFSET,
948 BIT(gate->bit));
949 } else {
950 mmio_clrbits_32(rcc_base + gate->offset, BIT(gate->bit));
951 }
952
953 VERBOSE("Clock %d has been disabled", gate->index);
954}
955
956static bool __clk_is_enabled(struct stm32mp1_clk_gate const *gate)
957{
958 uintptr_t rcc_base = stm32mp_rcc_base();
959
960 return mmio_read_32(rcc_base + gate->offset) & BIT(gate->bit);
961}
962
963unsigned int stm32mp1_clk_get_refcount(unsigned long id)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200964{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100965 int i = stm32mp1_clk_get_gated_id(id);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200966
967 if (i < 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100968 panic();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200969 }
970
Yann Gautiere4a3c352019-02-14 10:53:33 +0100971 return gate_refcounts[i];
Yann Gautier9aea69e2018-07-24 17:13:36 +0200972}
973
Yann Gautiere4a3c352019-02-14 10:53:33 +0100974void __stm32mp1_clk_enable(unsigned long id, bool secure)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200975{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100976 const struct stm32mp1_clk_gate *gate;
977 int i = stm32mp1_clk_get_gated_id(id);
978 unsigned int *refcnt;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200979
980 if (i < 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100981 ERROR("Clock %d can't be enabled\n", (uint32_t)id);
982 panic();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200983 }
984
Yann Gautiere4a3c352019-02-14 10:53:33 +0100985 gate = gate_ref(i);
986 refcnt = &gate_refcounts[i];
987
988 stm32mp1_clk_lock(&refcount_lock);
989
990 if (stm32mp_incr_shrefcnt(refcnt, secure) != 0) {
991 __clk_enable(gate);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200992 }
993
Yann Gautiere4a3c352019-02-14 10:53:33 +0100994 stm32mp1_clk_unlock(&refcount_lock);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200995}
996
Yann Gautiere4a3c352019-02-14 10:53:33 +0100997void __stm32mp1_clk_disable(unsigned long id, bool secure)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200998{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100999 const struct stm32mp1_clk_gate *gate;
1000 int i = stm32mp1_clk_get_gated_id(id);
1001 unsigned int *refcnt;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001002
1003 if (i < 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001004 ERROR("Clock %d can't be disabled\n", (uint32_t)id);
1005 panic();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001006 }
1007
Yann Gautiere4a3c352019-02-14 10:53:33 +01001008 gate = gate_ref(i);
1009 refcnt = &gate_refcounts[i];
1010
1011 stm32mp1_clk_lock(&refcount_lock);
1012
1013 if (stm32mp_decr_shrefcnt(refcnt, secure) != 0) {
1014 __clk_disable(gate);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001015 }
1016
Yann Gautiere4a3c352019-02-14 10:53:33 +01001017 stm32mp1_clk_unlock(&refcount_lock);
1018}
1019
1020void stm32mp_clk_enable(unsigned long id)
1021{
1022 __stm32mp1_clk_enable(id, true);
1023}
1024
1025void stm32mp_clk_disable(unsigned long id)
1026{
1027 __stm32mp1_clk_disable(id, true);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001028}
1029
Yann Gautiere4a3c352019-02-14 10:53:33 +01001030bool stm32mp_clk_is_enabled(unsigned long id)
1031{
1032 int i = stm32mp1_clk_get_gated_id(id);
1033
1034 if (i < 0) {
1035 panic();
1036 }
1037
1038 return __clk_is_enabled(gate_ref(i));
1039}
1040
Yann Gautiera2e2a302019-02-14 11:13:39 +01001041unsigned long stm32mp_clk_get_rate(unsigned long id)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001042{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001043 int p = stm32mp1_clk_get_parent(id);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001044
1045 if (p < 0) {
1046 return 0;
1047 }
1048
Yann Gautiere4a3c352019-02-14 10:53:33 +01001049 return get_clock_rate(p);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001050}
1051
Yann Gautiere4a3c352019-02-14 10:53:33 +01001052static void stm32mp1_ls_osc_set(bool enable, uint32_t offset, uint32_t mask_on)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001053{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001054 uintptr_t address = stm32mp_rcc_base() + offset;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001055
Yann Gautiere4a3c352019-02-14 10:53:33 +01001056 if (enable) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001057 mmio_setbits_32(address, mask_on);
1058 } else {
1059 mmio_clrbits_32(address, mask_on);
1060 }
1061}
1062
Yann Gautiere4a3c352019-02-14 10:53:33 +01001063static void stm32mp1_hs_ocs_set(bool enable, uint32_t mask_on)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001064{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001065 uint32_t offset = enable ? RCC_OCENSETR : RCC_OCENCLRR;
1066 uintptr_t address = stm32mp_rcc_base() + offset;
1067
1068 mmio_write_32(address, mask_on);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001069}
1070
Yann Gautiere4a3c352019-02-14 10:53:33 +01001071static int stm32mp1_osc_wait(bool enable, uint32_t offset, uint32_t mask_rdy)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001072{
Yann Gautier2299d572019-02-14 11:14:39 +01001073 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001074 uint32_t mask_test;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001075 uintptr_t address = stm32mp_rcc_base() + offset;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001076
Yann Gautiere4a3c352019-02-14 10:53:33 +01001077 if (enable) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001078 mask_test = mask_rdy;
1079 } else {
1080 mask_test = 0;
1081 }
1082
Yann Gautier2299d572019-02-14 11:14:39 +01001083 timeout = timeout_init_us(OSCRDY_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001084 while ((mmio_read_32(address) & mask_rdy) != mask_test) {
Yann Gautier2299d572019-02-14 11:14:39 +01001085 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001086 ERROR("OSC %x @ %lx timeout for enable=%d : 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001087 mask_rdy, address, enable, mmio_read_32(address));
1088 return -ETIMEDOUT;
1089 }
1090 }
1091
1092 return 0;
1093}
1094
Yann Gautiere4a3c352019-02-14 10:53:33 +01001095static void stm32mp1_lse_enable(bool bypass, bool digbyp, uint32_t lsedrv)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001096{
1097 uint32_t value;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001098 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001099
Yann Gautiere4a3c352019-02-14 10:53:33 +01001100 if (digbyp) {
1101 mmio_setbits_32(rcc_base + RCC_BDCR, RCC_BDCR_DIGBYP);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001102 }
1103
Yann Gautiere4a3c352019-02-14 10:53:33 +01001104 if (bypass || digbyp) {
1105 mmio_setbits_32(rcc_base + RCC_BDCR, RCC_BDCR_LSEBYP);
1106 }
1107
Yann Gautier9aea69e2018-07-24 17:13:36 +02001108 /*
1109 * Warning: not recommended to switch directly from "high drive"
1110 * to "medium low drive", and vice-versa.
1111 */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001112 value = (mmio_read_32(rcc_base + RCC_BDCR) & RCC_BDCR_LSEDRV_MASK) >>
Yann Gautier9aea69e2018-07-24 17:13:36 +02001113 RCC_BDCR_LSEDRV_SHIFT;
1114
1115 while (value != lsedrv) {
1116 if (value > lsedrv) {
1117 value--;
1118 } else {
1119 value++;
1120 }
1121
Yann Gautiere4a3c352019-02-14 10:53:33 +01001122 mmio_clrsetbits_32(rcc_base + RCC_BDCR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001123 RCC_BDCR_LSEDRV_MASK,
1124 value << RCC_BDCR_LSEDRV_SHIFT);
1125 }
1126
Yann Gautiere4a3c352019-02-14 10:53:33 +01001127 stm32mp1_ls_osc_set(true, RCC_BDCR, RCC_BDCR_LSEON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001128}
1129
Yann Gautiere4a3c352019-02-14 10:53:33 +01001130static void stm32mp1_lse_wait(void)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001131{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001132 if (stm32mp1_osc_wait(true, RCC_BDCR, RCC_BDCR_LSERDY) != 0) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001133 VERBOSE("%s: failed\n", __func__);
1134 }
1135}
1136
Yann Gautiere4a3c352019-02-14 10:53:33 +01001137static void stm32mp1_lsi_set(bool enable)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001138{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001139 stm32mp1_ls_osc_set(enable, RCC_RDLSICR, RCC_RDLSICR_LSION);
1140
1141 if (stm32mp1_osc_wait(enable, RCC_RDLSICR, RCC_RDLSICR_LSIRDY) != 0) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001142 VERBOSE("%s: failed\n", __func__);
1143 }
1144}
1145
Yann Gautiere4a3c352019-02-14 10:53:33 +01001146static void stm32mp1_hse_enable(bool bypass, bool digbyp, bool css)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001147{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001148 uintptr_t rcc_base = stm32mp_rcc_base();
1149
1150 if (digbyp) {
1151 mmio_write_32(rcc_base + RCC_OCENSETR, RCC_OCENR_DIGBYP);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001152 }
1153
Yann Gautiere4a3c352019-02-14 10:53:33 +01001154 if (bypass || digbyp) {
1155 mmio_write_32(rcc_base + RCC_OCENSETR, RCC_OCENR_HSEBYP);
1156 }
1157
1158 stm32mp1_hs_ocs_set(true, RCC_OCENR_HSEON);
1159 if (stm32mp1_osc_wait(true, RCC_OCRDYR, RCC_OCRDYR_HSERDY) != 0) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001160 VERBOSE("%s: failed\n", __func__);
1161 }
1162
1163 if (css) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001164 mmio_write_32(rcc_base + RCC_OCENSETR, RCC_OCENR_HSECSSON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001165 }
1166}
1167
Yann Gautiere4a3c352019-02-14 10:53:33 +01001168static void stm32mp1_csi_set(bool enable)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001169{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001170 stm32mp1_hs_ocs_set(enable, RCC_OCENR_CSION);
1171 if (stm32mp1_osc_wait(enable, RCC_OCRDYR, RCC_OCRDYR_CSIRDY) != 0) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001172 VERBOSE("%s: failed\n", __func__);
1173 }
1174}
1175
Yann Gautiere4a3c352019-02-14 10:53:33 +01001176static void stm32mp1_hsi_set(bool enable)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001177{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001178 stm32mp1_hs_ocs_set(enable, RCC_OCENR_HSION);
1179 if (stm32mp1_osc_wait(enable, RCC_OCRDYR, RCC_OCRDYR_HSIRDY) != 0) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001180 VERBOSE("%s: failed\n", __func__);
1181 }
1182}
1183
Yann Gautiere4a3c352019-02-14 10:53:33 +01001184static int stm32mp1_set_hsidiv(uint8_t hsidiv)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001185{
Yann Gautier2299d572019-02-14 11:14:39 +01001186 uint64_t timeout;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001187 uintptr_t rcc_base = stm32mp_rcc_base();
1188 uintptr_t address = rcc_base + RCC_OCRDYR;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001189
Yann Gautiere4a3c352019-02-14 10:53:33 +01001190 mmio_clrsetbits_32(rcc_base + RCC_HSICFGR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001191 RCC_HSICFGR_HSIDIV_MASK,
1192 RCC_HSICFGR_HSIDIV_MASK & (uint32_t)hsidiv);
1193
Yann Gautier2299d572019-02-14 11:14:39 +01001194 timeout = timeout_init_us(HSIDIV_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001195 while ((mmio_read_32(address) & RCC_OCRDYR_HSIDIVRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001196 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001197 ERROR("HSIDIV failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001198 address, mmio_read_32(address));
1199 return -ETIMEDOUT;
1200 }
1201 }
1202
1203 return 0;
1204}
1205
Yann Gautiere4a3c352019-02-14 10:53:33 +01001206static int stm32mp1_hsidiv(unsigned long hsifreq)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001207{
1208 uint8_t hsidiv;
1209 uint32_t hsidivfreq = MAX_HSI_HZ;
1210
1211 for (hsidiv = 0; hsidiv < 4U; hsidiv++) {
1212 if (hsidivfreq == hsifreq) {
1213 break;
1214 }
1215
1216 hsidivfreq /= 2U;
1217 }
1218
1219 if (hsidiv == 4U) {
1220 ERROR("Invalid clk-hsi frequency\n");
1221 return -1;
1222 }
1223
1224 if (hsidiv != 0U) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001225 return stm32mp1_set_hsidiv(hsidiv);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001226 }
1227
1228 return 0;
1229}
1230
Yann Gautiere4a3c352019-02-14 10:53:33 +01001231static bool stm32mp1_check_pll_conf(enum stm32mp1_pll_id pll_id,
1232 unsigned int clksrc,
1233 uint32_t *pllcfg, int plloff)
1234{
1235 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1236 uintptr_t rcc_base = stm32mp_rcc_base();
1237 uintptr_t pllxcr = rcc_base + pll->pllxcr;
1238 enum stm32mp1_plltype type = pll->plltype;
1239 uintptr_t clksrc_address = rcc_base + (clksrc >> 4);
1240 unsigned long refclk;
1241 uint32_t ifrge = 0U;
1242 uint32_t src, value, fracv;
1243
1244 /* Check PLL output */
1245 if (mmio_read_32(pllxcr) != RCC_PLLNCR_PLLON) {
1246 return false;
1247 }
1248
1249 /* Check current clksrc */
1250 src = mmio_read_32(clksrc_address) & RCC_SELR_SRC_MASK;
1251 if (src != (clksrc & RCC_SELR_SRC_MASK)) {
1252 return false;
1253 }
1254
1255 /* Check Div */
1256 src = mmio_read_32(rcc_base + pll->rckxselr) & RCC_SELR_REFCLK_SRC_MASK;
1257
1258 refclk = stm32mp1_clk_get_fixed(pll->refclk[src]) /
1259 (pllcfg[PLLCFG_M] + 1U);
1260
1261 if ((refclk < (stm32mp1_pll[type].refclk_min * 1000000U)) ||
1262 (refclk > (stm32mp1_pll[type].refclk_max * 1000000U))) {
1263 return false;
1264 }
1265
1266 if ((type == PLL_800) && (refclk >= 8000000U)) {
1267 ifrge = 1U;
1268 }
1269
1270 value = (pllcfg[PLLCFG_N] << RCC_PLLNCFGR1_DIVN_SHIFT) &
1271 RCC_PLLNCFGR1_DIVN_MASK;
1272 value |= (pllcfg[PLLCFG_M] << RCC_PLLNCFGR1_DIVM_SHIFT) &
1273 RCC_PLLNCFGR1_DIVM_MASK;
1274 value |= (ifrge << RCC_PLLNCFGR1_IFRGE_SHIFT) &
1275 RCC_PLLNCFGR1_IFRGE_MASK;
1276 if (mmio_read_32(rcc_base + pll->pllxcfgr1) != value) {
1277 return false;
1278 }
1279
1280 /* Fractional configuration */
1281 fracv = fdt_read_uint32_default(plloff, "frac", 0);
1282
1283 value = fracv << RCC_PLLNFRACR_FRACV_SHIFT;
1284 value |= RCC_PLLNFRACR_FRACLE;
1285 if (mmio_read_32(rcc_base + pll->pllxfracr) != value) {
1286 return false;
1287 }
1288
1289 /* Output config */
1290 value = (pllcfg[PLLCFG_P] << RCC_PLLNCFGR2_DIVP_SHIFT) &
1291 RCC_PLLNCFGR2_DIVP_MASK;
1292 value |= (pllcfg[PLLCFG_Q] << RCC_PLLNCFGR2_DIVQ_SHIFT) &
1293 RCC_PLLNCFGR2_DIVQ_MASK;
1294 value |= (pllcfg[PLLCFG_R] << RCC_PLLNCFGR2_DIVR_SHIFT) &
1295 RCC_PLLNCFGR2_DIVR_MASK;
1296 if (mmio_read_32(rcc_base + pll->pllxcfgr2) != value) {
1297 return false;
1298 }
1299
1300 return true;
1301}
1302
1303static void stm32mp1_pll_start(enum stm32mp1_pll_id pll_id)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001304{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001305 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1306 uintptr_t pllxcr = stm32mp_rcc_base() + pll->pllxcr;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001307
Yann Gautiere4a3c352019-02-14 10:53:33 +01001308 mmio_write_32(pllxcr, RCC_PLLNCR_PLLON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001309}
1310
Yann Gautiere4a3c352019-02-14 10:53:33 +01001311static int stm32mp1_pll_output(enum stm32mp1_pll_id pll_id, uint32_t output)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001312{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001313 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1314 uintptr_t pllxcr = stm32mp_rcc_base() + pll->pllxcr;
Yann Gautier2299d572019-02-14 11:14:39 +01001315 uint64_t timeout = timeout_init_us(PLLRDY_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001316
Yann Gautier9aea69e2018-07-24 17:13:36 +02001317 /* Wait PLL lock */
1318 while ((mmio_read_32(pllxcr) & RCC_PLLNCR_PLLRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001319 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001320 ERROR("PLL%d start failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001321 pll_id, pllxcr, mmio_read_32(pllxcr));
1322 return -ETIMEDOUT;
1323 }
1324 }
1325
1326 /* Start the requested output */
1327 mmio_setbits_32(pllxcr, output << RCC_PLLNCR_DIVEN_SHIFT);
1328
1329 return 0;
1330}
1331
Yann Gautiere4a3c352019-02-14 10:53:33 +01001332static int stm32mp1_pll_stop(enum stm32mp1_pll_id pll_id)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001333{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001334 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1335 uintptr_t pllxcr = stm32mp_rcc_base() + pll->pllxcr;
Yann Gautier2299d572019-02-14 11:14:39 +01001336 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001337
1338 /* Stop all output */
1339 mmio_clrbits_32(pllxcr, RCC_PLLNCR_DIVPEN | RCC_PLLNCR_DIVQEN |
1340 RCC_PLLNCR_DIVREN);
1341
1342 /* Stop PLL */
1343 mmio_clrbits_32(pllxcr, RCC_PLLNCR_PLLON);
1344
Yann Gautier2299d572019-02-14 11:14:39 +01001345 timeout = timeout_init_us(PLLRDY_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001346 /* Wait PLL stopped */
1347 while ((mmio_read_32(pllxcr) & RCC_PLLNCR_PLLRDY) != 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001348 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001349 ERROR("PLL%d stop failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001350 pll_id, pllxcr, mmio_read_32(pllxcr));
1351 return -ETIMEDOUT;
1352 }
1353 }
1354
1355 return 0;
1356}
1357
Yann Gautiere4a3c352019-02-14 10:53:33 +01001358static void stm32mp1_pll_config_output(enum stm32mp1_pll_id pll_id,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001359 uint32_t *pllcfg)
1360{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001361 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1362 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001363 uint32_t value;
1364
1365 value = (pllcfg[PLLCFG_P] << RCC_PLLNCFGR2_DIVP_SHIFT) &
1366 RCC_PLLNCFGR2_DIVP_MASK;
1367 value |= (pllcfg[PLLCFG_Q] << RCC_PLLNCFGR2_DIVQ_SHIFT) &
1368 RCC_PLLNCFGR2_DIVQ_MASK;
1369 value |= (pllcfg[PLLCFG_R] << RCC_PLLNCFGR2_DIVR_SHIFT) &
1370 RCC_PLLNCFGR2_DIVR_MASK;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001371 mmio_write_32(rcc_base + pll->pllxcfgr2, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001372}
1373
Yann Gautiere4a3c352019-02-14 10:53:33 +01001374static int stm32mp1_pll_config(enum stm32mp1_pll_id pll_id,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001375 uint32_t *pllcfg, uint32_t fracv)
1376{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001377 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1378 uintptr_t rcc_base = stm32mp_rcc_base();
1379 enum stm32mp1_plltype type = pll->plltype;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001380 unsigned long refclk;
1381 uint32_t ifrge = 0;
1382 uint32_t src, value;
1383
Yann Gautiere4a3c352019-02-14 10:53:33 +01001384 src = mmio_read_32(rcc_base + pll->rckxselr) &
Yann Gautier9aea69e2018-07-24 17:13:36 +02001385 RCC_SELR_REFCLK_SRC_MASK;
1386
Yann Gautiere4a3c352019-02-14 10:53:33 +01001387 refclk = stm32mp1_clk_get_fixed(pll->refclk[src]) /
Yann Gautier9aea69e2018-07-24 17:13:36 +02001388 (pllcfg[PLLCFG_M] + 1U);
1389
1390 if ((refclk < (stm32mp1_pll[type].refclk_min * 1000000U)) ||
1391 (refclk > (stm32mp1_pll[type].refclk_max * 1000000U))) {
1392 return -EINVAL;
1393 }
1394
1395 if ((type == PLL_800) && (refclk >= 8000000U)) {
1396 ifrge = 1U;
1397 }
1398
1399 value = (pllcfg[PLLCFG_N] << RCC_PLLNCFGR1_DIVN_SHIFT) &
1400 RCC_PLLNCFGR1_DIVN_MASK;
1401 value |= (pllcfg[PLLCFG_M] << RCC_PLLNCFGR1_DIVM_SHIFT) &
1402 RCC_PLLNCFGR1_DIVM_MASK;
1403 value |= (ifrge << RCC_PLLNCFGR1_IFRGE_SHIFT) &
1404 RCC_PLLNCFGR1_IFRGE_MASK;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001405 mmio_write_32(rcc_base + pll->pllxcfgr1, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001406
1407 /* Fractional configuration */
1408 value = 0;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001409 mmio_write_32(rcc_base + pll->pllxfracr, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001410
1411 value = fracv << RCC_PLLNFRACR_FRACV_SHIFT;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001412 mmio_write_32(rcc_base + pll->pllxfracr, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001413
1414 value |= RCC_PLLNFRACR_FRACLE;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001415 mmio_write_32(rcc_base + pll->pllxfracr, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001416
Yann Gautiere4a3c352019-02-14 10:53:33 +01001417 stm32mp1_pll_config_output(pll_id, pllcfg);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001418
1419 return 0;
1420}
1421
Yann Gautiere4a3c352019-02-14 10:53:33 +01001422static void stm32mp1_pll_csg(enum stm32mp1_pll_id pll_id, uint32_t *csg)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001423{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001424 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001425 uint32_t pllxcsg = 0;
1426
1427 pllxcsg |= (csg[PLLCSG_MOD_PER] << RCC_PLLNCSGR_MOD_PER_SHIFT) &
1428 RCC_PLLNCSGR_MOD_PER_MASK;
1429
1430 pllxcsg |= (csg[PLLCSG_INC_STEP] << RCC_PLLNCSGR_INC_STEP_SHIFT) &
1431 RCC_PLLNCSGR_INC_STEP_MASK;
1432
1433 pllxcsg |= (csg[PLLCSG_SSCG_MODE] << RCC_PLLNCSGR_SSCG_MODE_SHIFT) &
1434 RCC_PLLNCSGR_SSCG_MODE_MASK;
1435
Yann Gautiere4a3c352019-02-14 10:53:33 +01001436 mmio_write_32(stm32mp_rcc_base() + pll->pllxcsgr, pllxcsg);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001437}
1438
Yann Gautiere4a3c352019-02-14 10:53:33 +01001439static int stm32mp1_set_clksrc(unsigned int clksrc)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001440{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001441 uintptr_t clksrc_address = stm32mp_rcc_base() + (clksrc >> 4);
Yann Gautier2299d572019-02-14 11:14:39 +01001442 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001443
Yann Gautiere4a3c352019-02-14 10:53:33 +01001444 mmio_clrsetbits_32(clksrc_address, RCC_SELR_SRC_MASK,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001445 clksrc & RCC_SELR_SRC_MASK);
1446
Yann Gautier2299d572019-02-14 11:14:39 +01001447 timeout = timeout_init_us(CLKSRC_TIMEOUT);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001448 while ((mmio_read_32(clksrc_address) & RCC_SELR_SRCRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001449 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001450 ERROR("CLKSRC %x start failed @ 0x%lx: 0x%x\n", clksrc,
1451 clksrc_address, mmio_read_32(clksrc_address));
Yann Gautier9aea69e2018-07-24 17:13:36 +02001452 return -ETIMEDOUT;
1453 }
1454 }
1455
1456 return 0;
1457}
1458
Yann Gautiere4a3c352019-02-14 10:53:33 +01001459static int stm32mp1_set_clkdiv(unsigned int clkdiv, uintptr_t address)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001460{
Yann Gautier2299d572019-02-14 11:14:39 +01001461 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001462
1463 mmio_clrsetbits_32(address, RCC_DIVR_DIV_MASK,
1464 clkdiv & RCC_DIVR_DIV_MASK);
1465
Yann Gautier2299d572019-02-14 11:14:39 +01001466 timeout = timeout_init_us(CLKDIV_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001467 while ((mmio_read_32(address) & RCC_DIVR_DIVRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001468 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001469 ERROR("CLKDIV %x start failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001470 clkdiv, address, mmio_read_32(address));
1471 return -ETIMEDOUT;
1472 }
1473 }
1474
1475 return 0;
1476}
1477
Yann Gautiere4a3c352019-02-14 10:53:33 +01001478static void stm32mp1_mco_csg(uint32_t clksrc, uint32_t clkdiv)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001479{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001480 uintptr_t clksrc_address = stm32mp_rcc_base() + (clksrc >> 4);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001481
1482 /*
1483 * Binding clksrc :
1484 * bit15-4 offset
1485 * bit3: disable
1486 * bit2-0: MCOSEL[2:0]
1487 */
1488 if ((clksrc & 0x8U) != 0U) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001489 mmio_clrbits_32(clksrc_address, RCC_MCOCFG_MCOON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001490 } else {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001491 mmio_clrsetbits_32(clksrc_address,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001492 RCC_MCOCFG_MCOSRC_MASK,
1493 clksrc & RCC_MCOCFG_MCOSRC_MASK);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001494 mmio_clrsetbits_32(clksrc_address,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001495 RCC_MCOCFG_MCODIV_MASK,
1496 clkdiv << RCC_MCOCFG_MCODIV_SHIFT);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001497 mmio_setbits_32(clksrc_address, RCC_MCOCFG_MCOON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001498 }
1499}
1500
Yann Gautiere4a3c352019-02-14 10:53:33 +01001501static void stm32mp1_set_rtcsrc(unsigned int clksrc, bool lse_css)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001502{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001503 uintptr_t address = stm32mp_rcc_base() + RCC_BDCR;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001504
1505 if (((mmio_read_32(address) & RCC_BDCR_RTCCKEN) == 0U) ||
1506 (clksrc != (uint32_t)CLK_RTC_DISABLED)) {
1507 mmio_clrsetbits_32(address,
1508 RCC_BDCR_RTCSRC_MASK,
1509 clksrc << RCC_BDCR_RTCSRC_SHIFT);
1510
1511 mmio_setbits_32(address, RCC_BDCR_RTCCKEN);
1512 }
1513
1514 if (lse_css) {
1515 mmio_setbits_32(address, RCC_BDCR_LSECSSON);
1516 }
1517}
1518
1519#define CNTCVL_OFF 0x008
1520#define CNTCVU_OFF 0x00C
1521
Yann Gautiere4a3c352019-02-14 10:53:33 +01001522static void stm32mp1_stgen_config(void)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001523{
1524 uintptr_t stgen;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001525 uint32_t cntfid0;
1526 unsigned long rate;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001527 unsigned long long counter;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001528
1529 stgen = fdt_get_stgen_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001530 cntfid0 = mmio_read_32(stgen + CNTFID_OFF);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001531 rate = get_clock_rate(stm32mp1_clk_get_parent(STGEN_K));
Yann Gautier9aea69e2018-07-24 17:13:36 +02001532
Yann Gautiere4a3c352019-02-14 10:53:33 +01001533 if (cntfid0 == rate) {
1534 return;
1535 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001536
Yann Gautiere4a3c352019-02-14 10:53:33 +01001537 mmio_clrbits_32(stgen + CNTCR_OFF, CNTCR_EN);
1538 counter = (unsigned long long)mmio_read_32(stgen + CNTCVL_OFF);
1539 counter |= ((unsigned long long)mmio_read_32(stgen + CNTCVU_OFF)) << 32;
1540 counter = (counter * rate / cntfid0);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001541
Yann Gautiere4a3c352019-02-14 10:53:33 +01001542 mmio_write_32(stgen + CNTCVL_OFF, (uint32_t)counter);
1543 mmio_write_32(stgen + CNTCVU_OFF, (uint32_t)(counter >> 32));
1544 mmio_write_32(stgen + CNTFID_OFF, rate);
1545 mmio_setbits_32(stgen + CNTCR_OFF, CNTCR_EN);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001546
Yann Gautiere4a3c352019-02-14 10:53:33 +01001547 write_cntfrq((u_register_t)rate);
1548
1549 /* Need to update timer with new frequency */
1550 generic_delay_timer_init();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001551}
1552
1553void stm32mp1_stgen_increment(unsigned long long offset_in_ms)
1554{
1555 uintptr_t stgen;
1556 unsigned long long cnt;
1557
1558 stgen = fdt_get_stgen_base();
1559
1560 cnt = ((unsigned long long)mmio_read_32(stgen + CNTCVU_OFF) << 32) |
1561 mmio_read_32(stgen + CNTCVL_OFF);
1562
1563 cnt += (offset_in_ms * mmio_read_32(stgen + CNTFID_OFF)) / 1000U;
1564
1565 mmio_clrbits_32(stgen + CNTCR_OFF, CNTCR_EN);
1566 mmio_write_32(stgen + CNTCVL_OFF, (uint32_t)cnt);
1567 mmio_write_32(stgen + CNTCVU_OFF, (uint32_t)(cnt >> 32));
1568 mmio_setbits_32(stgen + CNTCR_OFF, CNTCR_EN);
1569}
1570
Yann Gautiere4a3c352019-02-14 10:53:33 +01001571static void stm32mp1_pkcs_config(uint32_t pkcs)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001572{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001573 uintptr_t address = stm32mp_rcc_base() + ((pkcs >> 4) & 0xFFFU);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001574 uint32_t value = pkcs & 0xFU;
1575 uint32_t mask = 0xFU;
1576
1577 if ((pkcs & BIT(31)) != 0U) {
1578 mask <<= 4;
1579 value <<= 4;
1580 }
1581
1582 mmio_clrsetbits_32(address, mask, value);
1583}
1584
1585int stm32mp1_clk_init(void)
1586{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001587 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001588 unsigned int clksrc[CLKSRC_NB];
1589 unsigned int clkdiv[CLKDIV_NB];
1590 unsigned int pllcfg[_PLL_NB][PLLCFG_NB];
1591 int plloff[_PLL_NB];
1592 int ret, len;
1593 enum stm32mp1_pll_id i;
1594 bool lse_css = false;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001595 bool pll3_preserve = false;
1596 bool pll4_preserve = false;
1597 bool pll4_bootrom = false;
Yann Gautierf9af3bc2018-11-09 15:57:18 +01001598 const fdt32_t *pkcs_cell;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001599
1600 /* Check status field to disable security */
1601 if (!fdt_get_rcc_secure_status()) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001602 mmio_write_32(rcc_base + RCC_TZCR, 0);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001603 }
1604
1605 ret = fdt_rcc_read_uint32_array("st,clksrc", clksrc,
1606 (uint32_t)CLKSRC_NB);
1607 if (ret < 0) {
1608 return -FDT_ERR_NOTFOUND;
1609 }
1610
1611 ret = fdt_rcc_read_uint32_array("st,clkdiv", clkdiv,
1612 (uint32_t)CLKDIV_NB);
1613 if (ret < 0) {
1614 return -FDT_ERR_NOTFOUND;
1615 }
1616
1617 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
1618 char name[12];
1619
Antonio Nino Diaz00086e32018-08-16 16:46:06 +01001620 snprintf(name, sizeof(name), "st,pll@%d", i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001621 plloff[i] = fdt_rcc_subnode_offset(name);
1622
1623 if (!fdt_check_node(plloff[i])) {
1624 continue;
1625 }
1626
1627 ret = fdt_read_uint32_array(plloff[i], "cfg",
1628 pllcfg[i], (int)PLLCFG_NB);
1629 if (ret < 0) {
1630 return -FDT_ERR_NOTFOUND;
1631 }
1632 }
1633
Yann Gautiere4a3c352019-02-14 10:53:33 +01001634 stm32mp1_mco_csg(clksrc[CLKSRC_MCO1], clkdiv[CLKDIV_MCO1]);
1635 stm32mp1_mco_csg(clksrc[CLKSRC_MCO2], clkdiv[CLKDIV_MCO2]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001636
1637 /*
1638 * Switch ON oscillator found in device-tree.
1639 * Note: HSI already ON after BootROM stage.
1640 */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001641 if (stm32mp1_osc[_LSI] != 0U) {
1642 stm32mp1_lsi_set(true);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001643 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001644 if (stm32mp1_osc[_LSE] != 0U) {
1645 bool bypass, digbyp;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001646 uint32_t lsedrv;
1647
1648 bypass = fdt_osc_read_bool(_LSE, "st,bypass");
Yann Gautiere4a3c352019-02-14 10:53:33 +01001649 digbyp = fdt_osc_read_bool(_LSE, "st,digbypass");
Yann Gautier9aea69e2018-07-24 17:13:36 +02001650 lse_css = fdt_osc_read_bool(_LSE, "st,css");
1651 lsedrv = fdt_osc_read_uint32_default(_LSE, "st,drive",
1652 LSEDRV_MEDIUM_HIGH);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001653 stm32mp1_lse_enable(bypass, digbyp, lsedrv);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001654 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001655 if (stm32mp1_osc[_HSE] != 0U) {
1656 bool bypass, digbyp, css;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001657
Yann Gautiere4a3c352019-02-14 10:53:33 +01001658 bypass = fdt_osc_read_bool(_HSE, "st,bypass");
1659 digbyp = fdt_osc_read_bool(_HSE, "st,digbypass");
1660 css = fdt_osc_read_bool(_HSE, "st,css");
1661 stm32mp1_hse_enable(bypass, digbyp, css);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001662 }
1663 /*
1664 * CSI is mandatory for automatic I/O compensation (SYSCFG_CMPCR)
1665 * => switch on CSI even if node is not present in device tree
1666 */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001667 stm32mp1_csi_set(true);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001668
1669 /* Come back to HSI */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001670 ret = stm32mp1_set_clksrc(CLK_MPU_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001671 if (ret != 0) {
1672 return ret;
1673 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001674 ret = stm32mp1_set_clksrc(CLK_AXI_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001675 if (ret != 0) {
1676 return ret;
1677 }
Yann Gautiered342322019-02-15 17:33:27 +01001678 ret = stm32mp1_set_clksrc(CLK_MCU_HSI);
1679 if (ret != 0) {
1680 return ret;
1681 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001682
Yann Gautiere4a3c352019-02-14 10:53:33 +01001683 if ((mmio_read_32(rcc_base + RCC_MP_RSTSCLRR) &
1684 RCC_MP_RSTSCLRR_MPUP0RSTF) != 0) {
1685 pll3_preserve = stm32mp1_check_pll_conf(_PLL3,
1686 clksrc[CLKSRC_PLL3],
1687 pllcfg[_PLL3],
1688 plloff[_PLL3]);
1689 pll4_preserve = stm32mp1_check_pll_conf(_PLL4,
1690 clksrc[CLKSRC_PLL4],
1691 pllcfg[_PLL4],
1692 plloff[_PLL4]);
1693 }
1694
Yann Gautier9aea69e2018-07-24 17:13:36 +02001695 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001696 if (((i == _PLL3) && pll3_preserve) ||
1697 ((i == _PLL4) && pll4_preserve)) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001698 continue;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001699 }
1700
1701 ret = stm32mp1_pll_stop(i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001702 if (ret != 0) {
1703 return ret;
1704 }
1705 }
1706
1707 /* Configure HSIDIV */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001708 if (stm32mp1_osc[_HSI] != 0U) {
1709 ret = stm32mp1_hsidiv(stm32mp1_osc[_HSI]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001710 if (ret != 0) {
1711 return ret;
1712 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001713 stm32mp1_stgen_config();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001714 }
1715
1716 /* Select DIV */
1717 /* No ready bit when MPUSRC != CLK_MPU_PLL1P_DIV, MPUDIV is disabled */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001718 mmio_write_32(rcc_base + RCC_MPCKDIVR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001719 clkdiv[CLKDIV_MPU] & RCC_DIVR_DIV_MASK);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001720 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_AXI], rcc_base + RCC_AXIDIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001721 if (ret != 0) {
1722 return ret;
1723 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001724 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB4], rcc_base + RCC_APB4DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001725 if (ret != 0) {
1726 return ret;
1727 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001728 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB5], rcc_base + RCC_APB5DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001729 if (ret != 0) {
1730 return ret;
1731 }
Yann Gautiered342322019-02-15 17:33:27 +01001732 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_MCU], rcc_base + RCC_MCUDIVR);
1733 if (ret != 0) {
1734 return ret;
1735 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001736 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB1], rcc_base + RCC_APB1DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001737 if (ret != 0) {
1738 return ret;
1739 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001740 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB2], rcc_base + RCC_APB2DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001741 if (ret != 0) {
1742 return ret;
1743 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001744 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB3], rcc_base + RCC_APB3DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001745 if (ret != 0) {
1746 return ret;
1747 }
1748
1749 /* No ready bit for RTC */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001750 mmio_write_32(rcc_base + RCC_RTCDIVR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001751 clkdiv[CLKDIV_RTC] & RCC_DIVR_DIV_MASK);
1752
1753 /* Configure PLLs source */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001754 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_PLL12]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001755 if (ret != 0) {
1756 return ret;
1757 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001758
1759 if (!pll3_preserve) {
1760 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_PLL3]);
1761 if (ret != 0) {
1762 return ret;
1763 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001764 }
1765
Yann Gautiere4a3c352019-02-14 10:53:33 +01001766 if (!pll4_preserve) {
1767 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_PLL4]);
1768 if (ret != 0) {
1769 return ret;
1770 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001771 }
1772
1773 /* Configure and start PLLs */
1774 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
1775 uint32_t fracv;
1776 uint32_t csg[PLLCSG_NB];
1777
Yann Gautiere4a3c352019-02-14 10:53:33 +01001778 if (((i == _PLL3) && pll3_preserve) ||
1779 ((i == _PLL4) && pll4_preserve && !pll4_bootrom)) {
1780 continue;
1781 }
1782
Yann Gautier9aea69e2018-07-24 17:13:36 +02001783 if (!fdt_check_node(plloff[i])) {
1784 continue;
1785 }
1786
Yann Gautiere4a3c352019-02-14 10:53:33 +01001787 if ((i == _PLL4) && pll4_bootrom) {
1788 /* Set output divider if not done by the Bootrom */
1789 stm32mp1_pll_config_output(i, pllcfg[i]);
1790 continue;
1791 }
1792
Yann Gautier9aea69e2018-07-24 17:13:36 +02001793 fracv = fdt_read_uint32_default(plloff[i], "frac", 0);
1794
Yann Gautiere4a3c352019-02-14 10:53:33 +01001795 ret = stm32mp1_pll_config(i, pllcfg[i], fracv);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001796 if (ret != 0) {
1797 return ret;
1798 }
1799 ret = fdt_read_uint32_array(plloff[i], "csg", csg,
1800 (uint32_t)PLLCSG_NB);
1801 if (ret == 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001802 stm32mp1_pll_csg(i, csg);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001803 } else if (ret != -FDT_ERR_NOTFOUND) {
1804 return ret;
1805 }
1806
Yann Gautiere4a3c352019-02-14 10:53:33 +01001807 stm32mp1_pll_start(i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001808 }
1809 /* Wait and start PLLs ouptut when ready */
1810 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
1811 if (!fdt_check_node(plloff[i])) {
1812 continue;
1813 }
1814
Yann Gautiere4a3c352019-02-14 10:53:33 +01001815 ret = stm32mp1_pll_output(i, pllcfg[i][PLLCFG_O]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001816 if (ret != 0) {
1817 return ret;
1818 }
1819 }
1820 /* Wait LSE ready before to use it */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001821 if (stm32mp1_osc[_LSE] != 0U) {
1822 stm32mp1_lse_wait();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001823 }
1824
1825 /* Configure with expected clock source */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001826 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_MPU]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001827 if (ret != 0) {
1828 return ret;
1829 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001830 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_AXI]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001831 if (ret != 0) {
1832 return ret;
1833 }
Yann Gautiered342322019-02-15 17:33:27 +01001834 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_MCU]);
1835 if (ret != 0) {
1836 return ret;
1837 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001838 stm32mp1_set_rtcsrc(clksrc[CLKSRC_RTC], lse_css);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001839
1840 /* Configure PKCK */
1841 pkcs_cell = fdt_rcc_read_prop("st,pkcs", &len);
1842 if (pkcs_cell != NULL) {
1843 bool ckper_disabled = false;
1844 uint32_t j;
1845
Yann Gautier9aea69e2018-07-24 17:13:36 +02001846 for (j = 0; j < ((uint32_t)len / sizeof(uint32_t)); j++) {
Yann Gautierf9af3bc2018-11-09 15:57:18 +01001847 uint32_t pkcs = fdt32_to_cpu(pkcs_cell[j]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001848
1849 if (pkcs == (uint32_t)CLK_CKPER_DISABLED) {
1850 ckper_disabled = true;
1851 continue;
1852 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001853 stm32mp1_pkcs_config(pkcs);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001854 }
1855
1856 /*
1857 * CKPER is source for some peripheral clocks
1858 * (FMC-NAND / QPSI-NOR) and switching source is allowed
1859 * only if previous clock is still ON
1860 * => deactivated CKPER only after switching clock
1861 */
1862 if (ckper_disabled) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001863 stm32mp1_pkcs_config(CLK_CKPER_DISABLED);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001864 }
1865 }
1866
1867 /* Switch OFF HSI if not found in device-tree */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001868 if (stm32mp1_osc[_HSI] == 0U) {
1869 stm32mp1_hsi_set(false);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001870 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001871 stm32mp1_stgen_config();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001872
1873 /* Software Self-Refresh mode (SSR) during DDR initilialization */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001874 mmio_clrsetbits_32(rcc_base + RCC_DDRITFCR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001875 RCC_DDRITFCR_DDRCKMOD_MASK,
1876 RCC_DDRITFCR_DDRCKMOD_SSR <<
1877 RCC_DDRITFCR_DDRCKMOD_SHIFT);
1878
1879 return 0;
1880}
1881
1882static void stm32mp1_osc_clk_init(const char *name,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001883 enum stm32mp_osc_id index)
1884{
1885 uint32_t frequency;
1886
Yann Gautiere4a3c352019-02-14 10:53:33 +01001887 if (fdt_osc_read_freq(name, &frequency) == 0) {
1888 stm32mp1_osc[index] = frequency;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001889 }
1890}
1891
1892static void stm32mp1_osc_init(void)
1893{
Yann Gautier9aea69e2018-07-24 17:13:36 +02001894 enum stm32mp_osc_id i;
1895
1896 for (i = (enum stm32mp_osc_id)0 ; i < NB_OSC; i++) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001897 stm32mp1_osc_clk_init(stm32mp_osc_node_label[i], i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001898 }
1899}
1900
1901int stm32mp1_clk_probe(void)
1902{
Yann Gautier9aea69e2018-07-24 17:13:36 +02001903 stm32mp1_osc_init();
1904
1905 return 0;
1906}