blob: df9d5235e98cc5e1afdf920dfbdfcf06fed9e6de [file] [log] [blame]
Alessandro Rubinid5254f12009-01-24 18:10:37 +01001/*
2 * (C) Copyright 2005
3 * STMicroelectronics.
Alessandro Rubiniee1363f2009-06-22 09:18:37 +02004 * Configuration settings for the "Nomadik Hardware Kit" NHK-8815,
5 * the evaluation board for the Nomadik 8815 System on Chip.
Alessandro Rubinid5254f12009-01-24 18:10:37 +01006 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#ifndef __CONFIG_H
27#define __CONFIG_H
28
Alessandro Rubinief339cc2009-02-09 15:53:31 +010029#include <nomadik.h>
30
Alessandro Rubinid5254f12009-01-24 18:10:37 +010031#define CONFIG_ARM926EJS
32#define CONFIG_NOMADIK
33#define CONFIG_NOMADIK_8815
34#define CONFIG_NOMADIK_NDK15
35#define CONFIG_NOMADIK_NHK15
36
37#define CONFIG_SKIP_LOWLEVEL_INIT /* we have already been loaded to RAM */
38
39/* commands */
40#include <config_cmd_default.h>
Alessandro Rubinid3be1bc2009-02-09 15:53:33 +010041
42#define CONFIG_CMD_NET
Alessandro Rubinid5254f12009-01-24 18:10:37 +010043#define CONFIG_CMD_PING
44#define CONFIG_CMD_DHCP
Alessandro Rubinid3be1bc2009-02-09 15:53:33 +010045#define CONFIG_CMD_NFS
Alessandro Rubini0d8c6ea2009-02-09 15:53:31 +010046/* There is no NOR flash, so undefine these commands */
Alessandro Rubinid5254f12009-01-24 18:10:37 +010047#undef CONFIG_CMD_FLASH
48#undef CONFIG_CMD_IMLS
Alessandro Rubini0d8c6ea2009-02-09 15:53:31 +010049#define CONFIG_SYS_NO_FLASH
50/* There is NAND storage */
51#define CONFIG_NAND_NOMADIK
Alessandro Rubini0d8c6ea2009-02-09 15:53:31 +010052#define CONFIG_CMD_JFFS2
Alessandro Rubinid5254f12009-01-24 18:10:37 +010053
54/* user interface */
55#define CONFIG_SYS_LONGHELP
56#define CONFIG_SYS_HUSH_PARSER
57#define CONFIG_SYS_PROMPT "Nomadik> "
58#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
59#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
60#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \
61 + sizeof(CONFIG_SYS_PROMPT) + 16)
62#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Arg Buffer Size */
63#define CONFIG_SYS_MAXARGS 16
64#define CONFIG_SYS_LOAD_ADDR 0x800000 /* default load address */
65#define CONFIG_SYS_LOADS_BAUD_CHANGE
66
67/* boot config */
68#define CONFIG_SETUP_MEMORY_TAGS
69#define CONFIG_INITRD_TAG
70#define CONFIG_CMDLINE_TAG
71#define CONFIG_BOOTDELAY 1
72#define CONFIG_BOOTARGS "root=/dev/ram0 console=ttyAMA1,115200n8 init=linuxrc"
73#define CONFIG_BOOTCOMMAND "fsload 0x100000 kernel.uimg;" \
74 " fsload 0x800000 initrd.gz.uimg;" \
75 " bootm 0x100000 0x800000"
76
77/* memory-related information */
78#define CONFIG_NR_DRAM_BANKS 2
79#define PHYS_SDRAM_1 0x00000000 /* DDR-SDRAM Bank #1 */
80#define PHYS_SDRAM_1_SIZE 0x04000000 /* 64 MB */
81#define PHYS_SDRAM_2 0x08000000 /* SDR-SDRAM BANK #2*/
82#define PHYS_SDRAM_2_SIZE 0x04000000 /* 64 MB */
83
84#define CONFIG_STACKSIZE (128 * 1024) /* regular stack */
85#ifdef CONFIG_USE_IRQ
86# define CONFIG_STACKSIZE_IRQ (4 * 1024) /* IRQ stack */
87# define CONFIG_STACKSIZE_FIQ (4 * 1024) /* FIQ stack */
88#endif
89
90#define CONFIG_SYS_MEMTEST_START 0x00000000
91#define CONFIG_SYS_MEMTEST_END 0x0FFFFFFF
92#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 256 * 1024)
93#define CONFIG_SYS_GBL_DATA_SIZE 128 /* for initial data */
94
95#define CONFIG_MISC_INIT_R /* call misc_init_r during start up */
96
97/* timing informazion */
98#define CONFIG_SYS_HZ (2400000 / 256) /* Timer0: 2.4Mhz + divider */
99#define CONFIG_SYS_TIMERBASE 0x101E2000
Alessandro Rubinid5254f12009-01-24 18:10:37 +0100100
101/* serial port (PL011) configuration */
102#define CONFIG_PL011_SERIAL
103#define CONFIG_CONS_INDEX 1
104#define CONFIG_BAUDRATE 115200
105#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
106#define CFG_SERIAL0 0x101FD000
107#define CFG_SERIAL1 0x101FB000
108
109#define CONFIG_PL01x_PORTS { (void *)CFG_SERIAL0, (void *)CFG_SERIAL1 }
110#define CONFIG_PL011_CLOCK 48000000
111
112/* Ethernet */
113#define PCI_MEMORY_VADDR 0xe8000000
114#define PCI_IO_VADDR 0xee000000
115#define __io(a) ((void __iomem *)(PCI_IO_VADDR + (a)))
116#define __mem_isa(a) ((a) + PCI_MEMORY_VADDR)
117
118#define CONFIG_DRIVER_SMC91111 /* Using SMC91c111*/
119#define CONFIG_SMC91111_BASE 0x34000300
120#undef CONFIG_SMC91111_EXT_PHY /* Internal PHY */
121#define CONFIG_SMC_USE_32_BIT
122#define CONFIG_BOOTFILE "uImage"
123
124/* flash memory and filesystem information */
125#define CONFIG_DOS_PARTITION
126#define CONFIG_MTD_ONENAND_VERIFY_WRITE
127#define CONFIG_SYS_ONENAND_BASE 0x30000000
128#define CONFIG_SYS_MAX_NAND_DEVICE 1
Alessandro Rubini0d8c6ea2009-02-09 15:53:31 +0100129#define CONFIG_SYS_NAND_BASE 0x40000000 /* SMPS0n */
Alessandro Rubinid5254f12009-01-24 18:10:37 +0100130
131#ifdef CONFIG_BOOT_ONENAND
132
Jean-Christophe PLAGNIOL-VILLARD25790192009-02-22 17:08:41 +0100133# define CONFIG_CMD_ONENAND /* Temporary: nand and onenand can't coexist */
Alessandro Rubinid5254f12009-01-24 18:10:37 +0100134 /* Partition Size Start
135 * XloaderTOC + X-Loader 256KB 0x00000000
136 * Memory init function 256KB 0x00040000
137 * U-Boot 2MB 0x00080000
138 * Sysimage (kernel + ramdisk) 4MB 0x00280000
139 * JFFS2 Root filesystem 22MB 0x00680000
140 * JFFS2 User Data 227.5MB 0x01C80000
141 */
142# define CONFIG_JFFS2_PART_SIZE 0x400000
143# define CONFIG_JFFS2_PART_OFFSET 0x280000
144
145# define CONFIG_ENV_IS_IN_ONENAND
146# define CONFIG_ENV_SIZE (256 * 1024)
147# define CONFIG_ENV_ADDR 0x30300000
148
149#else /* ! CONFIG_BOOT_ONENAND */
150
Jean-Christophe PLAGNIOL-VILLARD25790192009-02-22 17:08:41 +0100151# define CONFIG_CMD_NAND /* Temporary: nand and onenand can't coexist */
Alessandro Rubinid5254f12009-01-24 18:10:37 +0100152
153# define CONFIG_JFFS2_DEV "nand0"
154# define CONFIG_JFFS2_NAND 1 /* For the jffs2 support*/
155# define CONFIG_JFFS2_PART_SIZE 0x00300000
156# define CONFIG_JFFS2_PART_OFFSET 0x00280000
157
158# define CONFIG_ENV_IS_IN_NAND
Alessandro Rubini0d8c6ea2009-02-09 15:53:31 +0100159# define CONFIG_ENV_SIZE 0x20000 /* 128 Kb - one sector */
Alessandro Rubinid5254f12009-01-24 18:10:37 +0100160# define CONFIG_ENV_OFFSET (0x8000000 - CONFIG_ENV_SIZE)
161
162#endif /* CONFIG_BOOT_ONENAND */
163
Alessandro Rubinid5254f12009-01-24 18:10:37 +0100164/* this is needed to make hello_world.c and other stuff happy */
165#define CONFIG_SYS_MAX_FLASH_SECT 512
166#define CONFIG_SYS_MAX_FLASH_BANKS 1
167
Alessandro Rubinid5254f12009-01-24 18:10:37 +0100168#endif /* __CONFIG_H */