blob: f50cdd717cbe64832acd177961045e624786f9d5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Timur Tabi2ad6b512006-10-31 18:44:42 -06002/*
Kumar Gala4c2e3da2009-07-28 21:49:52 -05003 * Copyright (C) Freescale Semiconductor, Inc. 2006.
Timur Tabi2ad6b512006-10-31 18:44:42 -06004 */
5
6/*
Timur Tabi7a78f142007-01-31 15:54:29 -06007 MPC8349E-mITX and MPC8349E-mITX-GP board configuration file
Timur Tabi2ad6b512006-10-31 18:44:42 -06008
9 Memory map:
10
11 0x0000_0000-0x0FFF_FFFF DDR SDRAM (256 MB)
12 0x8000_0000-0x9FFF_FFFF PCI1 memory space (512 MB)
13 0xA000_0000-0xBFFF_FFFF PCI2 memory space (512 MB)
14 0xE000_0000-0xEFFF_FFFF IMMR (1 MB)
15 0xE200_0000-0xE2FF_FFFF PCI1 I/O space (16 MB)
16 0xE300_0000-0xE3FF_FFFF PCI2 I/O space (16 MB)
Timur Tabi7a78f142007-01-31 15:54:29 -060017 0xF000_0000-0xF000_FFFF Compact Flash (MPC8349E-mITX only)
Timur Tabi2ad6b512006-10-31 18:44:42 -060018 0xF001_0000-0xF001_FFFF Local bus expansion slot
Timur Tabi7a78f142007-01-31 15:54:29 -060019 0xF800_0000-0xF801_FFFF Vitesse 7385 Parallel Interface (MPC8349E-mITX only)
20 0xFE00_0000-0xFE7F_FFFF First 8MB bank of Flash memory
21 0xFE80_0000-0xFEFF_FFFF Second 8MB bank of Flash memory (MPC8349E-mITX only)
Timur Tabi2ad6b512006-10-31 18:44:42 -060022
23 I2C address list:
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010024 Align. Board
25 Bus Addr Part No. Description Length Location
Timur Tabi2ad6b512006-10-31 18:44:42 -060026 ----------------------------------------------------------------
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010027 I2C0 0x50 M24256-BWMN6P Board EEPROM 2 U64
Timur Tabi2ad6b512006-10-31 18:44:42 -060028
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010029 I2C1 0x20 PCF8574 I2C Expander 0 U8
30 I2C1 0x21 PCF8574 I2C Expander 0 U10
31 I2C1 0x38 PCF8574A I2C Expander 0 U8
32 I2C1 0x39 PCF8574A I2C Expander 0 U10
33 I2C1 0x51 (DDR) DDR EEPROM 1 U1
34 I2C1 0x68 DS1339 RTC 1 U68
Timur Tabi2ad6b512006-10-31 18:44:42 -060035
36 Note that a given board has *either* a pair of 8574s or a pair of 8574As.
37*/
38
39#ifndef __CONFIG_H
40#define __CONFIG_H
41
Timur Tabi89c77842008-02-08 13:15:55 -060042#define CONFIG_MISC_INIT_F
Timur Tabi7a78f142007-01-31 15:54:29 -060043
Timur Tabi89c77842008-02-08 13:15:55 -060044/*
45 * On-board devices
46 */
Timur Tabi7a78f142007-01-31 15:54:29 -060047
Mario Six4cb06d32019-01-21 09:17:44 +010048#ifdef CONFIG_TARGET_MPC8349ITX
Joe Hershberger396abba2011-10-11 23:57:15 -050049/* The CF card interface on the back of the board */
50#define CONFIG_COMPACT_FLASH
Timur Tabi89c77842008-02-08 13:15:55 -060051#define CONFIG_VSC7385_ENET /* VSC7385 ethernet support */
Valeriy Glushkovc31e1322009-06-30 15:48:41 +030052#define CONFIG_SYS_USB_HOST /* use the EHCI USB controller */
Timur Tabi7a78f142007-01-31 15:54:29 -060053#endif
54
Simon Glass1af3c7f2020-05-10 11:40:09 -060055#include <linux/stringify.h>
Timur Tabi2ad6b512006-10-31 18:44:42 -060056#define CONFIG_RTC_DS1337
Heiko Schocher00f792e2012-10-24 13:48:22 +020057#define CONFIG_SYS_I2C
Timur Tabi7a78f142007-01-31 15:54:29 -060058
59/*
60 * Device configurations
61 */
Timur Tabi2ad6b512006-10-31 18:44:42 -060062
63/* I2C */
Heiko Schocher00f792e2012-10-24 13:48:22 +020064#ifdef CONFIG_SYS_I2C
65#define CONFIG_SYS_I2C_FSL
66#define CONFIG_SYS_FSL_I2C_SPEED 400000
67#define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
68#define CONFIG_SYS_FSL_I2C_OFFSET 0x3000
69#define CONFIG_SYS_FSL_I2C2_SPEED 400000
70#define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F
71#define CONFIG_SYS_FSL_I2C2_OFFSET 0x3100
Timur Tabi2ad6b512006-10-31 18:44:42 -060072
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020073#define CONFIG_SYS_SPD_BUS_NUM 1 /* The I2C bus for SPD */
Valeriy Glushkovb7be63a2009-02-04 18:27:49 +020074#define CONFIG_SYS_RTC_BUS_NUM 1 /* The I2C bus for RTC */
Timur Tabi2ad6b512006-10-31 18:44:42 -060075
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076#define CONFIG_SYS_I2C_8574_ADDR1 0x20 /* I2C1, PCF8574 */
77#define CONFIG_SYS_I2C_8574_ADDR2 0x21 /* I2C1, PCF8574 */
78#define CONFIG_SYS_I2C_8574A_ADDR1 0x38 /* I2C1, PCF8574A */
79#define CONFIG_SYS_I2C_8574A_ADDR2 0x39 /* I2C1, PCF8574A */
80#define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* I2C0, Board EEPROM */
Joe Hershberger396abba2011-10-11 23:57:15 -050081#define CONFIG_SYS_I2C_RTC_ADDR 0x68 /* I2C1, DS1339 RTC*/
82#define SPD_EEPROM_ADDRESS 0x51 /* I2C1, DDR */
Timur Tabi2ad6b512006-10-31 18:44:42 -060083
Timur Tabi2ad6b512006-10-31 18:44:42 -060084/* Don't probe these addresses: */
Joe Hershberger396abba2011-10-11 23:57:15 -050085#define CONFIG_SYS_I2C_NOPROBES { {1, CONFIG_SYS_I2C_8574_ADDR1}, \
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020086 {1, CONFIG_SYS_I2C_8574_ADDR2}, \
87 {1, CONFIG_SYS_I2C_8574A_ADDR1}, \
Joe Hershberger396abba2011-10-11 23:57:15 -050088 {1, CONFIG_SYS_I2C_8574A_ADDR2} }
Timur Tabi2ad6b512006-10-31 18:44:42 -060089/* Bit definitions for the 8574[A] I2C expander */
Joe Hershberger396abba2011-10-11 23:57:15 -050090 /* Board revision, 00=0.0, 01=0.1, 10=1.0 */
91#define I2C_8574_REVISION 0x03
Timur Tabi2ad6b512006-10-31 18:44:42 -060092#define I2C_8574_CF 0x08 /* 1=Compact flash absent, 0=present */
93#define I2C_8574_MPCICLKRN 0x10 /* MiniPCI Clk Run */
94#define I2C_8574_PCI66 0x20 /* 0=33MHz PCI, 1=66MHz PCI */
95#define I2C_8574_FLASHSIDE 0x40 /* 0=Reset vector from U4, 1=from U7*/
96
Timur Tabi2ad6b512006-10-31 18:44:42 -060097#endif
98
Timur Tabi7a78f142007-01-31 15:54:29 -060099/* Compact Flash */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600100#ifdef CONFIG_COMPACT_FLASH
101
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102#define CONFIG_SYS_IDE_MAXBUS 1
103#define CONFIG_SYS_IDE_MAXDEVICE 1
Timur Tabi2ad6b512006-10-31 18:44:42 -0600104
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200105#define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
106#define CONFIG_SYS_ATA_BASE_ADDR CONFIG_SYS_CF_BASE
107#define CONFIG_SYS_ATA_DATA_OFFSET 0x0000
108#define CONFIG_SYS_ATA_REG_OFFSET 0
109#define CONFIG_SYS_ATA_ALT_OFFSET 0x0200
110#define CONFIG_SYS_ATA_STRIDE 2
Timur Tabi2ad6b512006-10-31 18:44:42 -0600111
Joe Hershberger396abba2011-10-11 23:57:15 -0500112/* If a CF card is not inserted, time out quickly */
113#define ATA_RESET_TIME 1
Timur Tabi2ad6b512006-10-31 18:44:42 -0600114
Valeriy Glushkovc9e34fe2009-02-05 14:35:21 +0200115#endif
116
117/*
118 * SATA
119 */
120#ifdef CONFIG_SATA_SIL3114
121
122#define CONFIG_SYS_SATA_MAX_DEVICE 4
Valeriy Glushkovc9e34fe2009-02-05 14:35:21 +0200123#define CONFIG_LBA48
Timur Tabi2ad6b512006-10-31 18:44:42 -0600124
Timur Tabi7a78f142007-01-31 15:54:29 -0600125#endif
Timur Tabi2ad6b512006-10-31 18:44:42 -0600126
Valeriy Glushkovc31e1322009-06-30 15:48:41 +0300127#ifdef CONFIG_SYS_USB_HOST
128/*
129 * Support USB
130 */
Valeriy Glushkovc31e1322009-06-30 15:48:41 +0300131#define CONFIG_USB_EHCI_FSL
132
133/* Current USB implementation supports the only USB controller,
134 * so we have to choose between the MPH or the DR ones */
135#if 1
136#define CONFIG_HAS_FSL_MPH_USB
137#else
138#define CONFIG_HAS_FSL_DR_USB
139#endif
140
141#endif
142
Timur Tabi7a78f142007-01-31 15:54:29 -0600143/*
144 * DDR Setup
145 */
Mario Six8a81bfd2019-01-21 09:18:15 +0100146#define CONFIG_SYS_SDRAM_BASE 0x00000000 /* DDR is system memory*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200147#define CONFIG_SYS_83XX_DDR_USES_CS0
Timur Tabi7a78f142007-01-31 15:54:29 -0600148
Joe Hershberger396abba2011-10-11 23:57:15 -0500149#define CONFIG_SYS_DDR_SDRAM_CLK_CNTL (DDR_SDRAM_CLK_CNTL_SS_EN \
150 | DDR_SDRAM_CLK_CNTL_CLK_ADJUST_075)
Timur Tabif64702b2007-04-30 13:59:50 -0500151
Valeriy Glushkovb7be63a2009-02-04 18:27:49 +0200152#define CONFIG_VERY_BIG_RAM
153#define CONFIG_MAX_MEM_MAPPED ((phys_size_t)256 << 20)
154
Heiko Schocher00f792e2012-10-24 13:48:22 +0200155#ifdef CONFIG_SYS_I2C
Timur Tabi7a78f142007-01-31 15:54:29 -0600156#define CONFIG_SPD_EEPROM /* use SPD EEPROM for DDR setup*/
157#endif
158
Joe Hershberger396abba2011-10-11 23:57:15 -0500159/* No SPD? Then manually set up DDR parameters */
160#ifndef CONFIG_SPD_EEPROM
161 #define CONFIG_SYS_DDR_SIZE 256 /* Mb */
Joe Hershberger2e651b22011-10-11 23:57:31 -0500162 #define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
Joe Hershberger396abba2011-10-11 23:57:15 -0500163 | CSCONFIG_ROW_BIT_13 \
164 | CSCONFIG_COL_BIT_10)
Timur Tabi7a78f142007-01-31 15:54:29 -0600165
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200166 #define CONFIG_SYS_DDR_TIMING_1 0x26242321
167 #define CONFIG_SYS_DDR_TIMING_2 0x00000800 /* P9-45, may need tuning */
Timur Tabi7a78f142007-01-31 15:54:29 -0600168#endif
169
170/*
171 *Flash on the Local Bus
172 */
173
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200174#define CONFIG_SYS_FLASH_BASE 0xFE000000 /* start of FLASH */
175#define CONFIG_SYS_FLASH_EMPTY_INFO
Joe Hershberger396abba2011-10-11 23:57:15 -0500176/* 127 64KB sectors + 8 8KB sectors per device */
177#define CONFIG_SYS_MAX_FLASH_SECT 135
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178#define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
179#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
180#define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
Timur Tabi7a78f142007-01-31 15:54:29 -0600181
182/* The ITX has two flash chips, but the ITX-GP has only one. To support both
183boards, we say we have two, but don't display a message if we find only one. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200184#define CONFIG_SYS_FLASH_QUIET_TEST
Joe Hershberger396abba2011-10-11 23:57:15 -0500185#define CONFIG_SYS_MAX_FLASH_BANKS 2 /* number of banks */
186#define CONFIG_SYS_FLASH_BANKS_LIST \
187 {CONFIG_SYS_FLASH_BASE, CONFIG_SYS_FLASH_BASE + 0x800000}
188#define CONFIG_SYS_FLASH_SIZE 16 /* FLASH size in MB */
Timur Tabi7a78f142007-01-31 15:54:29 -0600189
Timur Tabi89c77842008-02-08 13:15:55 -0600190/* Vitesse 7385 */
191
192#ifdef CONFIG_VSC7385_ENET
193
194#define CONFIG_TSEC2
195
196/* The flash address and size of the VSC7385 firmware image */
197#define CONFIG_VSC7385_IMAGE 0xFEFFE000
198#define CONFIG_VSC7385_IMAGE_SIZE 8192
199
200#endif
201
Timur Tabi7a78f142007-01-31 15:54:29 -0600202/*
203 * BRx, ORx, LBLAWBARx, and LBLAWARx
204 */
205
Timur Tabi7a78f142007-01-31 15:54:29 -0600206
Timur Tabi7a78f142007-01-31 15:54:29 -0600207/* Vitesse 7385 */
208
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200209#define CONFIG_SYS_VSC7385_BASE 0xF8000000
Timur Tabi7a78f142007-01-31 15:54:29 -0600210
Joe Hershberger396abba2011-10-11 23:57:15 -0500211#define CONFIG_SYS_LED_BASE 0xF9000000
Mario Sixa8f97532019-01-21 09:18:01 +0100212
Timur Tabi7a78f142007-01-31 15:54:29 -0600213
214/* Compact Flash */
215
216#ifdef CONFIG_COMPACT_FLASH
217
Joe Hershberger396abba2011-10-11 23:57:15 -0500218#define CONFIG_SYS_CF_BASE 0xF0000000
Timur Tabi7a78f142007-01-31 15:54:29 -0600219
Timur Tabi7a78f142007-01-31 15:54:29 -0600220
Timur Tabi7a78f142007-01-31 15:54:29 -0600221#endif
222
223/*
224 * U-Boot memory configuration
225 */
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200226#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600227
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200228#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
229#define CONFIG_SYS_RAMBOOT
Timur Tabi2ad6b512006-10-31 18:44:42 -0600230#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200231#undef CONFIG_SYS_RAMBOOT
Timur Tabi2ad6b512006-10-31 18:44:42 -0600232#endif
233
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200234#define CONFIG_SYS_INIT_RAM_LOCK
Joe Hershberger396abba2011-10-11 23:57:15 -0500235#define CONFIG_SYS_INIT_RAM_ADDR 0xFD000000 /* Initial RAM addr */
236#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM*/
Timur Tabi2ad6b512006-10-31 18:44:42 -0600237
Joe Hershberger396abba2011-10-11 23:57:15 -0500238#define CONFIG_SYS_GBL_DATA_OFFSET \
239 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200240#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
Timur Tabi2ad6b512006-10-31 18:44:42 -0600241
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200242/* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */
Kevin Hao16c8c172016-07-08 11:25:14 +0800243#define CONFIG_SYS_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Mon */
Kim Phillipsc8a90642012-06-30 18:29:20 -0500244#define CONFIG_SYS_MALLOC_LEN (256 * 1024) /* Reserved for malloc */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600245
246/*
Timur Tabi2ad6b512006-10-31 18:44:42 -0600247 * Serial Port
248 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200249#define CONFIG_SYS_NS16550_SERIAL
250#define CONFIG_SYS_NS16550_REG_SIZE 1
251#define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
Timur Tabi2ad6b512006-10-31 18:44:42 -0600252
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200253#define CONFIG_SYS_BAUDRATE_TABLE \
Joe Hershberger396abba2011-10-11 23:57:15 -0500254 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
Timur Tabi7a78f142007-01-31 15:54:29 -0600255
Simon Glass83302fb2016-10-17 20:12:38 -0600256#define CONSOLE ttyS0
Timur Tabi2ad6b512006-10-31 18:44:42 -0600257
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200258#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR + 0x4500)
259#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR + 0x4600)
Timur Tabi2ad6b512006-10-31 18:44:42 -0600260
Timur Tabi7a78f142007-01-31 15:54:29 -0600261/*
262 * PCI
263 */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600264#ifdef CONFIG_PCI
Gabor Juhos842033e2013-05-30 07:06:12 +0000265#define CONFIG_PCI_INDIRECT_BRIDGE
Timur Tabi2ad6b512006-10-31 18:44:42 -0600266
267#define CONFIG_MPC83XX_PCI2
268
269/*
270 * General PCI
271 * Addresses are mapped 1-1.
272 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200273#define CONFIG_SYS_PCI1_MEM_BASE 0x80000000
274#define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE
275#define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */
Joe Hershberger396abba2011-10-11 23:57:15 -0500276#define CONFIG_SYS_PCI1_MMIO_BASE \
277 (CONFIG_SYS_PCI1_MEM_BASE + CONFIG_SYS_PCI1_MEM_SIZE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200278#define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE
279#define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */
Joe Hershberger396abba2011-10-11 23:57:15 -0500280#define CONFIG_SYS_PCI1_IO_BASE 0x00000000
281#define CONFIG_SYS_PCI1_IO_PHYS 0xE2000000
282#define CONFIG_SYS_PCI1_IO_SIZE 0x01000000 /* 16M */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600283
284#ifdef CONFIG_MPC83XX_PCI2
Joe Hershberger396abba2011-10-11 23:57:15 -0500285#define CONFIG_SYS_PCI2_MEM_BASE \
286 (CONFIG_SYS_PCI1_MMIO_BASE + CONFIG_SYS_PCI1_MMIO_SIZE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200287#define CONFIG_SYS_PCI2_MEM_PHYS CONFIG_SYS_PCI2_MEM_BASE
288#define CONFIG_SYS_PCI2_MEM_SIZE 0x10000000 /* 256M */
Joe Hershberger396abba2011-10-11 23:57:15 -0500289#define CONFIG_SYS_PCI2_MMIO_BASE \
290 (CONFIG_SYS_PCI2_MEM_BASE + CONFIG_SYS_PCI2_MEM_SIZE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200291#define CONFIG_SYS_PCI2_MMIO_PHYS CONFIG_SYS_PCI2_MMIO_BASE
292#define CONFIG_SYS_PCI2_MMIO_SIZE 0x10000000 /* 256M */
Joe Hershberger396abba2011-10-11 23:57:15 -0500293#define CONFIG_SYS_PCI2_IO_BASE 0x00000000
294#define CONFIG_SYS_PCI2_IO_PHYS \
295 (CONFIG_SYS_PCI1_IO_PHYS + CONFIG_SYS_PCI1_IO_SIZE)
296#define CONFIG_SYS_PCI2_IO_SIZE 0x01000000 /* 16M */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600297#endif
298
Timur Tabi2ad6b512006-10-31 18:44:42 -0600299#ifndef CONFIG_PCI_PNP
300 #define PCI_ENET0_IOADDR 0x00000000
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200301 #define PCI_ENET0_MEMADDR CONFIG_SYS_PCI2_MEM_BASE
Timur Tabi2ad6b512006-10-31 18:44:42 -0600302 #define PCI_IDSEL_NUMBER 0x0f /* IDSEL = AD15 */
303#endif
304
305#define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
306
307#endif
308
309/* TSEC */
310
311#ifdef CONFIG_TSEC_ENET
Kim Phillips255a35772007-05-16 16:52:19 -0500312#define CONFIG_TSEC1
Timur Tabi2ad6b512006-10-31 18:44:42 -0600313
Kim Phillips255a35772007-05-16 16:52:19 -0500314#ifdef CONFIG_TSEC1
Andy Fleming10327dc2007-08-16 16:35:02 -0500315#define CONFIG_HAS_ETH0
Kim Phillips255a35772007-05-16 16:52:19 -0500316#define CONFIG_TSEC1_NAME "TSEC0"
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200317#define CONFIG_SYS_TSEC1_OFFSET 0x24000
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100318#define TSEC1_PHY_ADDR 0x1c /* VSC8201 uses address 0x1c */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600319#define TSEC1_PHYIDX 0
Andy Fleming3a790132007-08-15 20:03:25 -0500320#define TSEC1_FLAGS TSEC_GIGABIT
Timur Tabi2ad6b512006-10-31 18:44:42 -0600321#endif
322
Kim Phillips255a35772007-05-16 16:52:19 -0500323#ifdef CONFIG_TSEC2
Timur Tabi7a78f142007-01-31 15:54:29 -0600324#define CONFIG_HAS_ETH1
Kim Phillips255a35772007-05-16 16:52:19 -0500325#define CONFIG_TSEC2_NAME "TSEC1"
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200326#define CONFIG_SYS_TSEC2_OFFSET 0x25000
Timur Tabi89c77842008-02-08 13:15:55 -0600327
Timur Tabi2ad6b512006-10-31 18:44:42 -0600328#define TSEC2_PHY_ADDR 4
329#define TSEC2_PHYIDX 0
Andy Fleming3a790132007-08-15 20:03:25 -0500330#define TSEC2_FLAGS TSEC_GIGABIT
Timur Tabi2ad6b512006-10-31 18:44:42 -0600331#endif
332
333#define CONFIG_ETHPRIME "Freescale TSEC"
334
335#endif
336
Timur Tabi2ad6b512006-10-31 18:44:42 -0600337/*
338 * Environment
339 */
Timur Tabi7a78f142007-01-31 15:54:29 -0600340
Timur Tabi2ad6b512006-10-31 18:44:42 -0600341#define CONFIG_LOADS_ECHO /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200342#define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600343
Jon Loeliger8ea54992007-07-04 22:30:06 -0500344/*
Jon Loeliger659e2f62007-07-10 09:10:49 -0500345 * BOOTP options
346 */
347#define CONFIG_BOOTP_BOOTFILESIZE
Jon Loeliger659e2f62007-07-10 09:10:49 -0500348
Timur Tabi2ad6b512006-10-31 18:44:42 -0600349/* Watchdog */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600350#undef CONFIG_WATCHDOG /* watchdog disabled */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600351
352/*
353 * Miscellaneous configurable options
354 */
Timur Tabi7a78f142007-01-31 15:54:29 -0600355
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200356#define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
Kim Phillips05f91a62009-08-26 21:27:37 -0500357#define CONFIG_LOADADDR 800000 /* default location for tftp and bootm */
Timur Tabi7a78f142007-01-31 15:54:29 -0600358
Timur Tabi2ad6b512006-10-31 18:44:42 -0600359/*
360 * For booting Linux, the board info and command line data
Ira W. Snyder9f530d52010-09-10 15:42:32 -0700361 * have to be in the first 256 MB of memory, since this is
Timur Tabi2ad6b512006-10-31 18:44:42 -0600362 * the maximum mapped by the Linux kernel during initialization.
363 */
Joe Hershberger396abba2011-10-11 23:57:15 -0500364 /* Initial Memory map for Linux*/
365#define CONFIG_SYS_BOOTMAPSZ (256 << 20)
Kevin Hao63865272016-07-08 11:25:15 +0800366#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600367
Timur Tabi7a78f142007-01-31 15:54:29 -0600368/*
369 * System performance
370 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200371#define CONFIG_SYS_SCCR_TSEC1CM 1 /* TSEC1 clock mode (0-3) */
372#define CONFIG_SYS_SCCR_TSEC2CM 1 /* TSEC2 & I2C0 clock mode (0-3) */
Valeriy Glushkovc31e1322009-06-30 15:48:41 +0300373#define CONFIG_SYS_SCCR_USBMPHCM 3 /* USB MPH controller's clock */
374#define CONFIG_SYS_SCCR_USBDRCM 0 /* USB DR controller's clock */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600375
Timur Tabi7a78f142007-01-31 15:54:29 -0600376/*
377 * System IO Config
378 */
Joe Hershberger396abba2011-10-11 23:57:15 -0500379/* Needed for gigabit to work on TSEC 1 */
380#define CONFIG_SYS_SICRH SICRH_TSOBI1
381 /* USB DR as device + USB MPH as host */
382#define CONFIG_SYS_SICRL (SICRL_LDP_A | SICRL_USB1)
Timur Tabi2ad6b512006-10-31 18:44:42 -0600383
Jon Loeliger8ea54992007-07-04 22:30:06 -0500384#if defined(CONFIG_CMD_KGDB)
Timur Tabi2ad6b512006-10-31 18:44:42 -0600385#define CONFIG_KGDB_BAUDRATE 230400 /* speed of kgdb serial port */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600386#endif
387
Timur Tabi2ad6b512006-10-31 18:44:42 -0600388/*
389 * Environment Configuration
390 */
Timur Tabi2ad6b512006-10-31 18:44:42 -0600391
Joe Hershberger396abba2011-10-11 23:57:15 -0500392#define CONFIG_NETDEV "eth0"
Timur Tabi2ad6b512006-10-31 18:44:42 -0600393
Timur Tabi7a78f142007-01-31 15:54:29 -0600394/* Default path and filenames */
Joe Hershberger8b3637c2011-10-13 13:03:47 +0000395#define CONFIG_ROOTPATH "/nfsroot/rootfs"
Joe Hershbergerb3f44c22011-10-13 13:03:48 +0000396#define CONFIG_BOOTFILE "uImage"
Joe Hershberger396abba2011-10-11 23:57:15 -0500397 /* U-Boot image on TFTP server */
398#define CONFIG_UBOOTPATH "u-boot.bin"
Timur Tabi2ad6b512006-10-31 18:44:42 -0600399
Mario Six4cb06d32019-01-21 09:17:44 +0100400#ifdef CONFIG_TARGET_MPC8349ITX
Joe Hershberger396abba2011-10-11 23:57:15 -0500401#define CONFIG_FDTFILE "mpc8349emitx.dtb"
Timur Tabi2ad6b512006-10-31 18:44:42 -0600402#else
Joe Hershberger396abba2011-10-11 23:57:15 -0500403#define CONFIG_FDTFILE "mpc8349emitxgp.dtb"
Timur Tabi2ad6b512006-10-31 18:44:42 -0600404#endif
405
Timur Tabi7a78f142007-01-31 15:54:29 -0600406
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100407#define CONFIG_EXTRA_ENV_SETTINGS \
Simon Glass83302fb2016-10-17 20:12:38 -0600408 "console=" __stringify(CONSOLE) "\0" \
Joe Hershberger396abba2011-10-11 23:57:15 -0500409 "netdev=" CONFIG_NETDEV "\0" \
410 "uboot=" CONFIG_UBOOTPATH "\0" \
Wolfgang Denk53677ef2008-05-20 16:00:29 +0200411 "tftpflash=tftpboot $loadaddr $uboot; " \
Marek Vasut5368c552012-09-23 17:41:24 +0200412 "protect off " __stringify(CONFIG_SYS_TEXT_BASE) \
413 " +$filesize; " \
414 "erase " __stringify(CONFIG_SYS_TEXT_BASE) \
415 " +$filesize; " \
416 "cp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) \
417 " $filesize; " \
418 "protect on " __stringify(CONFIG_SYS_TEXT_BASE) \
419 " +$filesize; " \
420 "cmp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) \
421 " $filesize\0" \
Kim Phillips05f91a62009-08-26 21:27:37 -0500422 "fdtaddr=780000\0" \
Joe Hershberger396abba2011-10-11 23:57:15 -0500423 "fdtfile=" CONFIG_FDTFILE "\0"
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600424
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100425#define CONFIG_NFSBOOTCOMMAND \
Timur Tabi7a78f142007-01-31 15:54:29 -0600426 "setenv bootargs root=/dev/nfs rw nfsroot=$serverip:$rootpath" \
Joe Hershberger396abba2011-10-11 23:57:15 -0500427 " ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off "\
Timur Tabi7a78f142007-01-31 15:54:29 -0600428 " console=$console,$baudrate $othbootargs; " \
429 "tftp $loadaddr $bootfile;" \
430 "tftp $fdtaddr $fdtfile;" \
431 "bootm $loadaddr - $fdtaddr"
Kim Phillipsbf0b5422006-11-01 00:10:40 -0600432
Wolfgang Denkdd520bf2006-11-30 18:02:20 +0100433#define CONFIG_RAMBOOTCOMMAND \
Timur Tabi7a78f142007-01-31 15:54:29 -0600434 "setenv bootargs root=/dev/ram rw" \
435 " console=$console,$baudrate $othbootargs; " \
436 "tftp $ramdiskaddr $ramdiskfile;" \
437 "tftp $loadaddr $bootfile;" \
438 "tftp $fdtaddr $fdtfile;" \
439 "bootm $loadaddr $ramdiskaddr $fdtaddr"
Timur Tabi2ad6b512006-10-31 18:44:42 -0600440
Timur Tabi2ad6b512006-10-31 18:44:42 -0600441#endif