blob: 3f1419e5ab51661fe3e18c11f90ddb3a888becfd [file] [log] [blame]
wdenk9f664dd2004-06-09 21:50:45 +00001/*
2 * include/configs/mx1ads.h
wdenk9e930b62004-06-19 21:19:10 +00003 *
wdenk9f664dd2004-06-09 21:50:45 +00004 * (c) Copyright 2004
5 * Techware Information Technology, Inc.
6 * http://www.techware.com.tw/
7 *
8 * Ming-Len Wu <minglen_wu@techware.com.tw>
9 *
10 * This is the Configuration setting for Motorola MX1ADS board
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenk7ac16102004-08-01 22:48:16 +000019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk9f664dd2004-06-09 21:50:45 +000020 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
wdenk9f664dd2004-06-09 21:50:45 +000028#ifndef __CONFIG_H
29#define __CONFIG_H
30
31/*
32 * If we are developing, we might want to start armboot from ram
33 * so we MUST NOT initialize critical regs like mem-timing ...
34 */
35#define CONFIG_INIT_CRITICAL /* undef for developing */
36
37/*
38 * High Level Configuration Options
39 * (easy to change)
40 */
41#define CONFIG_ARM920T 1 /* This is an ARM920T Core */
wdenk7ac16102004-08-01 22:48:16 +000042#define CONFIG_IMX 1 /* It's a Motorola MC9328 SoC */
43#define CONFIG_MX1ADS 1 /* on a Motorola MX1ADS Board */
44#undef CONFIG_USE_IRQ /* we don't need IRQ/FIQ stuff */
wdenk9f664dd2004-06-09 21:50:45 +000045
wdenk7ac16102004-08-01 22:48:16 +000046/*
47 * Select serial console configuration
48 */
49#define CONFIG_IMX_SERIAL1 /* internal uart 1 */
50/* #define _CONFIG_UART2 */ /* internal uart 2 */
51/* #define CONFIG_SILENT_CONSOLE */ /* use this to disable output */
wdenk9f664dd2004-06-09 21:50:45 +000052
wdenk7ac16102004-08-01 22:48:16 +000053#define BOARD_LATE_INIT 1
wdenk9f664dd2004-06-09 21:50:45 +000054#define USE_920T_MMU 1
wdenk9f664dd2004-06-09 21:50:45 +000055
wdenk9e930b62004-06-19 21:19:10 +000056#if 0
wdenk9f664dd2004-06-09 21:50:45 +000057#define CFG_MX1_GPCR 0x000003AB /* for MX1ADS 0L44N */
58#define CFG_MX1_GPCR 0x000003AB /* for MX1ADS 0L44N */
59#define CFG_MX1_GPCR 0x000003AB /* for MX1ADS 0L44N */
wdenk9e930b62004-06-19 21:19:10 +000060#endif
wdenk9f664dd2004-06-09 21:50:45 +000061
62/*
63 * Size of malloc() pool
64 */
65
66#define CFG_MALLOC_LEN (CFG_ENV_SIZE + 128*1024)
wdenk7ac16102004-08-01 22:48:16 +000067
68
wdenk9f664dd2004-06-09 21:50:45 +000069#define CFG_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
70
71/*
72 * CS8900 Ethernet drivers
73 */
74#define CONFIG_DRIVER_CS8900 1 /* we have a CS8900 on-board */
75#define CS8900_BASE 0x15000300
wdenk7ac16102004-08-01 22:48:16 +000076#define CS8900_BUS16 1 /* the Linux driver does accesses as shorts */
wdenk9f664dd2004-06-09 21:50:45 +000077
78/*
79 * select serial console configuration
80 */
81
wdenk7ac16102004-08-01 22:48:16 +000082/* #define CONFIG_UART1 */
wdenk9f664dd2004-06-09 21:50:45 +000083/* #define CONFIG_UART2 1 */
84
85#define CONFIG_BAUDRATE 115200
86
87/***********************************************************
88 * Command definition
89 ***********************************************************/
90
91#define CONFIG_COMMANDS \
92 (CONFIG_CMD_DFL | \
93 CFG_CMD_CACHE | \
wdenk7ac16102004-08-01 22:48:16 +000094 CFG_CMD_REGINFO | \
wdenk9e930b62004-06-19 21:19:10 +000095 CFG_CMD_ELF)
wdenk9f664dd2004-06-09 21:50:45 +000096
97/* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
98#include <cmd_confdefs.h>
99
100#define CONFIG_BOOTDELAY 3
wdenk7ac16102004-08-01 22:48:16 +0000101#define CONFIG_BOOTARGS "root=/dev/msdk mem=48M"
wdenk9f664dd2004-06-09 21:50:45 +0000102#define CONFIG_BOOTFILE "mx1ads"
wdenk7ac16102004-08-01 22:48:16 +0000103#define CONFIG_BOOTCOMMAND "tftp; bootm"
wdenk9f664dd2004-06-09 21:50:45 +0000104
105#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
106#define CONFIG_KGDB_BAUDRATE 115200 /* speed to run kgdb serial port */
107 /* what's this ? it's not used anywhere */
108#define CONFIG_KGDB_SER_INDEX 1 /* which serial port to use */
109#endif
110
111/*
112 * Miscellaneous configurable options
113 */
wdenk9e930b62004-06-19 21:19:10 +0000114
wdenk7ac16102004-08-01 22:48:16 +0000115#define CFG_HUSH_PARSER 1
wdenk9f664dd2004-06-09 21:50:45 +0000116#define CFG_PROMPT_HUSH_PS2 "> "
wdenk9e930b62004-06-19 21:19:10 +0000117
wdenk7ac16102004-08-01 22:48:16 +0000118#define CFG_LONGHELP /* undef to save memory */
wdenk9f664dd2004-06-09 21:50:45 +0000119
120#ifdef CFG_HUSH_PARSER
121#define CFG_PROMPT "MX1ADS$ " /* Monitor Command Prompt */
122#else
123#define CFG_PROMPT "MX1ADS=> " /* Monitor Command Prompt */
124#endif
125
wdenk7ac16102004-08-01 22:48:16 +0000126#define CFG_CBSIZE 256 /* Console I/O Buffer Size */
127#define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16)
wdenk9f664dd2004-06-09 21:50:45 +0000128 /* Print Buffer Size */
wdenk7ac16102004-08-01 22:48:16 +0000129#define CFG_MAXARGS 16 /* max number of command args */
wdenk9f664dd2004-06-09 21:50:45 +0000130#define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
131
132#define CFG_MEMTEST_START 0x09000000 /* memtest works on */
133#define CFG_MEMTEST_END 0x0AF00000 /* 63 MB in DRAM */
134
wdenk7ac16102004-08-01 22:48:16 +0000135#undef CFG_CLKS_IN_HZ /* everything, incl board info, in Hz */
136#define CFG_LOAD_ADDR 0x08800000 /* default load address */
137/*#define CFG_HZ 1000 */
138#define CFG_HZ 3686400
139#define CFG_CPUSPEED 0x141
wdenk9f664dd2004-06-09 21:50:45 +0000140
141/* valid baudrates */
142#define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
143
144/*-----------------------------------------------------------------------
145 * Stack sizes
146 *
147 * The stack sizes are set up in start.S using the settings below
148 */
149#define CONFIG_STACKSIZE (128*1024) /* regular stack */
150#ifdef CONFIG_USE_IRQ
151#define CONFIG_STACKSIZE_IRQ (4*1024) /* IRQ stack */
152#define CONFIG_STACKSIZE_FIQ (4*1024) /* FIQ stack */
153#endif
154
155/*-----------------------------------------------------------------------
156 * Physical Memory Map
157 */
wdenk9e930b62004-06-19 21:19:10 +0000158
wdenk7ac16102004-08-01 22:48:16 +0000159#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of SDRAM */
160#define PHYS_SDRAM_1 0x08000000 /* SDRAM on CSD0 */
161#define PHYS_SDRAM_1_SIZE 0x04000000 /* 64 MB */
wdenk9f664dd2004-06-09 21:50:45 +0000162
wdenk7ac16102004-08-01 22:48:16 +0000163#define CFG_MAX_FLASH_BANKS 1 /* 1 bank of SyncFlash */
164#define CFG_FLASH_BASE 0x0C000000 /* SyncFlash on CSD1 */
165#define FLASH_BANK_SIZE 0x01000000 /* 16 MB Total */
wdenk9f664dd2004-06-09 21:50:45 +0000166
167/*-----------------------------------------------------------------------
168 * FLASH and environment organization
169 */
170
wdenk9f664dd2004-06-09 21:50:45 +0000171#define CONFIG_SYNCFLASH 1
172#define PHYS_FLASH_SIZE 0x01000000
173#define CFG_MAX_FLASH_SECT (16)
wdenk7ac16102004-08-01 22:48:16 +0000174#define CFG_ENV_ADDR (CFG_FLASH_BASE+0x00ff8000)
wdenk9e930b62004-06-19 21:19:10 +0000175
wdenk7ac16102004-08-01 22:48:16 +0000176#define CFG_ENV_IS_IN_FLASH 1
177#define CFG_ENV_SIZE 0x04000 /* Total Size of Environment Sector */
wdenk9f664dd2004-06-09 21:50:45 +0000178#define CFG_ENV_SECT_SIZE 0x100000
wdenk7ac16102004-08-01 22:48:16 +0000179
180/*-----------------------------------------------------------------------
181 * Enable passing ATAGS
182 */
183
184#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
185#define CONFIG_SETUP_MEMORY_TAGS 1
186
187#define CONFIG_SYS_CLK_FREQ 16780000
188#define CONFIG_SYSPLL_CLK_FREQ 16000000
189
wdenk9f664dd2004-06-09 21:50:45 +0000190#endif /* __CONFIG_H */