]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/freescale/mpc8349emds/mpc8349emds.c
board_f: Drop return value from initdram()
[people/ms/u-boot.git] / board / freescale / mpc8349emds / mpc8349emds.c
CommitLineData
991425fe
MB
1/*
2 * (C) Copyright 2006
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
991425fe
MB
6 */
7
8#include <common.h>
9#include <ioports.h>
10#include <mpc83xx.h>
11#include <asm/mpc8349_pci.h>
12#include <i2c.h>
80ddd226 13#include <spi.h>
991425fe 14#include <miiphy.h>
5614e71b
YS
15#ifdef CONFIG_SYS_FSL_DDR2
16#include <fsl_ddr_sdram.h>
d4b91066 17#else
991425fe 18#include <spd_sdram.h>
d4b91066 19#endif
a30a549a 20
b3458d2c 21#if defined(CONFIG_OF_LIBFDT)
3fde9e8b 22#include <libfdt.h>
bf0b542d
KP
23#endif
24
088454cd
SG
25DECLARE_GLOBAL_DATA_PTR;
26
991425fe
MB
27int fixed_sdram(void);
28void sdram_init(void);
29
0f898604 30#if defined(CONFIG_DDR_ECC) && defined(CONFIG_MPC83xx)
991425fe
MB
31void ddr_enable_ecc(unsigned int dram_size);
32#endif
33
34int board_early_init_f (void)
35{
6d0f6bcf 36 volatile u8* bcsr = (volatile u8*)CONFIG_SYS_BCSR;
991425fe
MB
37
38 /* Enable flash write */
39 bcsr[1] &= ~0x01;
40
6d0f6bcf 41#ifdef CONFIG_SYS_USE_MPC834XSYS_USB_PHY
8fe9bf61
KG
42 /* Use USB PHY on SYS board */
43 bcsr[5] |= 0x02;
44#endif
45
991425fe
MB
46 return 0;
47}
48
49#define ns2clk(ns) (ns / (1000000000 / CONFIG_8349_CLKIN) + 1)
50
088454cd 51int initdram(void)
991425fe 52{
6d0f6bcf 53 volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
d4b91066 54 phys_size_t msize = 0;
991425fe
MB
55
56 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
088454cd 57 return -ENXIO;
991425fe
MB
58
59 /* DDR SDRAM - Main SODIMM */
6d0f6bcf 60 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_BASE & LAWBAR_BAR;
991425fe 61#if defined(CONFIG_SPD_EEPROM)
5614e71b 62#ifndef CONFIG_SYS_FSL_DDR2
d4b91066
YS
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
991425fe 70#else
d4b91066 71 msize = fixed_sdram() * 1024 * 1024;
991425fe
MB
72#endif
73 /*
74 * Initialize SDRAM if it is on local bus.
75 */
76 sdram_init();
77
088454cd
SG
78 /* set total bus SDRAM size(bytes) -- DDR */
79 gd->ram_size = msize;
80
81 return 0;
991425fe
MB
82}
83
84#if !defined(CONFIG_SPD_EEPROM)
85/*************************************************************************
86 * fixed sdram init -- doesn't use serial presence detect.
87 ************************************************************************/
88int fixed_sdram(void)
89{
6d0f6bcf 90 volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
2e651b24
JH
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
6d0f6bcf 95 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000;
991425fe 96 im->sysconf.ddrlaw[0].ar = LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE);
dc9e499c 97
6d0f6bcf 98#if (CONFIG_SYS_DDR_SIZE != 256)
991425fe
MB
99#warning Currenly any ddr size other than 256 is not supported
100#endif
d61853cf 101#ifdef CONFIG_DDR_II
6d0f6bcf
JCPV
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;
d61853cf 114#else
2e651b24
JH
115
116#if ((CONFIG_SYS_DDR_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_DDR_SDRAM_BASE >> CSBNDS_SA_SHIFT) & CSBNDS_SA) |
121 (((CONFIG_SYS_DDR_SDRAM_BASE + ddr_size - 1) >>
122 CSBNDS_EA_SHIFT) & CSBNDS_EA);
123 im->ddr.cs_config[2] = CONFIG_SYS_DDR_CS2_CONFIG;
dc9e499c 124
cf48eb9a 125 /* currently we use only one CS, so disable the other banks */
dc9e499c
RJ
126 im->ddr.cs_config[0] = 0;
127 im->ddr.cs_config[1] = 0;
128 im->ddr.cs_config[3] = 0;
129
6d0f6bcf
JCPV
130 im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
131 im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
cf48eb9a 132
991425fe
MB
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;
dc9e499c
RJ
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
6d0f6bcf 143 im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
991425fe 144
6d0f6bcf 145 im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
d61853cf 146#endif
991425fe
MB
147 udelay(200);
148
dc9e499c 149 /* enable DDR controller */
991425fe 150 im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
991425fe
MB
151 return msize;
152}
6d0f6bcf 153#endif/*!CONFIG_SYS_SPD_EEPROM*/
991425fe
MB
154
155
156int checkboard (void)
157{
447ad576
IS
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
991425fe
MB
167 puts("Board: Freescale MPC8349EMDS\n");
168 return 0;
169}
170
991425fe
MB
171/*
172 * if MPC8349EMDS is soldered with SDRAM
173 */
6d0f6bcf
JCPV
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)
991425fe
MB
178/*
179 * Initialize SDRAM memory on the Local Bus.
180 */
181
182void sdram_init(void)
183{
6d0f6bcf 184 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
f51cdaf1 185 volatile fsl_lbc_t *lbc = &immap->im_lbc;
6d0f6bcf 186 uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
991425fe 187
991425fe
MB
188 /*
189 * Setup SDRAM Base and Option Registers, already done in cpu_init.c
190 */
191
192 /* setup mtrpt, lsrt and lbcr for LB bus */
6d0f6bcf
JCPV
193 lbc->lbcr = CONFIG_SYS_LBC_LBCR;
194 lbc->mrtpr = CONFIG_SYS_LBC_MRTPR;
195 lbc->lsrt = CONFIG_SYS_LBC_LSRT;
991425fe
MB
196 asm("sync");
197
198 /*
199 * Configure the SDRAM controller Machine Mode Register.
200 */
6d0f6bcf 201 lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_5; /* 0x40636733; normal operation */
991425fe 202
6d0f6bcf 203 lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_1; /* 0x68636733; precharge all the banks */
991425fe
MB
204 asm("sync");
205 *sdram_addr = 0xff;
206 udelay(100);
207
6d0f6bcf 208 lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_2; /* 0x48636733; auto refresh */
991425fe
MB
209 asm("sync");
210 /*1 times*/
211 *sdram_addr = 0xff;
212 udelay(100);
213 /*2 times*/
214 *sdram_addr = 0xff;
215 udelay(100);
216 /*3 times*/
217 *sdram_addr = 0xff;
218 udelay(100);
219 /*4 times*/
220 *sdram_addr = 0xff;
221 udelay(100);
222 /*5 times*/
223 *sdram_addr = 0xff;
224 udelay(100);
225 /*6 times*/
226 *sdram_addr = 0xff;
227 udelay(100);
228 /*7 times*/
229 *sdram_addr = 0xff;
230 udelay(100);
231 /*8 times*/
232 *sdram_addr = 0xff;
233 udelay(100);
234
235 /* 0x58636733; mode register write operation */
6d0f6bcf 236 lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_4;
991425fe
MB
237 asm("sync");
238 *sdram_addr = 0xff;
239 udelay(100);
240
6d0f6bcf 241 lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_5; /* 0x40636733; normal operation */
991425fe
MB
242 asm("sync");
243 *sdram_addr = 0xff;
244 udelay(100);
245}
246#else
247void sdram_init(void)
248{
991425fe
MB
249}
250#endif
d326f4a2 251
80ddd226
BW
252/*
253 * The following are used to control the SPI chip selects for the SPI command.
254 */
f8cc312b 255#ifdef CONFIG_MPC8XXX_SPI
80ddd226
BW
256
257#define SPI_CS_MASK 0x80000000
258
d255bb0e
HS
259int spi_cs_is_valid(unsigned int bus, unsigned int cs)
260{
261 return bus == 0 && cs == 0;
262}
263
264void spi_cs_activate(struct spi_slave *slave)
80ddd226 265{
6d0f6bcf 266 volatile gpio83xx_t *iopd = &((immap_t *)CONFIG_SYS_IMMR)->gpio[0];
80ddd226 267
d255bb0e 268 iopd->dat &= ~SPI_CS_MASK;
80ddd226
BW
269}
270
d255bb0e
HS
271void spi_cs_deactivate(struct spi_slave *slave)
272{
6d0f6bcf 273 volatile gpio83xx_t *iopd = &((immap_t *)CONFIG_SYS_IMMR)->gpio[0];
80ddd226 274
d255bb0e
HS
275 iopd->dat |= SPI_CS_MASK;
276}
80ddd226
BW
277#endif /* CONFIG_HARD_SPI */
278
3fde9e8b 279#if defined(CONFIG_OF_BOARD_SETUP)
e895a4b0 280int ft_board_setup(void *blob, bd_t *bd)
bf0b542d 281{
3fde9e8b
KP
282 ft_cpu_setup(blob, bd);
283#ifdef CONFIG_PCI
284 ft_pci_setup(blob, bd);
285#endif
e895a4b0
SG
286
287 return 0;
bf0b542d
KP
288}
289#endif