]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/TQM85xx.h
Add multi-chip NAND support for the TQM8548 modules
[karo-tx-uboot.git] / include / configs / TQM85xx.h
1 /*
2  * (C) Copyright 2007
3  * Thomas Waehner, TQ-System GmbH, thomas.waehner@tqs.de.
4  *
5  * (C) Copyright 2005
6  * Stefan Roese, DENX Software Engineering, sr@denx.de.
7  *
8  * Wolfgang Denk <wd@denx.de>
9  * Copyright 2004 Freescale Semiconductor.
10  * (C) Copyright 2002,2003 Motorola,Inc.
11  * Xianghua Xiao <X.Xiao@motorola.com>
12  *
13  * See file CREDITS for list of people who contributed to this
14  * project.
15  *
16  * This program is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU General Public License as
18  * published by the Free Software Foundation; either version 2 of
19  * the License, or (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program; if not, write to the Free Software
28  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29  * MA 02111-1307 USA
30  */
31
32 /*
33  * TQM85xx (8560/40/55/41/48) board configuration file
34  */
35
36 #ifndef __CONFIG_H
37 #define __CONFIG_H
38
39 /* High Level Configuration Options */
40 #define CONFIG_BOOKE            1       /* BOOKE                        */
41 #define CONFIG_E500             1       /* BOOKE e500 family            */
42 #define CONFIG_MPC85xx          1       /* MPC8540/60/55/41             */
43
44 #if defined(CONFIG_TQM8548_AG) || defined(CONFIG_TQM8548_BE)
45 #define CONFIG_TQM8548
46 #endif
47
48 #define CONFIG_PCI
49 #ifndef CONFIG_TQM8548_AG
50 #define CONFIG_PCI1                     /* PCI/PCI-X controller         */
51 #endif
52 #ifdef CONFIG_TQM8548
53 #define CONFIG_PCIE1                    /* PCI Express interface        */
54 #endif
55
56 #define CONFIG_FSL_PCI_INIT     1       /* Use common FSL init code     */
57 #define CONFIG_PCIX_CHECK               /* PCIX olny works at 66 MHz    */
58 #define CONFIG_FSL_PCIE_RESET   1       /* need PCIe reset errata       */
59
60 #define CONFIG_TSEC_ENET                /* tsec ethernet support        */
61
62 #define CONFIG_MISC_INIT_R      1       /* Call misc_init_r             */
63
64  /*
65  * Configuration for big NOR Flashes
66  *
67  * Define CONFIG_TQM_BIGFLASH for boards with more than 128 MiB NOR Flash.
68  * Please be aware, that this changes the whole memory map (new CCSRBAR
69  * address, etc). You have to use an adapted Linux kernel or FDT blob
70  * if this option is set.
71  */
72 #undef CONFIG_TQM_BIGFLASH
73
74 /*
75  * NAND flash support (disabled by default)
76  *
77  * Warning: NAND support will likely increase the U-Boot image size
78  * to more than 256 KB. Please adjust TEXT_BASE if necessary.
79  */
80 #ifdef CONFIG_TQM8548_BE
81 #define CONFIG_NAND
82 #endif
83
84 /*
85  * MPC8540 and MPC8548 don't have CPM module
86  */
87 #if !defined(CONFIG_MPC8540) && !defined(CONFIG_MPC8548)
88 #define CONFIG_CPM2             1       /* has CPM2                     */
89 #endif
90
91 #define CONFIG_FSL_LAW          1       /* Use common FSL init code     */
92
93 #if defined(CONFIG_TQM8548_AG) || defined(CONFIG_TQM8548_BE)
94 #define CONFIG_CAN_DRIVER               /* CAN Driver support           */
95 #endif
96
97 /*
98  * sysclk for MPC85xx
99  *
100  * Two valid values are:
101  *    33333333
102  *    66666666
103  *
104  * Most PCI cards are still 33Mhz, so in the presence of PCI, 33MHz
105  * is likely the desired value here, so that is now the default.
106  * The board, however, can run at 66MHz.  In any event, this value
107  * must match the settings of some switches.  Details can be found
108  * in the README.mpc85xxads.
109  */
110
111 #ifndef CONFIG_SYS_CLK_FREQ
112 #define CONFIG_SYS_CLK_FREQ     33333333
113 #endif
114
115 /*
116  * These can be toggled for performance analysis, otherwise use default.
117  */
118 #define CONFIG_L2_CACHE                 /* toggle L2 cache              */
119 #define CONFIG_BTB                      /* toggle branch predition      */
120
121 #define CONFIG_SYS_INIT_DBCR DBCR_IDM           /* Enable Debug Exceptions      */
122
123 #undef  CONFIG_SYS_DRAM_TEST                    /* memory test, takes time      */
124 #define CONFIG_SYS_MEMTEST_START        0x00000000
125 #define CONFIG_SYS_MEMTEST_END          0x10000000
126
127 /*
128  * Base addresses -- Note these are effective addresses where the
129  * actual resources get mapped (not physical addresses)
130  */
131 #define CONFIG_SYS_CCSRBAR_DEFAULT      0xFF700000      /* CCSRBAR Default      */
132 #ifdef CONFIG_TQM_BIGFLASH
133 #define CONFIG_SYS_CCSRBAR              0xA0000000      /* relocated CCSRBAR    */
134 #else /* !CONFIG_TQM_BIGFLASH */
135 #define CONFIG_SYS_CCSRBAR              0xE0000000      /* relocated CCSRBAR    */
136 #endif /* CONFIG_TQM_BIGFLASH */
137 #define CONFIG_SYS_CCSRBAR_PHYS CONFIG_SYS_CCSRBAR      /* physical addr of CCSRBAR */
138 #define CONFIG_SYS_IMMR         CONFIG_SYS_CCSRBAR      /* PQII uses CONFIG_SYS_IMMR    */
139
140 #define CONFIG_SYS_PCI1_ADDR            (CONFIG_SYS_CCSRBAR + 0x8000)
141 #define CONFIG_SYS_PCI2_ADDR            (CONFIG_SYS_CCSRBAR + 0x9000)
142 #define CONFIG_SYS_PCIE1_ADDR           (CONFIG_SYS_CCSRBAR + 0xa000)
143
144 /*
145  * DDR Setup
146  */
147 #define CONFIG_SYS_DDR_SDRAM_BASE       0x00000000      /* DDR is system memory */
148 #define CONFIG_SYS_SDRAM_BASE           CONFIG_SYS_DDR_SDRAM_BASE
149 #ifdef CONFIG_TQM8548_AG
150 #define CONFIG_VERY_BIG_RAM
151 #endif
152
153 #define CONFIG_NUM_DDR_CONTROLLERS      1
154 #define CONFIG_DIMM_SLOTS_PER_CTLR      1
155 #define CONFIG_CHIP_SELECTS_PER_CTRL    2
156
157 #if defined(CONFIG_TQM8540) || defined(CONFIG_TQM8560)
158 /* TQM8540 & 8560 need DLL-override */
159 #define CONFIG_DDR_DLL                          /* DLL fix needed       */
160 #define CONFIG_DDR_DEFAULT_CL   25              /* CAS latency 2,5      */
161 #endif /* CONFIG_TQM8540 || CONFIG_TQM8560 */
162
163 #if defined(CONFIG_TQM8541) || defined(CONFIG_TQM8555) || \
164     defined(CONFIG_TQM8548)
165 #define CONFIG_DDR_DEFAULT_CL   30              /* CAS latency 3        */
166 #endif /* CONFIG_TQM8541 || CONFIG_TQM8555 || CONFIG_TQM8548 */
167
168 /*
169  * Old TQM85xx boards have 'M' type Spansion Flashes from the S29GLxxxM
170  * series while new boards have 'N' type Flashes from the S29GLxxxN
171  * series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB.
172  */
173 #ifdef CONFIG_TQM8548
174 #define CONFIG_TQM_FLASH_N_TYPE
175 #endif /* CONFIG_TQM8548 */
176
177 /*
178  * Flash on the Local Bus
179  */
180 #ifdef CONFIG_TQM_BIGFLASH
181 #define CONFIG_SYS_FLASH0               0xE0000000
182 #define CONFIG_SYS_FLASH1               0xC0000000
183 #else /* !CONFIG_TQM_BIGFLASH */
184 #define CONFIG_SYS_FLASH0               0xFC000000
185 #define CONFIG_SYS_FLASH1               0xF8000000
186 #endif /* CONFIG_TQM_BIGFLASH */
187 #define CONFIG_SYS_FLASH_BANKS_LIST     { CONFIG_SYS_FLASH1, CONFIG_SYS_FLASH0 }
188
189 #define CONFIG_SYS_LBC_FLASH_BASE       CONFIG_SYS_FLASH1       /* Localbus flash start */
190 #define CONFIG_SYS_FLASH_BASE           CONFIG_SYS_LBC_FLASH_BASE  /* start of FLASH    */
191
192 /* Default ORx timings are for <= 41.7 MHz Local Bus Clock.
193  *
194  * Note: According to timing specifications external addr latch delay
195  * (EAD, bit #0) must be set if Local Bus Clock is > 83 MHz.
196  *
197  * For other Local Bus Clocks see following table:
198  *
199  * Clock/MHz   CONFIG_SYS_ORx_PRELIM
200  * 166         0x.....CA5
201  * 133         0x.....C85
202  * 100         0x.....C65
203  *  83         0x.....FA2
204  *  66         0x.....C82
205  *  50         0x.....C60
206  *  42         0x.....040
207  *  33         0x.....030
208  *  25         0x.....020
209  *
210  */
211 #ifdef CONFIG_TQM_BIGFLASH
212 #define CONFIG_SYS_BR0_PRELIM           0xE0001801      /* port size 32bit      */
213 #define CONFIG_SYS_OR0_PRELIM           0xE0000040      /* 512MB Flash          */
214 #define CONFIG_SYS_BR1_PRELIM           0xC0001801      /* port size 32bit      */
215 #define CONFIG_SYS_OR1_PRELIM           0xE0000040      /* 512MB Flash          */
216 #else /* !CONFIG_TQM_BIGFLASH */
217 #define CONFIG_SYS_BR0_PRELIM           0xfc001801      /* port size 32bit      */
218 #define CONFIG_SYS_OR0_PRELIM           0xfc000040      /* 64MB Flash           */
219 #define CONFIG_SYS_BR1_PRELIM           0xf8001801      /* port size 32bit      */
220 #define CONFIG_SYS_OR1_PRELIM           0xfc000040      /* 64MB Flash           */
221 #endif /* CONFIG_TQM_BIGFLASH */
222
223 #define CONFIG_SYS_FLASH_CFI                    /* flash is CFI compat.         */
224 #define CONFIG_FLASH_CFI_DRIVER         /* Use common CFI driver        */
225 #define CONFIG_SYS_FLASH_EMPTY_INFO             /* print 'E' for empty sector   */
226 #define CONFIG_SYS_FLASH_QUIET_TEST     1       /* don't warn upon unknown flash*/
227 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE       1 /* speed up output to Flash   */
228
229 #define CONFIG_SYS_MAX_FLASH_BANKS      2       /* number of banks              */
230 #define CONFIG_SYS_MAX_FLASH_SECT       512     /* sectors per device           */
231 #undef  CONFIG_SYS_FLASH_CHECKSUM
232 #define CONFIG_SYS_FLASH_ERASE_TOUT     60000   /* Flash Erase Timeout (ms)     */
233 #define CONFIG_SYS_FLASH_WRITE_TOUT     500     /* Flash Write Timeout (ms)     */
234
235 #define CONFIG_SYS_MONITOR_BASE TEXT_BASE       /* start of monitor     */
236
237 /*
238  * Note: when changing the Local Bus clock divider you have to
239  * change the timing values in CONFIG_SYS_ORx_PRELIM.
240  *
241  * LCRR[00:03] CLKDIV: System (CCB) clock divider. Valid values are 2, 4, 8.
242  * LCRR[16:17] EADC  : External address delay cycles. It should be set to 2
243  *                     for Local Bus Clock > 83.3 MHz.
244  */
245 #define CONFIG_SYS_LBC_LCRR             0x00030008      /* LB clock ratio reg   */
246 #define CONFIG_SYS_LBC_LBCR             0x00000000      /* LB config reg        */
247 #define CONFIG_SYS_LBC_LSRT             0x20000000      /* LB sdram refresh timer */
248 #define CONFIG_SYS_LBC_MRTPR            0x20000000      /* LB refresh timer presc.*/
249
250 #define CONFIG_SYS_INIT_RAM_LOCK        1
251 #define CONFIG_SYS_INIT_RAM_ADDR        (CONFIG_SYS_CCSRBAR \
252                                  + 0x04010000)  /* Initial RAM address  */
253 #define CONFIG_SYS_INIT_RAM_END 0x4000          /* End used area in RAM */
254
255 #define CONFIG_SYS_GBL_DATA_SIZE        128     /* num bytes initial data       */
256 #define CONFIG_SYS_GBL_DATA_OFFSET      (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
257 #define CONFIG_SYS_INIT_SP_OFFSET       CONFIG_SYS_GBL_DATA_OFFSET
258
259 #define CONFIG_SYS_MONITOR_LEN          (~TEXT_BASE + 1)/* Reserved for Monitor */
260 #define CONFIG_SYS_MALLOC_LEN           (384 * 1024)    /* Reserved for malloc  */
261
262 /* Serial Port */
263 #if defined(CONFIG_TQM8560)
264
265 #define CONFIG_CONS_ON_SCC      /* define if console on SCC             */
266 #undef  CONFIG_CONS_NONE        /* define if console on something else  */
267 #define CONFIG_CONS_INDEX       1 /* which serial channel for console   */
268
269 #else /* !CONFIG_TQM8560 */
270
271 #define CONFIG_CONS_INDEX     1
272 #undef  CONFIG_SERIAL_SOFTWARE_FIFO
273 #define CONFIG_SYS_NS16550
274 #define CONFIG_SYS_NS16550_SERIAL
275 #define CONFIG_SYS_NS16550_REG_SIZE     1
276 #define CONFIG_SYS_NS16550_CLK          get_bus_freq(0)
277
278 #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x4500)
279 #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x4600)
280
281 /* PS/2 Keyboard */
282 #define CONFIG_PS2KBD                   /* AT-PS/2 Keyboard             */
283 #define CONFIG_PS2MULT                  /* .. on PS/2 Multiplexer       */
284 #define CONFIG_PS2SERIAL        2       /* .. on DUART2                 */
285 #define CONFIG_PS2MULT_DELAY    (CONFIG_SYS_HZ/2)       /* Initial delay        */
286 #define CONFIG_BOARD_EARLY_INIT_R       1
287
288 #endif /* CONFIG_TQM8560 */
289
290 #define CONFIG_BAUDRATE         115200
291
292 #define CONFIG_SYS_BAUDRATE_TABLE       \
293         {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
294
295 #define CONFIG_CMDLINE_EDITING  1       /* add command line history     */
296 #define CONFIG_SYS_HUSH_PARSER          1       /* Use the HUSH parser          */
297 #ifdef  CONFIG_SYS_HUSH_PARSER
298 #define CONFIG_SYS_PROMPT_HUSH_PS2      "> "
299 #endif
300
301 /* pass open firmware flat tree */
302 #define CONFIG_OF_LIBFDT                1
303 #define CONFIG_OF_BOARD_SETUP           1
304 #define CONFIG_OF_STDOUT_VIA_ALIAS      1
305
306 /* CAN */
307 #define CONFIG_SYS_CAN_BASE             (CONFIG_SYS_CCSRBAR \
308                                  + 0x03000000)  /* CAN base address     */
309 #ifdef CONFIG_CAN_DRIVER
310 #define CONFIG_SYS_CAN_OR_AM            0xFFFF8000      /* 32 KiB address mask  */
311 #define CONFIG_SYS_OR2_CAN              (CONFIG_SYS_CAN_OR_AM | OR_UPM_BI)
312 #define CONFIG_SYS_BR2_CAN              ((CONFIG_SYS_CAN_BASE & BR_BA) | \
313                                  BR_PS_8 | BR_MS_UPMC | BR_V)
314 #endif /* CONFIG_CAN_DRIVER */
315
316 /*
317  * I2C
318  */
319 #define CONFIG_FSL_I2C                  /* Use FSL common I2C driver    */
320 #define CONFIG_HARD_I2C                 /* I2C with hardware support    */
321 #undef  CONFIG_SOFT_I2C                 /* I2C bit-banged               */
322 #define CONFIG_SYS_I2C_SPEED            400000  /* I2C speed and slave address  */
323 #define CONFIG_SYS_I2C_SLAVE            0x7F
324 #define CONFIG_SYS_I2C_NOPROBES {0x48}  /* Don't probe these addrs      */
325 #define CONFIG_SYS_I2C_OFFSET           0x3000
326
327 /* I2C RTC */
328 #define CONFIG_RTC_DS1337               /* Use ds1337 rtc via i2c       */
329 #define CONFIG_SYS_I2C_RTC_ADDR 0x68    /* at address 0x68              */
330
331 /* I2C EEPROM */
332 /*
333  * EEPROM configuration for onboard EEPROM M24C32 (M24C64 should work also).
334  */
335 #define CONFIG_SYS_I2C_EEPROM_ADDR              0x50    /* 1010000x             */
336 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN          2
337 #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS       5       /* =32 Bytes per write  */
338 #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS   20
339 #define CONFIG_SYS_I2C_MULTI_EEPROMS            1       /* more than one eeprom */
340
341 /* I2C SYSMON (LM75) */
342 #define CONFIG_DTT_LM75         1               /* ON Semi's LM75       */
343 #define CONFIG_DTT_SENSORS      {0}             /* Sensor addresses     */
344 #define CONFIG_SYS_DTT_MAX_TEMP 70
345 #define CONFIG_SYS_DTT_LOW_TEMP -30
346 #define CONFIG_SYS_DTT_HYSTERESIS       3
347
348 #ifndef CONFIG_PCIE1
349 /* RapidIO MMU */
350 #ifdef CONFIG_TQM_BIGFLASH
351 #define CONFIG_SYS_RIO_MEM_BASE 0xb0000000      /* base address         */
352 #define CONFIG_SYS_RIO_MEM_SIZE 0x10000000      /* 256M                 */
353 #else /* !CONFIG_TQM_BIGFLASH */
354 #define CONFIG_SYS_RIO_MEM_BASE 0xc0000000      /* base address         */
355 #define CONFIG_SYS_RIO_MEM_SIZE 0x20000000      /* 512M                 */
356 #endif /* CONFIG_TQM_BIGFLASH */
357 #define CONFIG_SYS_RIO_MEM_PHYS CONFIG_SYS_RIO_MEM_BASE
358 #endif /* CONFIG_PCIE1 */
359
360 /* NAND FLASH */
361 #ifdef CONFIG_NAND
362
363 #undef CONFIG_NAND_LEGACY
364
365 #define CONFIG_NAND_FSL_UPM     1
366
367 #define CONFIG_MTD_NAND_ECC_JFFS2       1       /* use JFFS2 ECC        */
368
369 /* address distance between chip selects */
370 #define CONFIG_SYS_NAND_SELECT_DEVICE   1
371 #define CONFIG_SYS_NAND_CS_DIST 0x200
372
373 #define CONFIG_SYS_NAND_SIZE            0x8000
374 #define CONFIG_SYS_NAND_BASE            (CONFIG_SYS_CCSRBAR + 0x03010000)
375
376 #define CONFIG_SYS_MAX_NAND_DEVICE      1       /* Max number of NAND devices   */
377 #define CONFIG_SYS_NAND_MAX_CHIPS       2       /* Number of chips per device   */
378
379 /* CS3 for NAND Flash */
380 #define CONFIG_SYS_BR3_PRELIM           ((CONFIG_SYS_NAND_BASE & BR_BA) | \
381                                          BR_PS_8 | BR_MS_UPMB | BR_V)
382 #define CONFIG_SYS_OR3_PRELIM           (P2SZ_TO_AM(CONFIG_SYS_NAND_SIZE) | OR_UPM_BI)
383
384 #define NAND_BIG_DELAY_US               25      /* max tR for Samsung devices   */
385
386 #endif /* CONFIG_NAND */
387
388 /*
389  * General PCI
390  * Addresses are mapped 1-1.
391  */
392 #define CONFIG_SYS_PCI1_MEM_BASE        0x80000000
393 #define CONFIG_SYS_PCI1_MEM_PHYS        CONFIG_SYS_PCI1_MEM_BASE
394 #define CONFIG_SYS_PCI1_MEM_SIZE        0x20000000      /* 512M                 */
395 #define CONFIG_SYS_PCI1_IO_BASE (CONFIG_SYS_CCSRBAR + 0x02000000)
396 #define CONFIG_SYS_PCI1_IO_PHYS CONFIG_SYS_PCI1_IO_BASE
397 #define CONFIG_SYS_PCI1_IO_SIZE 0x1000000       /*  16M                 */
398
399 #ifdef CONFIG_PCIE1
400 /*
401  * General PCI express
402  * Addresses are mapped 1-1.
403  */
404 #ifdef CONFIG_TQM_BIGFLASH
405 #define CONFIG_SYS_PCIE1_MEM_BASE       0xb0000000
406 #define CONFIG_SYS_PCIE1_MEM_SIZE       0x10000000      /* 512M                 */
407 #define CONFIG_SYS_PCIE1_IO_BASE        0xaf000000
408 #else /* !CONFIG_TQM_BIGFLASH */
409 #define CONFIG_SYS_PCIE1_MEM_BASE       0xc0000000
410 #define CONFIG_SYS_PCIE1_MEM_SIZE       0x20000000      /* 512M                 */
411 #define CONFIG_SYS_PCIE1_IO_BASE        0xef000000
412 #endif /* CONFIG_TQM_BIGFLASH */
413 #define CONFIG_SYS_PCIE1_MEM_PHYS       CONFIG_SYS_PCIE1_MEM_BASE
414 #define CONFIG_SYS_PCIE1_IO_PHYS        CONFIG_SYS_PCIE1_IO_BASE
415 #define CONFIG_SYS_PCIE1_IO_SIZE        0x1000000       /* 16M                  */
416 #endif /* CONFIG_PCIE1 */
417
418 #if defined(CONFIG_PCI)
419
420 #define CONFIG_PCI_PNP                  /* do pci plug-and-play         */
421
422 #define CONFIG_EEPRO100
423 #undef CONFIG_TULIP
424
425 #undef CONFIG_PCI_SCAN_SHOW             /* show pci devices on startup  */
426 #define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1057   /* Motorola                     */
427
428 #endif /* CONFIG_PCI */
429
430 #define CONFIG_NET_MULTI        1
431
432 #define CONFIG_MII              1       /* MII PHY management           */
433 #define CONFIG_TSEC1    1
434 #define CONFIG_TSEC1_NAME       "TSEC0"
435 #define CONFIG_TSEC2    1
436 #define CONFIG_TSEC2_NAME       "TSEC1"
437 #define TSEC1_PHY_ADDR          2
438 #define TSEC2_PHY_ADDR          1
439 #define TSEC1_PHYIDX            0
440 #define TSEC2_PHYIDX            0
441 #define TSEC1_FLAGS             TSEC_GIGABIT
442 #define TSEC2_FLAGS             TSEC_GIGABIT
443 #define FEC_PHY_ADDR            3
444 #define FEC_PHYIDX              0
445 #define FEC_FLAGS               0
446 #define CONFIG_HAS_ETH0
447 #define CONFIG_HAS_ETH1
448 #define CONFIG_HAS_ETH2
449
450 #ifdef CONFIG_TQM8548
451 /*
452  * TQM8548 has 4 ethernet ports. 4 ETSEC's.
453  *
454  * On the STK85xx Starterkit the ETSEC3/4 ports are on an
455  * additional adapter (AIO) between module and Starterkit.
456  */
457 #define CONFIG_TSEC3    1
458 #define CONFIG_TSEC3_NAME       "TSEC2"
459 #define CONFIG_TSEC4    1
460 #define CONFIG_TSEC4_NAME       "TSEC3"
461 #define TSEC3_PHY_ADDR          4
462 #define TSEC4_PHY_ADDR          5
463 #define TSEC3_PHYIDX            0
464 #define TSEC4_PHYIDX            0
465 #define TSEC3_FLAGS             (TSEC_GIGABIT | TSEC_REDUCED)
466 #define TSEC4_FLAGS             (TSEC_GIGABIT | TSEC_REDUCED)
467 #define CONFIG_HAS_ETH3
468 #define CONFIG_HAS_ETH4
469 #endif  /* CONFIG_TQM8548 */
470
471 /* Options are TSEC[0-1], FEC */
472 #define CONFIG_ETHPRIME         "TSEC0"
473
474 #if defined(CONFIG_TQM8540)
475 /*
476  * TQM8540 has 3 ethernet ports. 2 TSEC's and one FEC.
477  * The FEC port is connected on the same signals as the FCC3 port
478  * of the TQM8560 to the baseboard (STK85xx Starterkit).
479  *
480  * On the STK85xx Starterkit the X47/X50 jumper has to be set to
481  * a - d (X50.2 - 3) to enable the FEC port.
482  */
483 #define CONFIG_MPC85XX_FEC      1
484 #define CONFIG_MPC85XX_FEC_NAME "FEC"
485 #endif
486
487 #if defined(CONFIG_TQM8541) || defined(CONFIG_TQM8555)
488 /*
489  * TQM8541/55 have 4 ethernet ports. 2 TSEC's and 2 FCC's. Only one FCC port
490  * can be used at once, since only one FCC port is available on the STK85xx
491  * Starterkit.
492  *
493  * To use this port you have to configure U-Boot to use the FCC port 1...2
494  * and set the X47/X50 jumper to:
495  * FCC1: a - b (X47.2 - X50.2)
496  * FCC2: a - c (X50.2 - 1)
497  */
498 #define CONFIG_ETHER_ON_FCC
499 #define CONFIG_ETHER_INDEX    1 /* FCC channel for ethernet     */
500 #endif
501
502 #if defined(CONFIG_TQM8560)
503 /*
504  * TQM8560 has 5 ethernet ports. 2 TSEC's and 3 FCC's. Only one FCC port
505  * can be used at once, since only one FCC port is available on the STK85xx
506  * Starterkit.
507  *
508  * To use this port you have to configure U-Boot to use the FCC port 1...3
509  * and set the X47/X50 jumper to:
510  * FCC1: a - b (X47.2 - X50.2)
511  * FCC2: a - c (X50.2 - 1)
512  * FCC3: a - d (X50.2 - 3)
513  */
514 #define CONFIG_ETHER_ON_FCC
515 #define CONFIG_ETHER_INDEX    3 /* FCC channel for ethernet     */
516 #endif
517
518 #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 1)
519 #define CONFIG_ETHER_ON_FCC1
520 #define CONFIG_SYS_CMXFCR_MASK1 (CMXFCR_FC1 | CMXFCR_RF1CS_MSK | \
521                                  CMXFCR_TF1CS_MSK)
522 #define CONFIG_SYS_CMXFCR_VALUE1        (CMXFCR_RF1CS_CLK11 | CMXFCR_TF1CS_CLK12)
523 #define CONFIG_SYS_CPMFCR_RAMTYPE       0
524 #define CONFIG_SYS_FCC_PSMR             (FCC_PSMR_FDE | FCC_PSMR_LPB)
525 #endif
526
527 #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 2)
528 #define CONFIG_ETHER_ON_FCC2
529 #define CONFIG_SYS_CMXFCR_MASK2 (CMXFCR_FC2 | CMXFCR_RF2CS_MSK | \
530                                  CMXFCR_TF2CS_MSK)
531 #define CONFIG_SYS_CMXFCR_VALUE2        (CMXFCR_RF2CS_CLK16 | CMXFCR_TF2CS_CLK13)
532 #define CONFIG_SYS_CPMFCR_RAMTYPE       0
533 #define CONFIG_SYS_FCC_PSMR             (FCC_PSMR_FDE | FCC_PSMR_LPB)
534 #endif
535
536 #if defined(CONFIG_ETHER_ON_FCC) && (CONFIG_ETHER_INDEX == 3)
537 #define CONFIG_ETHER_ON_FCC3
538 #define CONFIG_SYS_CMXFCR_MASK3 (CMXFCR_FC3 | CMXFCR_RF3CS_MSK | \
539                                  CMXFCR_TF3CS_MSK)
540 #define CONFIG_SYS_CMXFCR_VALUE3        (CMXFCR_RF3CS_CLK15 | CMXFCR_TF3CS_CLK14)
541 #define CONFIG_SYS_CPMFCR_RAMTYPE       0
542 #define CONFIG_SYS_FCC_PSMR             (FCC_PSMR_FDE | FCC_PSMR_LPB)
543 #endif
544
545 /*
546  * Environment
547  */
548 #define CONFIG_ENV_IS_IN_FLASH  1
549
550 #ifdef CONFIG_TQM_FLASH_N_TYPE
551 #define CONFIG_ENV_SECT_SIZE    0x40000 /* 256K (one sector) for env    */
552 #else /* !CONFIG_TQM_FLASH_N_TYPE */
553 #define CONFIG_ENV_SECT_SIZE    0x20000 /* 128K (one sector) for env    */
554 #endif /* CONFIG_TQM_FLASH_N_TYPE */
555 #define CONFIG_ENV_ADDR         (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE)
556 #define CONFIG_ENV_SIZE         0x2000
557 #define CONFIG_ENV_ADDR_REDUND  (CONFIG_ENV_ADDR - CONFIG_ENV_SECT_SIZE)
558 #define CONFIG_ENV_SIZE_REDUND  (CONFIG_ENV_SIZE)
559
560 #define CONFIG_LOADS_ECHO       1       /* echo on for serial download  */
561 #define CONFIG_SYS_LOADS_BAUD_CHANGE    1       /* allow baudrate change        */
562
563 #define CONFIG_TIMESTAMP        /* Print image info with ts     */
564
565 /*
566  * BOOTP options
567  */
568 #define CONFIG_BOOTP_BOOTFILESIZE
569 #define CONFIG_BOOTP_BOOTPATH
570 #define CONFIG_BOOTP_GATEWAY
571 #define CONFIG_BOOTP_HOSTNAME
572
573 #ifdef CONFIG_NAND
574 /*
575  * Use NAND-FLash as JFFS2 device
576  */
577 #define CONFIG_CMD_NAND
578 #define CONFIG_CMD_JFFS2
579
580 #define CONFIG_JFFS2_NAND       1
581
582 #ifdef CONFIG_CMD_MTDPARTS
583 #define MTDIDS_DEFAULT          "nand0=TQM85xx-nand"
584 #define MTDPARTS_DEFAULT        "mtdparts=TQM85xx-nand:-"
585 #else
586 #define CONFIG_JFFS2_DEV        "nand0" /* NAND device jffs2 lives on   */
587 #define CONFIG_JFFS2_PART_OFFSET 0      /* start of jffs2 partition     */
588 #define CONFIG_JFFS2_PART_SIZE  0x200000 /* size of jffs2 partition     */
589 #endif /* CONFIG_CMD_MTDPARTS */
590
591 #endif /* CONFIG_NAND */
592
593 /*
594  * Command line configuration.
595  */
596 #include <config_cmd_default.h>
597
598 #define CONFIG_CMD_PING
599 #define CONFIG_CMD_I2C
600 #define CONFIG_CMD_DHCP
601 #define CONFIG_CMD_NFS
602 #define CONFIG_CMD_SNTP
603 #ifndef CONFIG_TQM8548_AG
604 #define CONFIG_CMD_DATE
605 #endif
606 #define CONFIG_CMD_EEPROM
607 #define CONFIG_CMD_DTT
608 #define CONFIG_CMD_MII
609
610 #if defined(CONFIG_PCI)
611 #define CONFIG_CMD_PCI
612 #endif
613
614 #undef CONFIG_WATCHDOG                  /* watchdog disabled            */
615
616 /*
617  * Miscellaneous configurable options
618  */
619 #define CONFIG_SYS_LONGHELP                     /* undef to save memory         */
620 #define CONFIG_SYS_LOAD_ADDR    0x2000000       /* default load address         */
621 #define CONFIG_SYS_PROMPT       "=> "           /* Monitor Command Prompt       */
622
623 #if defined(CONFIG_CMD_KGDB)
624 #define CONFIG_SYS_CBSIZE       1024            /* Console I/O Buffer Size      */
625 #else
626 #define CONFIG_SYS_CBSIZE       256             /* Console I/O Buffer Size      */
627 #endif
628
629 #define CONFIG_SYS_PBSIZE       (CONFIG_SYS_CBSIZE + \
630                          sizeof(CONFIG_SYS_PROMPT) + 16)   /* Print Buf Size    */
631 #define CONFIG_SYS_MAXARGS      16              /* max number of command args   */
632 #define CONFIG_SYS_BARGSIZE     CONFIG_SYS_CBSIZE       /* Boot Argument Buffer Size    */
633 #define CONFIG_SYS_HZ           1000            /* decrementer freq: 1ms ticks  */
634
635 /*
636  * For booting Linux, the board info and command line data
637  * have to be in the first 8 MB of memory, since this is
638  * the maximum mapped by the Linux kernel during initialization.
639  */
640 #define CONFIG_SYS_BOOTMAPSZ    (8 << 20)       /* Initial Memory map for Linux */
641
642 /*
643  * Internal Definitions
644  *
645  * Boot Flags
646  */
647 #define BOOTFLAG_COLD   0x01            /* Power-On: Boot from FLASH    */
648 #define BOOTFLAG_WARM   0x02            /* Software reboot              */
649
650 #if defined(CONFIG_CMD_KGDB)
651 #define CONFIG_KGDB_BAUDRATE    230400  /* speed to run kgdb serial port*/
652 #define CONFIG_KGDB_SER_INDEX   2       /* which serial port to use     */
653 #endif
654
655 #define CONFIG_LOADADDR  200000         /* default addr for tftp & bootm*/
656
657 #define CONFIG_BOOTDELAY 5              /* -1 disables auto-boot        */
658
659 #define CONFIG_PREBOOT  "echo;" \
660         "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \
661         "echo"
662
663 #undef  CONFIG_BOOTARGS         /* the boot command will set bootargs   */
664
665
666 /*
667  * Setup some board specific values for the default environment variables
668  */
669 #ifdef CONFIG_CPM2
670 #define CONFIG_ENV_CONSDEV              "consdev=ttyCPM0\0"
671 #else
672 #define CONFIG_ENV_CONSDEV              "consdev=ttyS0\0"
673 #endif
674 #define CONFIG_ENV_FDT_FILE     "fdt_file="MK_STR(CONFIG_HOSTNAME)"/" \
675                                 MK_STR(CONFIG_HOSTNAME)".dtb\0"
676 #define CONFIG_ENV_BOOTFILE     "bootfile="MK_STR(CONFIG_HOSTNAME)"/uImage\0"
677 #define CONFIG_ENV_UBOOT                "uboot="MK_STR(CONFIG_HOSTNAME)"/u-boot.bin\0" \
678                                 "uboot_addr="MK_STR(TEXT_BASE)"\0"
679
680 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
681         CONFIG_ENV_BOOTFILE                                             \
682         CONFIG_ENV_FDT_FILE                                             \
683         CONFIG_ENV_CONSDEV                                                      \
684         "netdev=eth0\0"                                                 \
685         "nfsargs=setenv bootargs root=/dev/nfs rw "                     \
686                 "nfsroot=$serverip:$rootpath\0"                         \
687         "ramargs=setenv bootargs root=/dev/ram rw\0"                    \
688         "addip=setenv bootargs $bootargs "                              \
689                 "ip=$ipaddr:$serverip:$gatewayip:$netmask"              \
690                 ":$hostname:$netdev:off panic=1\0"                      \
691         "addcons=setenv bootargs $bootargs "                            \
692                 "console=$consdev,$baudrate\0"                          \
693         "flash_nfs=run nfsargs addip addcons;"                          \
694                 "bootm $kernel_addr - $fdt_addr\0"                      \
695         "flash_self=run ramargs addip addcons;"                         \
696                 "bootm $kernel_addr $ramdisk_addr $fdt_addr\0"          \
697         "net_nfs=tftp $kernel_addr_r $bootfile;"                        \
698                 "tftp $fdt_addr_r $fdt_file;"                           \
699                 "run nfsargs addip addcons;"                            \
700                 "bootm $kernel_addr_r - $fdt_addr_r\0"                  \
701         "rootpath=/opt/eldk/ppc_85xx\0"                                 \
702         "fdt_addr_r=900000\0"                                           \
703         "kernel_addr_r=1000000\0"                                       \
704         "fdt_addr=ffec0000\0"                                           \
705         "kernel_addr=ffd00000\0"                                        \
706         "ramdisk_addr=ff800000\0"                                       \
707         CONFIG_ENV_UBOOT                                                        \
708         "load=tftp 100000 $uboot\0"                                     \
709         "update=protect off $uboot_addr +$filesize;"                    \
710                 "erase $uboot_addr +$filesize;"                         \
711                 "cp.b 100000 $uboot_addr $filesize;"                    \
712                 "setenv filesize;saveenv\0"                             \
713         "upd=run load update\0"                                         \
714         ""
715 #define CONFIG_BOOTCOMMAND      "run flash_self"
716
717 #endif /* __CONFIG_H */