]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/tx6.h
karo: tx51,tx53,tx6: remove obsolete CONFIG_SYS_FSL_ESDHC_NUM definition
[karo-tx-uboot.git] / include / configs / tx6.h
1 /*
2  * Copyright (C) 2012 <LW@KARO-electronics.de>
3  *
4  * SPDX-License-Identifier:      GPL-2.0
5  *
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include <asm/sizes.h>
12 #include <asm/arch/imx-regs.h>
13
14 /*
15  * Ka-Ro TX6 board - SoC configuration
16  */
17 #define CONFIG_MX6
18 #define CONFIG_SYS_MX6_HCLK             24000000
19 #define CONFIG_SYS_MX6_CLK32            32768
20 #define CONFIG_SYS_HZ                   1000            /* Ticks per second */
21 #define CONFIG_SHOW_ACTIVITY
22 #define CONFIG_ARCH_CPU_INIT
23 #define CONFIG_DISPLAY_BOARDINFO
24 #define CONFIG_BOARD_LATE_INIT
25 #define CONFIG_BOARD_EARLY_INIT_F
26
27 #ifndef CONFIG_MFG
28 /* LCD Logo and Splash screen support */
29 #define CONFIG_LCD
30 #ifdef CONFIG_LCD
31 #define CONFIG_SPLASH_SCREEN
32 #define CONFIG_SPLASH_SCREEN_ALIGN
33 #define CONFIG_VIDEO_IPUV3
34 #define CONFIG_IPUV3_CLK                266000000
35 #define CONFIG_LCD_LOGO
36 #define LCD_BPP                         LCD_COLOR24
37 #define CONFIG_CMD_BMP
38 #define CONFIG_VIDEO_BMP_RLE8
39 #endif /* CONFIG_LCD */
40 #endif /* CONFIG_MFG */
41
42 #ifdef CONFIG_SYS_LVDS_IF
43 #define is_lvds()                       1
44 #else
45 #define is_lvds()                       0
46 #endif
47
48 /*
49  * Memory configuration options
50  */
51 #define CONFIG_NR_DRAM_BANKS            1               /* # of SDRAM banks */
52 #define PHYS_SDRAM_1                    0x10000000      /* Base address of bank 1 */
53 #ifdef CONFIG_SYS_SDRAM_BUS_WIDTH
54 #define PHYS_SDRAM_1_WIDTH              CONFIG_SYS_SDRAM_BUS_WIDTH
55 #else
56 #define PHYS_SDRAM_1_WIDTH              64
57 #endif
58 #define PHYS_SDRAM_1_SIZE               (SZ_512M * (PHYS_SDRAM_1_WIDTH / 32))
59
60 #ifdef CONFIG_MX6Q
61 #define CONFIG_SYS_SDRAM_CLK            528
62 #else
63 #define CONFIG_SYS_SDRAM_CLK            400
64 #endif
65 #define CONFIG_STACKSIZE                SZ_128K
66 #define CONFIG_SYS_MALLOC_LEN           SZ_8M
67 #define CONFIG_SYS_MEMTEST_START        PHYS_SDRAM_1    /* Memtest start address */
68 #define CONFIG_SYS_MEMTEST_END          (CONFIG_SYS_MEMTEST_START + SZ_4M)
69
70 /*
71  * U-Boot general configurations
72  */
73 #define CONFIG_SYS_LONGHELP
74 #ifdef CONFIG_MX6Q
75 #define CONFIG_SYS_PROMPT               "TX6Q U-Boot > "
76 #else
77 #define CONFIG_SYS_PROMPT               "TX6DL U-Boot > "
78 #endif
79 #define CONFIG_SYS_CBSIZE               2048    /* Console I/O buffer size */
80 #define CONFIG_SYS_PBSIZE                                               \
81         (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
82                                                 /* Print buffer size */
83 #define CONFIG_SYS_MAXARGS              64      /* Max number of command args */
84 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE
85                                                 /* Boot argument buffer size */
86 #define CONFIG_VERSION_VARIABLE                 /* U-BOOT version */
87 #define CONFIG_AUTO_COMPLETE                    /* Command auto complete */
88 #define CONFIG_CMDLINE_EDITING                  /* Command history etc */
89
90 #define CONFIG_SYS_64BIT_VSPRINTF
91 #define CONFIG_SYS_NO_FLASH
92
93 /*
94  * Flattened Device Tree (FDT) support
95 */
96 #ifndef CONFIG_MFG
97 #define CONFIG_OF_LIBFDT
98 #ifdef CONFIG_OF_LIBFDT
99 #define CONFIG_FDT_FIXUP_PARTITIONS
100 #define CONFIG_OF_BOARD_SETUP
101 #define CONFIG_SYS_FDT_ADDR             (PHYS_SDRAM_1 + SZ_16M)
102 #endif /* CONFIG_OF_LIBFDT */
103 #endif /* CONFIG_MFG */
104
105 /*
106  * Boot Linux
107  */
108 #define xstr(s)                         str(s)
109 #define str(s)                          #s
110 #define __pfx(x, s)                     (x##s)
111 #define _pfx(x, s)                      __pfx(x, s)
112
113 #define CONFIG_CMDLINE_TAG
114 #define CONFIG_INITRD_TAG
115 #define CONFIG_SETUP_MEMORY_TAGS
116 #ifndef CONFIG_MFG
117 #define CONFIG_BOOTDELAY                1
118 #else
119 #define CONFIG_BOOTDELAY                0
120 #endif
121 #define CONFIG_ZERO_BOOTDELAY_CHECK
122 #define CONFIG_SYS_AUTOLOAD             "no"
123 #ifndef CONFIG_MFG
124 #define CONFIG_BOOTFILE                 "uImage"
125 #define CONFIG_BOOTARGS                 "console=ttymxc0,115200 ro debug panic=1"
126 #define CONFIG_BOOTCOMMAND              "run bootcmd_nand"
127 #else
128 #define CONFIG_BOOTCOMMAND              "env import " xstr(CONFIG_BOOTCMD_MFG_LOADADDR) ";run bootcmd_mfg"
129 #define CONFIG_BOOTCMD_MFG_LOADADDR     10500000
130 #define CONFIG_DELAY_ENVIRONMENT
131 #endif /* CONFIG_MFG */
132 #define CONFIG_LOADADDR                 18000000
133 #define CONFIG_SYS_LOAD_ADDR            _pfx(0x, CONFIG_LOADADDR)
134 #define CONFIG_IMX_WATCHDOG
135 #define CONFIG_WATCHDOG_TIMEOUT_MSECS   3000
136
137 /*
138  * Extra Environments
139  */
140 #ifndef CONFIG_MFG
141 #ifdef CONFIG_ENV_IS_NOWHERE
142 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
143         "autostart=no\0"                                                \
144         "autoload=no\0"                                                 \
145         "bootdelay=-1\0"                                                \
146         "fdtaddr=11000000\0"                                            \
147         "mtdids=" MTDIDS_DEFAULT "\0"                                   \
148         "mtdparts=" MTDPARTS_DEFAULT "\0"
149 #else
150 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
151         "autostart=no\0"                                                \
152         "baseboard=stk5-v3\0"                                           \
153         "bootargs_mmc=run default_bootargs;set bootargs ${bootargs}"    \
154         " root=/dev/mmcblk0p3 rootwait\0"                               \
155         "bootargs_nand=run default_bootargs;set bootargs ${bootargs}"   \
156         " root=/dev/mtdblock3 rootfstype=jffs2\0"                       \
157         "bootargs_nfs=run default_bootargs;set bootargs ${bootargs}"    \
158         " root=/dev/nfs ip=dhcp nfsroot=${nfs_server}:${nfsroot},nolock\0"\
159         "bootcmd_mmc=set autostart no;run bootargs_mmc;"                \
160         "fatload mmc 0 ${loadaddr} uImage;run bootm_cmd\0"              \
161         "bootcmd_nand=set autostart no;run bootargs_nand;"              \
162         "nboot linux;run bootm_cmd\0"                                   \
163         "bootcmd_net=set autostart no;run bootargs_nfs;dhcp;"           \
164         "run bootm_cmd\0"                                               \
165         "bootm_cmd=bootm ${loadaddr} - ${fdtaddr}\0"                    \
166         "cpu_clk=800\0"                                                 \
167         "bootdelay=-1\0"                                                \
168         "default_bootargs=set bootargs " CONFIG_BOOTARGS                \
169         " ${append_bootargs}\0"                                         \
170         "fdtaddr=11000000\0"                                            \
171         "fdtsave=nand erase.part dtb;nand write ${fdtaddr} dtb ${fdtsize}\0" \
172         "mtdids=" MTDIDS_DEFAULT "\0"                                   \
173         "mtdparts=" MTDPARTS_DEFAULT "\0"                               \
174         "nfsroot=/tftpboot/rootfs\0"                                    \
175         "otg_mode=device\0"                                             \
176         "touchpanel=tsc2007\0"                                          \
177         "video_mode=VGA\0"
178 #endif /*  CONFIG_ENV_IS_NOWHERE */
179 #endif /*  CONFIG_MFG */
180
181 #define MTD_NAME                        "gpmi-nand"
182 #define MTDIDS_DEFAULT                  "nand0=" MTD_NAME
183 #define CONFIG_SYS_NAND_ONFI_DETECTION
184
185 /*
186  * U-Boot Commands
187  */
188 #include <config_cmd_default.h>
189 #define CONFIG_CMD_CACHE
190 #define CONFIG_CMD_MMC
191 #define CONFIG_CMD_NAND
192 #define CONFIG_CMD_MTDPARTS
193 #define CONFIG_CMD_BOOTCE
194 #define CONFIG_CMD_TIME
195 #define CONFIG_CMD_I2C
196 #define CONFIG_CMD_MEMTEST
197
198 /*
199  * Serial Driver
200  */
201 #define CONFIG_MXC_UART
202 #define CONFIG_MXC_UART_BASE            UART1_BASE
203 #define CONFIG_BAUDRATE                 115200          /* Default baud rate */
204 #define CONFIG_SYS_BAUDRATE_TABLE       { 9600, 19200, 38400, 57600, 115200, }
205 #define CONFIG_SYS_CONSOLE_INFO_QUIET
206
207 /*
208  * GPIO driver
209  */
210 #define CONFIG_MXC_GPIO
211
212 /*
213  * Ethernet Driver
214  */
215 #define CONFIG_FEC_MXC
216 #ifdef CONFIG_FEC_MXC
217 /* This is required for the FEC driver to work with cache enabled */
218 #define CONFIG_SYS_ARM_CACHE_WRITETHROUGH
219 #define CONFIG_SYS_CACHELINE_SIZE       64
220
221 #define IMX_FEC_BASE                    ENET_BASE_ADDR
222 #define CONFIG_FEC_MXC_PHYADDR          0
223 #define CONFIG_PHYLIB
224 #define CONFIG_PHY_SMSC
225 #define CONFIG_MII
226 #define CONFIG_FEC_XCV_TYPE             RMII
227 #define CONFIG_GET_FEC_MAC_ADDR_FROM_IIM
228 #define CONFIG_CMD_MII
229 #define CONFIG_CMD_DHCP
230 #define CONFIG_CMD_PING
231 /* Add for working with "strict" DHCP server */
232 #define CONFIG_BOOTP_SUBNETMASK
233 #define CONFIG_BOOTP_GATEWAY
234 #define CONFIG_BOOTP_DNS
235 #endif
236
237 /*
238  * I2C Configs
239  */
240 #ifdef CONFIG_CMD_I2C
241 #define CONFIG_HARD_I2C
242 #define CONFIG_I2C_MXC
243 #define CONFIG_SYS_I2C_BASE             I2C1_BASE_ADDR
244 #define CONFIG_SYS_I2C_MX6_PORT1
245 #define CONFIG_SYS_I2C_SPEED            400000
246 #define CONFIG_SYS_I2C_SLAVE            0x3c
247 #endif
248
249 #ifndef CONFIG_ENV_IS_NOWHERE
250 /* define one of the following options:
251 #define CONFIG_ENV_IS_IN_NAND
252 #define CONFIG_ENV_IS_IN_MMC
253 */
254 #define CONFIG_ENV_IS_IN_NAND
255 #endif
256 #define CONFIG_ENV_OVERWRITE
257
258 /*
259  * NAND flash driver
260  */
261 #ifdef CONFIG_CMD_NAND
262 #define CONFIG_MTD_DEVICE
263 #if 0
264 #define CONFIG_MTD_DEBUG
265 #define CONFIG_MTD_DEBUG_VERBOSE        4
266 #endif
267 #define CONFIG_NAND_MXS
268 #define CONFIG_NAND_MXS_NO_BBM_SWAP
269 #define CONFIG_APBH_DMA
270 #define CONFIG_APBH_DMA_BURST
271 #define CONFIG_APBH_DMA_BURST8
272 #define CONFIG_CMD_NAND_TRIMFFS
273 #define CONFIG_SYS_MXS_DMA_CHANNEL      4
274 #define CONFIG_SYS_MAX_FLASH_BANKS      1
275 #define CONFIG_SYS_NAND_MAX_CHIPS       1
276 #define CONFIG_SYS_MAX_NAND_DEVICE      1
277 #define CONFIG_SYS_NAND_5_ADDR_CYCLE
278 #define CONFIG_SYS_NAND_USE_FLASH_BBT
279 #define CONFIG_SYS_NAND_BASE            0x00000000
280 #define CONFIG_CMD_ROMUPDATE
281 #else
282 #undef CONFIG_ENV_IS_IN_NAND
283 #endif /* CONFIG_CMD_NAND */
284
285 #define CONFIG_ENV_OFFSET               (CONFIG_U_BOOT_IMG_SIZE + CONFIG_SYS_NAND_U_BOOT_OFFS)
286 #define CONFIG_ENV_SIZE                 SZ_128K
287 #define CONFIG_ENV_RANGE                (3 * CONFIG_SYS_NAND_BLOCK_SIZE)
288 #ifdef CONFIG_ENV_OFFSET_REDUND
289 #define CONFIG_SYS_ENV_PART_STR         xstr(CONFIG_SYS_ENV_PART_SIZE)  \
290         "(env),"                                                        \
291         xstr(CONFIG_SYS_ENV_PART_SIZE)                                  \
292         "(env2),"
293 #define CONFIG_SYS_USERFS_PART_STR      xstr(CONFIG_SYS_USERFS_PART_SIZE) "(userfs)"
294 #else
295 #define CONFIG_SYS_ENV_PART_STR         xstr(CONFIG_SYS_ENV_PART_SIZE)  \
296         "(env),"
297 #define CONFIG_SYS_USERFS_PART_STR      xstr(CONFIG_SYS_USERFS_PART_SIZE2) "(userfs)"
298 #endif /* CONFIG_ENV_OFFSET_REDUND */
299
300 /*
301  * MMC Driver
302  */
303 #ifdef CONFIG_CMD_MMC
304 #define CONFIG_MMC
305 #define CONFIG_GENERIC_MMC
306 #define CONFIG_FSL_ESDHC
307 #define CONFIG_FSL_USDHC
308 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
309
310 #define CONFIG_DOS_PARTITION
311 #define CONFIG_CMD_FAT
312 #define CONFIG_CMD_EXT2
313
314 /*
315  * Environments on MMC
316  */
317 #ifdef CONFIG_ENV_IS_IN_MMC
318 #define CONFIG_SYS_MMC_ENV_DEV          0
319 #undef CONFIG_ENV_OFFSET
320 #undef CONFIG_ENV_SIZE
321 /* Associated with the MMC layout defined in mmcops.c */
322 #define CONFIG_ENV_OFFSET               SZ_1K
323 #define CONFIG_ENV_SIZE                 (SZ_128K - CONFIG_ENV_OFFSET)
324 #define CONFIG_DYNAMIC_MMC_DEVNO
325 #endif /* CONFIG_ENV_IS_IN_MMC */
326 #else
327 #undef CONFIG_ENV_IS_IN_MMC
328 #endif /* CONFIG_CMD_MMC */
329
330 #ifdef CONFIG_ENV_IS_NOWHERE
331 #undef CONFIG_ENV_SIZE
332 #define CONFIG_ENV_SIZE                 SZ_4K
333 #endif
334
335 #define MTDPARTS_DEFAULT                "mtdparts=" MTD_NAME ":"        \
336         xstr(CONFIG_SYS_U_BOOT_PART_SIZE)                               \
337         "@" xstr(CONFIG_SYS_NAND_U_BOOT_OFFS)                           \
338         "(u-boot),"                                                     \
339         CONFIG_SYS_ENV_PART_STR                                         \
340         "4m(linux),32m(rootfs)," CONFIG_SYS_USERFS_PART_STR ","         \
341         xstr(CONFIG_SYS_DTB_PART_SIZE)                                  \
342         "(dtb),"                                                        \
343         xstr(CONFIG_SYS_NAND_BBT_SIZE)                                  \
344         "@" xstr(CONFIG_SYS_NAND_BBT_OFFSET) "(bbt)ro"
345
346 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
347 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \
348                                         GENERATED_GBL_DATA_SIZE)
349
350 #endif /* __CONFIG_H */