blob: 0cc87cc71d76937421f978900cf12f5415584c05 [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
Yann Gautiere4a3c352019-02-14 10:53:33 +0100544static void stm32mp1_clk_lock(struct spinlock *lock)
545{
Yann Gautierf540a592019-05-22 19:13:51 +0200546 if (stm32mp_lock_available()) {
547 /* Assume interrupts are masked */
548 spin_lock(lock);
Yann Gautiere4a3c352019-02-14 10:53:33 +0100549 }
Yann Gautiere4a3c352019-02-14 10:53:33 +0100550}
551
552static void stm32mp1_clk_unlock(struct spinlock *lock)
553{
Yann Gautierf540a592019-05-22 19:13:51 +0200554 if (stm32mp_lock_available()) {
555 spin_unlock(lock);
Yann Gautiere4a3c352019-02-14 10:53:33 +0100556 }
Yann Gautiere4a3c352019-02-14 10:53:33 +0100557}
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);
Yann Gautier9d8bbcd2019-05-07 18:49:33 +0200651 p_sel = (mmio_read_32(rcc_base + sel->offset) & sel->msk) >> sel->src;
Yann Gautiere4a3c352019-02-14 10:53:33 +0100652 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 Gautierd0dcbaa2019-06-04 15:55:37 +02001308 /* Preserve RCC_PLLNCR_SSCG_CTRL value */
1309 mmio_clrsetbits_32(pllxcr,
1310 RCC_PLLNCR_DIVPEN | RCC_PLLNCR_DIVQEN |
1311 RCC_PLLNCR_DIVREN,
1312 RCC_PLLNCR_PLLON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001313}
1314
Yann Gautiere4a3c352019-02-14 10:53:33 +01001315static int stm32mp1_pll_output(enum stm32mp1_pll_id pll_id, uint32_t output)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001316{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001317 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1318 uintptr_t pllxcr = stm32mp_rcc_base() + pll->pllxcr;
Yann Gautier2299d572019-02-14 11:14:39 +01001319 uint64_t timeout = timeout_init_us(PLLRDY_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001320
Yann Gautier9aea69e2018-07-24 17:13:36 +02001321 /* Wait PLL lock */
1322 while ((mmio_read_32(pllxcr) & RCC_PLLNCR_PLLRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001323 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001324 ERROR("PLL%d start failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001325 pll_id, pllxcr, mmio_read_32(pllxcr));
1326 return -ETIMEDOUT;
1327 }
1328 }
1329
1330 /* Start the requested output */
1331 mmio_setbits_32(pllxcr, output << RCC_PLLNCR_DIVEN_SHIFT);
1332
1333 return 0;
1334}
1335
Yann Gautiere4a3c352019-02-14 10:53:33 +01001336static int stm32mp1_pll_stop(enum stm32mp1_pll_id pll_id)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001337{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001338 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1339 uintptr_t pllxcr = stm32mp_rcc_base() + pll->pllxcr;
Yann Gautier2299d572019-02-14 11:14:39 +01001340 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001341
1342 /* Stop all output */
1343 mmio_clrbits_32(pllxcr, RCC_PLLNCR_DIVPEN | RCC_PLLNCR_DIVQEN |
1344 RCC_PLLNCR_DIVREN);
1345
1346 /* Stop PLL */
1347 mmio_clrbits_32(pllxcr, RCC_PLLNCR_PLLON);
1348
Yann Gautier2299d572019-02-14 11:14:39 +01001349 timeout = timeout_init_us(PLLRDY_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001350 /* Wait PLL stopped */
1351 while ((mmio_read_32(pllxcr) & RCC_PLLNCR_PLLRDY) != 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001352 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001353 ERROR("PLL%d stop failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001354 pll_id, pllxcr, mmio_read_32(pllxcr));
1355 return -ETIMEDOUT;
1356 }
1357 }
1358
1359 return 0;
1360}
1361
Yann Gautiere4a3c352019-02-14 10:53:33 +01001362static void stm32mp1_pll_config_output(enum stm32mp1_pll_id pll_id,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001363 uint32_t *pllcfg)
1364{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001365 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1366 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001367 uint32_t value;
1368
1369 value = (pllcfg[PLLCFG_P] << RCC_PLLNCFGR2_DIVP_SHIFT) &
1370 RCC_PLLNCFGR2_DIVP_MASK;
1371 value |= (pllcfg[PLLCFG_Q] << RCC_PLLNCFGR2_DIVQ_SHIFT) &
1372 RCC_PLLNCFGR2_DIVQ_MASK;
1373 value |= (pllcfg[PLLCFG_R] << RCC_PLLNCFGR2_DIVR_SHIFT) &
1374 RCC_PLLNCFGR2_DIVR_MASK;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001375 mmio_write_32(rcc_base + pll->pllxcfgr2, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001376}
1377
Yann Gautiere4a3c352019-02-14 10:53:33 +01001378static int stm32mp1_pll_config(enum stm32mp1_pll_id pll_id,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001379 uint32_t *pllcfg, uint32_t fracv)
1380{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001381 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
1382 uintptr_t rcc_base = stm32mp_rcc_base();
1383 enum stm32mp1_plltype type = pll->plltype;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001384 unsigned long refclk;
1385 uint32_t ifrge = 0;
1386 uint32_t src, value;
1387
Yann Gautiere4a3c352019-02-14 10:53:33 +01001388 src = mmio_read_32(rcc_base + pll->rckxselr) &
Yann Gautier9aea69e2018-07-24 17:13:36 +02001389 RCC_SELR_REFCLK_SRC_MASK;
1390
Yann Gautiere4a3c352019-02-14 10:53:33 +01001391 refclk = stm32mp1_clk_get_fixed(pll->refclk[src]) /
Yann Gautier9aea69e2018-07-24 17:13:36 +02001392 (pllcfg[PLLCFG_M] + 1U);
1393
1394 if ((refclk < (stm32mp1_pll[type].refclk_min * 1000000U)) ||
1395 (refclk > (stm32mp1_pll[type].refclk_max * 1000000U))) {
1396 return -EINVAL;
1397 }
1398
1399 if ((type == PLL_800) && (refclk >= 8000000U)) {
1400 ifrge = 1U;
1401 }
1402
1403 value = (pllcfg[PLLCFG_N] << RCC_PLLNCFGR1_DIVN_SHIFT) &
1404 RCC_PLLNCFGR1_DIVN_MASK;
1405 value |= (pllcfg[PLLCFG_M] << RCC_PLLNCFGR1_DIVM_SHIFT) &
1406 RCC_PLLNCFGR1_DIVM_MASK;
1407 value |= (ifrge << RCC_PLLNCFGR1_IFRGE_SHIFT) &
1408 RCC_PLLNCFGR1_IFRGE_MASK;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001409 mmio_write_32(rcc_base + pll->pllxcfgr1, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001410
1411 /* Fractional configuration */
1412 value = 0;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001413 mmio_write_32(rcc_base + pll->pllxfracr, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001414
1415 value = fracv << RCC_PLLNFRACR_FRACV_SHIFT;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001416 mmio_write_32(rcc_base + pll->pllxfracr, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001417
1418 value |= RCC_PLLNFRACR_FRACLE;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001419 mmio_write_32(rcc_base + pll->pllxfracr, value);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001420
Yann Gautiere4a3c352019-02-14 10:53:33 +01001421 stm32mp1_pll_config_output(pll_id, pllcfg);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001422
1423 return 0;
1424}
1425
Yann Gautiere4a3c352019-02-14 10:53:33 +01001426static void stm32mp1_pll_csg(enum stm32mp1_pll_id pll_id, uint32_t *csg)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001427{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001428 const struct stm32mp1_clk_pll *pll = pll_ref(pll_id);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001429 uint32_t pllxcsg = 0;
1430
1431 pllxcsg |= (csg[PLLCSG_MOD_PER] << RCC_PLLNCSGR_MOD_PER_SHIFT) &
1432 RCC_PLLNCSGR_MOD_PER_MASK;
1433
1434 pllxcsg |= (csg[PLLCSG_INC_STEP] << RCC_PLLNCSGR_INC_STEP_SHIFT) &
1435 RCC_PLLNCSGR_INC_STEP_MASK;
1436
1437 pllxcsg |= (csg[PLLCSG_SSCG_MODE] << RCC_PLLNCSGR_SSCG_MODE_SHIFT) &
1438 RCC_PLLNCSGR_SSCG_MODE_MASK;
1439
Yann Gautiere4a3c352019-02-14 10:53:33 +01001440 mmio_write_32(stm32mp_rcc_base() + pll->pllxcsgr, pllxcsg);
Yann Gautierd0dcbaa2019-06-04 15:55:37 +02001441
1442 mmio_setbits_32(stm32mp_rcc_base() + pll->pllxcr,
1443 RCC_PLLNCR_SSCG_CTRL);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001444}
1445
Yann Gautiere4a3c352019-02-14 10:53:33 +01001446static int stm32mp1_set_clksrc(unsigned int clksrc)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001447{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001448 uintptr_t clksrc_address = stm32mp_rcc_base() + (clksrc >> 4);
Yann Gautier2299d572019-02-14 11:14:39 +01001449 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001450
Yann Gautiere4a3c352019-02-14 10:53:33 +01001451 mmio_clrsetbits_32(clksrc_address, RCC_SELR_SRC_MASK,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001452 clksrc & RCC_SELR_SRC_MASK);
1453
Yann Gautier2299d572019-02-14 11:14:39 +01001454 timeout = timeout_init_us(CLKSRC_TIMEOUT);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001455 while ((mmio_read_32(clksrc_address) & RCC_SELR_SRCRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001456 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001457 ERROR("CLKSRC %x start failed @ 0x%lx: 0x%x\n", clksrc,
1458 clksrc_address, mmio_read_32(clksrc_address));
Yann Gautier9aea69e2018-07-24 17:13:36 +02001459 return -ETIMEDOUT;
1460 }
1461 }
1462
1463 return 0;
1464}
1465
Yann Gautiere4a3c352019-02-14 10:53:33 +01001466static int stm32mp1_set_clkdiv(unsigned int clkdiv, uintptr_t address)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001467{
Yann Gautier2299d572019-02-14 11:14:39 +01001468 uint64_t timeout;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001469
1470 mmio_clrsetbits_32(address, RCC_DIVR_DIV_MASK,
1471 clkdiv & RCC_DIVR_DIV_MASK);
1472
Yann Gautier2299d572019-02-14 11:14:39 +01001473 timeout = timeout_init_us(CLKDIV_TIMEOUT);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001474 while ((mmio_read_32(address) & RCC_DIVR_DIVRDY) == 0U) {
Yann Gautier2299d572019-02-14 11:14:39 +01001475 if (timeout_elapsed(timeout)) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001476 ERROR("CLKDIV %x start failed @ 0x%lx: 0x%x\n",
Yann Gautier9aea69e2018-07-24 17:13:36 +02001477 clkdiv, address, mmio_read_32(address));
1478 return -ETIMEDOUT;
1479 }
1480 }
1481
1482 return 0;
1483}
1484
Yann Gautiere4a3c352019-02-14 10:53:33 +01001485static void stm32mp1_mco_csg(uint32_t clksrc, uint32_t clkdiv)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001486{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001487 uintptr_t clksrc_address = stm32mp_rcc_base() + (clksrc >> 4);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001488
1489 /*
1490 * Binding clksrc :
1491 * bit15-4 offset
1492 * bit3: disable
1493 * bit2-0: MCOSEL[2:0]
1494 */
1495 if ((clksrc & 0x8U) != 0U) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001496 mmio_clrbits_32(clksrc_address, RCC_MCOCFG_MCOON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001497 } else {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001498 mmio_clrsetbits_32(clksrc_address,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001499 RCC_MCOCFG_MCOSRC_MASK,
1500 clksrc & RCC_MCOCFG_MCOSRC_MASK);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001501 mmio_clrsetbits_32(clksrc_address,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001502 RCC_MCOCFG_MCODIV_MASK,
1503 clkdiv << RCC_MCOCFG_MCODIV_SHIFT);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001504 mmio_setbits_32(clksrc_address, RCC_MCOCFG_MCOON);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001505 }
1506}
1507
Yann Gautiere4a3c352019-02-14 10:53:33 +01001508static void stm32mp1_set_rtcsrc(unsigned int clksrc, bool lse_css)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001509{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001510 uintptr_t address = stm32mp_rcc_base() + RCC_BDCR;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001511
1512 if (((mmio_read_32(address) & RCC_BDCR_RTCCKEN) == 0U) ||
1513 (clksrc != (uint32_t)CLK_RTC_DISABLED)) {
1514 mmio_clrsetbits_32(address,
1515 RCC_BDCR_RTCSRC_MASK,
1516 clksrc << RCC_BDCR_RTCSRC_SHIFT);
1517
1518 mmio_setbits_32(address, RCC_BDCR_RTCCKEN);
1519 }
1520
1521 if (lse_css) {
1522 mmio_setbits_32(address, RCC_BDCR_LSECSSON);
1523 }
1524}
1525
Yann Gautiere4a3c352019-02-14 10:53:33 +01001526static void stm32mp1_stgen_config(void)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001527{
1528 uintptr_t stgen;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001529 uint32_t cntfid0;
1530 unsigned long rate;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001531 unsigned long long counter;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001532
1533 stgen = fdt_get_stgen_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001534 cntfid0 = mmio_read_32(stgen + CNTFID_OFF);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001535 rate = get_clock_rate(stm32mp1_clk_get_parent(STGEN_K));
Yann Gautier9aea69e2018-07-24 17:13:36 +02001536
Yann Gautiere4a3c352019-02-14 10:53:33 +01001537 if (cntfid0 == rate) {
1538 return;
1539 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001540
Yann Gautiere4a3c352019-02-14 10:53:33 +01001541 mmio_clrbits_32(stgen + CNTCR_OFF, CNTCR_EN);
1542 counter = (unsigned long long)mmio_read_32(stgen + CNTCVL_OFF);
1543 counter |= ((unsigned long long)mmio_read_32(stgen + CNTCVU_OFF)) << 32;
1544 counter = (counter * rate / cntfid0);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001545
Yann Gautiere4a3c352019-02-14 10:53:33 +01001546 mmio_write_32(stgen + CNTCVL_OFF, (uint32_t)counter);
1547 mmio_write_32(stgen + CNTCVU_OFF, (uint32_t)(counter >> 32));
1548 mmio_write_32(stgen + CNTFID_OFF, rate);
1549 mmio_setbits_32(stgen + CNTCR_OFF, CNTCR_EN);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001550
Yann Gautiere4a3c352019-02-14 10:53:33 +01001551 write_cntfrq((u_register_t)rate);
1552
1553 /* Need to update timer with new frequency */
1554 generic_delay_timer_init();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001555}
1556
1557void stm32mp1_stgen_increment(unsigned long long offset_in_ms)
1558{
1559 uintptr_t stgen;
1560 unsigned long long cnt;
1561
1562 stgen = fdt_get_stgen_base();
1563
1564 cnt = ((unsigned long long)mmio_read_32(stgen + CNTCVU_OFF) << 32) |
1565 mmio_read_32(stgen + CNTCVL_OFF);
1566
1567 cnt += (offset_in_ms * mmio_read_32(stgen + CNTFID_OFF)) / 1000U;
1568
1569 mmio_clrbits_32(stgen + CNTCR_OFF, CNTCR_EN);
1570 mmio_write_32(stgen + CNTCVL_OFF, (uint32_t)cnt);
1571 mmio_write_32(stgen + CNTCVU_OFF, (uint32_t)(cnt >> 32));
1572 mmio_setbits_32(stgen + CNTCR_OFF, CNTCR_EN);
1573}
1574
Yann Gautiere4a3c352019-02-14 10:53:33 +01001575static void stm32mp1_pkcs_config(uint32_t pkcs)
Yann Gautier9aea69e2018-07-24 17:13:36 +02001576{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001577 uintptr_t address = stm32mp_rcc_base() + ((pkcs >> 4) & 0xFFFU);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001578 uint32_t value = pkcs & 0xFU;
1579 uint32_t mask = 0xFU;
1580
1581 if ((pkcs & BIT(31)) != 0U) {
1582 mask <<= 4;
1583 value <<= 4;
1584 }
1585
1586 mmio_clrsetbits_32(address, mask, value);
1587}
1588
1589int stm32mp1_clk_init(void)
1590{
Yann Gautiere4a3c352019-02-14 10:53:33 +01001591 uintptr_t rcc_base = stm32mp_rcc_base();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001592 unsigned int clksrc[CLKSRC_NB];
1593 unsigned int clkdiv[CLKDIV_NB];
1594 unsigned int pllcfg[_PLL_NB][PLLCFG_NB];
1595 int plloff[_PLL_NB];
1596 int ret, len;
1597 enum stm32mp1_pll_id i;
1598 bool lse_css = false;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001599 bool pll3_preserve = false;
1600 bool pll4_preserve = false;
1601 bool pll4_bootrom = false;
Yann Gautierf9af3bc2018-11-09 15:57:18 +01001602 const fdt32_t *pkcs_cell;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001603
1604 /* Check status field to disable security */
1605 if (!fdt_get_rcc_secure_status()) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001606 mmio_write_32(rcc_base + RCC_TZCR, 0);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001607 }
1608
1609 ret = fdt_rcc_read_uint32_array("st,clksrc", clksrc,
1610 (uint32_t)CLKSRC_NB);
1611 if (ret < 0) {
1612 return -FDT_ERR_NOTFOUND;
1613 }
1614
1615 ret = fdt_rcc_read_uint32_array("st,clkdiv", clkdiv,
1616 (uint32_t)CLKDIV_NB);
1617 if (ret < 0) {
1618 return -FDT_ERR_NOTFOUND;
1619 }
1620
1621 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
1622 char name[12];
1623
Antonio Nino Diaz00086e32018-08-16 16:46:06 +01001624 snprintf(name, sizeof(name), "st,pll@%d", i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001625 plloff[i] = fdt_rcc_subnode_offset(name);
1626
1627 if (!fdt_check_node(plloff[i])) {
1628 continue;
1629 }
1630
1631 ret = fdt_read_uint32_array(plloff[i], "cfg",
1632 pllcfg[i], (int)PLLCFG_NB);
1633 if (ret < 0) {
1634 return -FDT_ERR_NOTFOUND;
1635 }
1636 }
1637
Yann Gautiere4a3c352019-02-14 10:53:33 +01001638 stm32mp1_mco_csg(clksrc[CLKSRC_MCO1], clkdiv[CLKDIV_MCO1]);
1639 stm32mp1_mco_csg(clksrc[CLKSRC_MCO2], clkdiv[CLKDIV_MCO2]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001640
1641 /*
1642 * Switch ON oscillator found in device-tree.
1643 * Note: HSI already ON after BootROM stage.
1644 */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001645 if (stm32mp1_osc[_LSI] != 0U) {
1646 stm32mp1_lsi_set(true);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001647 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001648 if (stm32mp1_osc[_LSE] != 0U) {
1649 bool bypass, digbyp;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001650 uint32_t lsedrv;
1651
1652 bypass = fdt_osc_read_bool(_LSE, "st,bypass");
Yann Gautiere4a3c352019-02-14 10:53:33 +01001653 digbyp = fdt_osc_read_bool(_LSE, "st,digbypass");
Yann Gautier9aea69e2018-07-24 17:13:36 +02001654 lse_css = fdt_osc_read_bool(_LSE, "st,css");
1655 lsedrv = fdt_osc_read_uint32_default(_LSE, "st,drive",
1656 LSEDRV_MEDIUM_HIGH);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001657 stm32mp1_lse_enable(bypass, digbyp, lsedrv);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001658 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001659 if (stm32mp1_osc[_HSE] != 0U) {
1660 bool bypass, digbyp, css;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001661
Yann Gautiere4a3c352019-02-14 10:53:33 +01001662 bypass = fdt_osc_read_bool(_HSE, "st,bypass");
1663 digbyp = fdt_osc_read_bool(_HSE, "st,digbypass");
1664 css = fdt_osc_read_bool(_HSE, "st,css");
1665 stm32mp1_hse_enable(bypass, digbyp, css);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001666 }
1667 /*
1668 * CSI is mandatory for automatic I/O compensation (SYSCFG_CMPCR)
1669 * => switch on CSI even if node is not present in device tree
1670 */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001671 stm32mp1_csi_set(true);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001672
1673 /* Come back to HSI */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001674 ret = stm32mp1_set_clksrc(CLK_MPU_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001675 if (ret != 0) {
1676 return ret;
1677 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001678 ret = stm32mp1_set_clksrc(CLK_AXI_HSI);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001679 if (ret != 0) {
1680 return ret;
1681 }
Yann Gautiered342322019-02-15 17:33:27 +01001682 ret = stm32mp1_set_clksrc(CLK_MCU_HSI);
1683 if (ret != 0) {
1684 return ret;
1685 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001686
Yann Gautiere4a3c352019-02-14 10:53:33 +01001687 if ((mmio_read_32(rcc_base + RCC_MP_RSTSCLRR) &
1688 RCC_MP_RSTSCLRR_MPUP0RSTF) != 0) {
1689 pll3_preserve = stm32mp1_check_pll_conf(_PLL3,
1690 clksrc[CLKSRC_PLL3],
1691 pllcfg[_PLL3],
1692 plloff[_PLL3]);
1693 pll4_preserve = stm32mp1_check_pll_conf(_PLL4,
1694 clksrc[CLKSRC_PLL4],
1695 pllcfg[_PLL4],
1696 plloff[_PLL4]);
1697 }
1698
Yann Gautier9aea69e2018-07-24 17:13:36 +02001699 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001700 if (((i == _PLL3) && pll3_preserve) ||
1701 ((i == _PLL4) && pll4_preserve)) {
Yann Gautier9aea69e2018-07-24 17:13:36 +02001702 continue;
Yann Gautiere4a3c352019-02-14 10:53:33 +01001703 }
1704
1705 ret = stm32mp1_pll_stop(i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001706 if (ret != 0) {
1707 return ret;
1708 }
1709 }
1710
1711 /* Configure HSIDIV */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001712 if (stm32mp1_osc[_HSI] != 0U) {
1713 ret = stm32mp1_hsidiv(stm32mp1_osc[_HSI]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001714 if (ret != 0) {
1715 return ret;
1716 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001717 stm32mp1_stgen_config();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001718 }
1719
1720 /* Select DIV */
1721 /* No ready bit when MPUSRC != CLK_MPU_PLL1P_DIV, MPUDIV is disabled */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001722 mmio_write_32(rcc_base + RCC_MPCKDIVR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001723 clkdiv[CLKDIV_MPU] & RCC_DIVR_DIV_MASK);
Yann Gautiere4a3c352019-02-14 10:53:33 +01001724 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_AXI], rcc_base + RCC_AXIDIVR);
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_APB4], rcc_base + RCC_APB4DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001729 if (ret != 0) {
1730 return ret;
1731 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001732 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB5], rcc_base + RCC_APB5DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001733 if (ret != 0) {
1734 return ret;
1735 }
Yann Gautiered342322019-02-15 17:33:27 +01001736 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_MCU], rcc_base + RCC_MCUDIVR);
1737 if (ret != 0) {
1738 return ret;
1739 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001740 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB1], rcc_base + RCC_APB1DIVR);
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_APB2], rcc_base + RCC_APB2DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001745 if (ret != 0) {
1746 return ret;
1747 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001748 ret = stm32mp1_set_clkdiv(clkdiv[CLKDIV_APB3], rcc_base + RCC_APB3DIVR);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001749 if (ret != 0) {
1750 return ret;
1751 }
1752
1753 /* No ready bit for RTC */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001754 mmio_write_32(rcc_base + RCC_RTCDIVR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001755 clkdiv[CLKDIV_RTC] & RCC_DIVR_DIV_MASK);
1756
1757 /* Configure PLLs source */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001758 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_PLL12]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001759 if (ret != 0) {
1760 return ret;
1761 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001762
1763 if (!pll3_preserve) {
1764 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_PLL3]);
1765 if (ret != 0) {
1766 return ret;
1767 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001768 }
1769
Yann Gautiere4a3c352019-02-14 10:53:33 +01001770 if (!pll4_preserve) {
1771 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_PLL4]);
1772 if (ret != 0) {
1773 return ret;
1774 }
Yann Gautier9aea69e2018-07-24 17:13:36 +02001775 }
1776
1777 /* Configure and start PLLs */
1778 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
1779 uint32_t fracv;
1780 uint32_t csg[PLLCSG_NB];
1781
Yann Gautiere4a3c352019-02-14 10:53:33 +01001782 if (((i == _PLL3) && pll3_preserve) ||
1783 ((i == _PLL4) && pll4_preserve && !pll4_bootrom)) {
1784 continue;
1785 }
1786
Yann Gautier9aea69e2018-07-24 17:13:36 +02001787 if (!fdt_check_node(plloff[i])) {
1788 continue;
1789 }
1790
Yann Gautiere4a3c352019-02-14 10:53:33 +01001791 if ((i == _PLL4) && pll4_bootrom) {
1792 /* Set output divider if not done by the Bootrom */
1793 stm32mp1_pll_config_output(i, pllcfg[i]);
1794 continue;
1795 }
1796
Yann Gautier9aea69e2018-07-24 17:13:36 +02001797 fracv = fdt_read_uint32_default(plloff[i], "frac", 0);
1798
Yann Gautiere4a3c352019-02-14 10:53:33 +01001799 ret = stm32mp1_pll_config(i, pllcfg[i], fracv);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001800 if (ret != 0) {
1801 return ret;
1802 }
1803 ret = fdt_read_uint32_array(plloff[i], "csg", csg,
1804 (uint32_t)PLLCSG_NB);
1805 if (ret == 0) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001806 stm32mp1_pll_csg(i, csg);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001807 } else if (ret != -FDT_ERR_NOTFOUND) {
1808 return ret;
1809 }
1810
Yann Gautiere4a3c352019-02-14 10:53:33 +01001811 stm32mp1_pll_start(i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001812 }
1813 /* Wait and start PLLs ouptut when ready */
1814 for (i = (enum stm32mp1_pll_id)0; i < _PLL_NB; i++) {
1815 if (!fdt_check_node(plloff[i])) {
1816 continue;
1817 }
1818
Yann Gautiere4a3c352019-02-14 10:53:33 +01001819 ret = stm32mp1_pll_output(i, pllcfg[i][PLLCFG_O]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001820 if (ret != 0) {
1821 return ret;
1822 }
1823 }
1824 /* Wait LSE ready before to use it */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001825 if (stm32mp1_osc[_LSE] != 0U) {
1826 stm32mp1_lse_wait();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001827 }
1828
1829 /* Configure with expected clock source */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001830 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_MPU]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001831 if (ret != 0) {
1832 return ret;
1833 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001834 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_AXI]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001835 if (ret != 0) {
1836 return ret;
1837 }
Yann Gautiered342322019-02-15 17:33:27 +01001838 ret = stm32mp1_set_clksrc(clksrc[CLKSRC_MCU]);
1839 if (ret != 0) {
1840 return ret;
1841 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001842 stm32mp1_set_rtcsrc(clksrc[CLKSRC_RTC], lse_css);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001843
1844 /* Configure PKCK */
1845 pkcs_cell = fdt_rcc_read_prop("st,pkcs", &len);
1846 if (pkcs_cell != NULL) {
1847 bool ckper_disabled = false;
1848 uint32_t j;
1849
Yann Gautier9aea69e2018-07-24 17:13:36 +02001850 for (j = 0; j < ((uint32_t)len / sizeof(uint32_t)); j++) {
Yann Gautierf9af3bc2018-11-09 15:57:18 +01001851 uint32_t pkcs = fdt32_to_cpu(pkcs_cell[j]);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001852
1853 if (pkcs == (uint32_t)CLK_CKPER_DISABLED) {
1854 ckper_disabled = true;
1855 continue;
1856 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001857 stm32mp1_pkcs_config(pkcs);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001858 }
1859
1860 /*
1861 * CKPER is source for some peripheral clocks
1862 * (FMC-NAND / QPSI-NOR) and switching source is allowed
1863 * only if previous clock is still ON
1864 * => deactivated CKPER only after switching clock
1865 */
1866 if (ckper_disabled) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001867 stm32mp1_pkcs_config(CLK_CKPER_DISABLED);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001868 }
1869 }
1870
1871 /* Switch OFF HSI if not found in device-tree */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001872 if (stm32mp1_osc[_HSI] == 0U) {
1873 stm32mp1_hsi_set(false);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001874 }
Yann Gautiere4a3c352019-02-14 10:53:33 +01001875 stm32mp1_stgen_config();
Yann Gautier9aea69e2018-07-24 17:13:36 +02001876
1877 /* Software Self-Refresh mode (SSR) during DDR initilialization */
Yann Gautiere4a3c352019-02-14 10:53:33 +01001878 mmio_clrsetbits_32(rcc_base + RCC_DDRITFCR,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001879 RCC_DDRITFCR_DDRCKMOD_MASK,
1880 RCC_DDRITFCR_DDRCKMOD_SSR <<
1881 RCC_DDRITFCR_DDRCKMOD_SHIFT);
1882
1883 return 0;
1884}
1885
1886static void stm32mp1_osc_clk_init(const char *name,
Yann Gautier9aea69e2018-07-24 17:13:36 +02001887 enum stm32mp_osc_id index)
1888{
1889 uint32_t frequency;
1890
Yann Gautiere4a3c352019-02-14 10:53:33 +01001891 if (fdt_osc_read_freq(name, &frequency) == 0) {
1892 stm32mp1_osc[index] = frequency;
Yann Gautier9aea69e2018-07-24 17:13:36 +02001893 }
1894}
1895
1896static void stm32mp1_osc_init(void)
1897{
Yann Gautier9aea69e2018-07-24 17:13:36 +02001898 enum stm32mp_osc_id i;
1899
1900 for (i = (enum stm32mp_osc_id)0 ; i < NB_OSC; i++) {
Yann Gautiere4a3c352019-02-14 10:53:33 +01001901 stm32mp1_osc_clk_init(stm32mp_osc_node_label[i], i);
Yann Gautier9aea69e2018-07-24 17:13:36 +02001902 }
1903}
1904
Yann Gautierc7f9e962019-05-20 14:39:26 +02001905static void sync_earlyboot_clocks_state(void)
1906{
1907 if (!stm32mp_is_single_core()) {
1908 stm32mp1_clk_enable_secure(RTCAPB);
1909 }
1910}
1911
Yann Gautier9aea69e2018-07-24 17:13:36 +02001912int stm32mp1_clk_probe(void)
1913{
Yann Gautier9aea69e2018-07-24 17:13:36 +02001914 stm32mp1_osc_init();
1915
Yann Gautierc7f9e962019-05-20 14:39:26 +02001916 sync_earlyboot_clocks_state();
1917
Yann Gautier9aea69e2018-07-24 17:13:36 +02001918 return 0;
1919}