blob: 6c1613880a65dfb33a4c6aceb80b6de2d68b12c8 [file] [log] [blame]
Vikas Manochae66c49f2016-02-11 15:47:20 -08001/*
2 * (C) Copyright 2016
3 * Vikas Manocha, <vikas.manocha@st.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#include <common.h>
9#include <asm/io.h>
10#include <asm/armv7m.h>
11#include <asm/arch/stm32.h>
12#include <asm/arch/gpio.h>
Toshifumi NISHINAGA25c1b132016-07-08 01:02:25 +090013#include <asm/arch/fmc.h>
Vikas Manochae66c49f2016-02-11 15:47:20 -080014#include <dm/platdata.h>
15#include <dm/platform_data/serial_stm32x7.h>
16#include <asm/arch/stm32_periph.h>
17#include <asm/arch/stm32_defs.h>
Michael Kurzb20b70f2017-01-22 16:04:27 +010018#include <asm/arch/syscfg.h>
Vikas Manochae66c49f2016-02-11 15:47:20 -080019
20DECLARE_GLOBAL_DATA_PTR;
21
22const struct stm32_gpio_ctl gpio_ctl_gpout = {
23 .mode = STM32_GPIO_MODE_OUT,
24 .otype = STM32_GPIO_OTYPE_PP,
25 .speed = STM32_GPIO_SPEED_50M,
26 .pupd = STM32_GPIO_PUPD_NO,
27 .af = STM32_GPIO_AF0
28};
29
30const struct stm32_gpio_ctl gpio_ctl_usart = {
31 .mode = STM32_GPIO_MODE_AF,
32 .otype = STM32_GPIO_OTYPE_PP,
33 .speed = STM32_GPIO_SPEED_50M,
34 .pupd = STM32_GPIO_PUPD_UP,
Tom Rini95d52732016-07-21 15:38:13 -040035 .af = STM32_GPIO_AF7
Vikas Manochae66c49f2016-02-11 15:47:20 -080036};
37
Toshifumi NISHINAGA25c1b132016-07-08 01:02:25 +090038const struct stm32_gpio_ctl gpio_ctl_fmc = {
39 .mode = STM32_GPIO_MODE_AF,
40 .otype = STM32_GPIO_OTYPE_PP,
41 .speed = STM32_GPIO_SPEED_100M,
42 .pupd = STM32_GPIO_PUPD_NO,
43 .af = STM32_GPIO_AF12
44};
45
46static const struct stm32_gpio_dsc ext_ram_fmc_gpio[] = {
47 /* Chip is LQFP144, see DM00077036.pdf for details */
48 {STM32_GPIO_PORT_D, STM32_GPIO_PIN_10}, /* 79, FMC_D15 */
49 {STM32_GPIO_PORT_D, STM32_GPIO_PIN_9}, /* 78, FMC_D14 */
50 {STM32_GPIO_PORT_D, STM32_GPIO_PIN_8}, /* 77, FMC_D13 */
51 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_15}, /* 68, FMC_D12 */
52 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_14}, /* 67, FMC_D11 */
53 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_13}, /* 66, FMC_D10 */
54 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_12}, /* 65, FMC_D9 */
55 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_11}, /* 64, FMC_D8 */
56 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_10}, /* 63, FMC_D7 */
57 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_9}, /* 60, FMC_D6 */
58 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_8}, /* 59, FMC_D5 */
59 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_7}, /* 58, FMC_D4 */
60 {STM32_GPIO_PORT_D, STM32_GPIO_PIN_1}, /* 115, FMC_D3 */
61 {STM32_GPIO_PORT_D, STM32_GPIO_PIN_0}, /* 114, FMC_D2 */
62 {STM32_GPIO_PORT_D, STM32_GPIO_PIN_15}, /* 86, FMC_D1 */
63 {STM32_GPIO_PORT_D, STM32_GPIO_PIN_14}, /* 85, FMC_D0 */
64
65 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_1}, /* 142, FMC_NBL1 */
66 {STM32_GPIO_PORT_E, STM32_GPIO_PIN_0}, /* 141, FMC_NBL0 */
67
68 {STM32_GPIO_PORT_G, STM32_GPIO_PIN_5}, /* 90, FMC_A15, BA1 */
69 {STM32_GPIO_PORT_G, STM32_GPIO_PIN_4}, /* 89, FMC_A14, BA0 */
70
71 {STM32_GPIO_PORT_G, STM32_GPIO_PIN_1}, /* 57, FMC_A11 */
72 {STM32_GPIO_PORT_G, STM32_GPIO_PIN_0}, /* 56, FMC_A10 */
73 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_15}, /* 55, FMC_A9 */
74 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_14}, /* 54, FMC_A8 */
75 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_13}, /* 53, FMC_A7 */
76 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_12}, /* 50, FMC_A6 */
77 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_5}, /* 15, FMC_A5 */
78 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_4}, /* 14, FMC_A4 */
79 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_3}, /* 13, FMC_A3 */
80 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_2}, /* 12, FMC_A2 */
81 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_1}, /* 11, FMC_A1 */
82 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_0}, /* 10, FMC_A0 */
83
84 {STM32_GPIO_PORT_H, STM32_GPIO_PIN_3}, /* 136, SDRAM_NE */
85 {STM32_GPIO_PORT_F, STM32_GPIO_PIN_11}, /* 49, SDRAM_NRAS */
86 {STM32_GPIO_PORT_G, STM32_GPIO_PIN_15}, /* 132, SDRAM_NCAS */
87 {STM32_GPIO_PORT_H, STM32_GPIO_PIN_5}, /* 26, SDRAM_NWE */
88 {STM32_GPIO_PORT_C, STM32_GPIO_PIN_3}, /* 135, SDRAM_CKE */
89
90 {STM32_GPIO_PORT_G, STM32_GPIO_PIN_8}, /* 93, SDRAM_CLK */
91};
92
93static int fmc_setup_gpio(void)
94{
95 int rv = 0;
96 int i;
97
98 clock_setup(GPIO_B_CLOCK_CFG);
99 clock_setup(GPIO_C_CLOCK_CFG);
100 clock_setup(GPIO_D_CLOCK_CFG);
101 clock_setup(GPIO_E_CLOCK_CFG);
102 clock_setup(GPIO_F_CLOCK_CFG);
103 clock_setup(GPIO_G_CLOCK_CFG);
104 clock_setup(GPIO_H_CLOCK_CFG);
105
106 for (i = 0; i < ARRAY_SIZE(ext_ram_fmc_gpio); i++) {
107 rv = stm32_gpio_config(&ext_ram_fmc_gpio[i],
108 &gpio_ctl_fmc);
109 if (rv)
110 goto out;
111 }
112
113out:
114 return rv;
115}
116
Toshifumi NISHINAGA25c1b132016-07-08 01:02:25 +0900117static inline u32 _ns2clk(u32 ns, u32 freq)
118{
119 u32 tmp = freq/1000000;
120 return (tmp * ns) / 1000;
121}
122
123#define NS2CLK(ns) (_ns2clk(ns, freq))
124
125/*
126 * Following are timings for IS42S16400J, from corresponding datasheet
127 */
128#define SDRAM_CAS 3 /* 3 cycles */
129#define SDRAM_NB 1 /* Number of banks */
130#define SDRAM_MWID 1 /* 16 bit memory */
131
132#define SDRAM_NR 0x1 /* 12-bit row */
133#define SDRAM_NC 0x0 /* 8-bit col */
134#define SDRAM_RBURST 0x1 /* Single read requests always as bursts */
135#define SDRAM_RPIPE 0x0 /* No HCLK clock cycle delay */
136
137#define SDRAM_TRRD NS2CLK(12)
138#define SDRAM_TRCD NS2CLK(18)
139#define SDRAM_TRP NS2CLK(18)
140#define SDRAM_TRAS NS2CLK(42)
141#define SDRAM_TRC NS2CLK(60)
142#define SDRAM_TRFC NS2CLK(60)
143#define SDRAM_TCDL (1 - 1)
144#define SDRAM_TRDL NS2CLK(12)
145#define SDRAM_TBDL (1 - 1)
146#define SDRAM_TREF (NS2CLK(64000000 / 8192) - 20)
147#define SDRAM_TCCD (1 - 1)
148
149#define SDRAM_TXSR SDRAM_TRFC /* Row cycle time after precharge */
150#define SDRAM_TMRD 1 /* Page 10, Mode Register Set */
151
152
153/* Last data in to row precharge, need also comply ineq on page 1648 */
154#define SDRAM_TWR max(\
155 (int)max((int)SDRAM_TRDL, (int)(SDRAM_TRAS - SDRAM_TRCD)), \
156 (int)(SDRAM_TRC - SDRAM_TRCD - SDRAM_TRP)\
157)
158
159
160#define SDRAM_MODE_BL_SHIFT 0
161#define SDRAM_MODE_CAS_SHIFT 4
162#define SDRAM_MODE_BL 0
163#define SDRAM_MODE_CAS SDRAM_CAS
164
165int dram_init(void)
166{
167 u32 freq;
168 int rv;
169
170 rv = fmc_setup_gpio();
171 if (rv)
172 return rv;
173
Michael Kurz081de092017-01-22 16:04:26 +0100174 clock_setup(FMC_CLOCK_CFG);
Toshifumi NISHINAGA25c1b132016-07-08 01:02:25 +0900175
176 /*
177 * Get frequency for NS2CLK calculation.
178 */
179 freq = clock_get(CLOCK_AHB) / CONFIG_SYS_RAM_FREQ_DIV;
180
181 writel(
182 CONFIG_SYS_RAM_FREQ_DIV << FMC_SDCR_SDCLK_SHIFT
183 | SDRAM_CAS << FMC_SDCR_CAS_SHIFT
184 | SDRAM_NB << FMC_SDCR_NB_SHIFT
185 | SDRAM_MWID << FMC_SDCR_MWID_SHIFT
186 | SDRAM_NR << FMC_SDCR_NR_SHIFT
187 | SDRAM_NC << FMC_SDCR_NC_SHIFT
188 | SDRAM_RPIPE << FMC_SDCR_RPIPE_SHIFT
189 | SDRAM_RBURST << FMC_SDCR_RBURST_SHIFT,
190 &STM32_SDRAM_FMC->sdcr1);
191
192 writel(
193 SDRAM_TRCD << FMC_SDTR_TRCD_SHIFT
194 | SDRAM_TRP << FMC_SDTR_TRP_SHIFT
195 | SDRAM_TWR << FMC_SDTR_TWR_SHIFT
196 | SDRAM_TRC << FMC_SDTR_TRC_SHIFT
197 | SDRAM_TRAS << FMC_SDTR_TRAS_SHIFT
198 | SDRAM_TXSR << FMC_SDTR_TXSR_SHIFT
199 | SDRAM_TMRD << FMC_SDTR_TMRD_SHIFT,
200 &STM32_SDRAM_FMC->sdtr1);
201
202 writel(FMC_SDCMR_BANK_1 | FMC_SDCMR_MODE_START_CLOCK,
203 &STM32_SDRAM_FMC->sdcmr);
204
205 udelay(200); /* 200 us delay, page 10, "Power-Up" */
206 FMC_BUSY_WAIT();
207
208 writel(FMC_SDCMR_BANK_1 | FMC_SDCMR_MODE_PRECHARGE,
209 &STM32_SDRAM_FMC->sdcmr);
210
211 udelay(100);
212 FMC_BUSY_WAIT();
213
214 writel((FMC_SDCMR_BANK_1 | FMC_SDCMR_MODE_AUTOREFRESH
215 | 7 << FMC_SDCMR_NRFS_SHIFT), &STM32_SDRAM_FMC->sdcmr);
216
217 udelay(100);
218 FMC_BUSY_WAIT();
219
220 writel(FMC_SDCMR_BANK_1 | (SDRAM_MODE_BL << SDRAM_MODE_BL_SHIFT
221 | SDRAM_MODE_CAS << SDRAM_MODE_CAS_SHIFT)
222 << FMC_SDCMR_MODE_REGISTER_SHIFT | FMC_SDCMR_MODE_WRITE_MODE,
223 &STM32_SDRAM_FMC->sdcmr);
224
225 udelay(100);
226
227 FMC_BUSY_WAIT();
228
229 writel(FMC_SDCMR_BANK_1 | FMC_SDCMR_MODE_NORMAL,
230 &STM32_SDRAM_FMC->sdcmr);
231
232 FMC_BUSY_WAIT();
233
234 /* Refresh timer */
235 writel(SDRAM_TREF, &STM32_SDRAM_FMC->sdrtr);
236
237 /*
238 * Fill in global info with description of SRAM configuration
239 */
240 gd->bd->bi_dram[0].start = CONFIG_SYS_RAM_BASE;
241 gd->bd->bi_dram[0].size = CONFIG_SYS_RAM_SIZE;
242
243 gd->ram_size = CONFIG_SYS_RAM_SIZE;
244
245 return rv;
246}
247
Vikas Manochae66c49f2016-02-11 15:47:20 -0800248static const struct stm32_gpio_dsc usart_gpio[] = {
Tom Rini95d52732016-07-21 15:38:13 -0400249 {STM32_GPIO_PORT_A, STM32_GPIO_PIN_9}, /* TX */
250 {STM32_GPIO_PORT_B, STM32_GPIO_PIN_7}, /* RX */
Vikas Manochae66c49f2016-02-11 15:47:20 -0800251};
252
253int uart_setup_gpio(void)
254{
255 int i;
256 int rv = 0;
257
Tom Rini95d52732016-07-21 15:38:13 -0400258 clock_setup(GPIO_A_CLOCK_CFG);
259 clock_setup(GPIO_B_CLOCK_CFG);
Vikas Manochae66c49f2016-02-11 15:47:20 -0800260 for (i = 0; i < ARRAY_SIZE(usart_gpio); i++) {
261 rv = stm32_gpio_config(&usart_gpio[i], &gpio_ctl_usart);
262 if (rv)
263 goto out;
264 }
265
266out:
267 return rv;
268}
269
270static const struct stm32x7_serial_platdata serial_platdata = {
Tom Rini95d52732016-07-21 15:38:13 -0400271 .base = (struct stm32_usart *)USART1_BASE,
Vikas Manochae66c49f2016-02-11 15:47:20 -0800272 .clock = CONFIG_SYS_CLK_FREQ,
273};
274
275U_BOOT_DEVICE(stm32x7_serials) = {
276 .name = "serial_stm32x7",
277 .platdata = &serial_platdata,
278};
279
Michael Kurzb20b70f2017-01-22 16:04:27 +0100280#ifdef CONFIG_ETH_DESIGNWARE
281const struct stm32_gpio_ctl gpio_ctl_eth = {
282 .mode = STM32_GPIO_MODE_AF,
283 .otype = STM32_GPIO_OTYPE_PP,
284 .speed = STM32_GPIO_SPEED_100M,
285 .pupd = STM32_GPIO_PUPD_NO,
286 .af = STM32_GPIO_AF11
287};
288
289static const struct stm32_gpio_dsc eth_gpio[] = {
290 {STM32_GPIO_PORT_A, STM32_GPIO_PIN_1}, /* ETH_RMII_REF_CLK */
291 {STM32_GPIO_PORT_A, STM32_GPIO_PIN_2}, /* ETH_MDIO */
292 {STM32_GPIO_PORT_A, STM32_GPIO_PIN_7}, /* ETH_RMII_CRS_DV */
293
294 {STM32_GPIO_PORT_C, STM32_GPIO_PIN_1}, /* ETH_MDC */
295 {STM32_GPIO_PORT_C, STM32_GPIO_PIN_4}, /* ETH_RMII_RXD0 */
296 {STM32_GPIO_PORT_C, STM32_GPIO_PIN_5}, /* ETH_RMII_RXD1 */
297
298 {STM32_GPIO_PORT_G, STM32_GPIO_PIN_11}, /* ETH_RMII_TX_EN */
299 {STM32_GPIO_PORT_G, STM32_GPIO_PIN_13}, /* ETH_RMII_TXD0 */
300 {STM32_GPIO_PORT_G, STM32_GPIO_PIN_14}, /* ETH_RMII_TXD1 */
301};
302
303static int stmmac_setup(void)
304{
305 int res = 0;
306 int i;
307
308 clock_setup(SYSCFG_CLOCK_CFG);
309
310 /* Set >RMII mode */
311 STM32_SYSCFG->pmc |= SYSCFG_PMC_MII_RMII_SEL;
312
313 clock_setup(GPIO_A_CLOCK_CFG);
314 clock_setup(GPIO_C_CLOCK_CFG);
315 clock_setup(GPIO_G_CLOCK_CFG);
316
317 for (i = 0; i < ARRAY_SIZE(eth_gpio); i++) {
318 res = stm32_gpio_config(&eth_gpio[i], &gpio_ctl_eth);
319 if (res)
320 return res;
321 }
322
323 clock_setup(STMMAC_CLOCK_CFG);
324
325 return 0;
326}
327#endif
328
Vikas Manochae66c49f2016-02-11 15:47:20 -0800329u32 get_board_rev(void)
330{
331 return 0;
332}
333
334int board_early_init_f(void)
335{
336 int res;
337
338 res = uart_setup_gpio();
Tom Rini95d52732016-07-21 15:38:13 -0400339 clock_setup(USART1_CLOCK_CFG);
Vikas Manochae66c49f2016-02-11 15:47:20 -0800340 if (res)
341 return res;
342
Michael Kurzb20b70f2017-01-22 16:04:27 +0100343#ifdef CONFIG_ETH_DESIGNWARE
344 res = stmmac_setup();
345 if (res)
346 return res;
347#endif
348
Vikas Manochae66c49f2016-02-11 15:47:20 -0800349 return 0;
350}
351
352int board_init(void)
353{
354 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
355
356 return 0;
357}