blob: 7a120ed5a69e673478bbc644f94091aca5aec6ec [file] [log] [blame]
Stefan Roese42fbddd2006-09-07 11:51:23 +02001/*
Stefan Roese00840322008-03-07 08:01:43 +01002 * (C) Copyright 2006-2008
Stefan Roese42fbddd2006-09-07 11:51:23 +02003 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * (C) Copyright 2006
6 * Jacqueline Pira-Ferriol, AMCC/IBM, jpira-ferriol@fr.ibm.com
7 * Alain Saurel, AMCC/IBM, alain.saurel@fr.ibm.com
8 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese42fbddd2006-09-07 11:51:23 +020010 */
11
Larry Johnsonf35b86b2008-01-18 21:49:05 -050012/*
Stefan Roese15adf442007-01-30 17:06:10 +010013 * sequoia.h - configuration for Sequoia & Rainier boards
Larry Johnsonf35b86b2008-01-18 21:49:05 -050014 */
Stefan Roese42fbddd2006-09-07 11:51:23 +020015#ifndef __CONFIG_H
16#define __CONFIG_H
17
Larry Johnsonf35b86b2008-01-18 21:49:05 -050018/*
Stefan Roese42fbddd2006-09-07 11:51:23 +020019 * High Level Configuration Options
Larry Johnsonf35b86b2008-01-18 21:49:05 -050020 */
Stefan Roese15adf442007-01-30 17:06:10 +010021/* This config file is used for Sequoia (440EPx) and Rainier (440GRx) */
Stefan Roesebe6729c2006-09-13 13:51:58 +020022#ifndef CONFIG_RAINIER
Larry Johnsonf35b86b2008-01-18 21:49:05 -050023#define CONFIG_440EPX 1 /* Specific PPC440EPx */
Stefan Roesecfe58022008-06-06 15:55:21 +020024#define CONFIG_HOSTNAME sequoia
Stefan Roesebe6729c2006-09-13 13:51:58 +020025#else
Larry Johnsonf35b86b2008-01-18 21:49:05 -050026#define CONFIG_440GRX 1 /* Specific PPC440GRx */
Stefan Roesecfe58022008-06-06 15:55:21 +020027#define CONFIG_HOSTNAME rainier
Stefan Roesebe6729c2006-09-13 13:51:58 +020028#endif
Larry Johnsonf35b86b2008-01-18 21:49:05 -050029#define CONFIG_440 1 /* ... PPC440 family */
Stefan Roesecfe58022008-06-06 15:55:21 +020030
Wolfgang Denk291ba1b2010-10-06 09:05:45 +020031#ifndef CONFIG_SYS_TEXT_BASE
32#define CONFIG_SYS_TEXT_BASE 0xFFF80000
33#endif
34
Stefan Roesecfe58022008-06-06 15:55:21 +020035/*
36 * Include common defines/options for all AMCC eval boards
37 */
38#include "amcc-common.h"
39
Jeffrey Mann7aa1bb22007-05-05 08:32:14 +020040/* Detect Sequoia PLL input clock automatically via CPLD bit */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020041#define CONFIG_SYS_CLK_FREQ ((in8(CONFIG_SYS_BCSR_BASE + 3) & 0x80) ? \
Jeffrey Mann40e77f32007-05-07 19:42:49 +020042 33333333 : 33000000)
Stefan Roese42fbddd2006-09-07 11:51:23 +020043
Anatolij Gustschin05d5eca2008-02-21 12:52:29 +010044/*
45 * Define this if you want support for video console with radeon 9200 pci card
Wolfgang Denk0708bc62010-10-07 21:51:12 +020046 * Also set CONFIG_SYS_TEXT_BASE to 0xFFF80000 in board/amcc/sequoia/config.mk in this case
Anatolij Gustschin05d5eca2008-02-21 12:52:29 +010047 */
Anatolij Gustschin05d5eca2008-02-21 12:52:29 +010048
49#ifdef CONFIG_VIDEO
Stefan Roesef3727512007-10-31 17:57:52 +010050/*
51 * 44x dcache supported is working now on sequoia, but we don't enable
52 * it yet since it needs further testing
53 */
Larry Johnsonf35b86b2008-01-18 21:49:05 -050054#define CONFIG_4xx_DCACHE /* enable dcache */
Stefan Roesef3727512007-10-31 17:57:52 +010055#endif
56
Larry Johnsonf35b86b2008-01-18 21:49:05 -050057#define CONFIG_MISC_INIT_R 1 /* Call misc_init_r */
Stefan Roese42fbddd2006-09-07 11:51:23 +020058
Larry Johnsonf35b86b2008-01-18 21:49:05 -050059/*
60 * Base addresses -- Note these are effective addresses where the actual
61 * resources get mapped (not physical addresses).
62 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020063#define CONFIG_SYS_TLB_FOR_BOOT_FLASH 0x0003
64#define CONFIG_SYS_BOOT_BASE_ADDR 0xf0000000
65#define CONFIG_SYS_FLASH_BASE 0xfc000000 /* start of FLASH */
66#define CONFIG_SYS_NAND_ADDR 0xd0000000 /* NAND Flash */
67#define CONFIG_SYS_OCM_BASE 0xe0010000 /* ocm */
68#define CONFIG_SYS_OCM_DATA_ADDR CONFIG_SYS_OCM_BASE
69#define CONFIG_SYS_PCI_BASE 0xe0000000 /* Internal PCI regs */
70#define CONFIG_SYS_PCI_MEMBASE 0x80000000 /* mapped pci memory */
71#define CONFIG_SYS_PCI_MEMBASE1 CONFIG_SYS_PCI_MEMBASE + 0x10000000
72#define CONFIG_SYS_PCI_MEMBASE2 CONFIG_SYS_PCI_MEMBASE1 + 0x10000000
73#define CONFIG_SYS_PCI_MEMBASE3 CONFIG_SYS_PCI_MEMBASE2 + 0x10000000
Stefan Roese42fbddd2006-09-07 11:51:23 +020074
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020075#define CONFIG_SYS_USB2D0_BASE 0xe0000100
76#define CONFIG_SYS_USB_DEVICE 0xe0000000
77#define CONFIG_SYS_USB_HOST 0xe0000400
78#define CONFIG_SYS_BCSR_BASE 0xc0000000
Stefan Roese42fbddd2006-09-07 11:51:23 +020079
Larry Johnsonf35b86b2008-01-18 21:49:05 -050080/*
Stefan Roese42fbddd2006-09-07 11:51:23 +020081 * Initial RAM & stack pointer
Larry Johnsonf35b86b2008-01-18 21:49:05 -050082 */
Stefan Roese42fbddd2006-09-07 11:51:23 +020083/* 440EPx/440GRx have 16KB of internal SRAM, so no need for D-Cache */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020084#define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_OCM_BASE /* OCM */
Wolfgang Denk1c2e98e2010-10-26 13:32:32 +020085#define CONFIG_SYS_INIT_RAM_SIZE (4 << 10)
Wolfgang Denk0191e472010-10-26 14:34:52 +020086#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Michael Zaidmanf969a682010-09-20 08:51:53 +020087#define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_GBL_DATA_OFFSET - 0x4)
Stefan Roese42fbddd2006-09-07 11:51:23 +020088
Larry Johnsonf35b86b2008-01-18 21:49:05 -050089/*
Stefan Roese42fbddd2006-09-07 11:51:23 +020090 * Serial Port
Larry Johnsonf35b86b2008-01-18 21:49:05 -050091 */
Stefan Roese3ddce572010-09-20 16:05:31 +020092#define CONFIG_CONS_INDEX 1 /* Use UART0 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020093#define CONFIG_SYS_EXT_SERIAL_CLOCK 11059200 /* ext. 11.059MHz clk */
Stefan Roese42fbddd2006-09-07 11:51:23 +020094
Larry Johnsonf35b86b2008-01-18 21:49:05 -050095/*
Stefan Roese42fbddd2006-09-07 11:51:23 +020096 * Environment
Larry Johnsonf35b86b2008-01-18 21:49:05 -050097 */
Stefan Roeseb3859f22014-03-04 15:34:35 +010098#if defined(CONFIG_SYS_RAMBOOT)
Stefan Roesec20ef322009-05-11 13:46:14 +020099#define CONFIG_ENV_IS_NOWHERE /* Store env in memory only */
100#define CONFIG_ENV_SIZE (8 << 10)
Stefan Roese42fbddd2006-09-07 11:51:23 +0200101#else
Stefan Roesec20ef322009-05-11 13:46:14 +0200102#define CONFIG_ENV_IS_IN_FLASH /* use FLASH for environ vars */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200103#endif
Stefan Roese42fbddd2006-09-07 11:51:23 +0200104
Stefan Roesec20ef322009-05-11 13:46:14 +0200105#if defined(CONFIG_CMD_FLASH)
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500106/*
Stefan Roese42fbddd2006-09-07 11:51:23 +0200107 * FLASH related
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500108 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200109#define CONFIG_SYS_FLASH_CFI /* The flash is CFI compatible */
Jean-Christophe PLAGNIOL-VILLARD8d94c232008-08-13 01:40:42 +0200110#define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200111
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200112#define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
Stefan Roese42fbddd2006-09-07 11:51:23 +0200113
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200114#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
115#define CONFIG_SYS_MAX_FLASH_SECT 512 /* max number of sectors on one chip */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200116
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200117#define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
118#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200119
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200120#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* use buffered writes (20x faster) */
121#define CONFIG_SYS_FLASH_PROTECTION 1 /* use hardware flash protection */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200122
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200123#define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */
124#define CONFIG_SYS_FLASH_QUIET_TEST 1 /* don't warn upon unknown flash */
Joe Hershberger5a9d7f12015-06-22 16:15:30 -0500125#endif /* CONFIG_CMD_FLASH */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200126
Jean-Christophe PLAGNIOL-VILLARD53db4cd2008-09-10 22:48:04 +0200127#ifdef CONFIG_ENV_IS_IN_FLASH
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200128#define CONFIG_ENV_SECT_SIZE 0x20000 /* size of one complete sector */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200129#define CONFIG_ENV_ADDR ((-CONFIG_SYS_MONITOR_LEN)-CONFIG_ENV_SECT_SIZE)
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200130#define CONFIG_ENV_SIZE 0x2000 /* Total Size of Environment Sector */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200131
132/* Address and size of Redundant Environment Sector */
Jean-Christophe PLAGNIOL-VILLARD7e1cda62008-09-10 22:48:06 +0200133#define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR-CONFIG_ENV_SECT_SIZE)
134#define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
Stefan Roese42fbddd2006-09-07 11:51:23 +0200135#endif
136
Stefan Roese42fbddd2006-09-07 11:51:23 +0200137/*
Stefan Roese42fbddd2006-09-07 11:51:23 +0200138 * DDR SDRAM
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500139 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200140#define CONFIG_SYS_MBYTES_SDRAM (256) /* 256MB */
Stefan Roeseb3859f22014-03-04 15:34:35 +0100141#if !defined(CONFIG_SYS_RAMBOOT)
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500142#define CONFIG_DDR_DATA_EYE /* use DDR2 optimization */
Stefan Roese5684da02007-01-05 10:38:05 +0100143#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200144#define CONFIG_SYS_MEM_TOP_HIDE (4 << 10) /* don't use last 4kbytes */
Stefan Roesea13709f2008-03-26 10:14:11 +0100145 /* 440EPx errata CHIP 11 */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200146
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500147/*
Stefan Roese42fbddd2006-09-07 11:51:23 +0200148 * I2C
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500149 */
Dirk Eibach42b204f2013-04-25 02:40:01 +0000150#define CONFIG_SYS_I2C_PPC4XX_SPEED_0 400000
Stefan Roese42fbddd2006-09-07 11:51:23 +0200151
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200152#define CONFIG_SYS_I2C_EEPROM_ADDR (0xa8>>1)
153#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
154#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3
155#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10
Stefan Roese42fbddd2006-09-07 11:51:23 +0200156
Stefan Roeseef28e732009-10-19 16:19:36 +0200157/* I2C bootstrap EEPROM */
158#define CONFIG_4xx_CONFIG_I2C_EEPROM_ADDR 0x52
159#define CONFIG_4xx_CONFIG_I2C_EEPROM_OFFSET 0
160#define CONFIG_4xx_CONFIG_BLOCKSIZE 16
161
Stefan Roesecfe58022008-06-06 15:55:21 +0200162/*
163 * Default environment variables
164 */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200165#define CONFIG_EXTRA_ENV_SETTINGS \
Stefan Roesecfe58022008-06-06 15:55:21 +0200166 CONFIG_AMCC_DEF_ENV \
167 CONFIG_AMCC_DEF_ENV_POWERPC \
168 CONFIG_AMCC_DEF_ENV_PPC_OLD \
169 CONFIG_AMCC_DEF_ENV_NOR_UPD \
Stefan Roese38a91762006-11-20 20:39:52 +0100170 "kernel_addr=FC000000\0" \
171 "ramdisk_addr=FC180000\0" \
Stefan Roese42fbddd2006-09-07 11:51:23 +0200172 ""
Stefan Roese42fbddd2006-09-07 11:51:23 +0200173
174#define CONFIG_M88E1111_PHY 1
175#define CONFIG_IBM_EMAC4_V4 1
Stefan Roese42fbddd2006-09-07 11:51:23 +0200176#define CONFIG_PHY_ADDR 0 /* PHY address, See schematics */
177
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500178#define CONFIG_PHY_RESET 1 /* reset phy upon startup */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200179#define CONFIG_PHY_GIGE 1 /* Include GbE speed/duplex detection */
180
181#define CONFIG_HAS_ETH0
Stefan Roese42fbddd2006-09-07 11:51:23 +0200182#define CONFIG_HAS_ETH1 1 /* add support for "eth1addr" */
183#define CONFIG_PHY1_ADDR 1
184
185/* USB */
Stefan Roesebe6729c2006-09-13 13:51:58 +0200186#ifdef CONFIG_440EPX
Tom Riniceed5d22017-05-12 22:33:27 -0400187#ifdef CONFIG_USB_EHCI_HCD
Chris Zhang20f10262010-01-06 13:34:06 -0800188#define CONFIG_USB_EHCI_PPC4XX
189#define CONFIG_SYS_PPC4XX_USB_ADDR 0xe0000300
190#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
191#define CONFIG_EHCI_MMIO_BIG_ENDIAN
192#define CONFIG_EHCI_DESC_BIG_ENDIAN
Tom Riniceed5d22017-05-12 22:33:27 -0400193#else /* CONFIG_USB_EHCI_HCD */
Matthias Fuchs12985f82007-11-09 15:37:53 +0100194#define CONFIG_USB_OHCI_NEW
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200195#define CONFIG_SYS_OHCI_BE_CONTROLLER
Matthias Fuchs12985f82007-11-09 15:37:53 +0100196
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200197#undef CONFIG_SYS_USB_OHCI_BOARD_INIT
198#define CONFIG_SYS_USB_OHCI_CPU_INIT 1
199#define CONFIG_SYS_USB_OHCI_REGS_BASE CONFIG_SYS_USB_HOST
200#define CONFIG_SYS_USB_OHCI_SLOT_NAME "ppc440"
201#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 15
Chris Zhang20f10262010-01-06 13:34:06 -0800202#endif
Stefan Roese42fbddd2006-09-07 11:51:23 +0200203
204/* Comment this out to enable USB 1.1 device */
205#define USB_2_0_DEVICE
206
Stefan Roesebe6729c2006-09-13 13:51:58 +0200207#endif /* CONFIG_440EPX */
208
Stefan Roese42fbddd2006-09-07 11:51:23 +0200209/* Partitions */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200210
Jon Loeliger49851be2007-07-04 22:33:30 -0500211/*
Stefan Roesecfe58022008-06-06 15:55:21 +0200212 * Commands additional to the ones defined in amcc-common.h
Jon Loeliger5c4ddae2007-07-10 10:12:10 -0500213 */
Jon Loeliger49851be2007-07-04 22:33:30 -0500214#define CONFIG_CMD_NAND
Jon Loeliger49851be2007-07-04 22:33:30 -0500215#define CONFIG_CMD_PCI
Jon Loeliger49851be2007-07-04 22:33:30 -0500216#define CONFIG_CMD_SDRAM
217
218#ifdef CONFIG_440EPX
Jon Loeliger49851be2007-07-04 22:33:30 -0500219#endif
220
Stefan Roesefa840e32007-08-16 10:18:33 +0200221#ifndef CONFIG_RAINIER
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200222#define CONFIG_SYS_POST_FPU_ON CONFIG_SYS_POST_FPU
Stefan Roesefa840e32007-08-16 10:18:33 +0200223#else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200224#define CONFIG_SYS_POST_FPU_ON 0
Stefan Roesefa840e32007-08-16 10:18:33 +0200225#endif
Stefan Roese42fbddd2006-09-07 11:51:23 +0200226
Stefan Roese376ec7c2009-04-15 14:06:26 +0200227/*
228 * Don't run the memory POST on the NAND-booting version. It will
229 * overwrite part of the U-Boot image which is already loaded from NAND
230 * to SDRAM.
231 */
Stefan Roeseb3859f22014-03-04 15:34:35 +0100232#if defined(CONFIG_SYS_RAMBOOT)
Stefan Roese376ec7c2009-04-15 14:06:26 +0200233#define CONFIG_SYS_POST_MEMORY_ON 0
234#else
235#define CONFIG_SYS_POST_MEMORY_ON CONFIG_SYS_POST_MEMORY
236#endif
237
Igor Lisitsin95bcd382007-03-28 19:06:19 +0400238/* POST support */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200239#define CONFIG_POST (CONFIG_SYS_POST_CACHE | \
240 CONFIG_SYS_POST_CPU | \
241 CONFIG_SYS_POST_ETHER | \
Stefan Roese376ec7c2009-04-15 14:06:26 +0200242 CONFIG_SYS_POST_FPU_ON | \
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200243 CONFIG_SYS_POST_I2C | \
Stefan Roese376ec7c2009-04-15 14:06:26 +0200244 CONFIG_SYS_POST_MEMORY_ON | \
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200245 CONFIG_SYS_POST_SPR | \
246 CONFIG_SYS_POST_UART)
Igor Lisitsin95bcd382007-03-28 19:06:19 +0400247
Igor Lisitsin95bcd382007-03-28 19:06:19 +0400248#define CONFIG_LOGBUFFER
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200249#define CONFIG_SYS_POST_CACHE_ADDR 0x7fff0000 /* free virtual address */
Igor Lisitsin95bcd382007-03-28 19:06:19 +0400250
Stefan Roese42fbddd2006-09-07 11:51:23 +0200251#define CONFIG_SUPPORT_VFAT
252
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500253/*
Stefan Roese42fbddd2006-09-07 11:51:23 +0200254 * PCI stuff
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500255 */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200256/* General PCI */
Gabor Juhosb4458732013-05-30 07:06:12 +0000257#define CONFIG_PCI_INDIRECT_BRIDGE /* indirect PCI bridge support */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200258#define CONFIG_SYS_PCI_CACHE_LINE_SIZE 0 /* to avoid problems with PNP */
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500259#define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200260#define CONFIG_SYS_PCI_TARGBASE 0x80000000 /* PCIaddr mapped to */
261 /* CONFIG_SYS_PCI_MEMBASE */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200262/* Board-specific PCI */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200263#define CONFIG_SYS_PCI_TARGET_INIT
264#define CONFIG_SYS_PCI_MASTER_INIT
Stefan Roese5d8033e2009-11-12 16:41:09 +0100265#define CONFIG_SYS_PCI_BOARD_FIXUP_IRQ
Stefan Roese42fbddd2006-09-07 11:51:23 +0200266
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200267#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x10e8 /* AMCC */
268#define CONFIG_SYS_PCI_SUBSYS_ID 0xcafe /* Whatever */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200269
270/*
Stefan Roese42fbddd2006-09-07 11:51:23 +0200271 * External Bus Controller (EBC) Setup
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500272 */
Stefan Roese42fbddd2006-09-07 11:51:23 +0200273
274/*
275 * On Sequoia CS0 and CS3 are switched when configuring for NAND booting
276 */
Stefan Roeseb3859f22014-03-04 15:34:35 +0100277#if !defined(CONFIG_SYS_RAMBOOT)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200278#define CONFIG_SYS_NAND_CS 3 /* NAND chip connected to CSx */
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500279/* Memory Bank 0 (NOR-FLASH) initialization */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200280#define CONFIG_SYS_EBC_PB0AP 0x03017200
281#define CONFIG_SYS_EBC_PB0CR (CONFIG_SYS_FLASH_BASE | 0xda000)
Stefan Roese42fbddd2006-09-07 11:51:23 +0200282
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500283/* Memory Bank 3 (NAND-FLASH) initialization */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200284#define CONFIG_SYS_EBC_PB3AP 0x018003c0
285#define CONFIG_SYS_EBC_PB3CR (CONFIG_SYS_NAND_ADDR | 0x1c000)
Stefan Roese42fbddd2006-09-07 11:51:23 +0200286#else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200287#define CONFIG_SYS_NAND_CS 0 /* NAND chip connected to CSx */
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500288/* Memory Bank 3 (NOR-FLASH) initialization */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200289#define CONFIG_SYS_EBC_PB3AP 0x03017200
290#define CONFIG_SYS_EBC_PB3CR (CONFIG_SYS_FLASH_BASE | 0xda000)
Stefan Roese42fbddd2006-09-07 11:51:23 +0200291
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500292/* Memory Bank 0 (NAND-FLASH) initialization */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200293#define CONFIG_SYS_EBC_PB0AP 0x018003c0
294#define CONFIG_SYS_EBC_PB0CR (CONFIG_SYS_NAND_ADDR | 0x1c000)
Stefan Roese42fbddd2006-09-07 11:51:23 +0200295#endif
296
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500297/* Memory Bank 2 (CPLD) initialization */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200298#define CONFIG_SYS_EBC_PB2AP 0x24814580
299#define CONFIG_SYS_EBC_PB2CR (CONFIG_SYS_BCSR_BASE | 0x38000)
Stefan Roese42fbddd2006-09-07 11:51:23 +0200300
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200301#define CONFIG_SYS_BCSR5_PCI66EN 0x80
Stefan Roesefa257472007-10-15 11:29:33 +0200302
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500303/*
Stefan Roese3cdd3fd2006-10-20 14:28:52 +0200304 * NAND FLASH
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500305 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200306#define CONFIG_SYS_MAX_NAND_DEVICE 1
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200307#define CONFIG_SYS_NAND_BASE (CONFIG_SYS_NAND_ADDR + CONFIG_SYS_NAND_CS)
308#define CONFIG_SYS_NAND_SELECT_DEVICE 1 /* nand driver supports mutipl. chips */
Stefan Roese3cdd3fd2006-10-20 14:28:52 +0200309
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500310/*
Lawrence R. Johnson1e8db032008-01-04 02:11:56 -0500311 * PPC440 GPIO Configuration
312 */
313/* test-only: take GPIO init from pcs440ep ???? in config file */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200314#define CONFIG_SYS_4xx_GPIO_TABLE { /* Out GPIO Alternate1 Alternate2 Alternate3 */ \
Lawrence R. Johnson1e8db032008-01-04 02:11:56 -0500315{ \
316/* GPIO Core 0 */ \
317{GPIO0_BASE, GPIO_BI , GPIO_ALT1, GPIO_OUT_0}, /* GPIO0 EBC_ADDR(7) DMA_REQ(2) */ \
318{GPIO0_BASE, GPIO_BI , GPIO_ALT1, GPIO_OUT_0}, /* GPIO1 EBC_ADDR(6) DMA_ACK(2) */ \
319{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO2 EBC_ADDR(5) DMA_EOT/TC(2) */ \
320{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO3 EBC_ADDR(4) DMA_REQ(3) */ \
321{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO4 EBC_ADDR(3) DMA_ACK(3) */ \
322{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO5 EBC_ADDR(2) DMA_EOT/TC(3) */ \
323{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO6 EBC_CS_N(1) */ \
324{GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_0}, /* GPIO7 EBC_CS_N(2) */ \
325{GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_0}, /* GPIO8 EBC_CS_N(3) */ \
326{GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_0}, /* GPIO9 EBC_CS_N(4) */ \
327{GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_0}, /* GPIO10 EBC_CS_N(5) */ \
328{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO11 EBC_BUS_ERR */ \
329{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO12 */ \
330{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO13 */ \
331{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO14 */ \
332{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO15 */ \
333{GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1}, /* GPIO16 GMCTxD(4) */ \
334{GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1}, /* GPIO17 GMCTxD(5) */ \
335{GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1}, /* GPIO18 GMCTxD(6) */ \
336{GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1}, /* GPIO19 GMCTxD(7) */ \
337{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO20 RejectPkt0 */ \
338{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO21 RejectPkt1 */ \
339{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO22 */ \
340{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO23 SCPD0 */ \
341{GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1}, /* GPIO24 GMCTxD(2) */ \
342{GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1}, /* GPIO25 GMCTxD(3) */ \
343{GPIO0_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO26 */ \
344{GPIO0_BASE, GPIO_IN , GPIO_ALT2, GPIO_OUT_0}, /* GPIO27 EXT_EBC_REQ USB2D_RXERROR */ \
345{GPIO0_BASE, GPIO_OUT, GPIO_ALT2, GPIO_OUT_1}, /* GPIO28 USB2D_TXVALID */ \
346{GPIO0_BASE, GPIO_OUT, GPIO_ALT2, GPIO_OUT_1}, /* GPIO29 EBC_EXT_HDLA USB2D_PAD_SUSPNDM */ \
347{GPIO0_BASE, GPIO_OUT, GPIO_ALT2, GPIO_OUT_1}, /* GPIO30 EBC_EXT_ACK USB2D_XCVRSELECT*/ \
348{GPIO0_BASE, GPIO_OUT, GPIO_ALT2, GPIO_OUT_1}, /* GPIO31 EBC_EXR_BUSREQ USB2D_TERMSELECT*/ \
349}, \
350{ \
351/* GPIO Core 1 */ \
352{GPIO1_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1}, /* GPIO32 USB2D_OPMODE0 EBC_DATA(2) */ \
353{GPIO1_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1}, /* GPIO33 USB2D_OPMODE1 EBC_DATA(3) */ \
Steven A. Falco7bf9cc62008-08-06 15:42:52 -0400354{GPIO1_BASE, GPIO_IN , GPIO_ALT2, GPIO_OUT_0}, /* GPIO34 UART0_8PIN_DCD_N UART1_DSR_CTS_N UART2_SOUT*/ \
355{GPIO1_BASE, GPIO_OUT, GPIO_ALT2, GPIO_OUT_1}, /* GPIO35 UART0_8PIN_DSR_N UART1_RTS_DTR_N UART2_SIN*/ \
356{GPIO1_BASE, GPIO_IN , GPIO_ALT1, GPIO_OUT_0}, /* GPIO36 UART0_CTS_N EBC_DATA(0) UART3_SIN*/ \
357{GPIO1_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_1}, /* GPIO37 UART0_RTS_N EBC_DATA(1) UART3_SOUT*/ \
358{GPIO1_BASE, GPIO_OUT, GPIO_ALT2, GPIO_OUT_1}, /* GPIO38 UART0_8PIN_DTR_N UART1_SOUT */ \
359{GPIO1_BASE, GPIO_IN , GPIO_ALT2, GPIO_OUT_0}, /* GPIO39 UART0_8PIN_RI_N UART1_SIN */ \
Lawrence R. Johnson1e8db032008-01-04 02:11:56 -0500360{GPIO1_BASE, GPIO_IN , GPIO_ALT1, GPIO_OUT_0}, /* GPIO40 UIC_IRQ(0) */ \
361{GPIO1_BASE, GPIO_IN , GPIO_ALT1, GPIO_OUT_0}, /* GPIO41 UIC_IRQ(1) */ \
362{GPIO1_BASE, GPIO_IN , GPIO_ALT1, GPIO_OUT_0}, /* GPIO42 UIC_IRQ(2) */ \
363{GPIO1_BASE, GPIO_IN , GPIO_ALT1, GPIO_OUT_0}, /* GPIO43 UIC_IRQ(3) */ \
364{GPIO1_BASE, GPIO_IN , GPIO_ALT1, GPIO_OUT_0}, /* GPIO44 UIC_IRQ(4) DMA_ACK(1) */ \
365{GPIO1_BASE, GPIO_IN , GPIO_ALT1, GPIO_OUT_0}, /* GPIO45 UIC_IRQ(6) DMA_EOT/TC(1) */ \
366{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO46 UIC_IRQ(7) DMA_REQ(0) */ \
367{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO47 UIC_IRQ(8) DMA_ACK(0) */ \
368{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO48 UIC_IRQ(9) DMA_EOT/TC(0) */ \
369{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO49 Unselect via TraceSelect Bit */ \
370{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO50 Unselect via TraceSelect Bit */ \
371{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO51 Unselect via TraceSelect Bit */ \
372{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO52 Unselect via TraceSelect Bit */ \
373{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO53 Unselect via TraceSelect Bit */ \
374{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO54 Unselect via TraceSelect Bit */ \
375{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO55 Unselect via TraceSelect Bit */ \
376{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO56 Unselect via TraceSelect Bit */ \
377{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO57 Unselect via TraceSelect Bit */ \
378{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO58 Unselect via TraceSelect Bit */ \
379{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO59 Unselect via TraceSelect Bit */ \
380{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO60 Unselect via TraceSelect Bit */ \
381{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO61 Unselect via TraceSelect Bit */ \
382{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO62 Unselect via TraceSelect Bit */ \
383{GPIO1_BASE, GPIO_IN , GPIO_SEL , GPIO_OUT_0}, /* GPIO63 Unselect via TraceSelect Bit */ \
384} \
385}
386
Anatolij Gustschin05d5eca2008-02-21 12:52:29 +0100387#ifdef CONFIG_VIDEO
388#define CONFIG_BIOSEMU /* x86 bios emulator for vga bios */
389#define CONFIG_ATI_RADEON_FB /* use radeon framebuffer driver */
390#define VIDEO_IO_OFFSET 0xe8000000
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200391#define CONFIG_SYS_ISA_IO_BASE_ADDRESS VIDEO_IO_OFFSET
Anatolij Gustschin05d5eca2008-02-21 12:52:29 +0100392#define CONFIG_VIDEO_LOGO
Anatolij Gustschin05d5eca2008-02-21 12:52:29 +0100393#define CONFIG_SPLASH_SCREEN
Anatolij Gustschin05d5eca2008-02-21 12:52:29 +0100394#endif
395
Larry Johnsonf35b86b2008-01-18 21:49:05 -0500396#endif /* __CONFIG_H */