]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/qong.h
MX31: Add support for NAND to QONG board
[karo-tx-uboot.git] / include / configs / qong.h
1 /*
2  * Copyright (C) 2009, Ilya Yanok, Emcraft Systems, <yanok@emcraft.com>
3  *
4  * Configuration settings for the Dave/DENX QongEVB-LITE board.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19  * MA 02111-1307 USA
20  */
21
22 #ifndef __CONFIG_H
23 #define __CONFIG_H
24
25 #include <asm/arch/mx31-regs.h>
26
27  /* High Level Configuration Options */
28 #define CONFIG_ARM1136          1       /* This is an arm1136 CPU core */
29 #define CONFIG_MX31             1       /* in a mx31 */
30 #define CONFIG_QONG             1
31 #define CONFIG_MX31_HCLK_FREQ   26000000        /* 26MHz */
32 #define CONFIG_MX31_CLK32       32768
33
34 #define CONFIG_DISPLAY_CPUINFO
35 #define CONFIG_DISPLAY_BOARDINFO
36
37 #define CONFIG_CMDLINE_TAG              1       /* enable passing of ATAGs */
38 #define CONFIG_SETUP_MEMORY_TAGS        1
39 #define CONFIG_INITRD_TAG               1
40
41 /*
42  * Size of malloc() pool
43  */
44 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 128 * 1024)
45 /* size in bytes reserved for initial data */
46 #define CONFIG_SYS_GBL_DATA_SIZE        128
47
48 /*
49  * Hardware drivers
50  */
51
52 #define CONFIG_MXC_UART 1
53 #define CONFIG_SYS_MX31_UART1   1
54
55 #define CONFIG_MX31_GPIO
56
57 /* FPGA */
58 #define CONFIG_QONG_FPGA        1
59 #define CONFIG_FPGA_BASE        (CS1_BASE)
60
61 #ifdef CONFIG_QONG_FPGA
62 /* Ethernet */
63 #define CONFIG_DNET             1
64 #define CONFIG_DNET_BASE        (CS1_BASE + QONG_FPGA_PERIPH_SIZE)
65 #define CONFIG_NET_MULTI        1
66
67 /* Framebuffer and LCD */
68 #define CONFIG_LCD
69 #define CONFIG_VIDEO_MX3
70 #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
71 #define CONFIG_SYS_CONSOLE_IS_IN_ENV
72 #define LCD_BPP         LCD_COLOR16
73 #define CONFIG_SPLASH_SCREEN
74 #define CONFIG_CMD_BMP
75 #define CONFIG_BMP_16BPP
76 #define CONFIG_DISPLAY_VBEST_VGG322403
77
78 /*
79  * Reducing the ARP timeout from default 5 seconds to 200ms we speed up the
80  * initial TFTP transfer, should the user wish one, significantly.
81  */
82 #define CONFIG_ARP_TIMEOUT      200UL
83
84 #endif /* CONFIG_QONG_FPGA */
85
86 #define CONFIG_CONS_INDEX       1
87 #define CONFIG_BAUDRATE         115200
88 #define CONFIG_SYS_BAUDRATE_TABLE       {9600, 19200, 38400, 57600, 115200}
89
90 /***********************************************************
91  * Command definition
92  ***********************************************************/
93
94 #include <config_cmd_default.h>
95
96 #define CONFIG_CMD_PING
97 #define CONFIG_CMD_DHCP
98 #define CONFIG_CMD_NET
99 #define CONFIG_CMD_MII
100 #define CONFIG_CMD_JFFS2
101 #define CONFIG_CMD_NAND
102
103 /*
104  * You can compile in a MAC address and your custom net settings by using
105  * the following syntax.
106  *
107  * #define CONFIG_ETHADDR               xx:xx:xx:xx:xx:xx
108  * #define CONFIG_SERVERIP              <server ip>
109  * #define CONFIG_IPADDR                <board ip>
110  * #define CONFIG_GATEWAYIP             <gateway ip>
111  * #define CONFIG_NETMASK               <your netmask>
112  */
113
114 #define CONFIG_BOOTDELAY        5
115
116 #define CONFIG_LOADADDR         0x80800000      /* loadaddr env var */
117
118 #define xstr(s) str(s)
119 #define str(s)  #s
120
121 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
122         "netdev=eth0\0"                                                 \
123         "nfsargs=setenv bootargs root=/dev/nfs rw "                     \
124                 "nfsroot=${serverip}:${rootpath}\0"                     \
125         "ramargs=setenv bootargs root=/dev/ram rw\0"                    \
126         "addip=setenv bootargs ${bootargs} "                            \
127                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"      \
128                 ":${hostname}:${netdev}:off panic=1\0"                  \
129         "addtty=setenv bootargs ${bootargs}"                            \
130                 " console=ttymxc0,${baudrate}\0"                        \
131         "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0"              \
132         "addmisc=setenv bootargs ${bootargs}\0"                         \
133         "uboot_addr=a0000000\0"                                         \
134         "kernel_addr=a0080000\0"                                        \
135         "ramdisk_addr=a0300000\0"                                       \
136         "u-boot=qong/u-boot.bin\0"                                      \
137         "kernel_addr_r=80800000\0"                                      \
138         "hostname=qong\0"                                               \
139         "bootfile=qong/uImage\0"                                        \
140         "rootpath=/opt/eldk-4.2-arm/armVFP\0"                           \
141         "flash_self=run ramargs addip addtty addmtd addmisc;"           \
142                 "bootm ${kernel_addr} ${ramdisk_addr}\0"                \
143         "flash_nfs=run nfsargs addip addtty addmtd addmisc;"            \
144                 "bootm ${kernel_addr}\0"                                \
145         "net_nfs=tftp ${kernel_addr_r} ${bootfile};"                    \
146                 "run nfsargs addip addtty addmtd addmisc;"              \
147                 "bootm\0"                                               \
148         "bootcmd=run flash_self\0"                                      \
149         "load=tftp ${loadaddr} ${u-boot}\0"                             \
150         "update=protect off " xstr(CONFIG_SYS_MONITOR_BASE)             \
151                 " +${filesize};era " xstr(CONFIG_SYS_MONITOR_BASE)      \
152                 " +${filesize};cp.b ${fileaddr} "                       \
153                 xstr(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0"          \
154         "upd=run load update\0"                                         \
155
156 /*
157  * Miscellaneous configurable options
158  */
159 #define CONFIG_SYS_LONGHELP             /* undef to save memory */
160 #define CONFIG_SYS_PROMPT               "=> "
161 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
162 /* Print Buffer Size */
163 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE + \
164                 sizeof(CONFIG_SYS_PROMPT) + 16)
165 #define CONFIG_SYS_MAXARGS              32      /* max number of command args */
166 /* Boot Argument Buffer Size */
167 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
168
169 /* memtest works on first 255MB of RAM */
170 #define CONFIG_SYS_MEMTEST_START        PHYS_SDRAM_1
171 #define CONFIG_SYS_MEMTEST_END          (PHYS_SDRAM_1 + 0xff000000)
172
173 #define CONFIG_SYS_LOAD_ADDR            CONFIG_LOADADDR
174
175 #define CONFIG_SYS_HZ                   1000
176
177 #define CONFIG_CMDLINE_EDITING  1
178
179 #define CONFIG_MISC_INIT_R      1
180 /*-----------------------------------------------------------------------
181  * Stack sizes
182  *
183  * The stack sizes are set up in start.S using the settings below
184  */
185 #define CONFIG_STACKSIZE        (128 * 1024)    /* regular stack */
186
187 /*-----------------------------------------------------------------------
188  * Physical Memory Map
189  */
190 #define CONFIG_NR_DRAM_BANKS    1
191 #define PHYS_SDRAM_1            CSD0_BASE
192 #define PHYS_SDRAM_1_SIZE       0x10000000      /* 256 MB */
193
194 /*
195  * NAND driver
196  */
197
198 #ifndef __ASSEMBLY__
199 extern void qong_nand_plat_init(void *chip);
200 extern int qong_nand_rdy(void *chip);
201 #endif
202 #define CONFIG_NAND_PLAT
203 #define CONFIG_SYS_MAX_NAND_DEVICE     1
204 #define CONFIG_SYS_NAND_BASE    CS3_BASE
205 #define NAND_PLAT_INIT() qong_nand_plat_init(nand)
206
207 #define QONG_NAND_CLE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 24))
208 #define QONG_NAND_ALE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 23))
209 #define QONG_NAND_WRITE(addr, cmd) \
210         do { \
211                 __REG8(addr) = cmd; \
212         } while (0)
213
214 #define NAND_PLAT_WRITE_CMD(chip, cmd) QONG_NAND_WRITE(QONG_NAND_CLE(chip), cmd)
215 #define NAND_PLAT_WRITE_ADR(chip, cmd) QONG_NAND_WRITE(QONG_NAND_ALE(chip), cmd)
216 #define NAND_PLAT_DEV_READY(chip)      (qong_nand_rdy(chip))
217
218 /*-----------------------------------------------------------------------
219  * FLASH and environment organization
220  */
221 #define CONFIG_SYS_FLASH_BASE           CS0_BASE
222 #define CONFIG_SYS_MAX_FLASH_BANKS      1       /* max number of memory banks */
223 /* max number of sectors on one chip */
224 #define CONFIG_SYS_MAX_FLASH_SECT       1024
225 /* Monitor at beginning of flash */
226 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_FLASH_BASE
227 #define CONFIG_SYS_MONITOR_LEN          0x40000         /* Reserve 256KiB */
228
229 #define CONFIG_ENV_IS_IN_FLASH  1
230 #define CONFIG_ENV_SECT_SIZE    0x20000
231 #define CONFIG_ENV_SIZE         CONFIG_ENV_SECT_SIZE
232 #define CONFIG_ENV_ADDR         (CONFIG_SYS_FLASH_BASE + 0x40000)
233
234 /* Address and size of Redundant Environment Sector     */
235 #define CONFIG_ENV_OFFSET_REDUND        (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
236 #define CONFIG_ENV_SIZE_REDUND  CONFIG_ENV_SIZE
237
238 /*-----------------------------------------------------------------------
239  * CFI FLASH driver setup
240  */
241 /* Flash memory is CFI compliant */
242 #define CONFIG_SYS_FLASH_CFI                    1
243 /* Use drivers/cfi_flash.c */
244 #define CONFIG_FLASH_CFI_DRIVER                 1
245 /* Use buffered writes (~10x faster) */
246 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE       1
247 /* Use hardware sector protection */
248 #define CONFIG_SYS_FLASH_PROTECTION             1
249
250 /*
251  * JFFS2 partitions
252  */
253 #define CONFIG_CMD_MTDPARTS
254 #define CONFIG_MTD_DEVICE               /* needed for mtdparts commands */
255 #define CONFIG_FLASH_CFI_MTD
256 #define MTDIDS_DEFAULT          "nor0=physmap-flash.0"
257 #define MTDPARTS_DEFAULT        \
258         "mtdparts=physmap-flash.0:256k(U-Boot),128k(env1),"     \
259         "128k(env2),2560k(kernel),13m(ramdisk),-(user)"
260
261 #endif /* __CONFIG_H */