blob: 45a7c53f7d90dd6969804526294063647b450ba8 [file] [log] [blame]
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +08001/*
2 * (C) Copyright 2009 Faraday Technology
3 * Po-Yu Chuang <ratbert@faraday-tech.com>
4 *
5 * Configuation settings for the Faraday A320 board.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#ifndef __CONFIG_H
23#define __CONFIG_H
24
25#include <asm/arch/a320.h>
26
Po-Yu Chuang78991472011-07-18 16:55:39 +000027/*
Po-Yu Chuangfd90b0d2011-07-18 16:56:53 +000028 * Linux kernel tagged list
29 */
30#define CONFIG_CMDLINE_TAG
31#define CONFIG_SETUP_MEMORY_TAGS
32
33/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +080034 * CPU and Board Configuration Options
35 */
36#undef CONFIG_USE_IRQ /* we don't need IRQ/FIQ stuff */
37
38#undef CONFIG_SKIP_LOWLEVEL_INIT
39
Po-Yu Chuang78991472011-07-18 16:55:39 +000040/*
Po-Yu Chuang8dc667c2011-02-17 19:35:23 +000041 * Power Management Unit
42 */
43#define CONFIG_FTPMU010_POWER
44
Po-Yu Chuang78991472011-07-18 16:55:39 +000045/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +080046 * Timer
47 */
48#define CONFIG_SYS_HZ 1000 /* timer ticks per second */
49
Po-Yu Chuang78991472011-07-18 16:55:39 +000050/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +080051 * Real Time Clock
52 */
53#define CONFIG_RTC_FTRTC010
54
Po-Yu Chuang78991472011-07-18 16:55:39 +000055/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +080056 * Serial console configuration
57 */
58
59/* FTUART is a high speed NS 16C550A compatible UART */
60#define CONFIG_BAUDRATE 38400
61#define CONFIG_CONS_INDEX 1
62#define CONFIG_SYS_NS16550
63#define CONFIG_SYS_NS16550_SERIAL
64#define CONFIG_SYS_NS16550_COM1 0x98200000
65#define CONFIG_SYS_NS16550_REG_SIZE -4
66#define CONFIG_SYS_NS16550_CLK 18432000
67
68/* valid baudrates */
69#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
70
Po-Yu Chuang78991472011-07-18 16:55:39 +000071/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +080072 * Ethernet
73 */
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +080074#define CONFIG_FTMAC100
75
76#define CONFIG_BOOTDELAY 3
77
Po-Yu Chuang78991472011-07-18 16:55:39 +000078/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +080079 * Command line configuration.
80 */
81#include <config_cmd_default.h>
82
83#define CONFIG_CMD_CACHE
84#define CONFIG_CMD_DATE
85#define CONFIG_CMD_PING
86
Po-Yu Chuang78991472011-07-18 16:55:39 +000087/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +080088 * Miscellaneous configurable options
89 */
90#define CONFIG_SYS_LONGHELP /* undef to save memory */
91#define CONFIG_SYS_PROMPT "A320 # " /* Monitor Command Prompt */
92#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
93
94/* Print Buffer Size */
95#define CONFIG_SYS_PBSIZE \
96 (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
97
98/* max number of command args */
99#define CONFIG_SYS_MAXARGS 16
100
101/* Boot Argument Buffer Size */
102#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
103
Po-Yu Chuang78991472011-07-18 16:55:39 +0000104/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800105 * Stack sizes
106 *
107 * The stack sizes are set up in start.S using the settings below
108 */
109#define CONFIG_STACKSIZE (128 * 1024) /* regular stack */
110#ifdef CONFIG_USE_IRQ
111#define CONFIG_STACKSIZE_IRQ (4 * 1024) /* IRQ stack */
112#define CONFIG_STACKSIZE_FIQ (4 * 1024) /* FIQ stack */
113#endif
114
Po-Yu Chuang78991472011-07-18 16:55:39 +0000115/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800116 * Size of malloc() pool
117 */
118#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128 * 1024)
119
Po-Yu Chuang78991472011-07-18 16:55:39 +0000120/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800121 * SDRAM controller configuration
122 */
123#define CONFIG_SYS_FTSDMC020_TP0 (FTSDMC020_TP0_TRAS(2) | \
124 FTSDMC020_TP0_TRP(1) | \
125 FTSDMC020_TP0_TRCD(1) | \
126 FTSDMC020_TP0_TRF(3) | \
127 FTSDMC020_TP0_TWR(1) | \
128 FTSDMC020_TP0_TCL(2))
129
130#define CONFIG_SYS_FTSDMC020_TP1 (FTSDMC020_TP1_INI_PREC(4) | \
131 FTSDMC020_TP1_INI_REFT(8) | \
132 FTSDMC020_TP1_REF_INTV(0x180))
133
134#define CONFIG_SYS_FTSDMC020_BANK0_BSR (FTSDMC020_BANK_ENABLE | \
135 FTSDMC020_BANK_DDW_X16 | \
136 FTSDMC020_BANK_DSZ_256M | \
137 FTSDMC020_BANK_MBW_32 | \
138 FTSDMC020_BANK_SIZE_64M)
139
Po-Yu Chuang78991472011-07-18 16:55:39 +0000140/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800141 * Physical Memory Map
142 */
143#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
144#define PHYS_SDRAM_1 0x10000000 /* SDRAM Bank #1 */
145#define PHYS_SDRAM_1_SIZE 0x04000000 /* 64 MB */
146
Po-Yu Chuang5eb522a2010-12-19 23:07:23 +0000147#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
148#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - \
149 GENERATED_GBL_DATA_SIZE)
150
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800151/*
152 * Load address and memory test area should agree with
153 * board/faraday/a320/config.mk. Be careful not to overwrite U-boot itself.
154 */
Po-Yu Chuang5eb522a2010-12-19 23:07:23 +0000155#define CONFIG_SYS_LOAD_ADDR (PHYS_SDRAM_1 + 0x2000000)
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800156
157/* memtest works on 63 MB in DRAM */
Po-Yu Chuang5eb522a2010-12-19 23:07:23 +0000158#define CONFIG_SYS_MEMTEST_START PHYS_SDRAM_1
159#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + 0x3F00000)
160
161#define CONFIG_SYS_TEXT_BASE 0
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800162
Po-Yu Chuang78991472011-07-18 16:55:39 +0000163/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800164 * Static memory controller configuration
165 */
166
Macpaul Lin00d10eb2011-04-15 21:37:11 +0000167#define CONFIG_FTSMC020
168#include <faraday/ftsmc020.h>
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800169
170#define FTSMC020_BANK0_CONFIG (FTSMC020_BANK_ENABLE | \
171 FTSMC020_BANK_BASE(PHYS_FLASH_1) | \
172 FTSMC020_BANK_SIZE_1M | \
173 FTSMC020_BANK_MBW_8)
174
175#define FTSMC020_BANK0_TIMING (FTSMC020_TPR_RBE | \
176 FTSMC020_TPR_AST(3) | \
177 FTSMC020_TPR_CTW(3) | \
178 FTSMC020_TPR_ATI(0xf) | \
179 FTSMC020_TPR_AT2(3) | \
180 FTSMC020_TPR_WTC(3) | \
181 FTSMC020_TPR_AHT(3) | \
182 FTSMC020_TPR_TRNA(0xf))
183
184#define FTSMC020_BANK1_CONFIG (FTSMC020_BANK_ENABLE | \
185 FTSMC020_BANK_BASE(PHYS_FLASH_2) | \
186 FTSMC020_BANK_SIZE_32M | \
187 FTSMC020_BANK_MBW_32)
188
189#define FTSMC020_BANK1_TIMING (FTSMC020_TPR_AST(3) | \
190 FTSMC020_TPR_CTW(3) | \
191 FTSMC020_TPR_ATI(0xf) | \
192 FTSMC020_TPR_AT2(3) | \
193 FTSMC020_TPR_WTC(3) | \
194 FTSMC020_TPR_AHT(3) | \
195 FTSMC020_TPR_TRNA(0xf))
196
197#define CONFIG_SYS_FTSMC020_CONFIGS { \
198 { FTSMC020_BANK0_CONFIG, FTSMC020_BANK0_TIMING, }, \
199 { FTSMC020_BANK1_CONFIG, FTSMC020_BANK1_TIMING, }, \
200}
201
Po-Yu Chuang78991472011-07-18 16:55:39 +0000202/*
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800203 * FLASH and environment organization
204 */
205
206/* use CFI framework */
207#define CONFIG_SYS_FLASH_CFI
208#define CONFIG_FLASH_CFI_DRIVER
209
210/* support JEDEC */
211#define CONFIG_FLASH_CFI_LEGACY
212#define CONFIG_SYS_FLASH_LEGACY_512Kx8
213
214#define PHYS_FLASH_1 0x00000000
215#define PHYS_FLASH_2 0x00400000
216#define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
217#define CONFIG_SYS_FLASH_BANKS_LIST { PHYS_FLASH_1, PHYS_FLASH_2, }
218
219#define CONFIG_SYS_MONITOR_BASE PHYS_FLASH_1
220
221/* max number of memory banks */
222#define CONFIG_SYS_MAX_FLASH_BANKS 2
223
224/* max number of sectors on one chip */
225#define CONFIG_SYS_MAX_FLASH_SECT 512
226
227#undef CONFIG_SYS_FLASH_EMPTY_INFO
228
229/* environments */
230#define CONFIG_ENV_IS_IN_FLASH
Po-Yu Chuang5eb522a2010-12-19 23:07:23 +0000231#define CONFIG_ENV_ADDR (PHYS_FLASH_1 + 0x60000)
Po-Yu Chuang43a5f0d2009-11-11 17:27:30 +0800232#define CONFIG_ENV_SIZE 0x20000
233
234#endif /* __CONFIG_H */