blob: 7c92f4f54c16a6cff53f42c13a5c8e150d34e38b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marian Balakowicz513b4a12005-10-11 19:09:42 +02002/*
3 * (C) Copyright 2005
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Marian Balakowicz513b4a12005-10-11 19:09:42 +02005 */
6
7#include <common.h>
8#include <ioports.h>
9#include <mpc83xx.h>
10#include <asm/mpc8349_pci.h>
11#include <i2c.h>
Marian Balakowicz513b4a12005-10-11 19:09:42 +020012#include <miiphy.h>
Peter Tyser133c0fe2010-04-12 22:28:07 -050013#include <asm/mmu.h>
Marian Balakowicz513b4a12005-10-11 19:09:42 +020014#include <pci.h>
Stefan Roesefb9a7302010-08-31 10:00:10 +020015#include <flash.h>
16#include <mtd/cfi_flash.h>
Marian Balakowicz513b4a12005-10-11 19:09:42 +020017
Wolfgang Denk6405a152006-03-31 18:32:53 +020018DECLARE_GLOBAL_DATA_PTR;
19
Marian Balakowicz513b4a12005-10-11 19:09:42 +020020#define IOSYNC asm("eieio")
21#define ISYNC asm("isync")
22#define SYNC asm("sync")
23#define FPW FLASH_PORT_WIDTH
24#define FPWV FLASH_PORT_WIDTHV
25
26#define DDR_MAX_SIZE_PER_CS 0x20000000
27
28#if defined(DDR_CASLAT_20)
29#define TIMING_CASLAT TIMING_CFG1_CASLAT_20
30#define MODE_CASLAT DDR_MODE_CASLAT_20
31#else
32#define TIMING_CASLAT TIMING_CFG1_CASLAT_25
33#define MODE_CASLAT DDR_MODE_CASLAT_25
34#endif
35
36#define INITIAL_CS_CONFIG (CSCONFIG_EN | CSCONFIG_ROW_BIT_12 | \
37 CSCONFIG_COL_BIT_9)
38
Marian Balakowicz513b4a12005-10-11 19:09:42 +020039/* External definitions */
40ulong flash_get_size (ulong base, int banknum);
Marian Balakowicz513b4a12005-10-11 19:09:42 +020041
42/* Local functions */
43static int detect_num_flash_banks(void);
Wolfgang Denk3da2e9f2011-07-30 23:50:50 +020044static long int get_ddr_bank_size(short cs, long *base);
Bin Mengb5973242016-01-25 00:29:55 -080045static void set_cs_bounds(short cs, ulong base, ulong size);
Marian Balakowicz513b4a12005-10-11 19:09:42 +020046static void set_cs_config(short cs, long config);
47static void set_ddr_config(void);
48
49/* Local variable */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020050static volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
Marian Balakowicz513b4a12005-10-11 19:09:42 +020051
52/**************************************************************************
53 * Board initialzation after relocation to RAM. Used to detect the number
54 * of Flash banks on TQM834x.
55 */
56int board_early_init_r (void) {
57 /* sanity check, IMMARBAR should be mirrored at offset zero of IMMR */
58 if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
59 return 0;
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010060
Marian Balakowicz513b4a12005-10-11 19:09:42 +020061 /* detect the number of Flash banks */
62 return detect_num_flash_banks();
63}
64
65/**************************************************************************
66 * DRAM initalization and size detection
67 */
Simon Glassd35f3382017-04-06 12:47:05 -060068int dram_init(void)
Marian Balakowicz513b4a12005-10-11 19:09:42 +020069{
70 long bank_size;
71 long size;
72 int cs;
73
74 /* during size detection, set up the max DDRLAW size */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020075 im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_BASE;
Marian Balakowicz513b4a12005-10-11 19:09:42 +020076 im->sysconf.ddrlaw[0].ar = (LAWAR_EN | LAWAR_SIZE_2G);
77
78 /* set CS bounds to maximum size */
79 for(cs = 0; cs < 4; ++cs) {
80 set_cs_bounds(cs,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020081 CONFIG_SYS_DDR_BASE + (cs * DDR_MAX_SIZE_PER_CS),
Marian Balakowicz513b4a12005-10-11 19:09:42 +020082 DDR_MAX_SIZE_PER_CS);
83
84 set_cs_config(cs, INITIAL_CS_CONFIG);
85 }
86
87 /* configure ddr controller */
88 set_ddr_config();
89
90 udelay(200);
Wolfgang Denkf6a692b2005-12-04 00:40:34 +010091
Marian Balakowicz513b4a12005-10-11 19:09:42 +020092 /* enable DDR controller */
93 im->ddr.sdram_cfg = (SDRAM_CFG_MEM_EN |
94 SDRAM_CFG_SREN |
Kim Phillips3b9c20f2007-08-16 22:52:48 -050095 SDRAM_CFG_SDRAM_TYPE_DDR1);
Marian Balakowicz513b4a12005-10-11 19:09:42 +020096 SYNC;
97
98 /* size detection */
99 debug("\n");
100 size = 0;
101 for(cs = 0; cs < 4; ++cs) {
102 debug("\nDetecting Bank%d\n", cs);
103
104 bank_size = get_ddr_bank_size(cs,
Wolfgang Denk3da2e9f2011-07-30 23:50:50 +0200105 (long *)(CONFIG_SYS_DDR_BASE + size));
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200106 size += bank_size;
107
Marek Vasut71a14a62011-10-21 14:17:10 +0000108 debug("DDR Bank%d size: %ld MiB\n\n", cs, bank_size >> 20);
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200109
110 /* exit if less than one bank */
111 if(size < DDR_MAX_SIZE_PER_CS) break;
112 }
113
Simon Glass39f90ba2017-03-31 08:40:25 -0600114 gd->ram_size = size;
115
116 return 0;
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200117}
118
119/**************************************************************************
120 * checkboard()
121 */
122int checkboard (void)
123{
124 puts("Board: TQM834x\n");
125
126#ifdef CONFIG_PCI
Rafal Jaworowski384da5e2005-10-17 02:39:53 +0200127 volatile immap_t * immr;
128 u32 w, f;
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200129
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200130 immr = (immap_t *)CONFIG_SYS_IMMR;
Dave Liu0b6bc772006-12-07 21:11:58 +0800131 if (!(immr->reset.rcwh & HRCWH_PCI_HOST)) {
Rafal Jaworowski384da5e2005-10-17 02:39:53 +0200132 printf("PCI: NOT in host mode..?!\n");
133 return 0;
134 }
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200135
Rafal Jaworowski384da5e2005-10-17 02:39:53 +0200136 /* get bus width */
137 w = 32;
Dave Liu0b6bc772006-12-07 21:11:58 +0800138 if (immr->reset.rcwh & HRCWH_64_BIT_PCI)
Rafal Jaworowski384da5e2005-10-17 02:39:53 +0200139 w = 64;
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200140
Rafal Jaworowski384da5e2005-10-17 02:39:53 +0200141 /* get clock */
142 f = gd->pci_clk;
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200143
Rafal Jaworowski384da5e2005-10-17 02:39:53 +0200144 printf("PCI1: %d bit, %d MHz\n", w, f / 1000000);
145#else
146 printf("PCI: disabled\n");
147#endif
148 return 0;
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200149}
150
Rafal Jaworowski384da5e2005-10-17 02:39:53 +0200151
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200152/**************************************************************************
153 *
154 * Local functions
155 *
156 *************************************************************************/
157
158/**************************************************************************
159 * Detect the number of flash banks (1 or 2). Store it in
160 * a global variable tqm834x_num_flash_banks.
161 * Bank detection code based on the Monitor code.
162 */
163static int detect_num_flash_banks(void)
164{
165 typedef unsigned long FLASH_PORT_WIDTH;
166 typedef volatile unsigned long FLASH_PORT_WIDTHV;
167 FPWV *bank1_base;
168 FPWV *bank2_base;
169 FPW bank1_read;
170 FPW bank2_read;
171 ulong bank1_size;
172 ulong bank2_size;
173 ulong total_size;
174
Stefan Roesefb9a7302010-08-31 10:00:10 +0200175 cfi_flash_num_flash_banks = 2; /* assume two banks */
Wolfgang Denkf6a692b2005-12-04 00:40:34 +0100176
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200177 /* Get bank 1 and 2 information */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200178 bank1_size = flash_get_size(CONFIG_SYS_FLASH_BASE, 0);
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200179 debug("Bank1 size: %lu\n", bank1_size);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200180 bank2_size = flash_get_size(CONFIG_SYS_FLASH_BASE + bank1_size, 1);
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200181 debug("Bank2 size: %lu\n", bank2_size);
182 total_size = bank1_size + bank2_size;
183
184 if (bank2_size > 0) {
185 /* Seems like we've got bank 2, but maybe it's mirrored 1 */
186
187 /* Set the base addresses */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200188 bank1_base = (FPWV *) (CONFIG_SYS_FLASH_BASE);
189 bank2_base = (FPWV *) (CONFIG_SYS_FLASH_BASE + bank1_size);
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200190
191 /* Put bank 2 into CFI command mode and read */
192 bank2_base[0x55] = 0x00980098;
193 IOSYNC;
194 ISYNC;
195 bank2_read = bank2_base[0x10];
196
197 /* Read from bank 1 (it's in read mode) */
198 bank1_read = bank1_base[0x10];
199
200 /* Reset Flash */
201 bank1_base[0] = 0x00F000F0;
202 bank2_base[0] = 0x00F000F0;
203
204 if (bank2_read == bank1_read) {
205 /*
206 * Looks like just one bank, but not sure yet. Let's
207 * read from bank 2 in autosoelect mode.
208 */
209 bank2_base[0x0555] = 0x00AA00AA;
210 bank2_base[0x02AA] = 0x00550055;
211 bank2_base[0x0555] = 0x00900090;
212 IOSYNC;
213 ISYNC;
214 bank2_read = bank2_base[0x10];
215
216 /* Read from bank 1 (it's in read mode) */
217 bank1_read = bank1_base[0x10];
218
219 /* Reset Flash */
220 bank1_base[0] = 0x00F000F0;
221 bank2_base[0] = 0x00F000F0;
222
223 if (bank2_read == bank1_read) {
224 /*
225 * In both CFI command and autoselect modes,
226 * we got the some data reading from Flash.
227 * There is only one mirrored bank.
228 */
Stefan Roesefb9a7302010-08-31 10:00:10 +0200229 cfi_flash_num_flash_banks = 1;
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200230 total_size = bank1_size;
231 }
232 }
233 }
234
Stefan Roesefb9a7302010-08-31 10:00:10 +0200235 debug("Number of flash banks detected: %d\n", cfi_flash_num_flash_banks);
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200236
237 /* set OR0 and BR0 */
Becky Bruce0d4cee12010-06-17 11:37:20 -0500238 set_lbc_or(0, CONFIG_SYS_OR_TIMING_FLASH |
239 (-(total_size) & OR_GPCM_AM));
240 set_lbc_br(0, (CONFIG_SYS_FLASH_BASE & BR_BA) |
241 (BR_MS_GPCM | BR_PS_32 | BR_V));
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200242
243 return (0);
244}
245
246/*************************************************************************
247 * Detect the size of a ddr bank. Sets CS bounds and CS config accordingly.
248 */
Wolfgang Denk3da2e9f2011-07-30 23:50:50 +0200249static long int get_ddr_bank_size(short cs, long *base)
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200250{
251 /* This array lists all valid DDR SDRAM configurations, with
252 * Bank sizes in bytes. (Refer to Table 9-27 in the MPC8349E RM).
253 * The last entry has to to have size equal 0 and is igonred during
254 * autodection. Bank sizes must be in increasing order of size
255 */
256 struct {
257 long row;
258 long col;
259 long size;
260 } conf[] = {
261 {CSCONFIG_ROW_BIT_12, CSCONFIG_COL_BIT_8, 32 << 20},
262 {CSCONFIG_ROW_BIT_12, CSCONFIG_COL_BIT_9, 64 << 20},
263 {CSCONFIG_ROW_BIT_12, CSCONFIG_COL_BIT_10, 128 << 20},
264 {CSCONFIG_ROW_BIT_13, CSCONFIG_COL_BIT_9, 128 << 20},
265 {CSCONFIG_ROW_BIT_13, CSCONFIG_COL_BIT_10, 256 << 20},
266 {CSCONFIG_ROW_BIT_13, CSCONFIG_COL_BIT_11, 512 << 20},
267 {CSCONFIG_ROW_BIT_14, CSCONFIG_COL_BIT_10, 512 << 20},
268 {CSCONFIG_ROW_BIT_14, CSCONFIG_COL_BIT_11, 1024 << 20},
269 {0, 0, 0}
270 };
271
272 int i;
273 int detected;
274 long size;
275
276 detected = -1;
277 for(i = 0; conf[i].size != 0; ++i) {
278
279 /* set sdram bank configuration */
280 set_cs_config(cs, CSCONFIG_EN | conf[i].col | conf[i].row);
281
282 debug("Getting RAM size...\n");
283 size = get_ram_size(base, DDR_MAX_SIZE_PER_CS);
284
285 if((size == conf[i].size) && (i == detected + 1))
286 detected = i;
287
288 debug("Trying %ld x %ld (%ld MiB) at addr %p, detected: %ld MiB\n",
289 conf[i].row,
290 conf[i].col,
291 conf[i].size >> 20,
292 base,
293 size >> 20);
294 }
295
296 if(detected == -1){
297 /* disable empty cs */
298 debug("\nNo valid configurations for CS%d, disabling...\n", cs);
299 set_cs_config(cs, 0);
300 return 0;
301 }
Wolfgang Denkf6a692b2005-12-04 00:40:34 +0100302
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200303 debug("\nDetected configuration %ld x %ld (%ld MiB) at addr %p\n",
304 conf[detected].row, conf[detected].col, conf[detected].size >> 20, base);
Wolfgang Denkf6a692b2005-12-04 00:40:34 +0100305
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200306 /* configure cs ro detected params */
307 set_cs_config(cs, CSCONFIG_EN | conf[detected].row |
308 conf[detected].col);
309
310 set_cs_bounds(cs, (long)base, conf[detected].size);
311
312 return(conf[detected].size);
313}
314
315/**************************************************************************
316 * Sets DDR bank CS bounds.
317 */
Bin Mengb5973242016-01-25 00:29:55 -0800318static void set_cs_bounds(short cs, ulong base, ulong size)
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200319{
Marek Vasut71a14a62011-10-21 14:17:10 +0000320 debug("Setting bounds %08lx, %08lx for cs %d\n", base, size, cs);
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200321 if(size == 0){
322 im->ddr.csbnds[cs].csbnds = 0x00000000;
323 } else {
324 im->ddr.csbnds[cs].csbnds =
325 ((base >> CSBNDS_SA_SHIFT) & CSBNDS_SA) |
326 (((base + size - 1) >> CSBNDS_EA_SHIFT) &
327 CSBNDS_EA);
328 }
329 SYNC;
330}
331
332/**************************************************************************
333 * Sets DDR banks CS configuration.
334 * config == 0x00000000 disables the CS.
335 */
336static void set_cs_config(short cs, long config)
337{
Marek Vasut71a14a62011-10-21 14:17:10 +0000338 debug("Setting config %08lx for cs %d\n", config, cs);
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200339 im->ddr.cs_config[cs] = config;
340 SYNC;
341}
342
343/**************************************************************************
344 * Sets DDR clocks, timings and configuration.
345 */
346static void set_ddr_config(void) {
347 /* clock control */
348 im->ddr.sdram_clk_cntl = DDR_SDRAM_CLK_CNTL_SS_EN |
349 DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05;
350 SYNC;
Wolfgang Denkf6a692b2005-12-04 00:40:34 +0100351
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200352 /* timing configuration */
353 im->ddr.timing_cfg_1 =
354 (4 << TIMING_CFG1_PRETOACT_SHIFT) |
355 (7 << TIMING_CFG1_ACTTOPRE_SHIFT) |
356 (4 << TIMING_CFG1_ACTTORW_SHIFT) |
357 (5 << TIMING_CFG1_REFREC_SHIFT) |
358 (3 << TIMING_CFG1_WRREC_SHIFT) |
359 (3 << TIMING_CFG1_ACTTOACT_SHIFT) |
360 (1 << TIMING_CFG1_WRTORD_SHIFT) |
361 (TIMING_CFG1_CASLAT & TIMING_CASLAT);
362
363 im->ddr.timing_cfg_2 =
364 TIMING_CFG2_CPO_DEF |
365 (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT);
366 SYNC;
367
368 /* don't enable DDR controller yet */
369 im->ddr.sdram_cfg =
370 SDRAM_CFG_SREN |
Kim Phillips3b9c20f2007-08-16 22:52:48 -0500371 SDRAM_CFG_SDRAM_TYPE_DDR1;
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200372 SYNC;
Wolfgang Denkf6a692b2005-12-04 00:40:34 +0100373
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200374 /* Set SDRAM mode */
375 im->ddr.sdram_mode =
376 ((DDR_MODE_EXT_MODEREG | DDR_MODE_WEAK) <<
377 SDRAM_MODE_ESD_SHIFT) |
378 ((DDR_MODE_MODEREG | DDR_MODE_BLEN_4) <<
379 SDRAM_MODE_SD_SHIFT) |
380 ((DDR_MODE_CASLAT << SDRAM_MODE_SD_SHIFT) &
381 MODE_CASLAT);
382 SYNC;
383
384 /* Set fast SDRAM refresh rate */
385 im->ddr.sdram_interval =
386 (DDR_REFINT_166MHZ_7US << SDRAM_INTERVAL_REFINT_SHIFT) |
387 (DDR_BSTOPRE << SDRAM_INTERVAL_BSTOPRE_SHIFT);
388 SYNC;
Wolfgang Denk1305bd42006-06-16 16:53:06 +0200389
390 /* Workaround for DDR6 Erratum
391 * see MPC8349E Device Errata Rev.8, 2/2006
392 * This workaround influences the MPC internal "input enables"
393 * dependent on CAS latency and MPC revision. According to errata
394 * sheet the internal reserved registers for this workaround are
395 * not available from revision 2.0 and up.
396 */
397
398 /* Get REVID from register SPRIDR. Skip workaround if rev >= 2.0
399 * (0x200)
400 */
401 if ((im->sysconf.spridr & SPRIDR_REVID) < 0x200) {
402
403 /* There is a internal reserved register at IMMRBAR+0x2F00
404 * which has to be written with a certain value defined by
405 * errata sheet.
406 */
Wolfgang Denk31560d12006-07-21 15:24:56 +0200407 u32 *reserved_p = (u32 *)((u8 *)im + 0x2f00);
408
Wolfgang Denk1305bd42006-06-16 16:53:06 +0200409#if defined(DDR_CASLAT_20)
Wolfgang Denk31560d12006-07-21 15:24:56 +0200410 *reserved_p = 0x201c0000;
Wolfgang Denk1305bd42006-06-16 16:53:06 +0200411#else
Wolfgang Denk31560d12006-07-21 15:24:56 +0200412 *reserved_p = 0x202c0000;
Wolfgang Denk1305bd42006-06-16 16:53:06 +0200413#endif
414 }
Marian Balakowicz513b4a12005-10-11 19:09:42 +0200415}
Wolfgang Denk95593572009-05-14 23:18:34 +0200416
417#ifdef CONFIG_OF_BOARD_SETUP
Simon Glass2aec3cc2014-10-23 18:58:47 -0600418int ft_board_setup(void *blob, bd_t *bd)
Wolfgang Denk95593572009-05-14 23:18:34 +0200419{
420 ft_cpu_setup(blob, bd);
421
422#ifdef CONFIG_PCI
423 ft_pci_setup(blob, bd);
424#endif /* CONFIG_PCI */
Simon Glass2aec3cc2014-10-23 18:58:47 -0600425
426 return 0;
Wolfgang Denk95593572009-05-14 23:18:34 +0200427}
428#endif /* CONFIG_OF_BOARD_SETUP */