]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/qong.h
Coding Style cleanup: remove trailing white space
[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  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include <asm/arch/imx-regs.h>
13
14 /* High Level Configuration Options */
15 #define CONFIG_ARM1136                  /* This is an arm1136 CPU core */
16 #define CONFIG_MX31                     /* in a mx31 */
17 #define CONFIG_QONG
18
19 #define CONFIG_DISPLAY_CPUINFO
20 #define CONFIG_DISPLAY_BOARDINFO
21
22 #define CONFIG_SYS_TEXT_BASE 0xa0000000
23
24 #define CONFIG_CMDLINE_TAG                      /* enable passing of ATAGs */
25 #define CONFIG_SETUP_MEMORY_TAGS
26 #define CONFIG_INITRD_TAG
27
28 /*
29  * Size of malloc() pool
30  */
31 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 1536 * 1024)
32
33 /*
34  * Hardware drivers
35  */
36
37 #define CONFIG_MXC_UART
38 #define CONFIG_MXC_UART_BASE    UART1_BASE
39
40 #define CONFIG_MXC_GPIO
41 #define CONFIG_HW_WATCHDOG
42 #define CONFIG_IMX_WATCHDOG
43
44 #define CONFIG_MXC_SPI
45 #define CONFIG_DEFAULT_SPI_BUS  1
46 #define CONFIG_DEFAULT_SPI_MODE (SPI_MODE_0 | SPI_CS_HIGH)
47 #define CONFIG_RTC_MC13XXX
48
49 #define CONFIG_POWER
50 #define CONFIG_POWER_SPI
51 #define CONFIG_POWER_FSL
52 #define CONFIG_FSL_PMIC_BUS     1
53 #define CONFIG_FSL_PMIC_CS      0
54 #define CONFIG_FSL_PMIC_CLK     100000
55 #define CONFIG_FSL_PMIC_MODE    (SPI_MODE_0 | SPI_CS_HIGH)
56 #define CONFIG_FSL_PMIC_BITLEN  32
57
58 /* FPGA */
59 #define CONFIG_FPGA
60 #define CONFIG_QONG_FPGA
61 #define CONFIG_FPGA_BASE        (CS1_BASE)
62 #define CONFIG_FPGA_LATTICE
63 #define CONFIG_FPGA_COUNT       1
64
65 #ifdef CONFIG_QONG_FPGA
66 /* Ethernet */
67 #define CONFIG_DNET
68 #define CONFIG_DNET_BASE        (CS1_BASE + QONG_FPGA_PERIPH_SIZE)
69
70 /* Framebuffer and LCD */
71 #define CONFIG_VIDEO
72 #define CONFIG_CFB_CONSOLE
73 #define CONFIG_VIDEO_MX3
74 #define CONFIG_VIDEO_LOGO
75 #define CONFIG_VIDEO_SW_CURSOR
76 #define CONFIG_VGA_AS_SINGLE_DEVICE
77 #define CONFIG_SYS_CONSOLE_IS_IN_ENV
78 #define CONFIG_SPLASH_SCREEN
79 #define CONFIG_CMD_BMP
80 #define CONFIG_BMP_16BPP
81 #define CONFIG_VIDEO_BMP_GZIP
82 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE  (512 << 10)
83
84 /* USB */
85 #define CONFIG_CMD_USB
86 #ifdef CONFIG_CMD_USB
87 #define CONFIG_USB_EHCI                 /* Enable EHCI USB support */
88 #define CONFIG_USB_EHCI_MXC
89 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
90 #define CONFIG_MXC_USB_PORT     2
91 #define CONFIG_MXC_USB_PORTSC   (MXC_EHCI_MODE_ULPI | MXC_EHCI_UTMI_8BIT)
92 #define CONFIG_MXC_USB_FLAGS    MXC_EHCI_POWER_PINS_ENABLED
93 #define CONFIG_EHCI_IS_TDI
94 #define CONFIG_USB_STORAGE
95 #define CONFIG_DOS_PARTITION
96 #define CONFIG_SUPPORT_VFAT
97 #define CONFIG_CMD_EXT2
98 #define CONFIG_CMD_FAT
99 #endif /* CONFIG_CMD_USB */
100
101 /*
102  * Reducing the ARP timeout from default 5 seconds to 200ms we speed up the
103  * initial TFTP transfer, should the user wish one, significantly.
104  */
105 #define CONFIG_ARP_TIMEOUT      200UL
106
107 #endif /* CONFIG_QONG_FPGA */
108
109 #define CONFIG_CONS_INDEX       1
110 #define CONFIG_BAUDRATE         115200
111
112 /***********************************************************
113  * Command definition
114  ***********************************************************/
115
116 #include <config_cmd_default.h>
117
118 #define CONFIG_CMD_CACHE
119 #define CONFIG_CMD_DATE
120 #define CONFIG_CMD_DHCP
121 #define CONFIG_CMD_MII
122 #define CONFIG_CMD_NAND
123 #define CONFIG_CMD_NET
124 #define CONFIG_CMD_PING
125 #define CONFIG_CMD_SETEXPR
126 #define CONFIG_CMD_SPI
127 #define CONFIG_CMD_UNZIP
128
129 #define CONFIG_BOARD_LATE_INIT
130
131 #define CONFIG_BOOTDELAY        5
132
133 #define CONFIG_LOADADDR         0x80800000      /* loadaddr env var */
134
135 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
136         "netdev=eth0\0"                                                 \
137         "nfsargs=setenv bootargs root=/dev/nfs rw "                     \
138                 "nfsroot=${serverip}:${rootpath}\0"                     \
139         "ramargs=setenv bootargs root=/dev/ram rw\0"                    \
140         "addip=setenv bootargs ${bootargs} "                            \
141                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"      \
142                 ":${hostname}:${netdev}:off panic=1\0"                  \
143         "addtty=setenv bootargs ${bootargs}"                            \
144                 " console=ttymxc0,${baudrate}\0"                        \
145         "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0"              \
146         "addmisc=setenv bootargs ${bootargs}\0"                         \
147         "uboot_addr=A0000000\0"                                         \
148         "kernel_addr=A00C0000\0"                                        \
149         "ramdisk_addr=A0300000\0"                                       \
150         "u-boot=qong/u-boot.bin\0"                                      \
151         "kernel_addr_r=80800000\0"                                      \
152         "hostname=qong\0"                                               \
153         "bootfile=qong/uImage\0"                                        \
154         "rootpath=/opt/eldk-4.2-arm/armVFP\0"                           \
155         "flash_self=run ramargs addip addtty addmtd addmisc;"           \
156                 "bootm ${kernel_addr} ${ramdisk_addr}\0"                \
157         "flash_nfs=run nfsargs addip addtty addmtd addmisc;"            \
158                 "bootm ${kernel_addr}\0"                                \
159         "net_nfs=tftp ${kernel_addr_r} ${bootfile};"                    \
160                 "run nfsargs addip addtty addmtd addmisc;"              \
161                 "bootm\0"                                               \
162         "bootcmd=run flash_self\0"                                      \
163         "load=tftp ${loadaddr} ${u-boot}\0"                             \
164         "update=protect off " __stringify(CONFIG_SYS_MONITOR_BASE)      \
165                 " +${filesize};era " __stringify(CONFIG_SYS_MONITOR_BASE)\
166                 " +${filesize};cp.b ${fileaddr} "                       \
167                 __stringify(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0"   \
168         "upd=run load update\0"                                         \
169         "videomode=video=ctfb:x:640,y:480,depth:16,mode:0,pclk:40000,"  \
170                 "le:120,ri:40,up:35,lo:10,hs:30,vs:3,sync:100663296,"   \
171                 "vmode:0\0"                                             \
172
173 /*
174  * Miscellaneous configurable options
175  */
176 #define CONFIG_SYS_LONGHELP             /* undef to save memory */
177 #define CONFIG_SYS_PROMPT               "=> "
178 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
179 /* Print Buffer Size */
180 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE + \
181                 sizeof(CONFIG_SYS_PROMPT) + 16)
182 #define CONFIG_SYS_MAXARGS              32      /* max number of command args */
183 /* Boot Argument Buffer Size */
184 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
185
186 /* memtest works on first 255MB of RAM */
187 #define CONFIG_SYS_MEMTEST_START        PHYS_SDRAM_1
188 #define CONFIG_SYS_MEMTEST_END          (PHYS_SDRAM_1 + 0xff000000)
189
190 #define CONFIG_SYS_LOAD_ADDR            CONFIG_LOADADDR
191
192 #define CONFIG_SYS_HZ                   1000
193
194 #define CONFIG_CMDLINE_EDITING
195 #define CONFIG_SYS_HUSH_PARSER                  /* Use the HUSH parser */
196
197 #define CONFIG_MISC_INIT_R
198
199 /*-----------------------------------------------------------------------
200  * Physical Memory Map
201  */
202 #define CONFIG_NR_DRAM_BANKS    1
203 #define PHYS_SDRAM_1            CSD0_BASE
204 #define PHYS_SDRAM_1_SIZE       0x10000000      /* 256 MB */
205
206 /*
207  * NAND driver
208  */
209
210 #ifndef __ASSEMBLY__
211 extern void qong_nand_plat_init(void *chip);
212 extern int qong_nand_rdy(void *chip);
213 #endif
214 #define CONFIG_NAND_PLAT
215 #define CONFIG_SYS_MAX_NAND_DEVICE     1
216 #define CONFIG_SYS_NAND_BASE    CS3_BASE
217 #define NAND_PLAT_INIT() qong_nand_plat_init(nand)
218
219 #define QONG_NAND_CLE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 24))
220 #define QONG_NAND_ALE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 23))
221 #define QONG_NAND_WRITE(addr, cmd) \
222         do { \
223                 __REG8(addr) = cmd; \
224         } while (0)
225
226 #define NAND_PLAT_WRITE_CMD(chip, cmd) QONG_NAND_WRITE(QONG_NAND_CLE(chip), cmd)
227 #define NAND_PLAT_WRITE_ADR(chip, cmd) QONG_NAND_WRITE(QONG_NAND_ALE(chip), cmd)
228 #define NAND_PLAT_DEV_READY(chip)      (qong_nand_rdy(chip))
229
230 /*-----------------------------------------------------------------------
231  * FLASH and environment organization
232  */
233 #define CONFIG_SYS_FLASH_BASE           CS0_BASE
234 #define CONFIG_SYS_MAX_FLASH_BANKS      1       /* max number of memory banks */
235 /* max number of sectors on one chip */
236 #define CONFIG_SYS_MAX_FLASH_SECT       1024
237 /* Monitor at beginning of flash */
238 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_FLASH_BASE
239 #define CONFIG_SYS_MONITOR_LEN          0x40000         /* Reserve 256KiB */
240
241 #define CONFIG_ENV_IS_IN_FLASH
242 #define CONFIG_ENV_SECT_SIZE    0x20000
243 #define CONFIG_ENV_SIZE         CONFIG_ENV_SECT_SIZE
244 #define CONFIG_ENV_ADDR         (CONFIG_SYS_FLASH_BASE + 0x80000)
245
246 /* Address and size of Redundant Environment Sector     */
247 #define CONFIG_ENV_OFFSET_REDUND        (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
248 #define CONFIG_ENV_SIZE_REDUND  CONFIG_ENV_SIZE
249
250 /*-----------------------------------------------------------------------
251  * CFI FLASH driver setup
252  */
253 /* Flash memory is CFI compliant */
254 #define CONFIG_SYS_FLASH_CFI
255 /* Use drivers/cfi_flash.c */
256 #define CONFIG_FLASH_CFI_DRIVER
257 /* Use buffered writes (~10x faster) */
258 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
259 /* Use hardware sector protection */
260 #define CONFIG_SYS_FLASH_PROTECTION
261
262 /*
263  * Filesystem
264  */
265 #define CONFIG_CMD_JFFS2
266 #define CONFIG_CMD_UBI
267 #define CONFIG_CMD_UBIFS
268 #define CONFIG_RBTREE
269 #define CONFIG_MTD_PARTITIONS
270 #define CONFIG_CMD_MTDPARTS
271 #define CONFIG_LZO
272 #define CONFIG_MTD_DEVICE               /* needed for mtdparts commands */
273 #define CONFIG_FLASH_CFI_MTD
274 #define MTDIDS_DEFAULT          "nor0=physmap-flash.0,"         \
275                                 "nand0=gen_nand"
276 #define MTDPARTS_DEFAULT        \
277         "mtdparts=physmap-flash.0:"                             \
278                         "512k(U-Boot),128k(env1),128k(env2),"   \
279                         "2304k(kernel),13m(ramdisk),-(user);"   \
280                 "gen_nand:"                                     \
281                         "128m(nand)"
282
283 /* additions for new relocation code, must be added to all boards */
284 #define CONFIG_SYS_SDRAM_BASE           0x80000000
285 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
286 #define CONFIG_SYS_INIT_RAM_SIZE                IRAM_SIZE
287 #define CONFIG_SYS_GBL_DATA_OFFSET      (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
288 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET)
289
290 #define CONFIG_BOARD_EARLY_INIT_F
291
292 #endif /* __CONFIG_H */