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