Merge tag 'u-boot-imx-20200121' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / board / freescale / mpc8349emds / mpc8349emds.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2006
4  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5  */
6
7 #include <common.h>
8 #include <fdt_support.h>
9 #include <ioports.h>
10 #include <mpc83xx.h>
11 #include <asm/mpc8349_pci.h>
12 #include <i2c.h>
13 #include <spi.h>
14 #include <miiphy.h>
15 #ifdef CONFIG_SYS_FSL_DDR2
16 #include <fsl_ddr_sdram.h>
17 #else
18 #include <spd_sdram.h>
19 #endif
20
21 #if defined(CONFIG_OF_LIBFDT)
22 #include <linux/libfdt.h>
23 #endif
24
25 DECLARE_GLOBAL_DATA_PTR;
26
27 int fixed_sdram(void);
28 void sdram_init(void);
29
30 #if defined(CONFIG_DDR_ECC) && defined(CONFIG_MPC83xx)
31 void ddr_enable_ecc(unsigned int dram_size);
32 #endif
33
34 int board_early_init_f (void)
35 {
36         volatile u8* bcsr = (volatile u8*)CONFIG_SYS_BCSR;
37
38         /* Enable flash write */
39         bcsr[1] &= ~0x01;
40
41 #ifdef CONFIG_SYS_USE_MPC834XSYS_USB_PHY
42         /* Use USB PHY on SYS board */
43         bcsr[5] |= 0x02;
44 #endif
45
46         return 0;
47 }
48
49 #define ns2clk(ns) (ns / (1000000000 / CONFIG_8349_CLKIN) + 1)
50
51 int dram_init(void)
52 {
53         volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
54         phys_size_t msize = 0;
55
56         if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
57                 return -ENXIO;
58
59         /* DDR SDRAM - Main SODIMM */
60         im->sysconf.ddrlaw[0].bar = CONFIG_SYS_SDRAM_BASE & LAWBAR_BAR;
61 #if defined(CONFIG_SPD_EEPROM)
62 #ifndef CONFIG_SYS_FSL_DDR2
63         msize = spd_sdram() * 1024 * 1024;
64 #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
65         ddr_enable_ecc(msize);
66 #endif
67 #else
68         msize = fsl_ddr_sdram();
69 #endif
70 #else
71         msize = fixed_sdram() * 1024 * 1024;
72 #endif
73         /*
74          * Initialize SDRAM if it is on local bus.
75          */
76         sdram_init();
77
78         /* set total bus SDRAM size(bytes)  -- DDR */
79         gd->ram_size = msize;
80
81         return 0;
82 }
83
84 #if !defined(CONFIG_SPD_EEPROM)
85 /*************************************************************************
86  *  fixed sdram init -- doesn't use serial presence detect.
87  ************************************************************************/
88 int fixed_sdram(void)
89 {
90         volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
91         u32 msize = CONFIG_SYS_DDR_SIZE;
92         u32 ddr_size = msize << 20;     /* DDR size in bytes */
93         u32 ddr_size_log2 = __ilog2(ddr_size);
94
95         im->sysconf.ddrlaw[0].bar = CONFIG_SYS_SDRAM_BASE & 0xfffff000;
96         im->sysconf.ddrlaw[0].ar = LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE);
97
98 #if (CONFIG_SYS_DDR_SIZE != 256)
99 #warning Currenly any ddr size other than 256 is not supported
100 #endif
101 #ifdef CONFIG_DDR_II
102         im->ddr.csbnds[2].csbnds = CONFIG_SYS_DDR_CS2_BNDS;
103         im->ddr.cs_config[2] = CONFIG_SYS_DDR_CS2_CONFIG;
104         im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
105         im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
106         im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
107         im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
108         im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG;
109         im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2;
110         im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
111         im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2;
112         im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
113         im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CNTL;
114 #else
115
116 #if ((CONFIG_SYS_SDRAM_BASE & 0x00FFFFFF) != 0)
117 #warning Chip select bounds is only configurable in 16MB increments
118 #endif
119         im->ddr.csbnds[2].csbnds =
120                 ((CONFIG_SYS_SDRAM_BASE >> CSBNDS_SA_SHIFT) & CSBNDS_SA) |
121                 (((CONFIG_SYS_SDRAM_BASE + ddr_size - 1) >>
122                                 CSBNDS_EA_SHIFT) & CSBNDS_EA);
123         im->ddr.cs_config[2] = CONFIG_SYS_DDR_CS2_CONFIG;
124
125         /* currently we use only one CS, so disable the other banks */
126         im->ddr.cs_config[0] = 0;
127         im->ddr.cs_config[1] = 0;
128         im->ddr.cs_config[3] = 0;
129
130         im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
131         im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
132
133         im->ddr.sdram_cfg =
134                 SDRAM_CFG_SREN
135 #if defined(CONFIG_DDR_2T_TIMING)
136                 | SDRAM_CFG_2T_EN
137 #endif
138                 | 2 << SDRAM_CFG_SDRAM_TYPE_SHIFT;
139 #if defined (CONFIG_DDR_32BIT)
140         /* for 32-bit mode burst length is 8 */
141         im->ddr.sdram_cfg |= (SDRAM_CFG_32_BE | SDRAM_CFG_8_BE);
142 #endif
143         im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
144
145         im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
146 #endif
147         udelay(200);
148
149         /* enable DDR controller */
150         im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
151         return msize;
152 }
153 #endif/*!CONFIG_SYS_SPD_EEPROM*/
154
155
156 int checkboard (void)
157 {
158         /*
159          * Warning: do not read the BCSR registers here
160          *
161          * There is a timing bug in the 8349E and 8349EA BCSR code
162          * version 1.2 (read from BCSR 11) that will cause the CFI
163          * flash initialization code to overwrite BCSR 0, disabling
164          * the serial ports and gigabit ethernet
165          */
166
167         puts("Board: Freescale MPC8349EMDS\n");
168         return 0;
169 }
170
171 /*
172  * if MPC8349EMDS is soldered with SDRAM
173  */
174 #if defined(CONFIG_SYS_BR2_PRELIM)  \
175         && defined(CONFIG_SYS_OR2_PRELIM) \
176         && defined(CONFIG_SYS_LBLAWBAR2_PRELIM) \
177         && defined(CONFIG_SYS_LBLAWAR2_PRELIM)
178 /*
179  * Initialize SDRAM memory on the Local Bus.
180  */
181
182 void sdram_init(void)
183 {
184         volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
185         volatile fsl_lbc_t *lbc = &immap->im_lbc;
186         uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
187         const u32 lsdmr_common = LSDMR_RFEN | LSDMR_BSMA1516 | LSDMR_RFCR8 |
188                                  LSDMR_PRETOACT6 | LSDMR_ACTTORW3 | LSDMR_BL8 |
189                                  LSDMR_WRC3 | LSDMR_CL3;
190         /*
191          * Setup SDRAM Base and Option Registers, already done in cpu_init.c
192          */
193
194         /* setup mtrpt, lsrt and lbcr for LB bus */
195         lbc->lbcr = 0x00000000;
196         /* LB refresh timer prescal, 266MHz/32 */
197         lbc->mrtpr = 0x20000000;
198         /* LB sdram refresh timer, about 6us */
199         lbc->lsrt = 0x32000000;
200         asm("sync");
201
202         /*
203          * Configure the SDRAM controller Machine Mode Register.
204          */
205
206         /* 0x40636733; normal operation */
207         lbc->lsdmr = lsdmr_common | LSDMR_OP_NORMAL;
208
209         /* 0x68636733; precharge all the banks */
210         lbc->lsdmr = lsdmr_common | LSDMR_OP_PCHALL;
211         asm("sync");
212         *sdram_addr = 0xff;
213         udelay(100);
214
215         /* 0x48636733; auto refresh */
216         lbc->lsdmr = lsdmr_common | LSDMR_OP_ARFRSH;
217         asm("sync");
218         /*1 times*/
219         *sdram_addr = 0xff;
220         udelay(100);
221         /*2 times*/
222         *sdram_addr = 0xff;
223         udelay(100);
224         /*3 times*/
225         *sdram_addr = 0xff;
226         udelay(100);
227         /*4 times*/
228         *sdram_addr = 0xff;
229         udelay(100);
230         /*5 times*/
231         *sdram_addr = 0xff;
232         udelay(100);
233         /*6 times*/
234         *sdram_addr = 0xff;
235         udelay(100);
236         /*7 times*/
237         *sdram_addr = 0xff;
238         udelay(100);
239         /*8 times*/
240         *sdram_addr = 0xff;
241         udelay(100);
242
243         /* 0x58636733; mode register write operation */
244         lbc->lsdmr = lsdmr_common | LSDMR_OP_MRW;
245         asm("sync");
246         *sdram_addr = 0xff;
247         udelay(100);
248
249         /* 0x40636733; normal operation */
250         lbc->lsdmr = lsdmr_common | LSDMR_OP_NORMAL;
251         asm("sync");
252         *sdram_addr = 0xff;
253         udelay(100);
254 }
255 #else
256 void sdram_init(void)
257 {
258 }
259 #endif
260
261 /*
262  * The following are used to control the SPI chip selects for the SPI command.
263  */
264 #ifdef CONFIG_MPC8XXX_SPI
265
266 #define SPI_CS_MASK     0x80000000
267
268 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
269 {
270         return bus == 0 && cs == 0;
271 }
272
273 void spi_cs_activate(struct spi_slave *slave)
274 {
275         volatile gpio83xx_t *iopd = &((immap_t *)CONFIG_SYS_IMMR)->gpio[0];
276
277         iopd->dat &= ~SPI_CS_MASK;
278 }
279
280 void spi_cs_deactivate(struct spi_slave *slave)
281 {
282         volatile gpio83xx_t *iopd = &((immap_t *)CONFIG_SYS_IMMR)->gpio[0];
283
284         iopd->dat |=  SPI_CS_MASK;
285 }
286 #endif
287
288 #if defined(CONFIG_OF_BOARD_SETUP)
289 int ft_board_setup(void *blob, bd_t *bd)
290 {
291         ft_cpu_setup(blob, bd);
292 #ifdef CONFIG_PCI
293         ft_pci_setup(blob, bd);
294 #endif
295
296         return 0;
297 }
298 #endif