]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/tqma6.h
sniper: Pass serial number through ATAG
[karo-tx-uboot.git] / include / configs / tqma6.h
1 /*
2  * Copyright (C) 2013, 2014 Markus Niebel <Markus.Niebel@tq-group.com>
3  *
4  * Configuration settings for the TQ Systems TQMa6<Q,S> module.
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include <linux/kconfig.h>
13 /* SPL */
14 /* #if defined(CONFIG_SPL_BUILD) */
15
16 #define CONFIG_SPL_MMC_SUPPORT
17 #define CONFIG_SPL_SPI_SUPPORT
18 #define CONFIG_SPL_FAT_SUPPORT
19 #define CONFIG_SPL_EXT_SUPPORT
20
21 /* common IMX6 SPL configuration */
22 #include "imx6_spl.h"
23
24 /* #endif */
25
26 /* place code in last 4 MiB of RAM */
27 #if defined(CONFIG_MX6DL) || defined(CONFIG_MX6S)
28 #define CONFIG_SYS_TEXT_BASE            0x2fc00000
29 #elif defined(CONFIG_MX6Q) || defined(CONFIG_MX6D)
30 #define CONFIG_SYS_TEXT_BASE            0x4fc00000
31 #endif
32
33 #include "mx6_common.h"
34
35 #define PHYS_SDRAM_SIZE                 (512u * SZ_1M)
36 #define PHYS_SDRAM_SIZE                 (1024u * SZ_1M)
37 #endif
38
39 #define CONFIG_BOARD_EARLY_INIT_F
40 #define CONFIG_BOARD_LATE_INIT
41
42 #define CONFIG_MXC_UART
43
44 /* SPI */
45 #define CONFIG_CMD_SPI
46 #define CONFIG_MXC_SPI
47
48 /* SPI Flash */
49 #define CONFIG_SPI_FLASH_STMICRO
50
51 #define TQMA6_SPI_FLASH_SECTOR_SIZE     SZ_64K
52
53 #define CONFIG_CMD_SF
54 #define CONFIG_SF_DEFAULT_BUS   0
55 #define CONFIG_SF_DEFAULT_CS    0
56 #define CONFIG_SF_DEFAULT_SPEED 50000000
57 #define CONFIG_SF_DEFAULT_MODE  (SPI_MODE_0)
58
59 /* I2C Configs */
60 #define CONFIG_CMD_I2C
61 #define CONFIG_SYS_I2C
62 #define CONFIG_SYS_I2C_MXC
63 #define CONFIG_SYS_I2C_MXC_I2C3         /* enable I2C bus 3 */
64 #define CONFIG_I2C_MULTI_BUS
65 #define CONFIG_SYS_I2C_SPEED            100000
66
67 /* I2C SYSMON (LM75) */
68 #define CONFIG_DTT_LM75
69 #define CONFIG_DTT_MAX_TEMP             70
70 #define CONFIG_DTT_MIN_TEMP             -30
71 #define CONFIG_DTT_HYSTERESIS   3
72 #define CONFIG_CMD_DTT
73
74 /* I2C EEPROM (M24C64) */
75 #define CONFIG_SYS_I2C_EEPROM_ADDR                      0x50
76 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN                  2
77 #define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_BITS           5 /* 32 Bytes */
78 #define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_DELAY_MS       20
79 #define CONFIG_CMD_EEPROM
80
81 #define CONFIG_POWER
82 #define CONFIG_POWER_I2C
83 #define CONFIG_POWER_PFUZE100
84 #define CONFIG_POWER_PFUZE100_I2C_ADDR  0x08
85 #define TQMA6_PFUZE100_I2C_BUS          2
86
87 /* MMC Configs */
88 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
89
90 /* USB Configs */
91 #define CONFIG_CMD_USB
92 #define CONFIG_USB_EHCI
93 #define CONFIG_USB_EHCI_MX6
94 #define CONFIG_USB_STORAGE
95 #define CONFIG_USB_HOST_ETHER
96 #define CONFIG_USB_ETHER_SMSC95XX
97 #define CONFIG_MXC_USB_PORTSC   (PORT_PTS_UTMI | PORT_PTS_PTW)
98 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
99 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET        /* For OTG port */
100
101 #define CONFIG_CMD_PING
102 #define CONFIG_CMD_DHCP
103 #define CONFIG_CMD_MII
104
105 #define CONFIG_FEC_MXC
106 #define IMX_FEC_BASE                    ENET_BASE_ADDR
107 #define CONFIG_PHYLIB
108 #define CONFIG_MII
109
110 #define CONFIG_ARP_TIMEOUT              200UL
111 /* Network config - Allow larger/faster download for TFTP/NFS */
112 #define CONFIG_IP_DEFRAG
113 #define CONFIG_TFTP_BLOCKSIZE   4096
114 #define CONFIG_NFS_READ_SIZE    4096
115
116 /* Command definition */
117 #define CONFIG_CMD_BMODE
118
119 #define CONFIG_ENV_SIZE                 (SZ_8K)
120 /* Size of malloc() pool */
121 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 2 * SZ_1M)
122
123 #if defined(CONFIG_TQMA6X_MMC_BOOT)
124
125 #define CONFIG_ENV_IS_IN_MMC
126 #define TQMA6_UBOOT_OFFSET              SZ_1K
127 #define TQMA6_UBOOT_SECTOR_START        0x2
128 #define TQMA6_UBOOT_SECTOR_COUNT        0x7fe
129
130 #define CONFIG_ENV_OFFSET               SZ_1M
131 #define CONFIG_SYS_MMC_ENV_DEV          0
132
133 #define TQMA6_FDT_OFFSET                (2 * SZ_1M)
134 #define TQMA6_FDT_SECTOR_START          0x1000
135 #define TQMA6_FDT_SECTOR_COUNT          0x800
136
137 #define TQMA6_KERNEL_SECTOR_START       0x2000
138 #define TQMA6_KERNEL_SECTOR_COUNT       0x2000
139
140 #define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS                                       \
141         "uboot_start="__stringify(TQMA6_UBOOT_SECTOR_START)"\0"                \
142         "uboot_size="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0"                 \
143         "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0"                    \
144         "fdt_size="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0"                     \
145         "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0"              \
146         "kernel_size="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0"               \
147         "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0"                       \
148         "loadimage=mmc dev ${mmcdev}; "                                        \
149                 "mmc read ${loadaddr} ${kernel_start} ${kernel_size};\0"       \
150         "loadfdt=mmc dev ${mmcdev}; "                                          \
151                 "mmc read ${fdt_addr} ${fdt_start} ${fdt_size};\0"             \
152         "update_uboot=if tftp ${uboot}; then "                                 \
153                 "if itest ${filesize} > 0; then "                              \
154                         "mmc dev ${mmcdev}; mmc rescan; "                      \
155                         "setexpr blkc ${filesize} / 0x200; "                   \
156                         "setexpr blkc ${blkc} + 1; "                           \
157                         "if itest ${blkc} <= ${uboot_size}; then "             \
158                                 "mmc write ${loadaddr} ${uboot_start} "        \
159                                         "${blkc}; "                            \
160                         "fi; "                                                 \
161                 "fi; fi; "                                                     \
162                 "setenv filesize; setenv blkc \0"                              \
163         "update_kernel=run kernel_name; "                                      \
164                 "if tftp ${kernel}; then "                                     \
165                         "if itest ${filesize} > 0; then "                      \
166                                 "mmc dev ${mmcdev}; mmc rescan; "              \
167                                 "setexpr blkc ${filesize} / 0x200; "           \
168                                 "setexpr blkc ${blkc} + 1; "                   \
169                                 "if itest ${blkc} <= ${kernel_size}; then "    \
170                                         "mmc write ${loadaddr} "               \
171                                                 "${kernel_start} ${blkc}; "    \
172                                 "fi; "                                         \
173                         "fi; "                                                 \
174                 "fi; "                                                         \
175                 "setenv filesize; setenv blkc \0"                              \
176         "update_fdt=if tftp ${fdt_file}; then "                                \
177                 "if itest ${filesize} > 0; then "                              \
178                         "mmc dev ${mmcdev}; mmc rescan; "                      \
179                         "setexpr blkc ${filesize} / 0x200; "                   \
180                         "setexpr blkc ${blkc} + 1; "                           \
181                         "if itest ${blkc} <= ${fdt_size}; then "               \
182                                 "mmc write ${loadaddr} ${fdt_start} ${blkc}; " \
183                         "fi; "                                                 \
184                 "fi; fi; "                                                     \
185                 "setenv filesize; setenv blkc \0"                              \
186
187 #define CONFIG_BOOTCOMMAND \
188         "run mmcboot; run netboot; run panicboot"
189
190 #elif defined(CONFIG_TQMA6X_SPI_BOOT)
191
192 #define TQMA6_UBOOT_OFFSET              0x400
193 #define TQMA6_UBOOT_SECTOR_START        0x0
194 /* max u-boot size: 512k */
195 #define TQMA6_UBOOT_SECTOR_SIZE         TQMA6_SPI_FLASH_SECTOR_SIZE
196 #define TQMA6_UBOOT_SECTOR_COUNT        0x8
197 #define TQMA6_UBOOT_SIZE                (TQMA6_UBOOT_SECTOR_SIZE * \
198                                          TQMA6_UBOOT_SECTOR_COUNT)
199
200 #define CONFIG_ENV_IS_IN_SPI_FLASH
201 #define CONFIG_SYS_REDUNDAND_ENVIRONMENT
202 #define CONFIG_ENV_OFFSET               (TQMA6_UBOOT_SIZE)
203 #define CONFIG_ENV_SECT_SIZE            TQMA6_SPI_FLASH_SECTOR_SIZE
204 #define CONFIG_ENV_OFFSET_REDUND        (CONFIG_ENV_OFFSET + \
205                                          CONFIG_ENV_SECT_SIZE)
206
207 #define CONFIG_ENV_SPI_BUS              (CONFIG_SF_DEFAULT_BUS)
208 #define CONFIG_ENV_SPI_CS               (CONFIG_SF_DEFAULT_CS)
209 #define CONFIG_ENV_SPI_MAX_HZ           (CONFIG_SF_DEFAULT_SPEED)
210 #define CONFIG_ENV_SPI_MODE             (CONFIG_SF_DEFAULT_MODE)
211
212 #define TQMA6_FDT_OFFSET                (CONFIG_ENV_OFFSET_REDUND + \
213                                          CONFIG_ENV_SECT_SIZE)
214 #define TQMA6_FDT_SECT_SIZE             (TQMA6_SPI_FLASH_SECTOR_SIZE)
215
216 #define TQMA6_FDT_SECTOR_START          0x0a /* 8 Sector u-boot, 2 Sector env */
217 #define TQMA6_FDT_SECTOR_COUNT          0x01
218
219 #define TQMA6_KERNEL_SECTOR_START       0x10
220 #define TQMA6_KERNEL_SECTOR_COUNT       0x60
221
222 #define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS                                       \
223         "mmcblkdev=0\0"                                                        \
224         "uboot_offset="__stringify(TQMA6_UBOOT_OFFSET)"\0"                     \
225         "uboot_sectors="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0"              \
226         "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0"                    \
227         "fdt_sectors="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0"                  \
228         "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0"              \
229         "kernel_sectors="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0"            \
230         "update_uboot=if tftp ${uboot}; then "                                 \
231                 "if itest ${filesize} > 0; then "                              \
232                         "setexpr blkc ${filesize} + "                          \
233                                 __stringify(TQMA6_UBOOT_OFFSET) "; "           \
234                         "setexpr size ${uboot_sectors} * "                     \
235                                 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; "   \
236                         "if itest ${blkc} <= ${size}; then "                   \
237                                 "sf probe; "                                   \
238                                 "sf erase 0 ${size}; "                         \
239                                 "sf write ${loadaddr} ${uboot_offset} "        \
240                                         "${filesize}; "                        \
241                         "fi; "                                                 \
242                 "fi; fi; "                                                     \
243                 "setenv filesize 0; setenv blkc; setenv size \0"               \
244         "update_kernel=run kernel_name; if tftp ${kernel}; then "              \
245                 "if itest ${filesize} > 0; then "                              \
246                         "setexpr size ${kernel_sectors} * "                    \
247                                 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; "   \
248                         "setexpr offset ${kernel_start} * "                    \
249                                 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; "   \
250                         "if itest ${filesize} <= ${size}; then "               \
251                                 "sf probe; "                                   \
252                                 "sf erase ${offset} ${size}; "                 \
253                                 "sf write ${loadaddr} ${offset} "              \
254                                         "${filesize}; "                        \
255                         "fi; "                                                 \
256                 "fi; fi; "                                                     \
257                 "setenv filesize 0; setenv size ; setenv offset\0"             \
258         "update_fdt=if tftp ${fdt_file}; then "                                \
259                 "if itest ${filesize} > 0; then "                              \
260                         "setexpr size ${fdt_sectors} * "                       \
261                                 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; "   \
262                         "setexpr offset ${fdt_start} * "                       \
263                                 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; "   \
264                         "if itest ${filesize} <= ${size}; then "               \
265                                 "sf probe; "                                   \
266                                 "sf erase ${offset} ${size}; "                 \
267                                 "sf write ${loadaddr} ${offset} "              \
268                                         "${filesize}; "                        \
269                         "fi; "                                                 \
270                 "fi; fi; "                                                     \
271                 "setenv filesize 0; setenv size ; setenv offset\0"             \
272         "loadimage=sf probe; "                                                 \
273                 "setexpr size ${kernel_sectors} * "                            \
274                         __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; "           \
275                 "setexpr offset ${kernel_start} * "                            \
276                         __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; "           \
277                 "sf read ${loadaddr} ${offset} ${size}; "                      \
278                 "setenv size ; setenv offset\0"                                \
279         "loadfdt=sf probe; "                                                   \
280                 "setexpr size ${fdt_sectors} * "                               \
281                         __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; "           \
282                 "setexpr offset ${fdt_start} * "                               \
283                         __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; "           \
284                 "sf read ${${fdt_addr}} ${offset} ${size}; "                   \
285                 "setenv size ; setenv offset\0"                                \
286
287
288 #define CONFIG_BOOTCOMMAND                                                     \
289         "sf probe; run mmcboot; run netboot; run panicboot"                    \
290
291 #else
292
293 #error "need to define boot source"
294
295 #endif
296
297 /* 128 MiB offset as in ARM related docu for linux suggested */
298 #define TQMA6_FDT_ADDRESS               0x18000000
299
300 #define CONFIG_EXTRA_ENV_SETTINGS                                              \
301         "board=tqma6\0"                                                        \
302         "uimage=uImage\0"                                                      \
303         "zimage=zImage\0"                                                      \
304         "boot_type=bootz\0"                                                    \
305         "kernel_name=if test \"${boot_type}\" != bootz; then "                 \
306                 "setenv kernel ${uimage}; "                                    \
307                 "else setenv kernel ${zimage}; fi\0"                           \
308         "uboot=u-boot.imx\0"                                                   \
309         "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0"                               \
310         "fdt_addr="__stringify(TQMA6_FDT_ADDRESS)"\0"                          \
311         "console=" CONFIG_CONSOLE_DEV "\0"                                     \
312         "fdt_high=0xffffffff\0"                                                \
313         "initrd_high=0xffffffff\0"                                             \
314         "addtty=setenv bootargs ${bootargs} console=${console},${baudrate}\0"  \
315         "addfb=setenv bootargs ${bootargs} "                                   \
316                 "imx-fbdev.legacyfb_depth=32 consoleblank=0\0"                 \
317         "mmcpart=2\0"                                                          \
318         "mmcblkdev=0\0"                                                        \
319         "mmcargs=run addmmc addtty addfb\0"                                    \
320         "addmmc=setenv bootargs ${bootargs} "                                  \
321                 "root=/dev/mmcblk${mmcblkdev}p${mmcpart} rw rootwait\0"        \
322         "mmcboot=echo Booting from mmc ...; "                                  \
323                 "setenv bootargs; "                                            \
324                 "run mmcargs; "                                                \
325                 "run loadimage; "                                              \
326                 "if run loadfdt; then "                                        \
327                         "echo boot device tree kernel ...; "                   \
328                         "${boot_type} ${loadaddr} - ${fdt_addr}; "             \
329                 "else "                                                        \
330                         "${boot_type}; "                                       \
331                 "fi;\0"                                                        \
332                 "setenv bootargs \0"                                           \
333         "netdev=eth0\0"                                                        \
334         "rootpath=/srv/nfs/tqma6\0"                                            \
335         "ipmode=static\0"                                                      \
336         "netargs=run addnfs addip addtty addfb\0"                              \
337         "addnfs=setenv bootargs ${bootargs} "                                  \
338                 "root=/dev/nfs rw "                                            \
339                 "nfsroot=${serverip}:${rootpath},v3,tcp;\0"                    \
340         "addip_static=setenv bootargs ${bootargs} "                            \
341                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:"            \
342                 "${hostname}:${netdev}:off\0"                                  \
343         "addip_dynamic=setenv bootargs ${bootargs} ip=dhcp\0"                  \
344         "addip=if test \"${ipmode}\" != static; then "                         \
345                 "run addip_dynamic; else run addip_static; fi\0"               \
346         "set_getcmd=if test \"${ipmode}\" != static; then "                    \
347                 "setenv getcmd dhcp; setenv autoload yes; "                    \
348                 "else setenv getcmd tftp; setenv autoload no; fi\0"            \
349         "netboot=echo Booting from net ...; "                                  \
350                 "run kernel_name; "                                            \
351                 "run set_getcmd; "                                             \
352                 "setenv bootargs; "                                            \
353                 "run netargs; "                                                \
354                 "if ${getcmd} ${kernel}; then "                                \
355                         "if ${getcmd} ${fdt_addr} ${fdt_file}; then "          \
356                                 "${boot_type} ${loadaddr} - ${fdt_addr}; "     \
357                         "fi; "                                                 \
358                 "fi; "                                                         \
359                 "echo ... failed\0"                                            \
360         "panicboot=echo No boot device !!! reset\0"                            \
361         TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS                                      \
362
363 #define CONFIG_STACKSIZE                (128u * SZ_1K)
364
365 /* Physical Memory Map */
366 #define CONFIG_NR_DRAM_BANKS            1
367 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
368
369 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM
370 #define CONFIG_SYS_INIT_RAM_ADDR        IRAM_BASE_ADDR
371 #define CONFIG_SYS_INIT_RAM_SIZE        IRAM_SIZE
372
373 #define CONFIG_SYS_INIT_SP_OFFSET \
374         (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
375 #define CONFIG_SYS_INIT_SP_ADDR \
376         (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
377
378 #define CONFIG_OF_LIBFDT
379 #define CONFIG_OF_BOARD_SETUP
380 #define CONFIG_FIT
381 #define CONFIG_FIT_VERBOSE
382
383 /*
384  * All the defines above are for the TQMa6 SoM
385  *
386  * Now include the baseboard specific configuration
387  */
388 #ifdef CONFIG_MBA6
389 #include "tqma6_mba6.h"
390 #elif CONFIG_WRU4
391 #include "tqma6_wru4.h"
392 #else
393 #error "No baseboard for the TQMa6 defined!"
394 #endif
395
396 /* Support at least the sensor on TQMa6 SOM */
397 #if !defined(CONFIG_DTT_SENSORS)
398 #define CONFIG_DTT_SENSORS              { 0 }
399 #endif
400
401 #endif /* __CONFIG_H */