blob: 76e6e6fdcf52520001cf1a45839f6a120d47a852 [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>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000023#include <drivers/st/stm32mp1_rcc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000024#include <dt-bindings/clock/stm32mp1-clksrc.h>
25#include <lib/mmio.h>
Yann Gautiere4a3c352019-02-14 10:53:33 +010026#include <lib/spinlock.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000027#include <lib/utils_def.h>
28#include <plat/common/platform.h>
29
Yann Gautier2299d572019-02-14 11:14:39 +010030#define MAX_HSI_HZ 64000000
Yann Gautiere4a3c352019-02-14 10:53:33 +010031#define USB_PHY_48_MHZ 48000000
Yann Gautier9aea69e2018-07-24 17:13:36 +020032
Yann Gautier2299d572019-02-14 11:14:39 +010033#define TIMEOUT_US_200MS U(200000)
34#define TIMEOUT_US_1S U(1000000)
Yann Gautier9aea69e2018-07-24 17:13:36 +020035
Yann Gautier2299d572019-02-14 11:14:39 +010036#define PLLRDY_TIMEOUT TIMEOUT_US_200MS
37#define CLKSRC_TIMEOUT TIMEOUT_US_200MS
38#define CLKDIV_TIMEOUT TIMEOUT_US_200MS
39#define HSIDIV_TIMEOUT TIMEOUT_US_200MS
40#define OSCRDY_TIMEOUT TIMEOUT_US_1S
Yann Gautier9aea69e2018-07-24 17:13:36 +020041
Yann Gautier5f2e8742019-05-17 15:57:56 +020042const char *stm32mp_osc_node_label[NB_OSC] = {
43 [_LSI] = "clk-lsi",
44 [_LSE] = "clk-lse",
45 [_HSI] = "clk-hsi",
46 [_HSE] = "clk-hse",
47 [_CSI] = "clk-csi",
48 [_I2S_CKIN] = "i2s_ckin",
49};
50
Yann Gautier9aea69e2018-07-24 17:13:36 +020051enum stm32mp1_parent_id {
52/* Oscillators are defined in enum stm32mp_osc_id */
53
54/* Other parent source */
55 _HSI_KER = NB_OSC,
56 _HSE_KER,
57 _HSE_KER_DIV2,
58 _CSI_KER,
59 _PLL1_P,
60 _PLL1_Q,
61 _PLL1_R,
62 _PLL2_P,
63 _PLL2_Q,
64 _PLL2_R,
65 _PLL3_P,
66 _PLL3_Q,
67 _PLL3_R,
68 _PLL4_P,
69 _PLL4_Q,
70 _PLL4_R,
71 _ACLK,
72 _PCLK1,
73 _PCLK2,
74 _PCLK3,
75 _PCLK4,
76 _PCLK5,
77 _HCLK6,
78 _HCLK2,
79 _CK_PER,
80 _CK_MPU,
Yann Gautiered342322019-02-15 17:33:27 +010081 _CK_MCU,
Yann Gautiere4a3c352019-02-14 10:53:33 +010082 _USB_PHY_48,
Yann Gautier9aea69e2018-07-24 17:13:36 +020083 _PARENT_NB,
84 _UNKNOWN_ID = 0xff,
85};
86
Yann Gautiere4a3c352019-02-14 10:53:33 +010087/* Lists only the parent clock we are interested in */
Yann Gautier9aea69e2018-07-24 17:13:36 +020088enum stm32mp1_parent_sel {
Yann Gautiere4a3c352019-02-14 10:53:33 +010089 _I2C12_SEL,
90 _I2C35_SEL,
91 _STGEN_SEL,
Yann Gautier9aea69e2018-07-24 17:13:36 +020092 _I2C46_SEL,
Yann Gautiere4a3c352019-02-14 10:53:33 +010093 _SPI6_SEL,
Yann Gautier9d8bbcd2019-05-07 18:49:33 +020094 _UART1_SEL,
Yann Gautiere4a3c352019-02-14 10:53:33 +010095 _RNG1_SEL,
Yann Gautier9aea69e2018-07-24 17:13:36 +020096 _UART6_SEL,
97 _UART24_SEL,
98 _UART35_SEL,
99 _UART78_SEL,
100 _SDMMC12_SEL,
101 _SDMMC3_SEL,
102 _QSPI_SEL,
103 _FMC_SEL,
Yann Gautier9d8bbcd2019-05-07 18:49:33 +0200104 _AXIS_SEL,
105 _MCUS_SEL,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200106 _USBPHY_SEL,
107 _USBO_SEL,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200108 _PARENT_SEL_NB,
109 _UNKNOWN_SEL = 0xff,
110};
111
112enum stm32mp1_pll_id {
113 _PLL1,
114 _PLL2,
115 _PLL3,
116 _PLL4,
117 _PLL_NB
118};
119
120enum stm32mp1_div_id {
121 _DIV_P,
122 _DIV_Q,
123 _DIV_R,
124 _DIV_NB,
125};
126
127enum stm32mp1_clksrc_id {
128 CLKSRC_MPU,
129 CLKSRC_AXI,
Yann Gautiered342322019-02-15 17:33:27 +0100130 CLKSRC_MCU,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200131 CLKSRC_PLL12,
132 CLKSRC_PLL3,
133 CLKSRC_PLL4,
134 CLKSRC_RTC,
135 CLKSRC_MCO1,
136 CLKSRC_MCO2,
137 CLKSRC_NB
138};
139
140enum stm32mp1_clkdiv_id {
141 CLKDIV_MPU,
142 CLKDIV_AXI,
Yann Gautiered342322019-02-15 17:33:27 +0100143 CLKDIV_MCU,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200144 CLKDIV_APB1,
145 CLKDIV_APB2,
146 CLKDIV_APB3,
147 CLKDIV_APB4,
148 CLKDIV_APB5,
149 CLKDIV_RTC,
150 CLKDIV_MCO1,
151 CLKDIV_MCO2,
152 CLKDIV_NB
153};
154
155enum stm32mp1_pllcfg {
156 PLLCFG_M,
157 PLLCFG_N,
158 PLLCFG_P,
159 PLLCFG_Q,
160 PLLCFG_R,
161 PLLCFG_O,
162 PLLCFG_NB
163};
164
165enum stm32mp1_pllcsg {
166 PLLCSG_MOD_PER,
167 PLLCSG_INC_STEP,
168 PLLCSG_SSCG_MODE,
169 PLLCSG_NB
170};
171
172enum stm32mp1_plltype {
173 PLL_800,
174 PLL_1600,
175 PLL_TYPE_NB
176};
177
178struct stm32mp1_pll {
179 uint8_t refclk_min;
180 uint8_t refclk_max;
181 uint8_t divn_max;
182};
183
184struct stm32mp1_clk_gate {
185 uint16_t offset;
186 uint8_t bit;
187 uint8_t index;
188 uint8_t set_clr;
Yann Gautiere4a3c352019-02-14 10:53:33 +0100189 uint8_t sel; /* Relates to enum stm32mp1_parent_sel */
190 uint8_t fixed; /* Relates to enum stm32mp1_parent_id */
Yann Gautier9aea69e2018-07-24 17:13:36 +0200191};
192
193struct stm32mp1_clk_sel {
194 uint16_t offset;
195 uint8_t src;
196 uint8_t msk;
197 uint8_t nb_parent;
198 const uint8_t *parent;
199};
200
201#define REFCLK_SIZE 4
202struct stm32mp1_clk_pll {
203 enum stm32mp1_plltype plltype;
204 uint16_t rckxselr;
205 uint16_t pllxcfgr1;
206 uint16_t pllxcfgr2;
207 uint16_t pllxfracr;
208 uint16_t pllxcr;
209 uint16_t pllxcsgr;
210 enum stm32mp_osc_id refclk[REFCLK_SIZE];
211};
212
Yann Gautiere4a3c352019-02-14 10:53:33 +0100213/* Clocks with selectable source and non set/clr register access */
214#define _CLK_SELEC(off, b, idx, s) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200215 { \
216 .offset = (off), \
217 .bit = (b), \
218 .index = (idx), \
219 .set_clr = 0, \
220 .sel = (s), \
221 .fixed = _UNKNOWN_ID, \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200222 }
223
Yann Gautiere4a3c352019-02-14 10:53:33 +0100224/* Clocks with fixed source and non set/clr register access */
225#define _CLK_FIXED(off, b, idx, f) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200226 { \
227 .offset = (off), \
228 .bit = (b), \
229 .index = (idx), \
230 .set_clr = 0, \
231 .sel = _UNKNOWN_SEL, \
232 .fixed = (f), \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200233 }
234
Yann Gautiere4a3c352019-02-14 10:53:33 +0100235/* Clocks with selectable source and set/clr register access */
236#define _CLK_SC_SELEC(off, b, idx, s) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200237 { \
238 .offset = (off), \
239 .bit = (b), \
240 .index = (idx), \
241 .set_clr = 1, \
242 .sel = (s), \
243 .fixed = _UNKNOWN_ID, \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200244 }
245
Yann Gautiere4a3c352019-02-14 10:53:33 +0100246/* Clocks with fixed source and set/clr register access */
247#define _CLK_SC_FIXED(off, b, idx, f) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200248 { \
249 .offset = (off), \
250 .bit = (b), \
251 .index = (idx), \
252 .set_clr = 1, \
253 .sel = _UNKNOWN_SEL, \
254 .fixed = (f), \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200255 }
256
Yann Gautier9d8bbcd2019-05-07 18:49:33 +0200257#define _CLK_PARENT_SEL(_label, _rcc_selr, _parents) \
258 [_ ## _label ## _SEL] = { \
259 .offset = _rcc_selr, \
260 .src = _rcc_selr ## _ ## _label ## SRC_SHIFT, \
261 .msk = _rcc_selr ## _ ## _label ## SRC_MASK, \
262 .parent = (_parents), \
263 .nb_parent = ARRAY_SIZE(_parents) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200264 }
265
Yann Gautiere4a3c352019-02-14 10:53:33 +0100266#define _CLK_PLL(idx, type, off1, off2, off3, \
267 off4, off5, off6, \
268 p1, p2, p3, p4) \
Yann Gautier9aea69e2018-07-24 17:13:36 +0200269 [(idx)] = { \
270 .plltype = (type), \
271 .rckxselr = (off1), \
272 .pllxcfgr1 = (off2), \
273 .pllxcfgr2 = (off3), \
274 .pllxfracr = (off4), \
275 .pllxcr = (off5), \
276 .pllxcsgr = (off6), \
277 .refclk[0] = (p1), \
278 .refclk[1] = (p2), \
279 .refclk[2] = (p3), \
280 .refclk[3] = (p4), \
281 }
282
283static const uint8_t stm32mp1_clks[][2] = {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100284 { CK_PER, _CK_PER },
285 { CK_MPU, _CK_MPU },
286 { CK_AXI, _ACLK },
Yann Gautiered342322019-02-15 17:33:27 +0100287 { CK_MCU, _CK_MCU },
Yann Gautiere4a3c352019-02-14 10:53:33 +0100288 { CK_HSE, _HSE },
289 { CK_CSI, _CSI },
290 { CK_LSI, _LSI },
291 { CK_LSE, _LSE },
292 { CK_HSI, _HSI },
293 { CK_HSE_DIV2, _HSE_KER_DIV2 },
Yann Gautier9aea69e2018-07-24 17:13:36 +0200294};
295
Yann Gautiere4a3c352019-02-14 10:53:33 +0100296#define NB_GATES ARRAY_SIZE(stm32mp1_clk_gate)
297
Yann Gautier9aea69e2018-07-24 17:13:36 +0200298static const struct stm32mp1_clk_gate stm32mp1_clk_gate[] = {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100299 _CLK_FIXED(RCC_DDRITFCR, 0, DDRC1, _ACLK),
300 _CLK_FIXED(RCC_DDRITFCR, 1, DDRC1LP, _ACLK),
301 _CLK_FIXED(RCC_DDRITFCR, 2, DDRC2, _ACLK),
302 _CLK_FIXED(RCC_DDRITFCR, 3, DDRC2LP, _ACLK),
303 _CLK_FIXED(RCC_DDRITFCR, 4, DDRPHYC, _PLL2_R),
304 _CLK_FIXED(RCC_DDRITFCR, 5, DDRPHYCLP, _PLL2_R),
305 _CLK_FIXED(RCC_DDRITFCR, 6, DDRCAPB, _PCLK4),
306 _CLK_FIXED(RCC_DDRITFCR, 7, DDRCAPBLP, _PCLK4),
307 _CLK_FIXED(RCC_DDRITFCR, 8, AXIDCG, _ACLK),
308 _CLK_FIXED(RCC_DDRITFCR, 9, DDRPHYCAPB, _PCLK4),
309 _CLK_FIXED(RCC_DDRITFCR, 10, DDRPHYCAPBLP, _PCLK4),
310
311 _CLK_SC_FIXED(RCC_MP_APB1ENSETR, 6, TIM12_K, _PCLK1),
312 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 14, USART2_K, _UART24_SEL),
313 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 15, USART3_K, _UART35_SEL),
314 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 16, UART4_K, _UART24_SEL),
315 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 17, UART5_K, _UART35_SEL),
316 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 18, UART7_K, _UART78_SEL),
317 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 19, UART8_K, _UART78_SEL),
318 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 21, I2C1_K, _I2C12_SEL),
319 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 22, I2C2_K, _I2C12_SEL),
320 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 23, I2C3_K, _I2C35_SEL),
321 _CLK_SC_SELEC(RCC_MP_APB1ENSETR, 24, I2C5_K, _I2C35_SEL),
322
323 _CLK_SC_FIXED(RCC_MP_APB2ENSETR, 2, TIM15_K, _PCLK2),
324 _CLK_SC_SELEC(RCC_MP_APB2ENSETR, 13, USART6_K, _UART6_SEL),
325
Yann Gautier3edc7c32019-05-20 19:17:08 +0200326 _CLK_SC_FIXED(RCC_MP_APB3ENSETR, 11, SYSCFG, _UNKNOWN_ID),
327
Yann Gautiere4a3c352019-02-14 10:53:33 +0100328 _CLK_SC_SELEC(RCC_MP_APB4ENSETR, 8, DDRPERFM, _UNKNOWN_SEL),
329 _CLK_SC_SELEC(RCC_MP_APB4ENSETR, 15, IWDG2, _UNKNOWN_SEL),
330 _CLK_SC_SELEC(RCC_MP_APB4ENSETR, 16, USBPHY_K, _USBPHY_SEL),
331
332 _CLK_SC_SELEC(RCC_MP_APB5ENSETR, 0, SPI6_K, _SPI6_SEL),
333 _CLK_SC_SELEC(RCC_MP_APB5ENSETR, 2, I2C4_K, _I2C46_SEL),
334 _CLK_SC_SELEC(RCC_MP_APB5ENSETR, 3, I2C6_K, _I2C46_SEL),
Yann Gautier9d8bbcd2019-05-07 18:49:33 +0200335 _CLK_SC_SELEC(RCC_MP_APB5ENSETR, 4, USART1_K, _UART1_SEL),
Yann Gautiere4a3c352019-02-14 10:53:33 +0100336 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 8, RTCAPB, _PCLK5),
337 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 11, TZC1, _PCLK5),
338 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 12, TZC2, _PCLK5),
339 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 13, TZPC, _PCLK5),
340 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 15, IWDG1, _PCLK5),
341 _CLK_SC_FIXED(RCC_MP_APB5ENSETR, 16, BSEC, _PCLK5),
342 _CLK_SC_SELEC(RCC_MP_APB5ENSETR, 20, STGEN_K, _STGEN_SEL),
343
344 _CLK_SC_SELEC(RCC_MP_AHB2ENSETR, 8, USBO_K, _USBO_SEL),
345 _CLK_SC_SELEC(RCC_MP_AHB2ENSETR, 16, SDMMC3_K, _SDMMC3_SEL),
346
347 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 0, GPIOA, _UNKNOWN_SEL),
348 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 1, GPIOB, _UNKNOWN_SEL),
349 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 2, GPIOC, _UNKNOWN_SEL),
350 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 3, GPIOD, _UNKNOWN_SEL),
351 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 4, GPIOE, _UNKNOWN_SEL),
352 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 5, GPIOF, _UNKNOWN_SEL),
353 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 6, GPIOG, _UNKNOWN_SEL),
354 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 7, GPIOH, _UNKNOWN_SEL),
355 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 8, GPIOI, _UNKNOWN_SEL),
356 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 9, GPIOJ, _UNKNOWN_SEL),
357 _CLK_SC_SELEC(RCC_MP_AHB4ENSETR, 10, GPIOK, _UNKNOWN_SEL),
358
359 _CLK_SC_FIXED(RCC_MP_AHB5ENSETR, 0, GPIOZ, _PCLK5),
360 _CLK_SC_FIXED(RCC_MP_AHB5ENSETR, 4, CRYP1, _PCLK5),
361 _CLK_SC_FIXED(RCC_MP_AHB5ENSETR, 5, HASH1, _PCLK5),
362 _CLK_SC_SELEC(RCC_MP_AHB5ENSETR, 6, RNG1_K, _RNG1_SEL),
363 _CLK_SC_FIXED(RCC_MP_AHB5ENSETR, 8, BKPSRAM, _PCLK5),
364
365 _CLK_SC_SELEC(RCC_MP_AHB6ENSETR, 12, FMC_K, _FMC_SEL),
366 _CLK_SC_SELEC(RCC_MP_AHB6ENSETR, 14, QSPI_K, _QSPI_SEL),
367 _CLK_SC_SELEC(RCC_MP_AHB6ENSETR, 16, SDMMC1_K, _SDMMC12_SEL),
368 _CLK_SC_SELEC(RCC_MP_AHB6ENSETR, 17, SDMMC2_K, _SDMMC12_SEL),
369 _CLK_SC_SELEC(RCC_MP_AHB6ENSETR, 24, USBH, _UNKNOWN_SEL),
370
371 _CLK_SELEC(RCC_DBGCFGR, 8, CK_DBG, _UNKNOWN_SEL),
372};
373
374static const uint8_t i2c12_parents[] = {
375 _PCLK1, _PLL4_R, _HSI_KER, _CSI_KER
376};
377
378static const uint8_t i2c35_parents[] = {
379 _PCLK1, _PLL4_R, _HSI_KER, _CSI_KER
380};
381
382static const uint8_t stgen_parents[] = {
383 _HSI_KER, _HSE_KER
384};
385
386static const uint8_t i2c46_parents[] = {
387 _PCLK5, _PLL3_Q, _HSI_KER, _CSI_KER
388};
389
390static const uint8_t spi6_parents[] = {
391 _PCLK5, _PLL4_Q, _HSI_KER, _CSI_KER, _HSE_KER, _PLL3_Q
392};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200393
Yann Gautiere4a3c352019-02-14 10:53:33 +0100394static const uint8_t usart1_parents[] = {
395 _PCLK5, _PLL3_Q, _HSI_KER, _CSI_KER, _PLL4_Q, _HSE_KER
396};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200397
Yann Gautiere4a3c352019-02-14 10:53:33 +0100398static const uint8_t rng1_parents[] = {
399 _CSI, _PLL4_R, _LSE, _LSI
400};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200401
Yann Gautiere4a3c352019-02-14 10:53:33 +0100402static const uint8_t uart6_parents[] = {
403 _PCLK2, _PLL4_Q, _HSI_KER, _CSI_KER, _HSE_KER
404};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200405
Yann Gautiere4a3c352019-02-14 10:53:33 +0100406static const uint8_t uart234578_parents[] = {
407 _PCLK1, _PLL4_Q, _HSI_KER, _CSI_KER, _HSE_KER
408};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200409
Yann Gautiere4a3c352019-02-14 10:53:33 +0100410static const uint8_t sdmmc12_parents[] = {
411 _HCLK6, _PLL3_R, _PLL4_P, _HSI_KER
412};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200413
Yann Gautiere4a3c352019-02-14 10:53:33 +0100414static const uint8_t sdmmc3_parents[] = {
415 _HCLK2, _PLL3_R, _PLL4_P, _HSI_KER
416};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200417
Yann Gautiere4a3c352019-02-14 10:53:33 +0100418static const uint8_t qspi_parents[] = {
419 _ACLK, _PLL3_R, _PLL4_P, _CK_PER
420};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200421
Yann Gautiere4a3c352019-02-14 10:53:33 +0100422static const uint8_t fmc_parents[] = {
423 _ACLK, _PLL3_R, _PLL4_P, _CK_PER
424};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200425
Yann Gautiere4a3c352019-02-14 10:53:33 +0100426static const uint8_t ass_parents[] = {
427 _HSI, _HSE, _PLL2
Yann Gautier9aea69e2018-07-24 17:13:36 +0200428};
429
Yann Gautiered342322019-02-15 17:33:27 +0100430static const uint8_t mss_parents[] = {
431 _HSI, _HSE, _CSI, _PLL3
432};
433
Yann Gautiere4a3c352019-02-14 10:53:33 +0100434static const uint8_t usbphy_parents[] = {
435 _HSE_KER, _PLL4_R, _HSE_KER_DIV2
436};
437
438static const uint8_t usbo_parents[] = {
439 _PLL4_R, _USB_PHY_48
440};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200441
442static const struct stm32mp1_clk_sel stm32mp1_clk_sel[_PARENT_SEL_NB] = {
Yann Gautier9d8bbcd2019-05-07 18:49:33 +0200443 _CLK_PARENT_SEL(I2C12, RCC_I2C12CKSELR, i2c12_parents),
444 _CLK_PARENT_SEL(I2C35, RCC_I2C35CKSELR, i2c35_parents),
445 _CLK_PARENT_SEL(STGEN, RCC_STGENCKSELR, stgen_parents),
446 _CLK_PARENT_SEL(I2C46, RCC_I2C46CKSELR, i2c46_parents),
447 _CLK_PARENT_SEL(SPI6, RCC_SPI6CKSELR, spi6_parents),
448 _CLK_PARENT_SEL(UART1, RCC_UART1CKSELR, usart1_parents),
449 _CLK_PARENT_SEL(RNG1, RCC_RNG1CKSELR, rng1_parents),
450 _CLK_PARENT_SEL(UART6, RCC_UART6CKSELR, uart6_parents),
451 _CLK_PARENT_SEL(UART24, RCC_UART24CKSELR, uart234578_parents),
452 _CLK_PARENT_SEL(UART35, RCC_UART35CKSELR, uart234578_parents),
453 _CLK_PARENT_SEL(UART78, RCC_UART78CKSELR, uart234578_parents),
454 _CLK_PARENT_SEL(SDMMC12, RCC_SDMMC12CKSELR, sdmmc12_parents),
455 _CLK_PARENT_SEL(SDMMC3, RCC_SDMMC3CKSELR, sdmmc3_parents),
456 _CLK_PARENT_SEL(QSPI, RCC_QSPICKSELR, qspi_parents),
457 _CLK_PARENT_SEL(FMC, RCC_FMCCKSELR, fmc_parents),
458 _CLK_PARENT_SEL(AXIS, RCC_ASSCKSELR, ass_parents),
459 _CLK_PARENT_SEL(MCUS, RCC_MSSCKSELR, mss_parents),
460 _CLK_PARENT_SEL(USBPHY, RCC_USBCKSELR, usbphy_parents),
461 _CLK_PARENT_SEL(USBO, RCC_USBCKSELR, usbo_parents),
Yann Gautier9aea69e2018-07-24 17:13:36 +0200462};
463
464/* Define characteristic of PLL according type */
465#define DIVN_MIN 24
466static const struct stm32mp1_pll stm32mp1_pll[PLL_TYPE_NB] = {
467 [PLL_800] = {
468 .refclk_min = 4,
469 .refclk_max = 16,
470 .divn_max = 99,
471 },
472 [PLL_1600] = {
473 .refclk_min = 8,
474 .refclk_max = 16,
475 .divn_max = 199,
476 },
477};
478
479/* PLLNCFGR2 register divider by output */
480static const uint8_t pllncfgr2[_DIV_NB] = {
481 [_DIV_P] = RCC_PLLNCFGR2_DIVP_SHIFT,
482 [_DIV_Q] = RCC_PLLNCFGR2_DIVQ_SHIFT,
Yann Gautiere4a3c352019-02-14 10:53:33 +0100483 [_DIV_R] = RCC_PLLNCFGR2_DIVR_SHIFT,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200484};
485
486static const struct stm32mp1_clk_pll stm32mp1_clk_pll[_PLL_NB] = {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100487 _CLK_PLL(_PLL1, PLL_1600,
488 RCC_RCK12SELR, RCC_PLL1CFGR1, RCC_PLL1CFGR2,
489 RCC_PLL1FRACR, RCC_PLL1CR, RCC_PLL1CSGR,
490 _HSI, _HSE, _UNKNOWN_OSC_ID, _UNKNOWN_OSC_ID),
491 _CLK_PLL(_PLL2, PLL_1600,
492 RCC_RCK12SELR, RCC_PLL2CFGR1, RCC_PLL2CFGR2,
493 RCC_PLL2FRACR, RCC_PLL2CR, RCC_PLL2CSGR,
494 _HSI, _HSE, _UNKNOWN_OSC_ID, _UNKNOWN_OSC_ID),
495 _CLK_PLL(_PLL3, PLL_800,
496 RCC_RCK3SELR, RCC_PLL3CFGR1, RCC_PLL3CFGR2,
497 RCC_PLL3FRACR, RCC_PLL3CR, RCC_PLL3CSGR,
498 _HSI, _HSE, _CSI, _UNKNOWN_OSC_ID),
499 _CLK_PLL(_PLL4, PLL_800,
500 RCC_RCK4SELR, RCC_PLL4CFGR1, RCC_PLL4CFGR2,
501 RCC_PLL4FRACR, RCC_PLL4CR, RCC_PLL4CSGR,
502 _HSI, _HSE, _CSI, _I2S_CKIN),
Yann Gautier9aea69e2018-07-24 17:13:36 +0200503};
504
505/* Prescaler table lookups for clock computation */
Yann Gautiered342322019-02-15 17:33:27 +0100506/* div = /1 /2 /4 /8 / 16 /64 /128 /512 */
507static const uint8_t stm32mp1_mcu_div[16] = {
508 0, 1, 2, 3, 4, 6, 7, 8, 9, 9, 9, 9, 9, 9, 9, 9
509};
Yann Gautier9aea69e2018-07-24 17:13:36 +0200510
511/* div = /1 /2 /4 /8 /16 : same divider for PMU and APBX */
512#define stm32mp1_mpu_div stm32mp1_mpu_apbx_div
513#define stm32mp1_apbx_div stm32mp1_mpu_apbx_div
514static const uint8_t stm32mp1_mpu_apbx_div[8] = {
515 0, 1, 2, 3, 4, 4, 4, 4
516};
517
518/* div = /1 /2 /3 /4 */
519static const uint8_t stm32mp1_axi_div[8] = {
520 1, 2, 3, 4, 4, 4, 4, 4
521};
522
Yann Gautiere4a3c352019-02-14 10:53:33 +0100523/* RCC clock device driver private */
524static unsigned long stm32mp1_osc[NB_OSC];
525static struct spinlock reg_lock;
526static unsigned int gate_refcounts[NB_GATES];
527static struct spinlock refcount_lock;
528
529static const struct stm32mp1_clk_gate *gate_ref(unsigned int idx)
530{
531 return &stm32mp1_clk_gate[idx];
532}
Yann Gautier9aea69e2018-07-24 17:13:36 +0200533
Yann Gautiere4a3c352019-02-14 10:53:33 +0100534static const struct stm32mp1_clk_sel *clk_sel_ref(unsigned int idx)
535{
536 return &stm32mp1_clk_sel[idx];
537}
Yann Gautier9aea69e2018-07-24 17:13:36 +0200538
Yann Gautiere4a3c352019-02-14 10:53:33 +0100539static const struct stm32mp1_clk_pll *pll_ref(unsigned int idx)
540{
541 return &stm32mp1_clk_pll[idx];
542}
543
544static int stm32mp1_lock_available(void)
545{
546 /* The spinlocks are used only when MMU is enabled */
547 return (read_sctlr() & SCTLR_M_BIT) && (read_sctlr() & SCTLR_C_BIT);
548}
549
550static void stm32mp1_clk_lock(struct spinlock *lock)
551{
552 if (stm32mp1_lock_available() == 0U) {
553 return;
554 }
555
556 /* Assume interrupts are masked */
557 spin_lock(lock);
558}
559
560static void stm32mp1_clk_unlock(struct spinlock *lock)
561{
562 if (stm32mp1_lock_available() == 0U) {
563 return;
564 }
565
566 spin_unlock(lock);
567}
568
569bool stm32mp1_rcc_is_secure(void)
570{
571 uintptr_t rcc_base = stm32mp_rcc_base();
572
573 return (mmio_read_32(rcc_base + RCC_TZCR) & RCC_TZCR_TZEN) != 0;
574}
575
Yann Gautiered342322019-02-15 17:33:27 +0100576bool stm32mp1_rcc_is_mckprot(void)
577{
578 uintptr_t rcc_base = stm32mp_rcc_base();
579
580 return (mmio_read_32(rcc_base + RCC_TZCR) & RCC_TZCR_MCKPROT) != 0;
581}
582
Yann Gautiere4a3c352019-02-14 10:53:33 +0100583void stm32mp1_clk_rcc_regs_lock(void)
584{
585 stm32mp1_clk_lock(&reg_lock);
586}
587
588void stm32mp1_clk_rcc_regs_unlock(void)
589{
590 stm32mp1_clk_unlock(&reg_lock);
591}
592
593static unsigned long stm32mp1_clk_get_fixed(enum stm32mp_osc_id idx)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200594{
595 if (idx >= NB_OSC) {
596 return 0;
597 }
598
Yann Gautiere4a3c352019-02-14 10:53:33 +0100599 return stm32mp1_osc[idx];
Yann Gautier9aea69e2018-07-24 17:13:36 +0200600}
601
Yann Gautiere4a3c352019-02-14 10:53:33 +0100602static int stm32mp1_clk_get_gated_id(unsigned long id)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200603{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100604 unsigned int i;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200605
Yann Gautiere4a3c352019-02-14 10:53:33 +0100606 for (i = 0U; i < NB_GATES; i++) {
607 if (gate_ref(i)->index == id) {
Yann Gautier9aea69e2018-07-24 17:13:36 +0200608 return i;
609 }
610 }
611
612 ERROR("%s: clk id %d not found\n", __func__, (uint32_t)id);
613
614 return -EINVAL;
615}
616
Yann Gautiere4a3c352019-02-14 10:53:33 +0100617static enum stm32mp1_parent_sel stm32mp1_clk_get_sel(int i)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200618{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100619 return (enum stm32mp1_parent_sel)(gate_ref(i)->sel);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200620}
621
Yann Gautiere4a3c352019-02-14 10:53:33 +0100622static enum stm32mp1_parent_id stm32mp1_clk_get_fixed_parent(int i)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200623{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100624 return (enum stm32mp1_parent_id)(gate_ref(i)->fixed);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200625}
626
Yann Gautiere4a3c352019-02-14 10:53:33 +0100627static int stm32mp1_clk_get_parent(unsigned long id)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200628{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100629 const struct stm32mp1_clk_sel *sel;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200630 uint32_t j, p_sel;
631 int i;
632 enum stm32mp1_parent_id p;
633 enum stm32mp1_parent_sel s;
Yann Gautiere4a3c352019-02-14 10:53:33 +0100634 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200635
Yann Gautiere4a3c352019-02-14 10:53:33 +0100636 for (j = 0U; j < ARRAY_SIZE(stm32mp1_clks); j++) {
Yann Gautier9aea69e2018-07-24 17:13:36 +0200637 if (stm32mp1_clks[j][0] == id) {
638 return (int)stm32mp1_clks[j][1];
639 }
640 }
641
Yann Gautiere4a3c352019-02-14 10:53:33 +0100642 i = stm32mp1_clk_get_gated_id(id);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200643 if (i < 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100644 panic();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200645 }
646
Yann Gautiere4a3c352019-02-14 10:53:33 +0100647 p = stm32mp1_clk_get_fixed_parent(i);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200648 if (p < _PARENT_NB) {
649 return (int)p;
650 }
651
Yann Gautiere4a3c352019-02-14 10:53:33 +0100652 s = stm32mp1_clk_get_sel(i);
653 if (s == _UNKNOWN_SEL) {
Yann Gautier9aea69e2018-07-24 17:13:36 +0200654 return -EINVAL;
655 }
Yann Gautiere4a3c352019-02-14 10:53:33 +0100656 if (s >= _PARENT_SEL_NB) {
657 panic();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200658 }
659
Yann Gautiere4a3c352019-02-14 10:53:33 +0100660 sel = clk_sel_ref(s);
Yann Gautier9d8bbcd2019-05-07 18:49:33 +0200661 p_sel = (mmio_read_32(rcc_base + sel->offset) & sel->msk) >> sel->src;
Yann Gautiere4a3c352019-02-14 10:53:33 +0100662 if (p_sel < sel->nb_parent) {
663 return (int)sel->parent[p_sel];
664 }
Yann Gautier9aea69e2018-07-24 17:13:36 +0200665
666 return -EINVAL;
667}
668
Yann Gautiere4a3c352019-02-14 10:53:33 +0100669static unsigned long stm32mp1_pll_get_fref(const struct stm32mp1_clk_pll *pll)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200670{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100671 uint32_t selr = mmio_read_32(stm32mp_rcc_base() + pll->rckxselr);
672 uint32_t src = selr & RCC_SELR_REFCLK_SRC_MASK;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200673
Yann Gautiere4a3c352019-02-14 10:53:33 +0100674 return stm32mp1_clk_get_fixed(pll->refclk[src]);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200675}
676
677/*
678 * pll_get_fvco() : return the VCO or (VCO / 2) frequency for the requested PLL
679 * - PLL1 & PLL2 => return VCO / 2 with Fpll_y_ck = FVCO / 2 * (DIVy + 1)
680 * - PLL3 & PLL4 => return VCO with Fpll_y_ck = FVCO / (DIVy + 1)
681 * => in all cases Fpll_y_ck = pll_get_fvco() / (DIVy + 1)
682 */
Yann Gautiere4a3c352019-02-14 10:53:33 +0100683static unsigned long stm32mp1_pll_get_fvco(const struct stm32mp1_clk_pll *pll)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200684{
Yann Gautier9aea69e2018-07-24 17:13:36 +0200685 unsigned long refclk, fvco;
686 uint32_t cfgr1, fracr, divm, divn;
Yann Gautiere4a3c352019-02-14 10:53:33 +0100687 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200688
Yann Gautiere4a3c352019-02-14 10:53:33 +0100689 cfgr1 = mmio_read_32(rcc_base + pll->pllxcfgr1);
690 fracr = mmio_read_32(rcc_base + pll->pllxfracr);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200691
692 divm = (cfgr1 & (RCC_PLLNCFGR1_DIVM_MASK)) >> RCC_PLLNCFGR1_DIVM_SHIFT;
693 divn = cfgr1 & RCC_PLLNCFGR1_DIVN_MASK;
694
Yann Gautiere4a3c352019-02-14 10:53:33 +0100695 refclk = stm32mp1_pll_get_fref(pll);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200696
697 /*
698 * With FRACV :
699 * Fvco = Fck_ref * ((DIVN + 1) + FRACV / 2^13) / (DIVM + 1)
700 * Without FRACV
701 * Fvco = Fck_ref * ((DIVN + 1) / (DIVM + 1)
702 */
703 if ((fracr & RCC_PLLNFRACR_FRACLE) != 0U) {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100704 uint32_t fracv = (fracr & RCC_PLLNFRACR_FRACV_MASK) >>
705 RCC_PLLNFRACR_FRACV_SHIFT;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200706 unsigned long long numerator, denominator;
707
Yann Gautiere4a3c352019-02-14 10:53:33 +0100708 numerator = (((unsigned long long)divn + 1U) << 13) + fracv;
709 numerator = refclk * numerator;
710 denominator = ((unsigned long long)divm + 1U) << 13;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200711 fvco = (unsigned long)(numerator / denominator);
712 } else {
713 fvco = (unsigned long)(refclk * (divn + 1U) / (divm + 1U));
714 }
715
716 return fvco;
717}
718
Yann Gautiere4a3c352019-02-14 10:53:33 +0100719static unsigned long stm32mp1_read_pll_freq(enum stm32mp1_pll_id pll_id,
Yann Gautier9aea69e2018-07-24 17:13:36 +0200720 enum stm32mp1_div_id div_id)
721{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100722 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200723 unsigned long dfout;
724 uint32_t cfgr2, divy;
725
726 if (div_id >= _DIV_NB) {
727 return 0;
728 }
729
Yann Gautiere4a3c352019-02-14 10:53:33 +0100730 cfgr2 = mmio_read_32(stm32mp_rcc_base() + pll->pllxcfgr2);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200731 divy = (cfgr2 >> pllncfgr2[div_id]) & RCC_PLLNCFGR2_DIVX_MASK;
732
Yann Gautiere4a3c352019-02-14 10:53:33 +0100733 dfout = stm32mp1_pll_get_fvco(pll) / (divy + 1U);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200734
735 return dfout;
736}
737
Yann Gautiere4a3c352019-02-14 10:53:33 +0100738static unsigned long get_clock_rate(int p)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200739{
740 uint32_t reg, clkdiv;
741 unsigned long clock = 0;
Yann Gautiere4a3c352019-02-14 10:53:33 +0100742 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200743
744 switch (p) {
745 case _CK_MPU:
746 /* MPU sub system */
Yann Gautiere4a3c352019-02-14 10:53:33 +0100747 reg = mmio_read_32(rcc_base + RCC_MPCKSELR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200748 switch (reg & RCC_SELR_SRC_MASK) {
749 case RCC_MPCKSELR_HSI:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100750 clock = stm32mp1_clk_get_fixed(_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200751 break;
752 case RCC_MPCKSELR_HSE:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100753 clock = stm32mp1_clk_get_fixed(_HSE);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200754 break;
755 case RCC_MPCKSELR_PLL:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100756 clock = stm32mp1_read_pll_freq(_PLL1, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200757 break;
758 case RCC_MPCKSELR_PLL_MPUDIV:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100759 clock = stm32mp1_read_pll_freq(_PLL1, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200760
Yann Gautiere4a3c352019-02-14 10:53:33 +0100761 reg = mmio_read_32(rcc_base + RCC_MPCKDIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200762 clkdiv = reg & RCC_MPUDIV_MASK;
763 if (clkdiv != 0U) {
764 clock /= stm32mp1_mpu_div[clkdiv];
765 }
Yann Gautier9aea69e2018-07-24 17:13:36 +0200766 break;
767 default:
768 break;
769 }
770 break;
771 /* AXI sub system */
772 case _ACLK:
773 case _HCLK2:
774 case _HCLK6:
775 case _PCLK4:
776 case _PCLK5:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100777 reg = mmio_read_32(rcc_base + RCC_ASSCKSELR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200778 switch (reg & RCC_SELR_SRC_MASK) {
779 case RCC_ASSCKSELR_HSI:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100780 clock = stm32mp1_clk_get_fixed(_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200781 break;
782 case RCC_ASSCKSELR_HSE:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100783 clock = stm32mp1_clk_get_fixed(_HSE);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200784 break;
785 case RCC_ASSCKSELR_PLL:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100786 clock = stm32mp1_read_pll_freq(_PLL2, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200787 break;
788 default:
789 break;
790 }
791
792 /* System clock divider */
Yann Gautiere4a3c352019-02-14 10:53:33 +0100793 reg = mmio_read_32(rcc_base + RCC_AXIDIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200794 clock /= stm32mp1_axi_div[reg & RCC_AXIDIV_MASK];
795
796 switch (p) {
797 case _PCLK4:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100798 reg = mmio_read_32(rcc_base + RCC_APB4DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200799 clock >>= stm32mp1_apbx_div[reg & RCC_APBXDIV_MASK];
800 break;
801 case _PCLK5:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100802 reg = mmio_read_32(rcc_base + RCC_APB5DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200803 clock >>= stm32mp1_apbx_div[reg & RCC_APBXDIV_MASK];
804 break;
805 default:
806 break;
807 }
808 break;
Yann Gautiered342322019-02-15 17:33:27 +0100809 /* MCU sub system */
810 case _CK_MCU:
811 case _PCLK1:
812 case _PCLK2:
813 case _PCLK3:
814 reg = mmio_read_32(rcc_base + RCC_MSSCKSELR);
815 switch (reg & RCC_SELR_SRC_MASK) {
816 case RCC_MSSCKSELR_HSI:
817 clock = stm32mp1_clk_get_fixed(_HSI);
818 break;
819 case RCC_MSSCKSELR_HSE:
820 clock = stm32mp1_clk_get_fixed(_HSE);
821 break;
822 case RCC_MSSCKSELR_CSI:
823 clock = stm32mp1_clk_get_fixed(_CSI);
824 break;
825 case RCC_MSSCKSELR_PLL:
826 clock = stm32mp1_read_pll_freq(_PLL3, _DIV_P);
827 break;
828 default:
829 break;
830 }
831
832 /* MCU clock divider */
833 reg = mmio_read_32(rcc_base + RCC_MCUDIVR);
834 clock >>= stm32mp1_mcu_div[reg & RCC_MCUDIV_MASK];
835
836 switch (p) {
837 case _PCLK1:
838 reg = mmio_read_32(rcc_base + RCC_APB1DIVR);
839 clock >>= stm32mp1_apbx_div[reg & RCC_APBXDIV_MASK];
840 break;
841 case _PCLK2:
842 reg = mmio_read_32(rcc_base + RCC_APB2DIVR);
843 clock >>= stm32mp1_apbx_div[reg & RCC_APBXDIV_MASK];
844 break;
845 case _PCLK3:
846 reg = mmio_read_32(rcc_base + RCC_APB3DIVR);
847 clock >>= stm32mp1_apbx_div[reg & RCC_APBXDIV_MASK];
848 break;
849 case _CK_MCU:
850 default:
851 break;
852 }
853 break;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200854 case _CK_PER:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100855 reg = mmio_read_32(rcc_base + RCC_CPERCKSELR);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200856 switch (reg & RCC_SELR_SRC_MASK) {
857 case RCC_CPERCKSELR_HSI:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100858 clock = stm32mp1_clk_get_fixed(_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200859 break;
860 case RCC_CPERCKSELR_HSE:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100861 clock = stm32mp1_clk_get_fixed(_HSE);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200862 break;
863 case RCC_CPERCKSELR_CSI:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100864 clock = stm32mp1_clk_get_fixed(_CSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200865 break;
866 default:
867 break;
868 }
869 break;
870 case _HSI:
871 case _HSI_KER:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100872 clock = stm32mp1_clk_get_fixed(_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200873 break;
874 case _CSI:
875 case _CSI_KER:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100876 clock = stm32mp1_clk_get_fixed(_CSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200877 break;
878 case _HSE:
879 case _HSE_KER:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100880 clock = stm32mp1_clk_get_fixed(_HSE);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200881 break;
882 case _HSE_KER_DIV2:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100883 clock = stm32mp1_clk_get_fixed(_HSE) >> 1;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200884 break;
885 case _LSI:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100886 clock = stm32mp1_clk_get_fixed(_LSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200887 break;
888 case _LSE:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100889 clock = stm32mp1_clk_get_fixed(_LSE);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200890 break;
891 /* PLL */
892 case _PLL1_P:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100893 clock = stm32mp1_read_pll_freq(_PLL1, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200894 break;
895 case _PLL1_Q:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100896 clock = stm32mp1_read_pll_freq(_PLL1, _DIV_Q);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200897 break;
898 case _PLL1_R:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100899 clock = stm32mp1_read_pll_freq(_PLL1, _DIV_R);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200900 break;
901 case _PLL2_P:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100902 clock = stm32mp1_read_pll_freq(_PLL2, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200903 break;
904 case _PLL2_Q:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100905 clock = stm32mp1_read_pll_freq(_PLL2, _DIV_Q);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200906 break;
907 case _PLL2_R:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100908 clock = stm32mp1_read_pll_freq(_PLL2, _DIV_R);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200909 break;
910 case _PLL3_P:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100911 clock = stm32mp1_read_pll_freq(_PLL3, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200912 break;
913 case _PLL3_Q:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100914 clock = stm32mp1_read_pll_freq(_PLL3, _DIV_Q);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200915 break;
916 case _PLL3_R:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100917 clock = stm32mp1_read_pll_freq(_PLL3, _DIV_R);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200918 break;
919 case _PLL4_P:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100920 clock = stm32mp1_read_pll_freq(_PLL4, _DIV_P);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200921 break;
922 case _PLL4_Q:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100923 clock = stm32mp1_read_pll_freq(_PLL4, _DIV_Q);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200924 break;
925 case _PLL4_R:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100926 clock = stm32mp1_read_pll_freq(_PLL4, _DIV_R);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200927 break;
928 /* Other */
929 case _USB_PHY_48:
Yann Gautiere4a3c352019-02-14 10:53:33 +0100930 clock = USB_PHY_48_MHZ;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200931 break;
932 default:
933 break;
934 }
935
936 return clock;
937}
938
Yann Gautiere4a3c352019-02-14 10:53:33 +0100939static void __clk_enable(struct stm32mp1_clk_gate const *gate)
940{
941 uintptr_t rcc_base = stm32mp_rcc_base();
942
943 if (gate->set_clr != 0U) {
944 mmio_write_32(rcc_base + gate->offset, BIT(gate->bit));
945 } else {
946 mmio_setbits_32(rcc_base + gate->offset, BIT(gate->bit));
947 }
948
949 VERBOSE("Clock %d has been enabled", gate->index);
950}
951
952static void __clk_disable(struct stm32mp1_clk_gate const *gate)
953{
954 uintptr_t rcc_base = stm32mp_rcc_base();
955
956 if (gate->set_clr != 0U) {
957 mmio_write_32(rcc_base + gate->offset + RCC_MP_ENCLRR_OFFSET,
958 BIT(gate->bit));
959 } else {
960 mmio_clrbits_32(rcc_base + gate->offset, BIT(gate->bit));
961 }
962
963 VERBOSE("Clock %d has been disabled", gate->index);
964}
965
966static bool __clk_is_enabled(struct stm32mp1_clk_gate const *gate)
967{
968 uintptr_t rcc_base = stm32mp_rcc_base();
969
970 return mmio_read_32(rcc_base + gate->offset) & BIT(gate->bit);
971}
972
973unsigned int stm32mp1_clk_get_refcount(unsigned long id)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200974{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100975 int i = stm32mp1_clk_get_gated_id(id);
Yann Gautier9aea69e2018-07-24 17:13:36 +0200976
977 if (i < 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100978 panic();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200979 }
980
Yann Gautiere4a3c352019-02-14 10:53:33 +0100981 return gate_refcounts[i];
Yann Gautier9aea69e2018-07-24 17:13:36 +0200982}
983
Yann Gautiere4a3c352019-02-14 10:53:33 +0100984void __stm32mp1_clk_enable(unsigned long id, bool secure)
Yann Gautier9aea69e2018-07-24 17:13:36 +0200985{
Yann Gautiere4a3c352019-02-14 10:53:33 +0100986 const struct stm32mp1_clk_gate *gate;
987 int i = stm32mp1_clk_get_gated_id(id);
988 unsigned int *refcnt;
Yann Gautier9aea69e2018-07-24 17:13:36 +0200989
990 if (i < 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +0100991 ERROR("Clock %d can't be enabled\n", (uint32_t)id);
992 panic();
Yann Gautier9aea69e2018-07-24 17:13:36 +0200993 }
994
Yann Gautiere4a3c352019-02-14 10:53:33 +0100995 gate = gate_ref(i);
996 refcnt = &gate_refcounts[i];
997
998 stm32mp1_clk_lock(&refcount_lock);
999
1000 if (stm32mp_incr_shrefcnt(refcnt, secure) != 0) {
1001 __clk_enable(gate);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001002 }
1003
Yann Gautiere4a3c352019-02-14 10:53:33 +01001004 stm32mp1_clk_unlock(&refcount_lock);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001005}
1006
Yann Gautiere4a3c352019-02-14 10:53:33 +01001007void __stm32mp1_clk_disable(unsigned long id, bool secure)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001008{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001009 const struct stm32mp1_clk_gate *gate;
1010 int i = stm32mp1_clk_get_gated_id(id);
1011 unsigned int *refcnt;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001012
1013 if (i < 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001014 ERROR("Clock %d can't be disabled\n", (uint32_t)id);
1015 panic();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001016 }
1017
Yann Gautiere4a3c352019-02-14 10:53:33 +01001018 gate = gate_ref(i);
1019 refcnt = &gate_refcounts[i];
1020
1021 stm32mp1_clk_lock(&refcount_lock);
1022
1023 if (stm32mp_decr_shrefcnt(refcnt, secure) != 0) {
1024 __clk_disable(gate);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001025 }
1026
Yann Gautiere4a3c352019-02-14 10:53:33 +01001027 stm32mp1_clk_unlock(&refcount_lock);
1028}
1029
1030void stm32mp_clk_enable(unsigned long id)
1031{
1032 __stm32mp1_clk_enable(id, true);
1033}
1034
1035void stm32mp_clk_disable(unsigned long id)
1036{
1037 __stm32mp1_clk_disable(id, true);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001038}
1039
Yann Gautiere4a3c352019-02-14 10:53:33 +01001040bool stm32mp_clk_is_enabled(unsigned long id)
1041{
1042 int i = stm32mp1_clk_get_gated_id(id);
1043
1044 if (i < 0) {
1045 panic();
1046 }
1047
1048 return __clk_is_enabled(gate_ref(i));
1049}
1050
Yann Gautiera2e2a302019-02-14 11:13:39 +01001051unsigned long stm32mp_clk_get_rate(unsigned long id)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001052{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001053 int p = stm32mp1_clk_get_parent(id);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001054
1055 if (p < 0) {
1056 return 0;
1057 }
1058
Yann Gautiere4a3c352019-02-14 10:53:33 +01001059 return get_clock_rate(p);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001060}
1061
Yann Gautiere4a3c352019-02-14 10:53:33 +01001062static void stm32mp1_ls_osc_set(bool enable, uint32_t offset, uint32_t mask_on)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001063{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001064 uintptr_t address = stm32mp_rcc_base() + offset;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001065
Yann Gautiere4a3c352019-02-14 10:53:33 +01001066 if (enable) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001067 mmio_setbits_32(address, mask_on);
1068 } else {
1069 mmio_clrbits_32(address, mask_on);
1070 }
1071}
1072
Yann Gautiere4a3c352019-02-14 10:53:33 +01001073static void stm32mp1_hs_ocs_set(bool enable, uint32_t mask_on)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001074{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001075 uint32_t offset = enable ? RCC_OCENSETR : RCC_OCENCLRR;
1076 uintptr_t address = stm32mp_rcc_base() + offset;
1077
1078 mmio_write_32(address, mask_on);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001079}
1080
Yann Gautiere4a3c352019-02-14 10:53:33 +01001081static int stm32mp1_osc_wait(bool enable, uint32_t offset, uint32_t mask_rdy)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001082{
Yann Gautier2299d572019-02-14 11:14:39 +01001083 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001084 uint32_t mask_test;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001085 uintptr_t address = stm32mp_rcc_base() + offset;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001086
Yann Gautiere4a3c352019-02-14 10:53:33 +01001087 if (enable) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001088 mask_test = mask_rdy;
1089 } else {
1090 mask_test = 0;
1091 }
1092
Yann Gautier2299d572019-02-14 11:14:39 +01001093 timeout = timeout_init_us(OSCRDY_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001094 while ((mmio_read_32(address) & mask_rdy) != mask_test) {
Yann Gautier2299d572019-02-14 11:14:39 +01001095 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001096 ERROR("OSC %x @ %lx timeout for enable=%d : 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001097 mask_rdy, address, enable, mmio_read_32(address));
1098 return -ETIMEDOUT;
1099 }
1100 }
1101
1102 return 0;
1103}
1104
Yann Gautiere4a3c352019-02-14 10:53:33 +01001105static void stm32mp1_lse_enable(bool bypass, bool digbyp, uint32_t lsedrv)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001106{
1107 uint32_t value;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001108 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001109
Yann Gautiere4a3c352019-02-14 10:53:33 +01001110 if (digbyp) {
1111 mmio_setbits_32(rcc_base + RCC_BDCR, RCC_BDCR_DIGBYP);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001112 }
1113
Yann Gautiere4a3c352019-02-14 10:53:33 +01001114 if (bypass || digbyp) {
1115 mmio_setbits_32(rcc_base + RCC_BDCR, RCC_BDCR_LSEBYP);
1116 }
1117
Yann Gautier9aea69e2018-07-24 17:13:36 +02001118 /*
1119 * Warning: not recommended to switch directly from "high drive"
1120 * to "medium low drive", and vice-versa.
1121 */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001122 value = (mmio_read_32(rcc_base + RCC_BDCR) & RCC_BDCR_LSEDRV_MASK) >>
Yann Gautier9aea69e2018-07-24 17:13:36 +02001123 RCC_BDCR_LSEDRV_SHIFT;
1124
1125 while (value != lsedrv) {
1126 if (value > lsedrv) {
1127 value--;
1128 } else {
1129 value++;
1130 }
1131
Yann Gautiere4a3c352019-02-14 10:53:33 +01001132 mmio_clrsetbits_32(rcc_base + RCC_BDCR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001133 RCC_BDCR_LSEDRV_MASK,
1134 value << RCC_BDCR_LSEDRV_SHIFT);
1135 }
1136
Yann Gautiere4a3c352019-02-14 10:53:33 +01001137 stm32mp1_ls_osc_set(true, RCC_BDCR, RCC_BDCR_LSEON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001138}
1139
Yann Gautiere4a3c352019-02-14 10:53:33 +01001140static void stm32mp1_lse_wait(void)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001141{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001142 if (stm32mp1_osc_wait(true, RCC_BDCR, RCC_BDCR_LSERDY) != 0) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001143 VERBOSE("%s: failed\n", __func__);
1144 }
1145}
1146
Yann Gautiere4a3c352019-02-14 10:53:33 +01001147static void stm32mp1_lsi_set(bool enable)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001148{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001149 stm32mp1_ls_osc_set(enable, RCC_RDLSICR, RCC_RDLSICR_LSION);
1150
1151 if (stm32mp1_osc_wait(enable, RCC_RDLSICR, RCC_RDLSICR_LSIRDY) != 0) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001152 VERBOSE("%s: failed\n", __func__);
1153 }
1154}
1155
Yann Gautiere4a3c352019-02-14 10:53:33 +01001156static void stm32mp1_hse_enable(bool bypass, bool digbyp, bool css)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001157{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001158 uintptr_t rcc_base = stm32mp_rcc_base();
1159
1160 if (digbyp) {
1161 mmio_write_32(rcc_base + RCC_OCENSETR, RCC_OCENR_DIGBYP);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001162 }
1163
Yann Gautiere4a3c352019-02-14 10:53:33 +01001164 if (bypass || digbyp) {
1165 mmio_write_32(rcc_base + RCC_OCENSETR, RCC_OCENR_HSEBYP);
1166 }
1167
1168 stm32mp1_hs_ocs_set(true, RCC_OCENR_HSEON);
1169 if (stm32mp1_osc_wait(true, RCC_OCRDYR, RCC_OCRDYR_HSERDY) != 0) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001170 VERBOSE("%s: failed\n", __func__);
1171 }
1172
1173 if (css) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001174 mmio_write_32(rcc_base + RCC_OCENSETR, RCC_OCENR_HSECSSON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001175 }
1176}
1177
Yann Gautiere4a3c352019-02-14 10:53:33 +01001178static void stm32mp1_csi_set(bool enable)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001179{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001180 stm32mp1_hs_ocs_set(enable, RCC_OCENR_CSION);
1181 if (stm32mp1_osc_wait(enable, RCC_OCRDYR, RCC_OCRDYR_CSIRDY) != 0) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001182 VERBOSE("%s: failed\n", __func__);
1183 }
1184}
1185
Yann Gautiere4a3c352019-02-14 10:53:33 +01001186static void stm32mp1_hsi_set(bool enable)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001187{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001188 stm32mp1_hs_ocs_set(enable, RCC_OCENR_HSION);
1189 if (stm32mp1_osc_wait(enable, RCC_OCRDYR, RCC_OCRDYR_HSIRDY) != 0) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001190 VERBOSE("%s: failed\n", __func__);
1191 }
1192}
1193
Yann Gautiere4a3c352019-02-14 10:53:33 +01001194static int stm32mp1_set_hsidiv(uint8_t hsidiv)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001195{
Yann Gautier2299d572019-02-14 11:14:39 +01001196 uint64_t timeout;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001197 uintptr_t rcc_base = stm32mp_rcc_base();
1198 uintptr_t address = rcc_base + RCC_OCRDYR;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001199
Yann Gautiere4a3c352019-02-14 10:53:33 +01001200 mmio_clrsetbits_32(rcc_base + RCC_HSICFGR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001201 RCC_HSICFGR_HSIDIV_MASK,
1202 RCC_HSICFGR_HSIDIV_MASK & (uint32_t)hsidiv);
1203
Yann Gautier2299d572019-02-14 11:14:39 +01001204 timeout = timeout_init_us(HSIDIV_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001205 while ((mmio_read_32(address) & RCC_OCRDYR_HSIDIVRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001206 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001207 ERROR("HSIDIV failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001208 address, mmio_read_32(address));
1209 return -ETIMEDOUT;
1210 }
1211 }
1212
1213 return 0;
1214}
1215
Yann Gautiere4a3c352019-02-14 10:53:33 +01001216static int stm32mp1_hsidiv(unsigned long hsifreq)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001217{
1218 uint8_t hsidiv;
1219 uint32_t hsidivfreq = MAX_HSI_HZ;
1220
1221 for (hsidiv = 0; hsidiv < 4U; hsidiv++) {
1222 if (hsidivfreq == hsifreq) {
1223 break;
1224 }
1225
1226 hsidivfreq /= 2U;
1227 }
1228
1229 if (hsidiv == 4U) {
1230 ERROR("Invalid clk-hsi frequency\n");
1231 return -1;
1232 }
1233
1234 if (hsidiv != 0U) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001235 return stm32mp1_set_hsidiv(hsidiv);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001236 }
1237
1238 return 0;
1239}
1240
Yann Gautiere4a3c352019-02-14 10:53:33 +01001241static bool stm32mp1_check_pll_conf(enum stm32mp1_pll_id pll_id,
1242 unsigned int clksrc,
1243 uint32_t *pllcfg, int plloff)
1244{
1245 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1246 uintptr_t rcc_base = stm32mp_rcc_base();
1247 uintptr_t pllxcr = rcc_base + pll->pllxcr;
1248 enum stm32mp1_plltype type = pll->plltype;
1249 uintptr_t clksrc_address = rcc_base + (clksrc >> 4);
1250 unsigned long refclk;
1251 uint32_t ifrge = 0U;
1252 uint32_t src, value, fracv;
1253
1254 /* Check PLL output */
1255 if (mmio_read_32(pllxcr) != RCC_PLLNCR_PLLON) {
1256 return false;
1257 }
1258
1259 /* Check current clksrc */
1260 src = mmio_read_32(clksrc_address) & RCC_SELR_SRC_MASK;
1261 if (src != (clksrc & RCC_SELR_SRC_MASK)) {
1262 return false;
1263 }
1264
1265 /* Check Div */
1266 src = mmio_read_32(rcc_base + pll->rckxselr) & RCC_SELR_REFCLK_SRC_MASK;
1267
1268 refclk = stm32mp1_clk_get_fixed(pll->refclk[src]) /
1269 (pllcfg[PLLCFG_M] + 1U);
1270
1271 if ((refclk < (stm32mp1_pll[type].refclk_min * 1000000U)) ||
1272 (refclk > (stm32mp1_pll[type].refclk_max * 1000000U))) {
1273 return false;
1274 }
1275
1276 if ((type == PLL_800) && (refclk >= 8000000U)) {
1277 ifrge = 1U;
1278 }
1279
1280 value = (pllcfg[PLLCFG_N] << RCC_PLLNCFGR1_DIVN_SHIFT) &
1281 RCC_PLLNCFGR1_DIVN_MASK;
1282 value |= (pllcfg[PLLCFG_M] << RCC_PLLNCFGR1_DIVM_SHIFT) &
1283 RCC_PLLNCFGR1_DIVM_MASK;
1284 value |= (ifrge << RCC_PLLNCFGR1_IFRGE_SHIFT) &
1285 RCC_PLLNCFGR1_IFRGE_MASK;
1286 if (mmio_read_32(rcc_base + pll->pllxcfgr1) != value) {
1287 return false;
1288 }
1289
1290 /* Fractional configuration */
1291 fracv = fdt_read_uint32_default(plloff, "frac", 0);
1292
1293 value = fracv << RCC_PLLNFRACR_FRACV_SHIFT;
1294 value |= RCC_PLLNFRACR_FRACLE;
1295 if (mmio_read_32(rcc_base + pll->pllxfracr) != value) {
1296 return false;
1297 }
1298
1299 /* Output config */
1300 value = (pllcfg[PLLCFG_P] << RCC_PLLNCFGR2_DIVP_SHIFT) &
1301 RCC_PLLNCFGR2_DIVP_MASK;
1302 value |= (pllcfg[PLLCFG_Q] << RCC_PLLNCFGR2_DIVQ_SHIFT) &
1303 RCC_PLLNCFGR2_DIVQ_MASK;
1304 value |= (pllcfg[PLLCFG_R] << RCC_PLLNCFGR2_DIVR_SHIFT) &
1305 RCC_PLLNCFGR2_DIVR_MASK;
1306 if (mmio_read_32(rcc_base + pll->pllxcfgr2) != value) {
1307 return false;
1308 }
1309
1310 return true;
1311}
1312
1313static void stm32mp1_pll_start(enum stm32mp1_pll_id pll_id)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001314{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001315 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1316 uintptr_t pllxcr = stm32mp_rcc_base() + pll->pllxcr;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001317
Yann Gautierd0dcbaa2019-06-04 15:55:37 +02001318 /* Preserve RCC_PLLNCR_SSCG_CTRL value */
1319 mmio_clrsetbits_32(pllxcr,
1320 RCC_PLLNCR_DIVPEN | RCC_PLLNCR_DIVQEN |
1321 RCC_PLLNCR_DIVREN,
1322 RCC_PLLNCR_PLLON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001323}
1324
Yann Gautiere4a3c352019-02-14 10:53:33 +01001325static int stm32mp1_pll_output(enum stm32mp1_pll_id pll_id, uint32_t output)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001326{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001327 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1328 uintptr_t pllxcr = stm32mp_rcc_base() + pll->pllxcr;
Yann Gautier2299d572019-02-14 11:14:39 +01001329 uint64_t timeout = timeout_init_us(PLLRDY_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001330
Yann Gautier9aea69e2018-07-24 17:13:36 +02001331 /* Wait PLL lock */
1332 while ((mmio_read_32(pllxcr) & RCC_PLLNCR_PLLRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001333 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001334 ERROR("PLL%d start failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001335 pll_id, pllxcr, mmio_read_32(pllxcr));
1336 return -ETIMEDOUT;
1337 }
1338 }
1339
1340 /* Start the requested output */
1341 mmio_setbits_32(pllxcr, output << RCC_PLLNCR_DIVEN_SHIFT);
1342
1343 return 0;
1344}
1345
Yann Gautiere4a3c352019-02-14 10:53:33 +01001346static int stm32mp1_pll_stop(enum stm32mp1_pll_id pll_id)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001347{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001348 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1349 uintptr_t pllxcr = stm32mp_rcc_base() + pll->pllxcr;
Yann Gautier2299d572019-02-14 11:14:39 +01001350 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001351
1352 /* Stop all output */
1353 mmio_clrbits_32(pllxcr, RCC_PLLNCR_DIVPEN | RCC_PLLNCR_DIVQEN |
1354 RCC_PLLNCR_DIVREN);
1355
1356 /* Stop PLL */
1357 mmio_clrbits_32(pllxcr, RCC_PLLNCR_PLLON);
1358
Yann Gautier2299d572019-02-14 11:14:39 +01001359 timeout = timeout_init_us(PLLRDY_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001360 /* Wait PLL stopped */
1361 while ((mmio_read_32(pllxcr) & RCC_PLLNCR_PLLRDY) != 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001362 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001363 ERROR("PLL%d stop failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001364 pll_id, pllxcr, mmio_read_32(pllxcr));
1365 return -ETIMEDOUT;
1366 }
1367 }
1368
1369 return 0;
1370}
1371
Yann Gautiere4a3c352019-02-14 10:53:33 +01001372static void stm32mp1_pll_config_output(enum stm32mp1_pll_id pll_id,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001373 uint32_t *pllcfg)
1374{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001375 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1376 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001377 uint32_t value;
1378
1379 value = (pllcfg[PLLCFG_P] << RCC_PLLNCFGR2_DIVP_SHIFT) &
1380 RCC_PLLNCFGR2_DIVP_MASK;
1381 value |= (pllcfg[PLLCFG_Q] << RCC_PLLNCFGR2_DIVQ_SHIFT) &
1382 RCC_PLLNCFGR2_DIVQ_MASK;
1383 value |= (pllcfg[PLLCFG_R] << RCC_PLLNCFGR2_DIVR_SHIFT) &
1384 RCC_PLLNCFGR2_DIVR_MASK;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001385 mmio_write_32(rcc_base + pll->pllxcfgr2, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001386}
1387
Yann Gautiere4a3c352019-02-14 10:53:33 +01001388static int stm32mp1_pll_config(enum stm32mp1_pll_id pll_id,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001389 uint32_t *pllcfg, uint32_t fracv)
1390{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001391 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1392 uintptr_t rcc_base = stm32mp_rcc_base();
1393 enum stm32mp1_plltype type = pll->plltype;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001394 unsigned long refclk;
1395 uint32_t ifrge = 0;
1396 uint32_t src, value;
1397
Yann Gautiere4a3c352019-02-14 10:53:33 +01001398 src = mmio_read_32(rcc_base + pll->rckxselr) &
Yann Gautier9aea69e2018-07-24 17:13:36 +02001399 RCC_SELR_REFCLK_SRC_MASK;
1400
Yann Gautiere4a3c352019-02-14 10:53:33 +01001401 refclk = stm32mp1_clk_get_fixed(pll->refclk[src]) /
Yann Gautier9aea69e2018-07-24 17:13:36 +02001402 (pllcfg[PLLCFG_M] + 1U);
1403
1404 if ((refclk < (stm32mp1_pll[type].refclk_min * 1000000U)) ||
1405 (refclk > (stm32mp1_pll[type].refclk_max * 1000000U))) {
1406 return -EINVAL;
1407 }
1408
1409 if ((type == PLL_800) && (refclk >= 8000000U)) {
1410 ifrge = 1U;
1411 }
1412
1413 value = (pllcfg[PLLCFG_N] << RCC_PLLNCFGR1_DIVN_SHIFT) &
1414 RCC_PLLNCFGR1_DIVN_MASK;
1415 value |= (pllcfg[PLLCFG_M] << RCC_PLLNCFGR1_DIVM_SHIFT) &
1416 RCC_PLLNCFGR1_DIVM_MASK;
1417 value |= (ifrge << RCC_PLLNCFGR1_IFRGE_SHIFT) &
1418 RCC_PLLNCFGR1_IFRGE_MASK;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001419 mmio_write_32(rcc_base + pll->pllxcfgr1, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001420
1421 /* Fractional configuration */
1422 value = 0;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001423 mmio_write_32(rcc_base + pll->pllxfracr, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001424
1425 value = fracv << RCC_PLLNFRACR_FRACV_SHIFT;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001426 mmio_write_32(rcc_base + pll->pllxfracr, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001427
1428 value |= RCC_PLLNFRACR_FRACLE;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001429 mmio_write_32(rcc_base + pll->pllxfracr, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001430
Yann Gautiere4a3c352019-02-14 10:53:33 +01001431 stm32mp1_pll_config_output(pll_id, pllcfg);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001432
1433 return 0;
1434}
1435
Yann Gautiere4a3c352019-02-14 10:53:33 +01001436static void stm32mp1_pll_csg(enum stm32mp1_pll_id pll_id, uint32_t *csg)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001437{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001438 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001439 uint32_t pllxcsg = 0;
1440
1441 pllxcsg |= (csg[PLLCSG_MOD_PER] << RCC_PLLNCSGR_MOD_PER_SHIFT) &
1442 RCC_PLLNCSGR_MOD_PER_MASK;
1443
1444 pllxcsg |= (csg[PLLCSG_INC_STEP] << RCC_PLLNCSGR_INC_STEP_SHIFT) &
1445 RCC_PLLNCSGR_INC_STEP_MASK;
1446
1447 pllxcsg |= (csg[PLLCSG_SSCG_MODE] << RCC_PLLNCSGR_SSCG_MODE_SHIFT) &
1448 RCC_PLLNCSGR_SSCG_MODE_MASK;
1449
Yann Gautiere4a3c352019-02-14 10:53:33 +01001450 mmio_write_32(stm32mp_rcc_base() + pll->pllxcsgr, pllxcsg);
Yann Gautierd0dcbaa2019-06-04 15:55:37 +02001451
1452 mmio_setbits_32(stm32mp_rcc_base() + pll->pllxcr,
1453 RCC_PLLNCR_SSCG_CTRL);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001454}
1455
Yann Gautiere4a3c352019-02-14 10:53:33 +01001456static int stm32mp1_set_clksrc(unsigned int clksrc)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001457{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001458 uintptr_t clksrc_address = stm32mp_rcc_base() + (clksrc >> 4);
Yann Gautier2299d572019-02-14 11:14:39 +01001459 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001460
Yann Gautiere4a3c352019-02-14 10:53:33 +01001461 mmio_clrsetbits_32(clksrc_address, RCC_SELR_SRC_MASK,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001462 clksrc & RCC_SELR_SRC_MASK);
1463
Yann Gautier2299d572019-02-14 11:14:39 +01001464 timeout = timeout_init_us(CLKSRC_TIMEOUT);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001465 while ((mmio_read_32(clksrc_address) & RCC_SELR_SRCRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001466 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001467 ERROR("CLKSRC %x start failed @ 0x%lx: 0x%x\n", clksrc,
1468 clksrc_address, mmio_read_32(clksrc_address));
Yann Gautier9aea69e2018-07-24 17:13:36 +02001469 return -ETIMEDOUT;
1470 }
1471 }
1472
1473 return 0;
1474}
1475
Yann Gautiere4a3c352019-02-14 10:53:33 +01001476static int stm32mp1_set_clkdiv(unsigned int clkdiv, uintptr_t address)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001477{
Yann Gautier2299d572019-02-14 11:14:39 +01001478 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001479
1480 mmio_clrsetbits_32(address, RCC_DIVR_DIV_MASK,
1481 clkdiv & RCC_DIVR_DIV_MASK);
1482
Yann Gautier2299d572019-02-14 11:14:39 +01001483 timeout = timeout_init_us(CLKDIV_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001484 while ((mmio_read_32(address) & RCC_DIVR_DIVRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001485 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001486 ERROR("CLKDIV %x start failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001487 clkdiv, address, mmio_read_32(address));
1488 return -ETIMEDOUT;
1489 }
1490 }
1491
1492 return 0;
1493}
1494
Yann Gautiere4a3c352019-02-14 10:53:33 +01001495static void stm32mp1_mco_csg(uint32_t clksrc, uint32_t clkdiv)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001496{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001497 uintptr_t clksrc_address = stm32mp_rcc_base() + (clksrc >> 4);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001498
1499 /*
1500 * Binding clksrc :
1501 * bit15-4 offset
1502 * bit3: disable
1503 * bit2-0: MCOSEL[2:0]
1504 */
1505 if ((clksrc & 0x8U) != 0U) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001506 mmio_clrbits_32(clksrc_address, RCC_MCOCFG_MCOON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001507 } else {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001508 mmio_clrsetbits_32(clksrc_address,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001509 RCC_MCOCFG_MCOSRC_MASK,
1510 clksrc & RCC_MCOCFG_MCOSRC_MASK);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001511 mmio_clrsetbits_32(clksrc_address,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001512 RCC_MCOCFG_MCODIV_MASK,
1513 clkdiv << RCC_MCOCFG_MCODIV_SHIFT);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001514 mmio_setbits_32(clksrc_address, RCC_MCOCFG_MCOON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001515 }
1516}
1517
Yann Gautiere4a3c352019-02-14 10:53:33 +01001518static void stm32mp1_set_rtcsrc(unsigned int clksrc, bool lse_css)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001519{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001520 uintptr_t address = stm32mp_rcc_base() + RCC_BDCR;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001521
1522 if (((mmio_read_32(address) & RCC_BDCR_RTCCKEN) == 0U) ||
1523 (clksrc != (uint32_t)CLK_RTC_DISABLED)) {
1524 mmio_clrsetbits_32(address,
1525 RCC_BDCR_RTCSRC_MASK,
1526 clksrc << RCC_BDCR_RTCSRC_SHIFT);
1527
1528 mmio_setbits_32(address, RCC_BDCR_RTCCKEN);
1529 }
1530
1531 if (lse_css) {
1532 mmio_setbits_32(address, RCC_BDCR_LSECSSON);
1533 }
1534}
1535
Yann Gautiere4a3c352019-02-14 10:53:33 +01001536static void stm32mp1_stgen_config(void)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001537{
1538 uintptr_t stgen;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001539 uint32_t cntfid0;
1540 unsigned long rate;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001541 unsigned long long counter;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001542
1543 stgen = fdt_get_stgen_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001544 cntfid0 = mmio_read_32(stgen + CNTFID_OFF);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001545 rate = get_clock_rate(stm32mp1_clk_get_parent(STGEN_K));
Yann Gautier9aea69e2018-07-24 17:13:36 +02001546
Yann Gautiere4a3c352019-02-14 10:53:33 +01001547 if (cntfid0 == rate) {
1548 return;
1549 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001550
Yann Gautiere4a3c352019-02-14 10:53:33 +01001551 mmio_clrbits_32(stgen + CNTCR_OFF, CNTCR_EN);
1552 counter = (unsigned long long)mmio_read_32(stgen + CNTCVL_OFF);
1553 counter |= ((unsigned long long)mmio_read_32(stgen + CNTCVU_OFF)) << 32;
1554 counter = (counter * rate / cntfid0);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001555
Yann Gautiere4a3c352019-02-14 10:53:33 +01001556 mmio_write_32(stgen + CNTCVL_OFF, (uint32_t)counter);
1557 mmio_write_32(stgen + CNTCVU_OFF, (uint32_t)(counter >> 32));
1558 mmio_write_32(stgen + CNTFID_OFF, rate);
1559 mmio_setbits_32(stgen + CNTCR_OFF, CNTCR_EN);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001560
Yann Gautiere4a3c352019-02-14 10:53:33 +01001561 write_cntfrq((u_register_t)rate);
1562
1563 /* Need to update timer with new frequency */
1564 generic_delay_timer_init();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001565}
1566
1567void stm32mp1_stgen_increment(unsigned long long offset_in_ms)
1568{
1569 uintptr_t stgen;
1570 unsigned long long cnt;
1571
1572 stgen = fdt_get_stgen_base();
1573
1574 cnt = ((unsigned long long)mmio_read_32(stgen + CNTCVU_OFF) << 32) |
1575 mmio_read_32(stgen + CNTCVL_OFF);
1576
1577 cnt += (offset_in_ms * mmio_read_32(stgen + CNTFID_OFF)) / 1000U;
1578
1579 mmio_clrbits_32(stgen + CNTCR_OFF, CNTCR_EN);
1580 mmio_write_32(stgen + CNTCVL_OFF, (uint32_t)cnt);
1581 mmio_write_32(stgen + CNTCVU_OFF, (uint32_t)(cnt >> 32));
1582 mmio_setbits_32(stgen + CNTCR_OFF, CNTCR_EN);
1583}
1584
Yann Gautiere4a3c352019-02-14 10:53:33 +01001585static void stm32mp1_pkcs_config(uint32_t pkcs)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001586{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001587 uintptr_t address = stm32mp_rcc_base() + ((pkcs >> 4) & 0xFFFU);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001588 uint32_t value = pkcs & 0xFU;
1589 uint32_t mask = 0xFU;
1590
1591 if ((pkcs & BIT(31)) != 0U) {
1592 mask <<= 4;
1593 value <<= 4;
1594 }
1595
1596 mmio_clrsetbits_32(address, mask, value);
1597}
1598
1599int stm32mp1_clk_init(void)
1600{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001601 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001602 unsigned int clksrc[CLKSRC_NB];
1603 unsigned int clkdiv[CLKDIV_NB];
1604 unsigned int pllcfg[_PLL_NB][PLLCFG_NB];
1605 int plloff[_PLL_NB];
1606 int ret, len;
1607 enum stm32mp1_pll_id i;
1608 bool lse_css = false;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001609 bool pll3_preserve = false;
1610 bool pll4_preserve = false;
1611 bool pll4_bootrom = false;
Yann Gautierf9af3bc2018-11-09 15:57:18 +01001612 const fdt32_t *pkcs_cell;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001613
1614 /* Check status field to disable security */
1615 if (!fdt_get_rcc_secure_status()) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001616 mmio_write_32(rcc_base + RCC_TZCR, 0);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001617 }
1618
1619 ret = fdt_rcc_read_uint32_array("st,clksrc", clksrc,
1620 (uint32_t)CLKSRC_NB);
1621 if (ret < 0) {
1622 return -FDT_ERR_NOTFOUND;
1623 }
1624
1625 ret = fdt_rcc_read_uint32_array("st,clkdiv", clkdiv,
1626 (uint32_t)CLKDIV_NB);
1627 if (ret < 0) {
1628 return -FDT_ERR_NOTFOUND;
1629 }
1630
1631 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
1632 char name[12];
1633
Antonio Nino Diaz00086e32018-08-16 16:46:06 +01001634 snprintf(name, sizeof(name), "st,pll@%d", i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001635 plloff[i] = fdt_rcc_subnode_offset(name);
1636
1637 if (!fdt_check_node(plloff[i])) {
1638 continue;
1639 }
1640
1641 ret = fdt_read_uint32_array(plloff[i], "cfg",
1642 pllcfg[i], (int)PLLCFG_NB);
1643 if (ret < 0) {
1644 return -FDT_ERR_NOTFOUND;
1645 }
1646 }
1647
Yann Gautiere4a3c352019-02-14 10:53:33 +01001648 stm32mp1_mco_csg(clksrc[CLKSRC_MCO1], clkdiv[CLKDIV_MCO1]);
1649 stm32mp1_mco_csg(clksrc[CLKSRC_MCO2], clkdiv[CLKDIV_MCO2]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001650
1651 /*
1652 * Switch ON oscillator found in device-tree.
1653 * Note: HSI already ON after BootROM stage.
1654 */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001655 if (stm32mp1_osc[_LSI] != 0U) {
1656 stm32mp1_lsi_set(true);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001657 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001658 if (stm32mp1_osc[_LSE] != 0U) {
1659 bool bypass, digbyp;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001660 uint32_t lsedrv;
1661
1662 bypass = fdt_osc_read_bool(_LSE, "st,bypass");
Yann Gautiere4a3c352019-02-14 10:53:33 +01001663 digbyp = fdt_osc_read_bool(_LSE, "st,digbypass");
Yann Gautier9aea69e2018-07-24 17:13:36 +02001664 lse_css = fdt_osc_read_bool(_LSE, "st,css");
1665 lsedrv = fdt_osc_read_uint32_default(_LSE, "st,drive",
1666 LSEDRV_MEDIUM_HIGH);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001667 stm32mp1_lse_enable(bypass, digbyp, lsedrv);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001668 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001669 if (stm32mp1_osc[_HSE] != 0U) {
1670 bool bypass, digbyp, css;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001671
Yann Gautiere4a3c352019-02-14 10:53:33 +01001672 bypass = fdt_osc_read_bool(_HSE, "st,bypass");
1673 digbyp = fdt_osc_read_bool(_HSE, "st,digbypass");
1674 css = fdt_osc_read_bool(_HSE, "st,css");
1675 stm32mp1_hse_enable(bypass, digbyp, css);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001676 }
1677 /*
1678 * CSI is mandatory for automatic I/O compensation (SYSCFG_CMPCR)
1679 * => switch on CSI even if node is not present in device tree
1680 */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001681 stm32mp1_csi_set(true);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001682
1683 /* Come back to HSI */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001684 ret = stm32mp1_set_clksrc(CLK_MPU_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001685 if (ret != 0) {
1686 return ret;
1687 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001688 ret = stm32mp1_set_clksrc(CLK_AXI_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001689 if (ret != 0) {
1690 return ret;
1691 }
Yann Gautiered342322019-02-15 17:33:27 +01001692 ret = stm32mp1_set_clksrc(CLK_MCU_HSI);
1693 if (ret != 0) {
1694 return ret;
1695 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001696
Yann Gautiere4a3c352019-02-14 10:53:33 +01001697 if ((mmio_read_32(rcc_base + RCC_MP_RSTSCLRR) &
1698 RCC_MP_RSTSCLRR_MPUP0RSTF) != 0) {
1699 pll3_preserve = stm32mp1_check_pll_conf(_PLL3,
1700 clksrc[CLKSRC_PLL3],
1701 pllcfg[_PLL3],
1702 plloff[_PLL3]);
1703 pll4_preserve = stm32mp1_check_pll_conf(_PLL4,
1704 clksrc[CLKSRC_PLL4],
1705 pllcfg[_PLL4],
1706 plloff[_PLL4]);
1707 }
1708
Yann Gautier9aea69e2018-07-24 17:13:36 +02001709 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001710 if (((i == _PLL3) && pll3_preserve) ||
1711 ((i == _PLL4) && pll4_preserve)) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001712 continue;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001713 }
1714
1715 ret = stm32mp1_pll_stop(i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001716 if (ret != 0) {
1717 return ret;
1718 }
1719 }
1720
1721 /* Configure HSIDIV */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001722 if (stm32mp1_osc[_HSI] != 0U) {
1723 ret = stm32mp1_hsidiv(stm32mp1_osc[_HSI]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001724 if (ret != 0) {
1725 return ret;
1726 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001727 stm32mp1_stgen_config();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001728 }
1729
1730 /* Select DIV */
1731 /* No ready bit when MPUSRC != CLK_MPU_PLL1P_DIV, MPUDIV is disabled */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001732 mmio_write_32(rcc_base + RCC_MPCKDIVR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001733 clkdiv[CLKDIV_MPU] & RCC_DIVR_DIV_MASK);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001734 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_AXI], rcc_base + RCC_AXIDIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001735 if (ret != 0) {
1736 return ret;
1737 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001738 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB4], rcc_base + RCC_APB4DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001739 if (ret != 0) {
1740 return ret;
1741 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001742 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB5], rcc_base + RCC_APB5DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001743 if (ret != 0) {
1744 return ret;
1745 }
Yann Gautiered342322019-02-15 17:33:27 +01001746 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_MCU], rcc_base + RCC_MCUDIVR);
1747 if (ret != 0) {
1748 return ret;
1749 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001750 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB1], rcc_base + RCC_APB1DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001751 if (ret != 0) {
1752 return ret;
1753 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001754 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB2], rcc_base + RCC_APB2DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001755 if (ret != 0) {
1756 return ret;
1757 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001758 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB3], rcc_base + RCC_APB3DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001759 if (ret != 0) {
1760 return ret;
1761 }
1762
1763 /* No ready bit for RTC */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001764 mmio_write_32(rcc_base + RCC_RTCDIVR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001765 clkdiv[CLKDIV_RTC] & RCC_DIVR_DIV_MASK);
1766
1767 /* Configure PLLs source */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001768 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_PLL12]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001769 if (ret != 0) {
1770 return ret;
1771 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001772
1773 if (!pll3_preserve) {
1774 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_PLL3]);
1775 if (ret != 0) {
1776 return ret;
1777 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001778 }
1779
Yann Gautiere4a3c352019-02-14 10:53:33 +01001780 if (!pll4_preserve) {
1781 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_PLL4]);
1782 if (ret != 0) {
1783 return ret;
1784 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001785 }
1786
1787 /* Configure and start PLLs */
1788 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
1789 uint32_t fracv;
1790 uint32_t csg[PLLCSG_NB];
1791
Yann Gautiere4a3c352019-02-14 10:53:33 +01001792 if (((i == _PLL3) && pll3_preserve) ||
1793 ((i == _PLL4) && pll4_preserve && !pll4_bootrom)) {
1794 continue;
1795 }
1796
Yann Gautier9aea69e2018-07-24 17:13:36 +02001797 if (!fdt_check_node(plloff[i])) {
1798 continue;
1799 }
1800
Yann Gautiere4a3c352019-02-14 10:53:33 +01001801 if ((i == _PLL4) && pll4_bootrom) {
1802 /* Set output divider if not done by the Bootrom */
1803 stm32mp1_pll_config_output(i, pllcfg[i]);
1804 continue;
1805 }
1806
Yann Gautier9aea69e2018-07-24 17:13:36 +02001807 fracv = fdt_read_uint32_default(plloff[i], "frac", 0);
1808
Yann Gautiere4a3c352019-02-14 10:53:33 +01001809 ret = stm32mp1_pll_config(i, pllcfg[i], fracv);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001810 if (ret != 0) {
1811 return ret;
1812 }
1813 ret = fdt_read_uint32_array(plloff[i], "csg", csg,
1814 (uint32_t)PLLCSG_NB);
1815 if (ret == 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001816 stm32mp1_pll_csg(i, csg);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001817 } else if (ret != -FDT_ERR_NOTFOUND) {
1818 return ret;
1819 }
1820
Yann Gautiere4a3c352019-02-14 10:53:33 +01001821 stm32mp1_pll_start(i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001822 }
1823 /* Wait and start PLLs ouptut when ready */
1824 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
1825 if (!fdt_check_node(plloff[i])) {
1826 continue;
1827 }
1828
Yann Gautiere4a3c352019-02-14 10:53:33 +01001829 ret = stm32mp1_pll_output(i, pllcfg[i][PLLCFG_O]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001830 if (ret != 0) {
1831 return ret;
1832 }
1833 }
1834 /* Wait LSE ready before to use it */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001835 if (stm32mp1_osc[_LSE] != 0U) {
1836 stm32mp1_lse_wait();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001837 }
1838
1839 /* Configure with expected clock source */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001840 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_MPU]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001841 if (ret != 0) {
1842 return ret;
1843 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001844 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_AXI]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001845 if (ret != 0) {
1846 return ret;
1847 }
Yann Gautiered342322019-02-15 17:33:27 +01001848 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_MCU]);
1849 if (ret != 0) {
1850 return ret;
1851 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001852 stm32mp1_set_rtcsrc(clksrc[CLKSRC_RTC], lse_css);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001853
1854 /* Configure PKCK */
1855 pkcs_cell = fdt_rcc_read_prop("st,pkcs", &len);
1856 if (pkcs_cell != NULL) {
1857 bool ckper_disabled = false;
1858 uint32_t j;
1859
Yann Gautier9aea69e2018-07-24 17:13:36 +02001860 for (j = 0; j < ((uint32_t)len / sizeof(uint32_t)); j++) {
Yann Gautierf9af3bc2018-11-09 15:57:18 +01001861 uint32_t pkcs = fdt32_to_cpu(pkcs_cell[j]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001862
1863 if (pkcs == (uint32_t)CLK_CKPER_DISABLED) {
1864 ckper_disabled = true;
1865 continue;
1866 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001867 stm32mp1_pkcs_config(pkcs);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001868 }
1869
1870 /*
1871 * CKPER is source for some peripheral clocks
1872 * (FMC-NAND / QPSI-NOR) and switching source is allowed
1873 * only if previous clock is still ON
1874 * => deactivated CKPER only after switching clock
1875 */
1876 if (ckper_disabled) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001877 stm32mp1_pkcs_config(CLK_CKPER_DISABLED);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001878 }
1879 }
1880
1881 /* Switch OFF HSI if not found in device-tree */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001882 if (stm32mp1_osc[_HSI] == 0U) {
1883 stm32mp1_hsi_set(false);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001884 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001885 stm32mp1_stgen_config();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001886
1887 /* Software Self-Refresh mode (SSR) during DDR initilialization */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001888 mmio_clrsetbits_32(rcc_base + RCC_DDRITFCR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001889 RCC_DDRITFCR_DDRCKMOD_MASK,
1890 RCC_DDRITFCR_DDRCKMOD_SSR <<
1891 RCC_DDRITFCR_DDRCKMOD_SHIFT);
1892
1893 return 0;
1894}
1895
1896static void stm32mp1_osc_clk_init(const char *name,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001897 enum stm32mp_osc_id index)
1898{
1899 uint32_t frequency;
1900
Yann Gautiere4a3c352019-02-14 10:53:33 +01001901 if (fdt_osc_read_freq(name, &frequency) == 0) {
1902 stm32mp1_osc[index] = frequency;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001903 }
1904}
1905
1906static void stm32mp1_osc_init(void)
1907{
Yann Gautier9aea69e2018-07-24 17:13:36 +02001908 enum stm32mp_osc_id i;
1909
1910 for (i = (enum stm32mp_osc_id)0 ; i < NB_OSC; i++) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001911 stm32mp1_osc_clk_init(stm32mp_osc_node_label[i], i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001912 }
1913}
1914
1915int stm32mp1_clk_probe(void)
1916{
Yann Gautier9aea69e2018-07-24 17:13:36 +02001917 stm32mp1_osc_init();
1918
1919 return 0;
1920}