blob: cbcfe3a89dd780ae4bff1defde0af0d2de9f9aa4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vikas Manochae66c49f2016-02-11 15:47:20 -08002/*
Patrice Chotard3bc599c2017-10-23 09:53:58 +02003 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
4 * Author(s): Vikas Manocha, <vikas.manocha@st.com> for STMicroelectronics.
Vikas Manochae66c49f2016-02-11 15:47:20 -08005 */
Patrice Chotard3bc599c2017-10-23 09:53:58 +02006
Vikas Manochae66c49f2016-02-11 15:47:20 -08007#include <common.h>
Vikas Manocha712f99a2017-02-12 10:25:45 -08008#include <clk-uclass.h>
9#include <dm.h>
Patrice Chotard928954f2017-11-15 13:14:51 +010010#include <stm32_rcc.h>
Patrice Chotardd0a768b2017-11-15 13:14:44 +010011
Vikas Manochae66c49f2016-02-11 15:47:20 -080012#include <asm/io.h>
Vikas Manochae66c49f2016-02-11 15:47:20 -080013#include <asm/arch/stm32.h>
Patrice Chotardd0a768b2017-11-15 13:14:44 +010014#include <asm/arch/stm32_pwr.h>
Vikas Manochae66c49f2016-02-11 15:47:20 -080015
Patrice Chotard288f17e2017-07-18 09:29:05 +020016#include <dt-bindings/mfd/stm32f7-rcc.h>
17
Michael Kurzbad51882017-01-22 16:04:24 +010018#define RCC_CR_HSION BIT(0)
19#define RCC_CR_HSEON BIT(16)
20#define RCC_CR_HSERDY BIT(17)
21#define RCC_CR_HSEBYP BIT(18)
22#define RCC_CR_CSSON BIT(19)
23#define RCC_CR_PLLON BIT(24)
24#define RCC_CR_PLLRDY BIT(25)
Patrice Chotard4e97e252017-11-15 13:14:52 +010025#define RCC_CR_PLLSAION BIT(28)
26#define RCC_CR_PLLSAIRDY BIT(29)
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +090027
Michael Kurzbad51882017-01-22 16:04:24 +010028#define RCC_PLLCFGR_PLLM_MASK GENMASK(5, 0)
29#define RCC_PLLCFGR_PLLN_MASK GENMASK(14, 6)
30#define RCC_PLLCFGR_PLLP_MASK GENMASK(17, 16)
31#define RCC_PLLCFGR_PLLQ_MASK GENMASK(27, 24)
32#define RCC_PLLCFGR_PLLSRC BIT(22)
33#define RCC_PLLCFGR_PLLM_SHIFT 0
34#define RCC_PLLCFGR_PLLN_SHIFT 6
35#define RCC_PLLCFGR_PLLP_SHIFT 16
36#define RCC_PLLCFGR_PLLQ_SHIFT 24
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +090037
Michael Kurzbad51882017-01-22 16:04:24 +010038#define RCC_CFGR_AHB_PSC_MASK GENMASK(7, 4)
39#define RCC_CFGR_APB1_PSC_MASK GENMASK(12, 10)
40#define RCC_CFGR_APB2_PSC_MASK GENMASK(15, 13)
41#define RCC_CFGR_SW0 BIT(0)
42#define RCC_CFGR_SW1 BIT(1)
43#define RCC_CFGR_SW_MASK GENMASK(1, 0)
44#define RCC_CFGR_SW_HSI 0
45#define RCC_CFGR_SW_HSE RCC_CFGR_SW0
46#define RCC_CFGR_SW_PLL RCC_CFGR_SW1
47#define RCC_CFGR_SWS0 BIT(2)
48#define RCC_CFGR_SWS1 BIT(3)
49#define RCC_CFGR_SWS_MASK GENMASK(3, 2)
50#define RCC_CFGR_SWS_HSI 0
51#define RCC_CFGR_SWS_HSE RCC_CFGR_SWS0
52#define RCC_CFGR_SWS_PLL RCC_CFGR_SWS1
53#define RCC_CFGR_HPRE_SHIFT 4
54#define RCC_CFGR_PPRE1_SHIFT 10
55#define RCC_CFGR_PPRE2_SHIFT 13
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +090056
Patrice Chotard526aa922018-02-08 17:20:46 +010057#define RCC_PLLSAICFGR_PLLSAIN_MASK GENMASK(14, 6)
58#define RCC_PLLSAICFGR_PLLSAIP_MASK GENMASK(17, 16)
Patrice Chotard1038e032018-02-08 17:20:48 +010059#define RCC_PLLSAICFGR_PLLSAIQ_MASK GENMASK(27, 24)
60#define RCC_PLLSAICFGR_PLLSAIR_MASK GENMASK(30, 28)
Patrice Chotard4e97e252017-11-15 13:14:52 +010061#define RCC_PLLSAICFGR_PLLSAIN_SHIFT 6
62#define RCC_PLLSAICFGR_PLLSAIP_SHIFT 16
Patrice Chotard1038e032018-02-08 17:20:48 +010063#define RCC_PLLSAICFGR_PLLSAIQ_SHIFT 24
64#define RCC_PLLSAICFGR_PLLSAIR_SHIFT 28
Patrice Chotard990dba62018-01-19 18:02:40 +010065#define RCC_PLLSAICFGR_PLLSAIP_4 BIT(16)
Patrice Chotard4e97e252017-11-15 13:14:52 +010066#define RCC_PLLSAICFGR_PLLSAIQ_4 BIT(26)
Patrice Chotarde8fb9ed2018-02-08 17:20:49 +010067#define RCC_PLLSAICFGR_PLLSAIR_3 BIT(29) | BIT(28)
Patrice Chotard4e97e252017-11-15 13:14:52 +010068
Patrice Chotard61803a92018-02-07 10:44:46 +010069#define RCC_DCKCFGRX_TIMPRE BIT(24)
Patrice Chotard4e97e252017-11-15 13:14:52 +010070#define RCC_DCKCFGRX_CK48MSEL BIT(27)
71#define RCC_DCKCFGRX_SDMMC1SEL BIT(28)
72#define RCC_DCKCFGR2_SDMMC2SEL BIT(29)
73
Patrice Chotarde8fb9ed2018-02-08 17:20:49 +010074#define RCC_DCKCFGR_PLLSAIDIVR_SHIFT 16
75#define RCC_DCKCFGR_PLLSAIDIVR_MASK GENMASK(17, 16)
76#define RCC_DCKCFGR_PLLSAIDIVR_2 0
77
Patrice Chotardc88c6a92017-11-15 13:14:49 +010078/*
79 * RCC AHB1ENR specific definitions
80 */
81#define RCC_AHB1ENR_ETHMAC_EN BIT(25)
82#define RCC_AHB1ENR_ETHMAC_TX_EN BIT(26)
83#define RCC_AHB1ENR_ETHMAC_RX_EN BIT(27)
84
85/*
86 * RCC APB1ENR specific definitions
87 */
88#define RCC_APB1ENR_TIM2EN BIT(0)
89#define RCC_APB1ENR_PWREN BIT(28)
90
91/*
92 * RCC APB2ENR specific definitions
93 */
94#define RCC_APB2ENR_SYSCFGEN BIT(14)
Patrice Chotard20fe38e2018-01-18 14:10:05 +010095#define RCC_APB2ENR_SAI1EN BIT(22)
Patrice Chotardc88c6a92017-11-15 13:14:49 +010096
Patrice Chotard1038e032018-02-08 17:20:48 +010097enum pllsai_div {
98 PLLSAIP,
99 PLLSAIQ,
100 PLLSAIR,
101};
102
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100103static const struct stm32_clk_info stm32f4_clk_info = {
Patrice Chotardf9333c92017-11-15 13:14:47 +0100104 /* 180 MHz */
105 .sys_pll_psc = {
Patrice Chotardf9333c92017-11-15 13:14:47 +0100106 .pll_n = 360,
107 .pll_p = 2,
108 .pll_q = 8,
109 .ahb_psc = AHB_PSC_1,
110 .apb1_psc = APB_PSC_4,
111 .apb2_psc = APB_PSC_2,
112 },
113 .has_overdrive = false,
Patrice Chotard4e97e252017-11-15 13:14:52 +0100114 .v2 = false,
Patrice Chotardf9333c92017-11-15 13:14:47 +0100115};
116
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100117static const struct stm32_clk_info stm32f7_clk_info = {
Patrice Chotardf9333c92017-11-15 13:14:47 +0100118 /* 200 MHz */
119 .sys_pll_psc = {
Patrice Chotardf9333c92017-11-15 13:14:47 +0100120 .pll_n = 400,
121 .pll_p = 2,
122 .pll_q = 8,
123 .ahb_psc = AHB_PSC_1,
124 .apb1_psc = APB_PSC_4,
125 .apb2_psc = APB_PSC_2,
126 },
127 .has_overdrive = true,
Patrice Chotard4e97e252017-11-15 13:14:52 +0100128 .v2 = true,
Patrice Chotardf9333c92017-11-15 13:14:47 +0100129};
130
Patrice Chotard199a2172017-07-18 09:29:04 +0200131struct stm32_clk {
132 struct stm32_rcc_regs *base;
Patrice Chotardd0a768b2017-11-15 13:14:44 +0100133 struct stm32_pwr_regs *pwr_regs;
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100134 struct stm32_clk_info info;
135 unsigned long hse_rate;
Patrice Chotard8b414642018-04-11 17:07:45 +0200136 bool pllsaip;
Patrice Chotard199a2172017-07-18 09:29:04 +0200137};
138
Patrice Chotard5e993502018-02-08 17:20:50 +0100139#ifdef CONFIG_VIDEO_STM32
140static const u8 plldivr_table[] = { 0, 0, 2, 3, 4, 5, 6, 7 };
141#endif
Patrice Chotarde8fb9ed2018-02-08 17:20:49 +0100142static const u8 pllsaidivr_table[] = { 2, 4, 8, 16 };
143
Patrice Chotard199a2172017-07-18 09:29:04 +0200144static int configure_clocks(struct udevice *dev)
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900145{
Patrice Chotard199a2172017-07-18 09:29:04 +0200146 struct stm32_clk *priv = dev_get_priv(dev);
147 struct stm32_rcc_regs *regs = priv->base;
Patrice Chotardd0a768b2017-11-15 13:14:44 +0100148 struct stm32_pwr_regs *pwr = priv->pwr_regs;
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100149 struct pll_psc *sys_pll_psc = &priv->info.sys_pll_psc;
Patrice Chotard199a2172017-07-18 09:29:04 +0200150
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900151 /* Reset RCC configuration */
Patrice Chotard199a2172017-07-18 09:29:04 +0200152 setbits_le32(&regs->cr, RCC_CR_HSION);
153 writel(0, &regs->cfgr); /* Reset CFGR */
154 clrbits_le32(&regs->cr, (RCC_CR_HSEON | RCC_CR_CSSON
Patrice Chotard4e97e252017-11-15 13:14:52 +0100155 | RCC_CR_PLLON | RCC_CR_PLLSAION));
Patrice Chotard199a2172017-07-18 09:29:04 +0200156 writel(0x24003010, &regs->pllcfgr); /* Reset value from RM */
157 clrbits_le32(&regs->cr, RCC_CR_HSEBYP);
158 writel(0, &regs->cir); /* Disable all interrupts */
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900159
160 /* Configure for HSE+PLL operation */
Patrice Chotard199a2172017-07-18 09:29:04 +0200161 setbits_le32(&regs->cr, RCC_CR_HSEON);
162 while (!(readl(&regs->cr) & RCC_CR_HSERDY))
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900163 ;
164
Patrice Chotard199a2172017-07-18 09:29:04 +0200165 setbits_le32(&regs->cfgr, ((
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100166 sys_pll_psc->ahb_psc << RCC_CFGR_HPRE_SHIFT)
167 | (sys_pll_psc->apb1_psc << RCC_CFGR_PPRE1_SHIFT)
168 | (sys_pll_psc->apb2_psc << RCC_CFGR_PPRE2_SHIFT)));
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900169
170 /* Configure the main PLL */
Patrice Chotard1543bf72017-10-26 13:23:19 +0200171 setbits_le32(&regs->pllcfgr, RCC_PLLCFGR_PLLSRC); /* pll source HSE */
172 clrsetbits_le32(&regs->pllcfgr, RCC_PLLCFGR_PLLM_MASK,
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100173 sys_pll_psc->pll_m << RCC_PLLCFGR_PLLM_SHIFT);
Patrice Chotard1543bf72017-10-26 13:23:19 +0200174 clrsetbits_le32(&regs->pllcfgr, RCC_PLLCFGR_PLLN_MASK,
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100175 sys_pll_psc->pll_n << RCC_PLLCFGR_PLLN_SHIFT);
Patrice Chotard1543bf72017-10-26 13:23:19 +0200176 clrsetbits_le32(&regs->pllcfgr, RCC_PLLCFGR_PLLP_MASK,
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100177 ((sys_pll_psc->pll_p >> 1) - 1) << RCC_PLLCFGR_PLLP_SHIFT);
Patrice Chotard1543bf72017-10-26 13:23:19 +0200178 clrsetbits_le32(&regs->pllcfgr, RCC_PLLCFGR_PLLQ_MASK,
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100179 sys_pll_psc->pll_q << RCC_PLLCFGR_PLLQ_SHIFT);
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900180
Patrice Chotard651a70e2018-02-08 17:20:47 +0100181 /* configure SDMMC clock */
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100182 if (priv->info.v2) { /*stm32f7 case */
Patrice Chotard8b414642018-04-11 17:07:45 +0200183 if (priv->pllsaip)
184 /* select PLLSAIP as 48MHz clock source */
185 setbits_le32(&regs->dckcfgr2, RCC_DCKCFGRX_CK48MSEL);
186 else
187 /* select PLLQ as 48MHz clock source */
188 clrbits_le32(&regs->dckcfgr2, RCC_DCKCFGRX_CK48MSEL);
Patrice Chotard4e97e252017-11-15 13:14:52 +0100189
190 /* select 48MHz as SDMMC1 clock source */
191 clrbits_le32(&regs->dckcfgr2, RCC_DCKCFGRX_SDMMC1SEL);
192
193 /* select 48MHz as SDMMC2 clock source */
194 clrbits_le32(&regs->dckcfgr2, RCC_DCKCFGR2_SDMMC2SEL);
195 } else { /* stm32f4 case */
Patrice Chotard8b414642018-04-11 17:07:45 +0200196 if (priv->pllsaip)
197 /* select PLLSAIP as 48MHz clock source */
198 setbits_le32(&regs->dckcfgr, RCC_DCKCFGRX_CK48MSEL);
199 else
200 /* select PLLQ as 48MHz clock source */
201 clrbits_le32(&regs->dckcfgr, RCC_DCKCFGRX_CK48MSEL);
Patrice Chotard4e97e252017-11-15 13:14:52 +0100202
203 /* select 48MHz as SDMMC1 clock source */
204 clrbits_le32(&regs->dckcfgr, RCC_DCKCFGRX_SDMMC1SEL);
205 }
206
Patrice Chotarde8fb9ed2018-02-08 17:20:49 +0100207 /*
Patrice Chotard8b414642018-04-11 17:07:45 +0200208 * Configure the SAI PLL to generate LTDC pixel clock and
209 * 48 Mhz for SDMMC and USB
Patrice Chotarde8fb9ed2018-02-08 17:20:49 +0100210 */
Patrice Chotard8b414642018-04-11 17:07:45 +0200211 clrsetbits_le32(&regs->pllsaicfgr, RCC_PLLSAICFGR_PLLSAIP_MASK,
212 RCC_PLLSAICFGR_PLLSAIP_4);
Patrice Chotarde8fb9ed2018-02-08 17:20:49 +0100213 clrsetbits_le32(&regs->pllsaicfgr, RCC_PLLSAICFGR_PLLSAIR_MASK,
214 RCC_PLLSAICFGR_PLLSAIR_3);
215 clrsetbits_le32(&regs->pllsaicfgr, RCC_PLLSAICFGR_PLLSAIN_MASK,
216 195 << RCC_PLLSAICFGR_PLLSAIN_SHIFT);
217
218 clrsetbits_le32(&regs->dckcfgr, RCC_DCKCFGR_PLLSAIDIVR_MASK,
219 RCC_DCKCFGR_PLLSAIDIVR_2 << RCC_DCKCFGR_PLLSAIDIVR_SHIFT);
Patrice Chotard8b414642018-04-11 17:07:45 +0200220
Patrice Chotard651a70e2018-02-08 17:20:47 +0100221 /* Enable the main PLL */
222 setbits_le32(&regs->cr, RCC_CR_PLLON);
223 while (!(readl(&regs->cr) & RCC_CR_PLLRDY))
Patrice Chotard4e97e252017-11-15 13:14:52 +0100224 ;
225
Patrice Chotard8b414642018-04-11 17:07:45 +0200226 /* Enable the SAI PLL */
Patrice Chotarde8fb9ed2018-02-08 17:20:49 +0100227 setbits_le32(&regs->cr, RCC_CR_PLLSAION);
228 while (!(readl(&regs->cr) & RCC_CR_PLLSAIRDY))
229 ;
Patrice Chotard199a2172017-07-18 09:29:04 +0200230 setbits_le32(&regs->apb1enr, RCC_APB1ENR_PWREN);
Patrice Chotardf9333c92017-11-15 13:14:47 +0100231
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100232 if (priv->info.has_overdrive) {
Patrice Chotardf9333c92017-11-15 13:14:47 +0100233 /*
234 * Enable high performance mode
235 * System frequency up to 200 MHz
236 */
237 setbits_le32(&pwr->cr1, PWR_CR1_ODEN);
238 /* Infinite wait! */
239 while (!(readl(&pwr->csr1) & PWR_CSR1_ODRDY))
240 ;
241 /* Enable the Over-drive switch */
242 setbits_le32(&pwr->cr1, PWR_CR1_ODSWEN);
243 /* Infinite wait! */
244 while (!(readl(&pwr->csr1) & PWR_CSR1_ODSWRDY))
245 ;
246 }
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900247
248 stm32_flash_latency_cfg(5);
Patrice Chotard199a2172017-07-18 09:29:04 +0200249 clrbits_le32(&regs->cfgr, (RCC_CFGR_SW0 | RCC_CFGR_SW1));
250 setbits_le32(&regs->cfgr, RCC_CFGR_SW_PLL);
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900251
Patrice Chotard199a2172017-07-18 09:29:04 +0200252 while ((readl(&regs->cfgr) & RCC_CFGR_SWS_MASK) !=
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900253 RCC_CFGR_SWS_PLL)
254 ;
255
Patrice Chotard20fe38e2018-01-18 14:10:05 +0100256#ifdef CONFIG_ETH_DESIGNWARE
257 /* gate the SYSCFG clock, needed to set RMII ethernet interface */
258 setbits_le32(&regs->apb2enr, RCC_APB2ENR_SYSCFGEN);
259#endif
260
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900261 return 0;
262}
263
Patrice Chotard1038e032018-02-08 17:20:48 +0100264static bool stm32_clk_get_ck48msel(struct stm32_clk *priv)
Patrice Chotard4e97e252017-11-15 13:14:52 +0100265{
266 struct stm32_rcc_regs *regs = priv->base;
Patrice Chotard4e97e252017-11-15 13:14:52 +0100267
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100268 if (priv->info.v2) /*stm32f7 case */
Patrice Chotard1038e032018-02-08 17:20:48 +0100269 return readl(&regs->dckcfgr2) & RCC_DCKCFGRX_CK48MSEL;
Patrice Chotard4e97e252017-11-15 13:14:52 +0100270 else
Patrice Chotard4e97e252017-11-15 13:14:52 +0100271
Patrice Chotard1038e032018-02-08 17:20:48 +0100272 return readl(&regs->dckcfgr) & RCC_DCKCFGRX_CK48MSEL;
273}
274
275static unsigned long stm32_clk_get_pllsai_vco_rate(struct stm32_clk *priv)
276{
277 struct stm32_rcc_regs *regs = priv->base;
278 u16 pllm, pllsain;
279
280 pllm = (readl(&regs->pllcfgr) & RCC_PLLCFGR_PLLM_MASK);
281 pllsain = ((readl(&regs->pllsaicfgr) & RCC_PLLSAICFGR_PLLSAIN_MASK)
282 >> RCC_PLLSAICFGR_PLLSAIN_SHIFT);
283
284 return ((priv->hse_rate / pllm) * pllsain);
285}
286
287static unsigned long stm32_clk_get_pllsai_rate(struct stm32_clk *priv,
288 enum pllsai_div output)
289{
290 struct stm32_rcc_regs *regs = priv->base;
291 u16 pll_div_output;
292
293 switch (output) {
294 case PLLSAIP:
295 pll_div_output = ((((readl(&regs->pllsaicfgr)
296 & RCC_PLLSAICFGR_PLLSAIP_MASK)
297 >> RCC_PLLSAICFGR_PLLSAIP_SHIFT) + 1) << 1);
298 break;
299 case PLLSAIQ:
300 pll_div_output = (readl(&regs->pllsaicfgr)
301 & RCC_PLLSAICFGR_PLLSAIQ_MASK)
302 >> RCC_PLLSAICFGR_PLLSAIQ_SHIFT;
303 break;
304 case PLLSAIR:
305 pll_div_output = (readl(&regs->pllsaicfgr)
306 & RCC_PLLSAICFGR_PLLSAIR_MASK)
307 >> RCC_PLLSAICFGR_PLLSAIR_SHIFT;
308 break;
309 default:
310 pr_err("incorrect PLLSAI output %d\n", output);
311 return -EINVAL;
Patrice Chotard4e97e252017-11-15 13:14:52 +0100312 }
Patrice Chotard1038e032018-02-08 17:20:48 +0100313
314 return (stm32_clk_get_pllsai_vco_rate(priv) / pll_div_output);
Patrice Chotard4e97e252017-11-15 13:14:52 +0100315}
316
Patrice Chotard61803a92018-02-07 10:44:46 +0100317static bool stm32_get_timpre(struct stm32_clk *priv)
Patrice Chotard288f17e2017-07-18 09:29:05 +0200318{
Patrice Chotard288f17e2017-07-18 09:29:05 +0200319 struct stm32_rcc_regs *regs = priv->base;
Patrice Chotard61803a92018-02-07 10:44:46 +0100320 u32 val;
321
322 if (priv->info.v2) /*stm32f7 case */
323 val = readl(&regs->dckcfgr2);
324 else
325 val = readl(&regs->dckcfgr);
326 /* get timer prescaler */
327 return !!(val & RCC_DCKCFGRX_TIMPRE);
328}
329
330static u32 stm32_get_hclk_rate(struct stm32_rcc_regs *regs, u32 sysclk)
331{
332 u8 shift;
Patrice Chotard288f17e2017-07-18 09:29:05 +0200333 /* Prescaler table lookups for clock computation */
334 u8 ahb_psc_table[16] = {
335 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9
336 };
Patrice Chotard61803a92018-02-07 10:44:46 +0100337
338 shift = ahb_psc_table[(
339 (readl(&regs->cfgr) & RCC_CFGR_AHB_PSC_MASK)
340 >> RCC_CFGR_HPRE_SHIFT)];
341
342 return sysclk >> shift;
343};
344
345static u8 stm32_get_apb_shift(struct stm32_rcc_regs *regs, enum apb apb)
346{
347 /* Prescaler table lookups for clock computation */
Patrice Chotard288f17e2017-07-18 09:29:05 +0200348 u8 apb_psc_table[8] = {
349 0, 0, 0, 0, 1, 2, 3, 4
350 };
351
Patrice Chotard61803a92018-02-07 10:44:46 +0100352 if (apb == APB1)
353 return apb_psc_table[(
354 (readl(&regs->cfgr) & RCC_CFGR_APB1_PSC_MASK)
355 >> RCC_CFGR_PPRE1_SHIFT)];
356 else /* APB2 */
357 return apb_psc_table[(
358 (readl(&regs->cfgr) & RCC_CFGR_APB2_PSC_MASK)
359 >> RCC_CFGR_PPRE2_SHIFT)];
360};
361
362static u32 stm32_get_timer_rate(struct stm32_clk *priv, u32 sysclk,
363 enum apb apb)
364{
365 struct stm32_rcc_regs *regs = priv->base;
366 u8 shift = stm32_get_apb_shift(regs, apb);
367
368 if (stm32_get_timpre(priv))
369 /*
370 * if APB prescaler is configured to a
371 * division factor of 1, 2 or 4
372 */
373 switch (shift) {
374 case 0:
375 case 1:
376 case 2:
377 return stm32_get_hclk_rate(regs, sysclk);
378 default:
379 return (sysclk >> shift) * 4;
380 }
381 else
382 /*
383 * if APB prescaler is configured to a
384 * division factor of 1
385 */
386 if (shift == 0)
387 return sysclk;
388 else
389 return (sysclk >> shift) * 2;
390};
391
392static ulong stm32_clk_get_rate(struct clk *clk)
393{
394 struct stm32_clk *priv = dev_get_priv(clk->dev);
395 struct stm32_rcc_regs *regs = priv->base;
396 u32 sysclk = 0;
Patrice Chotardaa230be2018-02-08 17:20:45 +0100397 u32 vco;
Patrice Chotard1038e032018-02-08 17:20:48 +0100398 u32 sdmmcxsel_bit;
Patrice Chotarde8fb9ed2018-02-08 17:20:49 +0100399 u32 saidivr;
400 u32 pllsai_rate;
Patrice Chotard1038e032018-02-08 17:20:48 +0100401 u16 pllm, plln, pllp, pllq;
Patrice Chotard61803a92018-02-07 10:44:46 +0100402
Patrice Chotard288f17e2017-07-18 09:29:05 +0200403 if ((readl(&regs->cfgr) & RCC_CFGR_SWS_MASK) ==
404 RCC_CFGR_SWS_PLL) {
Patrice Chotard288f17e2017-07-18 09:29:05 +0200405 pllm = (readl(&regs->pllcfgr) & RCC_PLLCFGR_PLLM_MASK);
406 plln = ((readl(&regs->pllcfgr) & RCC_PLLCFGR_PLLN_MASK)
407 >> RCC_PLLCFGR_PLLN_SHIFT);
408 pllp = ((((readl(&regs->pllcfgr) & RCC_PLLCFGR_PLLP_MASK)
409 >> RCC_PLLCFGR_PLLP_SHIFT) + 1) << 1);
Patrice Chotard1038e032018-02-08 17:20:48 +0100410 pllq = ((readl(&regs->pllcfgr) & RCC_PLLCFGR_PLLQ_MASK)
411 >> RCC_PLLCFGR_PLLQ_SHIFT);
Patrice Chotardaa230be2018-02-08 17:20:45 +0100412 vco = (priv->hse_rate / pllm) * plln;
413 sysclk = vco / pllp;
Patrice Chotard288f17e2017-07-18 09:29:05 +0200414 } else {
415 return -EINVAL;
416 }
417
418 switch (clk->id) {
419 /*
420 * AHB CLOCK: 3 x 32 bits consecutive registers are used :
421 * AHB1, AHB2 and AHB3
422 */
423 case STM32F7_AHB1_CLOCK(GPIOA) ... STM32F7_AHB3_CLOCK(QSPI):
Patrice Chotard61803a92018-02-07 10:44:46 +0100424 return stm32_get_hclk_rate(regs, sysclk);
Patrice Chotard288f17e2017-07-18 09:29:05 +0200425 /* APB1 CLOCK */
426 case STM32F7_APB1_CLOCK(TIM2) ... STM32F7_APB1_CLOCK(UART8):
Patrice Chotard61803a92018-02-07 10:44:46 +0100427 /* For timer clock, an additionnal prescaler is used*/
428 switch (clk->id) {
429 case STM32F7_APB1_CLOCK(TIM2):
430 case STM32F7_APB1_CLOCK(TIM3):
431 case STM32F7_APB1_CLOCK(TIM4):
432 case STM32F7_APB1_CLOCK(TIM5):
433 case STM32F7_APB1_CLOCK(TIM6):
434 case STM32F7_APB1_CLOCK(TIM7):
435 case STM32F7_APB1_CLOCK(TIM12):
436 case STM32F7_APB1_CLOCK(TIM13):
437 case STM32F7_APB1_CLOCK(TIM14):
438 return stm32_get_timer_rate(priv, sysclk, APB1);
439 }
440 return (sysclk >> stm32_get_apb_shift(regs, APB1));
441
Patrice Chotard288f17e2017-07-18 09:29:05 +0200442 /* APB2 CLOCK */
Patrice Chotard6243c882018-02-08 17:20:51 +0100443 case STM32F7_APB2_CLOCK(TIM1) ... STM32F7_APB2_CLOCK(DSI):
Patrice Chotard1038e032018-02-08 17:20:48 +0100444 switch (clk->id) {
Patrice Chotard4e97e252017-11-15 13:14:52 +0100445 /*
446 * particular case for SDMMC1 and SDMMC2 :
447 * 48Mhz source clock can be from main PLL or from
Patrice Chotard1038e032018-02-08 17:20:48 +0100448 * PLLSAIP
Patrice Chotard4e97e252017-11-15 13:14:52 +0100449 */
Patrice Chotard4e97e252017-11-15 13:14:52 +0100450 case STM32F7_APB2_CLOCK(SDMMC1):
Patrice Chotard1038e032018-02-08 17:20:48 +0100451 case STM32F7_APB2_CLOCK(SDMMC2):
452 if (clk->id == STM32F7_APB2_CLOCK(SDMMC1))
453 sdmmcxsel_bit = RCC_DCKCFGRX_SDMMC1SEL;
454 else
455 sdmmcxsel_bit = RCC_DCKCFGR2_SDMMC2SEL;
456
457 if (readl(&regs->dckcfgr2) & sdmmcxsel_bit)
Patrice Chotard4e97e252017-11-15 13:14:52 +0100458 /* System clock is selected as SDMMC1 clock */
459 return sysclk;
Patrice Chotard1038e032018-02-08 17:20:48 +0100460 /*
461 * 48 MHz can be generated by either PLLSAIP
462 * or by PLLQ depending of CK48MSEL bit of RCC_DCKCFGR
463 */
464 if (stm32_clk_get_ck48msel(priv))
465 return stm32_clk_get_pllsai_rate(priv, PLLSAIP);
Patrice Chotard4e97e252017-11-15 13:14:52 +0100466 else
Patrice Chotard1038e032018-02-08 17:20:48 +0100467 return (vco / pllq);
Patrice Chotard4e97e252017-11-15 13:14:52 +0100468 break;
Patrice Chotard4e97e252017-11-15 13:14:52 +0100469
Patrice Chotard61803a92018-02-07 10:44:46 +0100470 /* For timer clock, an additionnal prescaler is used*/
471 case STM32F7_APB2_CLOCK(TIM1):
472 case STM32F7_APB2_CLOCK(TIM8):
473 case STM32F7_APB2_CLOCK(TIM9):
474 case STM32F7_APB2_CLOCK(TIM10):
475 case STM32F7_APB2_CLOCK(TIM11):
476 return stm32_get_timer_rate(priv, sysclk, APB2);
477 break;
Patrice Chotarde8fb9ed2018-02-08 17:20:49 +0100478
479 /* particular case for LTDC clock */
480 case STM32F7_APB2_CLOCK(LTDC):
481 saidivr = readl(&regs->dckcfgr);
482 saidivr = (saidivr & RCC_DCKCFGR_PLLSAIDIVR_MASK)
483 >> RCC_DCKCFGR_PLLSAIDIVR_SHIFT;
484 pllsai_rate = stm32_clk_get_pllsai_rate(priv, PLLSAIR);
485
486 return pllsai_rate / pllsaidivr_table[saidivr];
Patrice Chotard61803a92018-02-07 10:44:46 +0100487 }
488 return (sysclk >> stm32_get_apb_shift(regs, APB2));
489
Patrice Chotard288f17e2017-07-18 09:29:05 +0200490 default:
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900491 pr_err("clock index %ld out of range\n", clk->id);
Patrice Chotard288f17e2017-07-18 09:29:05 +0200492 return -EINVAL;
Patrice Chotard288f17e2017-07-18 09:29:05 +0200493 }
494}
495
Patrice Chotard05e23dd2018-01-29 18:14:14 +0100496static ulong stm32_set_rate(struct clk *clk, ulong rate)
497{
Patrice Chotard5e993502018-02-08 17:20:50 +0100498#ifdef CONFIG_VIDEO_STM32
499 struct stm32_clk *priv = dev_get_priv(clk->dev);
500 struct stm32_rcc_regs *regs = priv->base;
501 u32 pllsair_rate, pllsai_vco_rate, current_rate;
502 u32 best_div, best_diff, diff;
503 u16 div;
504 u8 best_plldivr, best_pllsaidivr;
505 u8 i, j;
506 bool found = false;
507
508 /* Only set_rate for LTDC clock is implemented */
509 if (clk->id != STM32F7_APB2_CLOCK(LTDC)) {
510 pr_err("set_rate not implemented for clock index %ld\n",
511 clk->id);
512 return 0;
513 }
514
515 if (rate == stm32_clk_get_rate(clk))
516 /* already set to requested rate */
517 return rate;
518
519 /* get the current PLLSAIR output freq */
520 pllsair_rate = stm32_clk_get_pllsai_rate(priv, PLLSAIR);
521 best_div = pllsair_rate / rate;
522
523 /* look into pllsaidivr_table if this divider is available*/
524 for (i = 0 ; i < sizeof(pllsaidivr_table); i++)
525 if (best_div == pllsaidivr_table[i]) {
526 /* set pll_saidivr with found value */
527 clrsetbits_le32(&regs->dckcfgr,
528 RCC_DCKCFGR_PLLSAIDIVR_MASK,
529 pllsaidivr_table[i]);
530 return rate;
531 }
532
533 /*
534 * As no pllsaidivr value is suitable to obtain requested freq,
535 * test all combination of pllsaidivr * pllsair and find the one
536 * which give freq closest to requested rate.
537 */
538
539 pllsai_vco_rate = stm32_clk_get_pllsai_vco_rate(priv);
540 best_diff = ULONG_MAX;
541 best_pllsaidivr = 0;
542 best_plldivr = 0;
543 /*
544 * start at index 2 of plldivr_table as divider value at index 0
545 * and 1 are 0)
546 */
547 for (i = 2; i < sizeof(plldivr_table); i++) {
548 for (j = 0; j < sizeof(pllsaidivr_table); j++) {
549 div = plldivr_table[i] * pllsaidivr_table[j];
550 current_rate = pllsai_vco_rate / div;
551 /* perfect combination is found ? */
552 if (current_rate == rate) {
553 best_pllsaidivr = j;
554 best_plldivr = i;
555 found = true;
556 break;
557 }
558
559 diff = (current_rate > rate) ?
560 current_rate - rate : rate - current_rate;
561
562 /* found a better combination ? */
563 if (diff < best_diff) {
564 best_diff = diff;
565 best_pllsaidivr = j;
566 best_plldivr = i;
567 }
568 }
569
570 if (found)
571 break;
572 }
573
574 /* Disable the SAI PLL */
575 clrbits_le32(&regs->cr, RCC_CR_PLLSAION);
576
577 /* set pll_saidivr with found value */
578 clrsetbits_le32(&regs->dckcfgr, RCC_DCKCFGR_PLLSAIDIVR_MASK,
579 best_pllsaidivr << RCC_DCKCFGR_PLLSAIDIVR_SHIFT);
580
581 /* set pllsair with found value */
582 clrsetbits_le32(&regs->pllsaicfgr, RCC_PLLSAICFGR_PLLSAIR_MASK,
583 plldivr_table[best_plldivr]
584 << RCC_PLLSAICFGR_PLLSAIR_SHIFT);
585
586 /* Enable the SAI PLL */
587 setbits_le32(&regs->cr, RCC_CR_PLLSAION);
588 while (!(readl(&regs->cr) & RCC_CR_PLLSAIRDY))
589 ;
590
591 div = plldivr_table[best_plldivr] * pllsaidivr_table[best_pllsaidivr];
592 return pllsai_vco_rate / div;
593#else
Patrice Chotard05e23dd2018-01-29 18:14:14 +0100594 return 0;
Patrice Chotard5e993502018-02-08 17:20:50 +0100595#endif
Patrice Chotard05e23dd2018-01-29 18:14:14 +0100596}
597
Vikas Manocha712f99a2017-02-12 10:25:45 -0800598static int stm32_clk_enable(struct clk *clk)
599{
Patrice Chotard199a2172017-07-18 09:29:04 +0200600 struct stm32_clk *priv = dev_get_priv(clk->dev);
601 struct stm32_rcc_regs *regs = priv->base;
Vikas Manocha712f99a2017-02-12 10:25:45 -0800602 u32 offset = clk->id / 32;
603 u32 bit_index = clk->id % 32;
604
605 debug("%s: clkid = %ld, offset from AHB1ENR is %d, bit_index = %d\n",
606 __func__, clk->id, offset, bit_index);
Patrice Chotard199a2172017-07-18 09:29:04 +0200607 setbits_le32(&regs->ahb1enr + offset, BIT(bit_index));
Vikas Manocha712f99a2017-02-12 10:25:45 -0800608
609 return 0;
610}
Toshifumi NISHINAGAba0a3c12016-07-08 01:02:24 +0900611
Vikas Manocha712f99a2017-02-12 10:25:45 -0800612static int stm32_clk_probe(struct udevice *dev)
613{
Patrice Chotardd0a768b2017-11-15 13:14:44 +0100614 struct ofnode_phandle_args args;
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100615 struct udevice *fixed_clock_dev = NULL;
616 struct clk clk;
Patrice Chotardd0a768b2017-11-15 13:14:44 +0100617 int err;
618
Patrice Chotardf264e232017-11-15 13:14:48 +0100619 debug("%s\n", __func__);
Patrice Chotard199a2172017-07-18 09:29:04 +0200620
621 struct stm32_clk *priv = dev_get_priv(dev);
622 fdt_addr_t addr;
623
Patrice Chotardf9333c92017-11-15 13:14:47 +0100624 addr = dev_read_addr(dev);
Patrice Chotard199a2172017-07-18 09:29:04 +0200625 if (addr == FDT_ADDR_T_NONE)
626 return -EINVAL;
627
628 priv->base = (struct stm32_rcc_regs *)addr;
Patrice Chotard8b414642018-04-11 17:07:45 +0200629 priv->pllsaip = true;
Patrice Chotard928954f2017-11-15 13:14:51 +0100630
631 switch (dev_get_driver_data(dev)) {
Patrice Chotard8b414642018-04-11 17:07:45 +0200632 case STM32F42X:
633 priv->pllsaip = false;
634 /* fallback into STM32F469 case */
635 case STM32F469:
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100636 memcpy(&priv->info, &stm32f4_clk_info,
637 sizeof(struct stm32_clk_info));
Patrice Chotard928954f2017-11-15 13:14:51 +0100638 break;
Patrice Chotard8b414642018-04-11 17:07:45 +0200639
Patrice Chotard928954f2017-11-15 13:14:51 +0100640 case STM32F7:
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100641 memcpy(&priv->info, &stm32f7_clk_info,
642 sizeof(struct stm32_clk_info));
Patrice Chotard928954f2017-11-15 13:14:51 +0100643 break;
644 default:
645 return -EINVAL;
646 }
Patrice Chotard199a2172017-07-18 09:29:04 +0200647
Patrice Chotardcb97ff92018-01-18 13:39:30 +0100648 /* retrieve HSE frequency (external oscillator) */
649 err = uclass_get_device_by_name(UCLASS_CLK, "clk-hse",
650 &fixed_clock_dev);
651
652 if (err) {
653 pr_err("Can't find fixed clock (%d)", err);
654 return err;
655 }
656
657 err = clk_request(fixed_clock_dev, &clk);
658 if (err) {
659 pr_err("Can't request %s clk (%d)", fixed_clock_dev->name,
660 err);
661 return err;
662 }
663
664 /*
665 * set pllm factor accordingly to the external oscillator
666 * frequency (HSE). For STM32F4 and STM32F7, we want VCO
667 * freq at 1MHz
668 * if input PLL frequency is 25Mhz, divide it by 25
669 */
670 clk.id = 0;
671 priv->hse_rate = clk_get_rate(&clk);
672
673 if (priv->hse_rate < 1000000) {
674 pr_err("%s: unexpected HSE clock rate = %ld \"n", __func__,
675 priv->hse_rate);
676 return -EINVAL;
677 }
678
679 priv->info.sys_pll_psc.pll_m = priv->hse_rate / 1000000;
680
681 if (priv->info.has_overdrive) {
Patrice Chotardf9333c92017-11-15 13:14:47 +0100682 err = dev_read_phandle_with_args(dev, "st,syscfg", NULL, 0, 0,
683 &args);
684 if (err) {
685 debug("%s: can't find syscon device (%d)\n", __func__,
686 err);
687 return err;
688 }
689
690 priv->pwr_regs = (struct stm32_pwr_regs *)ofnode_get_addr(args.node);
Patrice Chotardd0a768b2017-11-15 13:14:44 +0100691 }
692
Patrice Chotard199a2172017-07-18 09:29:04 +0200693 configure_clocks(dev);
Vikas Manocha712f99a2017-02-12 10:25:45 -0800694
695 return 0;
696}
697
Simon Glassa4e0ef52017-05-18 20:09:40 -0600698static int stm32_clk_of_xlate(struct clk *clk, struct ofnode_phandle_args *args)
Vikas Manocha712f99a2017-02-12 10:25:45 -0800699{
700 debug("%s(clk=%p)\n", __func__, clk);
701
702 if (args->args_count != 2) {
703 debug("Invaild args_count: %d\n", args->args_count);
704 return -EINVAL;
705 }
706
707 if (args->args_count)
708 clk->id = args->args[1];
709 else
710 clk->id = 0;
711
712 return 0;
713}
714
715static struct clk_ops stm32_clk_ops = {
716 .of_xlate = stm32_clk_of_xlate,
717 .enable = stm32_clk_enable,
Patrice Chotard288f17e2017-07-18 09:29:05 +0200718 .get_rate = stm32_clk_get_rate,
Patrice Chotard05e23dd2018-01-29 18:14:14 +0100719 .set_rate = stm32_set_rate,
Vikas Manocha712f99a2017-02-12 10:25:45 -0800720};
721
Patrice Chotardf264e232017-11-15 13:14:48 +0100722U_BOOT_DRIVER(stm32fx_clk) = {
Patrice Chotard928954f2017-11-15 13:14:51 +0100723 .name = "stm32fx_rcc_clock",
Patrice Chotard0cc40df2017-09-21 10:08:09 +0200724 .id = UCLASS_CLK,
Patrice Chotard0cc40df2017-09-21 10:08:09 +0200725 .ops = &stm32_clk_ops,
726 .probe = stm32_clk_probe,
727 .priv_auto_alloc_size = sizeof(struct stm32_clk),
728 .flags = DM_FLAG_PRE_RELOC,
Vikas Manocha712f99a2017-02-12 10:25:45 -0800729};