a2b347a8288e22e92a45a25fabd0220c2277c4db
[platform/kernel/u-boot.git] / include / configs / a320evb.h
1 /*
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
27 /*
28  * mach-type definition
29  */
30 #define MACH_TYPE_FARADAY       758
31 #define CONFIG_MACH_TYPE        MACH_TYPE_FARADAY
32
33 /*
34  * Linux kernel tagged list
35  */
36 #define CONFIG_CMDLINE_TAG
37 #define CONFIG_SETUP_MEMORY_TAGS
38
39 /*
40  * CPU and Board Configuration Options
41  */
42 #undef CONFIG_USE_IRQ           /* we don't need IRQ/FIQ stuff */
43
44 #undef CONFIG_SKIP_LOWLEVEL_INIT
45
46 /*
47  * Power Management Unit
48  */
49 #define CONFIG_FTPMU010_POWER
50
51 /*
52  * Timer
53  */
54 #define CONFIG_SYS_HZ           1000    /* timer ticks per second */
55
56 /*
57  * Real Time Clock
58  */
59 #define CONFIG_RTC_FTRTC010
60
61 /*
62  * Serial console configuration
63  */
64
65 /* FTUART is a high speed NS 16C550A compatible UART */
66 #define CONFIG_BAUDRATE                 38400
67 #define CONFIG_CONS_INDEX               1
68 #define CONFIG_SYS_NS16550
69 #define CONFIG_SYS_NS16550_SERIAL
70 #define CONFIG_SYS_NS16550_COM1         0x98200000
71 #define CONFIG_SYS_NS16550_REG_SIZE     -4
72 #define CONFIG_SYS_NS16550_CLK          18432000
73
74 /*
75  * Ethernet
76  */
77 #define CONFIG_FTMAC100
78
79 #define CONFIG_BOOTDELAY        3
80
81 /*
82  * Command line configuration.
83  */
84 #include <config_cmd_default.h>
85
86 #define CONFIG_CMD_CACHE
87 #define CONFIG_CMD_DATE
88 #define CONFIG_CMD_PING
89
90 /*
91  * Miscellaneous configurable options
92  */
93 #define CONFIG_SYS_LONGHELP                     /* undef to save memory */
94 #define CONFIG_SYS_PROMPT       "A320 # "       /* Monitor Command Prompt */
95 #define CONFIG_SYS_CBSIZE       256             /* Console I/O Buffer Size */
96
97 /* Print Buffer Size */
98 #define CONFIG_SYS_PBSIZE       \
99         (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
100
101 /* max number of command args */
102 #define CONFIG_SYS_MAXARGS      16
103
104 /* Boot Argument Buffer Size */
105 #define CONFIG_SYS_BARGSIZE     CONFIG_SYS_CBSIZE
106
107 /*
108  * Stack sizes
109  *
110  * The stack sizes are set up in start.S using the settings below
111  */
112 #define CONFIG_STACKSIZE        (128 * 1024)    /* regular stack */
113 #ifdef CONFIG_USE_IRQ
114 #define CONFIG_STACKSIZE_IRQ    (4 * 1024)      /* IRQ stack */
115 #define CONFIG_STACKSIZE_FIQ    (4 * 1024)      /* FIQ stack */
116 #endif
117
118 /*
119  * Size of malloc() pool
120  */
121 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 128 * 1024)
122
123 /*
124  * SDRAM controller configuration
125  */
126 #define CONFIG_SYS_FTSDMC020_TP0        (FTSDMC020_TP0_TRAS(2) |        \
127                                          FTSDMC020_TP0_TRP(1)  |        \
128                                          FTSDMC020_TP0_TRCD(1) |        \
129                                          FTSDMC020_TP0_TRF(3)  |        \
130                                          FTSDMC020_TP0_TWR(1)  |        \
131                                          FTSDMC020_TP0_TCL(2))
132
133 #define CONFIG_SYS_FTSDMC020_TP1        (FTSDMC020_TP1_INI_PREC(4) |    \
134                                          FTSDMC020_TP1_INI_REFT(8) |    \
135                                          FTSDMC020_TP1_REF_INTV(0x180))
136
137 #define CONFIG_SYS_FTSDMC020_BANK0_BSR  (FTSDMC020_BANK_ENABLE   |      \
138                                          FTSDMC020_BANK_DDW_X16  |      \
139                                          FTSDMC020_BANK_DSZ_256M |      \
140                                          FTSDMC020_BANK_MBW_32   |      \
141                                          FTSDMC020_BANK_SIZE_64M)
142
143 /*
144  * Physical Memory Map
145  */
146 #define CONFIG_NR_DRAM_BANKS    1               /* we have 1 bank of DRAM */
147 #define PHYS_SDRAM_1            0x10000000      /* SDRAM Bank #1 */
148 #define PHYS_SDRAM_1_SIZE       0x04000000      /* 64 MB */
149
150 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
151 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + 0x1000 - \
152                                         GENERATED_GBL_DATA_SIZE)
153
154 /*
155  * Load address and memory test area should agree with
156  * board/faraday/a320/config.mk. Be careful not to overwrite U-boot itself.
157  */
158 #define CONFIG_SYS_LOAD_ADDR            (PHYS_SDRAM_1 + 0x2000000)
159
160 /* memtest works on 63 MB in DRAM */
161 #define CONFIG_SYS_MEMTEST_START        PHYS_SDRAM_1
162 #define CONFIG_SYS_MEMTEST_END          (PHYS_SDRAM_1 + 0x3F00000)
163
164 #define CONFIG_SYS_TEXT_BASE            0
165
166 /*
167  * Static memory controller configuration
168  */
169
170 #define CONFIG_FTSMC020
171 #include <faraday/ftsmc020.h>
172
173 #define FTSMC020_BANK0_CONFIG   (FTSMC020_BANK_ENABLE             |     \
174                                  FTSMC020_BANK_BASE(PHYS_FLASH_1) |     \
175                                  FTSMC020_BANK_SIZE_1M            |     \
176                                  FTSMC020_BANK_MBW_8)
177
178 #define FTSMC020_BANK0_TIMING   (FTSMC020_TPR_RBE      |        \
179                                  FTSMC020_TPR_AST(3)   |        \
180                                  FTSMC020_TPR_CTW(3)   |        \
181                                  FTSMC020_TPR_ATI(0xf) |        \
182                                  FTSMC020_TPR_AT2(3)   |        \
183                                  FTSMC020_TPR_WTC(3)   |        \
184                                  FTSMC020_TPR_AHT(3)   |        \
185                                  FTSMC020_TPR_TRNA(0xf))
186
187 #define FTSMC020_BANK1_CONFIG   (FTSMC020_BANK_ENABLE             |     \
188                                  FTSMC020_BANK_BASE(PHYS_FLASH_2) |     \
189                                  FTSMC020_BANK_SIZE_32M           |     \
190                                  FTSMC020_BANK_MBW_32)
191
192 #define FTSMC020_BANK1_TIMING   (FTSMC020_TPR_AST(3)   |        \
193                                  FTSMC020_TPR_CTW(3)   |        \
194                                  FTSMC020_TPR_ATI(0xf) |        \
195                                  FTSMC020_TPR_AT2(3)   |        \
196                                  FTSMC020_TPR_WTC(3)   |        \
197                                  FTSMC020_TPR_AHT(3)   |        \
198                                  FTSMC020_TPR_TRNA(0xf))
199
200 #define CONFIG_SYS_FTSMC020_CONFIGS     {                       \
201         { FTSMC020_BANK0_CONFIG, FTSMC020_BANK0_TIMING, },      \
202         { FTSMC020_BANK1_CONFIG, FTSMC020_BANK1_TIMING, },      \
203 }
204
205 /*
206  * FLASH and environment organization
207  */
208
209 /* use CFI framework */
210 #define CONFIG_SYS_FLASH_CFI
211 #define CONFIG_FLASH_CFI_DRIVER
212
213 /* support JEDEC */
214 #define CONFIG_FLASH_CFI_LEGACY
215 #define CONFIG_SYS_FLASH_LEGACY_512Kx8
216
217 #define PHYS_FLASH_1                    0x00000000
218 #define PHYS_FLASH_2                    0x00400000
219 #define CONFIG_SYS_FLASH_BASE           PHYS_FLASH_1
220 #define CONFIG_SYS_FLASH_BANKS_LIST     { PHYS_FLASH_1, PHYS_FLASH_2, }
221
222 #define CONFIG_SYS_MONITOR_BASE         PHYS_FLASH_1
223
224 /* max number of memory banks */
225 #define CONFIG_SYS_MAX_FLASH_BANKS      2
226
227 /* max number of sectors on one chip */
228 #define CONFIG_SYS_MAX_FLASH_SECT       512
229
230 #undef CONFIG_SYS_FLASH_EMPTY_INFO
231
232 /* environments */
233 #define CONFIG_ENV_IS_IN_FLASH
234 #define CONFIG_ENV_ADDR                 (PHYS_FLASH_1 + 0x60000)
235 #define CONFIG_ENV_SIZE                 0x20000
236
237 #endif  /* __CONFIG_H */