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