blob: 20e1087daee1652cf690baa3111ba2800543d3c1 [file] [log] [blame]
Matthias Weisserdcf0dca2010-08-09 13:31:51 +02001/*
2 * (C) Copyright 2010
3 * Matthias Weisser <weisserm@arcor.de>
4 *
5 * Configuation settings for the jadecpu board
6 *
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
29#define CONFIG_MB86R0x
30#define CONFIG_MB86R0x_IOCLK get_bus_freq(0)
31#define CONFIG_SYS_HZ 1000
Matthias Weisser71a7b522011-06-29 02:08:07 +000032#define CONFIG_SYS_TEXT_BASE 0x10000000
Matthias Weisserdcf0dca2010-08-09 13:31:51 +020033
34#define CONFIG_ARM926EJS 1 /* This is an ARM926EJS Core */
35#undef CONFIG_USE_IRQ /* we don't need IRQ/FIQ stuff */
36
Matthias Weisser71a7b522011-06-29 02:08:07 +000037#define CONFIG_USE_ARCH_MEMCPY
38#define CONFIG_USE_ARCH_MEMSET
39
Matthias Weisserdcf0dca2010-08-09 13:31:51 +020040/*
41 * Environment settings
42 */
43#define CONFIG_EXTRA_ENV_SETTINGS \
44 "gs_fast_boot=setenv bootdelay 5\0" \
45 "gs_slow_boot=setenv bootdelay 10\0" \
Matthias Weisser71a7b522011-06-29 02:08:07 +000046 "bootcmd=dcache off; mw.l 0x40000000 0 1024; usb start;" \
Matthias Weisserdcf0dca2010-08-09 13:31:51 +020047 "fatls usb 0; fatload usb 0 0x40000000 jadecpu-init.bin;" \
48 "bootelf 0x40000000\0" \
49 ""
50
51#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
52#define CONFIG_SETUP_MEMORY_TAGS 1
53#define CONFIG_INITRD_TAG 1
54#define BOARD_LATE_INIT 1
55
56/*
57 * Compressions
58 */
59#define CONFIG_LZO
60
61/*
62 * Hardware drivers
63 */
64
65/*
66 * Serial
67 */
68#define CONFIG_SERIAL_MULTI
69#define CONFIG_SYS_NS16550
70#define CONFIG_SYS_NS16550_SERIAL
71#define CONFIG_SYS_NS16550_REG_SIZE (-4)
72#define CONFIG_SYS_NS16550_CLK get_bus_freq(0)
73#define CONFIG_SYS_NS16550_COM1 0xfffe1000 /* UART 0 */
74#define CONFIG_SYS_NS16550_COM2 0xfff50000 /* UART 2 */
75#define CONFIG_SYS_NS16550_COM3 0xfff51000 /* UART 3 */
76#define CONFIG_SYS_NS16550_COM4 0xfff43000 /* UART 4 */
77
78#define CONFIG_CONS_INDEX 4
79
80/*
81 * Ethernet
82 */
Matthias Weisserdcf0dca2010-08-09 13:31:51 +020083#define CONFIG_SMC911X
84#define CONFIG_SMC911X_BASE 0x02000000
85#define CONFIG_SMC911X_16_BIT
86
87/*
88 * Video
89 */
90#define CONFIG_VIDEO
91#define CONFIG_VIDEO_MB86R0xGDC
92#define CONFIG_SYS_WHITE_ON_BLACK
93#define CONFIG_CFB_CONSOLE
94#define CONFIG_SYS_CONSOLE_IS_IN_ENV
95#define CONFIG_SYS_CONSOLE_ENV_OVERWRITE
96#define CONFIG_VIDEO_LOGO
97#define CONFIG_SPLASH_SCREEN
98#define CONFIG_SPLASH_SCREEN_ALIGN
99#define CONFIG_VIDEO_BMP_LOGO
100#define CONFIG_VIDEO_BMP_GZIP
101#define CONFIG_VIDEO_BMP_RLE8
102#define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (800*480 + 256*4 + 10*1024)
103#define VIDEO_FB_16BPP_WORD_SWAP
104#define VIDEO_KBD_INIT_FCT 0
105#define VIDEO_TSTC_FCT serial_tstc
106#define VIDEO_GETC_FCT serial_getc
107
108/*
109 * BOOTP options
110 */
111#define CONFIG_BOOTP_BOOTFILESIZE 1
112#define CONFIG_BOOTP_BOOTPATH 1
113#define CONFIG_BOOTP_GATEWAY 1
114#define CONFIG_BOOTP_HOSTNAME 1
115
116/*
117 * Command line configuration.
118 */
119#include <config_cmd_default.h>
120#undef CONFIG_CMD_BDI
121#undef CONFIG_CMD_FPGA
122#undef CONFIG_CMD_IMLS
123#undef CONFIG_CMD_LOADS
124#undef CONFIG_CMD_SOURCE
125#undef CONFIG_CMD_NFS
126#undef CONFIG_CMD_XIMG
127
Matthias Weisser71a7b522011-06-29 02:08:07 +0000128#define CONFIG_CMD_BMP
129#define CONFIG_CMD_CAN
130#define CONFIG_CMD_DHCP
131#define CONFIG_CMD_ELF
132#define CONFIG_CMD_FAT
133#define CONFIG_CMD_PING
134#define CONFIG_CMD_USB
135#define CONFIG_CMD_CACHE
Matthias Weisserdcf0dca2010-08-09 13:31:51 +0200136
137#define CONFIG_SYS_HUSH_PARSER
138#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
139
140/* USB */
141#define CONFIG_USB_OHCI_NEW
142#define CONFIG_SYS_USB_OHCI_REGS_BASE 0xFFF81000
143#define CONFIG_SYS_USB_OHCI_SLOT_NAME "mb86r0x"
144#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 1
145#define CONFIG_USB_STORAGE
146#define CONFIG_DOS_PARTITION
147
148/* SDRAM */
149#define CONFIG_NR_DRAM_BANKS 1
150#define PHYS_SDRAM 0x40000000 /* Start address of DDRRAM */
151#define PHYS_SDRAM_SIZE 0x08000000 /* 128 megs */
152
Matthias Weisser4036dea2010-09-21 15:37:44 +0200153#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
154#define CONFIG_SYS_INIT_SP_ADDR 0x01008000
155
Matthias Weisserdcf0dca2010-08-09 13:31:51 +0200156/*
157 * FLASH and environment organization
158 */
159#define CONFIG_SYS_FLASH_BASE 0x10000000
160#define CONFIG_SYS_MAX_FLASH_BANKS 1
161#define CONFIG_SYS_MAX_FLASH_SECT 256
162#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
163
164#define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x00040000)
165#define CONFIG_ENV_IS_IN_FLASH 1
166#define CONFIG_ENV_SECT_SIZE (128 * 1024)
167#define CONFIG_ENV_SIZE (128 * 1024)
168
169/*
170 * CFI FLASH driver setup
171 */
172#define CONFIG_SYS_FLASH_CFI 1
173#define CONFIG_FLASH_CFI_DRIVER 1
174#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* ~10x faster */
175
176#define CONFIG_SYS_LOAD_ADDR 0x40000000 /* load address */
177
178#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM + (512*1024))
179#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM + PHYS_SDRAM_SIZE)
180
181#define CONFIG_BAUDRATE 115200
182#define CONFIG_SYS_BAUDRATE_TABLE {115200, 19200, 38400, 57600, 9600 }
183
184#define CONFIG_SYS_PROMPT "jade> "
185#define CONFIG_SYS_CBSIZE 256
186#define CONFIG_SYS_MAXARGS 16
187#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
188 sizeof(CONFIG_SYS_PROMPT) + 16)
189#define CONFIG_SYS_LONGHELP 1
190#define CONFIG_CMDLINE_EDITING 1
191
192#define CONFIG_PREBOOT ""
193
194#define CONFIG_BOOTDELAY 5
195#define CONFIG_AUTOBOOT_KEYED
196#define CONFIG_AUTOBOOT_PROMPT "boot in %d s\n", bootdelay
197#define CONFIG_AUTOBOOT_DELAY_STR "delaygs"
198#define CONFIG_AUTOBOOT_STOP_STR "stopgs"
199
200/*
201 * Size of malloc() pool
202 */
Matthias Weisser71a7b522011-06-29 02:08:07 +0000203#define CONFIG_SYS_MALLOC_LEN (10 << 20)
204#define CONFIG_SYS_MEM_TOP_HIDE (4 << 20)
Matthias Weisserdcf0dca2010-08-09 13:31:51 +0200205
206#define CONFIG_STACKSIZE (32*1024) /* regular stack */
207
208/*
209 * Clock reset generator init
210 */
211#define CONFIG_SYS_CRG_CRHA_INIT 0xffff
212#define CONFIG_SYS_CRG_CRPA_INIT 0xffff
213#define CONFIG_SYS_CRG_CRPB_INIT 0xfffe
214#define CONFIG_SYS_CRG_CRHB_INIT 0xffff
215#define CONFIG_SYS_CRG_CRAM_INIT 0xffef
216
217/*
218 * Memory controller settings
219 */
220#define CONFIG_SYS_MEMC_MCFMODE0_INIT 0x00000001 /* 16bit */
221#define CONFIG_SYS_MEMC_MCFMODE2_INIT 0x00000001 /* 16bit */
222#define CONFIG_SYS_MEMC_MCFMODE4_INIT 0x00000021 /* 16bit, Page*/
223#define CONFIG_SYS_MEMC_MCFTIM0_INIT 0x16191008
224#define CONFIG_SYS_MEMC_MCFTIM2_INIT 0x03061008
225#define CONFIG_SYS_MEMC_MCFTIM4_INIT 0x03061804
226#define CONFIG_SYS_MEMC_MCFAREA0_INIT 0x000000c0 /* 0x0c000000 1MB */
227#define CONFIG_SYS_MEMC_MCFAREA2_INIT 0x00000020 /* 0x02000000 1MB */
228#define CONFIG_SYS_MEMC_MCFAREA4_INIT 0x001f0000 /* 0x10000000 32 MB */
229
230/*
231 * DDR2 controller init settings
232 */
233#define CONFIG_SYS_DDR2_DRIMS_INIT 0x5555
234#define CONFIG_SYS_CCNT_CDCRC_INIT_1 0x00000002
235#define CONFIG_SYS_CCNT_CDCRC_INIT_2 0x00000003
236#define CONFIG_SYS_DDR2_DRIC1_INIT 0x003f
237#define CONFIG_SYS_DDR2_DRIC2_INIT 0x0000
238#define CONFIG_SYS_DDR2_DRCA_INIT 0xc124 /* 512Mbit DDR2SDRAM x 2 */
239#define CONFIG_SYS_DDR2_DRCM_INIT 0x0032
240#define CONFIG_SYS_DDR2_DRCST1_INIT 0x3418
241#define CONFIG_SYS_DDR2_DRCST2_INIT 0x6e32
242#define CONFIG_SYS_DDR2_DRCR_INIT 0x0141
243#define CONFIG_SYS_DDR2_DRCF_INIT 0x0002
244#define CONFIG_SYS_DDR2_DRASR_INIT 0x0001
245#define CONFIG_SYS_DDR2_DROBS_INIT 0x0001
246#define CONFIG_SYS_DDR2_DROABA_INIT 0x0103
247#define CONFIG_SYS_DDR2_DRIBSODT1_INIT 0x003F
248#define CONFIG_SYS_DDR2_DROS_INIT 0x0001
249
250/*
251 * DRAM init sequence
252 */
253
254/* PALL Command */
255#define CONFIG_SYS_DDR2_INIT_DRIC1_1 0x0017
256#define CONFIG_SYS_DDR2_INIT_DRIC2_1 0x0400
257
258/* EMR(2) command */
259#define CONFIG_SYS_DDR2_INIT_DRIC1_2 0x0006
260#define CONFIG_SYS_DDR2_INIT_DRIC2_2 0x0000
261
262/* EMR(3) command */
263#define CONFIG_SYS_DDR2_INIT_DRIC1_3 0x0007
264#define CONFIG_SYS_DDR2_INIT_DRIC2_3 0x0000
265
266/* EMR(1) command */
267#define CONFIG_SYS_DDR2_INIT_DRIC1_4 0x0005
268#define CONFIG_SYS_DDR2_INIT_DRIC2_4 0x0000
269
270/* MRS command */
271#define CONFIG_SYS_DDR2_INIT_DRIC1_5 0x0004
272#define CONFIG_SYS_DDR2_INIT_DRIC2_5 0x0532
273
274/* PALL command */
275#define CONFIG_SYS_DDR2_INIT_DRIC1_6 0x0017
276#define CONFIG_SYS_DDR2_INIT_DRIC2_6 0x0400
277
278/* REF command 1 */
279#define CONFIG_SYS_DDR2_INIT_DRIC1_7 0x000f
280#define CONFIG_SYS_DDR2_INIT_DRIC2_7 0x0000
281
282/* MRS command */
283#define CONFIG_SYS_DDR2_INIT_DRIC1_8 0x0004
284#define CONFIG_SYS_DDR2_INIT_DRIC2_8 0x0432
285
286/* EMR(1) command */
287#define CONFIG_SYS_DDR2_INIT_DRIC1_9 0x0005
288#define CONFIG_SYS_DDR2_INIT_DRIC2_9 0x0380
289
290/* EMR(1) command */
291#define CONFIG_SYS_DDR2_INIT_DRIC1_10 0x0005
292#define CONFIG_SYS_DDR2_INIT_DRIC2_10 0x0002
293
294#ifdef CONFIG_USE_IRQ
295#error CONFIG_USE_IRQ not supported
296#endif
297
298#endif /* __CONFIG_H */