1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2013, 2014, 2017 Markus Niebel <Markus.Niebel@tq-group.com>
5 * Configuration settings for the TQ Systems TQMa6<Q,D,DL,S> module.
11 #include <linux/kconfig.h>
12 #include <linux/stringify.h>
15 /* #if defined(CONFIG_SPL_BUILD) */
16 /* common IMX6 SPL configuration */
21 /* place code in last 4 MiB of RAM */
23 #include "mx6_common.h"
25 #if defined(CONFIG_TQMA6S)
26 #define PHYS_SDRAM_SIZE (512u * SZ_1M)
27 #elif defined(CONFIG_TQMA6DL)
28 #define PHYS_SDRAM_SIZE (SZ_1G)
29 #elif defined(CONFIG_TQMA6Q)
30 #define PHYS_SDRAM_SIZE (SZ_1G)
35 #define TQMA6_SPI_FLASH_SECTOR_SIZE SZ_64K
38 #define CONFIG_I2C_MULTI_BUS
40 /* I2C EEPROM (M24C64) */
41 #define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_BITS 5 /* 32 Bytes */
42 #define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_DELAY_MS 20
44 #if !defined(CONFIG_DM_PMIC)
45 #define CONFIG_POWER_PFUZE100
46 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
47 #define TQMA6_PFUZE100_I2C_BUS 2
51 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
54 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
55 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
56 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
58 #define CONFIG_FEC_MXC
59 #define IMX_FEC_BASE ENET_BASE_ADDR
61 #define CONFIG_ARP_TIMEOUT 200UL
63 #if defined(CONFIG_TQMA6X_MMC_BOOT)
65 #define TQMA6_UBOOT_OFFSET SZ_1K
66 #define TQMA6_UBOOT_SECTOR_START 0x2
67 #define TQMA6_UBOOT_SECTOR_COUNT 0x7fe
69 #define TQMA6_FDT_OFFSET (2 * SZ_1M)
70 #define TQMA6_FDT_SECTOR_START 0x1000
71 #define TQMA6_FDT_SECTOR_COUNT 0x800
73 #define TQMA6_KERNEL_SECTOR_START 0x2000
74 #define TQMA6_KERNEL_SECTOR_COUNT 0x2000
76 #define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
77 "uboot_start="__stringify(TQMA6_UBOOT_SECTOR_START)"\0" \
78 "uboot_size="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0" \
79 "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0" \
80 "fdt_size="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0" \
81 "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0" \
82 "kernel_size="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0" \
83 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
84 "loadimage=mmc dev ${mmcdev}; " \
85 "mmc read ${loadaddr} ${kernel_start} ${kernel_size};\0" \
86 "loadfdt=mmc dev ${mmcdev}; " \
87 "mmc read ${fdt_addr} ${fdt_start} ${fdt_size};\0" \
88 "update_uboot=if tftp ${uboot}; then " \
89 "if itest ${filesize} > 0; then " \
90 "mmc dev ${mmcdev}; mmc rescan; " \
91 "setexpr blkc ${filesize} + 0x1ff; " \
92 "setexpr blkc ${blkc} / 0x200; " \
93 "if itest ${blkc} <= ${uboot_size}; then " \
94 "mmc write ${loadaddr} ${uboot_start} " \
98 "setenv filesize; setenv blkc \0" \
99 "update_kernel=run kernel_name; " \
100 "if tftp ${kernel}; then " \
101 "if itest ${filesize} > 0; then " \
102 "mmc dev ${mmcdev}; mmc rescan; " \
103 "setexpr blkc ${filesize} + 0x1ff; " \
104 "setexpr blkc ${blkc} / 0x200; " \
105 "if itest ${blkc} <= ${kernel_size}; then " \
106 "mmc write ${loadaddr} " \
107 "${kernel_start} ${blkc}; " \
111 "setenv filesize; setenv blkc \0" \
112 "update_fdt=if tftp ${fdt_file}; then " \
113 "if itest ${filesize} > 0; then " \
114 "mmc dev ${mmcdev}; mmc rescan; " \
115 "setexpr blkc ${filesize} + 0x1ff; " \
116 "setexpr blkc ${blkc} / 0x200; " \
117 "if itest ${blkc} <= ${fdt_size}; then " \
118 "mmc write ${loadaddr} ${fdt_start} ${blkc}; " \
121 "setenv filesize; setenv blkc \0" \
123 #define CONFIG_BOOTCOMMAND \
124 "run mmcboot; run netboot; run panicboot"
126 #elif defined(CONFIG_TQMA6X_SPI_BOOT)
128 #define TQMA6_UBOOT_OFFSET 0x400
129 #define TQMA6_UBOOT_SECTOR_START 0x0
130 /* max u-boot size: 512k */
131 #define TQMA6_UBOOT_SECTOR_SIZE TQMA6_SPI_FLASH_SECTOR_SIZE
132 #define TQMA6_UBOOT_SECTOR_COUNT 0x8
133 #define TQMA6_UBOOT_SIZE (TQMA6_UBOOT_SECTOR_SIZE * \
134 TQMA6_UBOOT_SECTOR_COUNT)
136 #define TQMA6_FDT_OFFSET (CONFIG_ENV_OFFSET_REDUND + \
137 CONFIG_ENV_SECT_SIZE)
138 #define TQMA6_FDT_SECT_SIZE (TQMA6_SPI_FLASH_SECTOR_SIZE)
140 #define TQMA6_FDT_SECTOR_START 0x0a /* 8 Sector u-boot, 2 Sector env */
141 #define TQMA6_FDT_SECTOR_COUNT 0x01
143 #define TQMA6_KERNEL_SECTOR_START 0x10
144 #define TQMA6_KERNEL_SECTOR_COUNT 0x60
146 #define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
148 "uboot_offset="__stringify(TQMA6_UBOOT_OFFSET)"\0" \
149 "uboot_sectors="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0" \
150 "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0" \
151 "fdt_sectors="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0" \
152 "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0" \
153 "kernel_sectors="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0" \
154 "update_uboot=if tftp ${uboot}; then " \
155 "if itest ${filesize} > 0; then " \
156 "setexpr blkc ${filesize} + " \
157 __stringify(TQMA6_UBOOT_OFFSET) "; " \
158 "setexpr size ${uboot_sectors} * " \
159 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
160 "if itest ${blkc} <= ${size}; then " \
162 "sf erase 0 ${size}; " \
163 "sf write ${loadaddr} ${uboot_offset} " \
167 "setenv filesize 0; setenv blkc; setenv size \0" \
168 "update_kernel=run kernel_name; if tftp ${kernel}; then " \
169 "if itest ${filesize} > 0; then " \
170 "setexpr size ${kernel_sectors} * " \
171 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
172 "setexpr offset ${kernel_start} * " \
173 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
174 "if itest ${filesize} <= ${size}; then " \
176 "sf erase ${offset} ${size}; " \
177 "sf write ${loadaddr} ${offset} " \
181 "setenv filesize 0; setenv size ; setenv offset\0" \
182 "update_fdt=if tftp ${fdt_file}; then " \
183 "if itest ${filesize} > 0; then " \
184 "setexpr size ${fdt_sectors} * " \
185 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
186 "setexpr offset ${fdt_start} * " \
187 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
188 "if itest ${filesize} <= ${size}; then " \
190 "sf erase ${offset} ${size}; " \
191 "sf write ${loadaddr} ${offset} " \
195 "setenv filesize 0; setenv size ; setenv offset\0" \
196 "loadimage=sf probe; " \
197 "setexpr size ${kernel_sectors} * " \
198 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
199 "setexpr offset ${kernel_start} * " \
200 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
201 "sf read ${loadaddr} ${offset} ${size}; " \
202 "setenv size ; setenv offset\0" \
203 "loadfdt=sf probe; " \
204 "setexpr size ${fdt_sectors} * " \
205 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
206 "setexpr offset ${fdt_start} * " \
207 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
208 "sf read ${fdt_addr} ${offset} ${size}; " \
209 "setenv size ; setenv offset\0" \
211 #define CONFIG_BOOTCOMMAND \
212 "sf probe; run mmcboot; run netboot; run panicboot" \
216 #error "need to define boot source"
220 /* 128 MiB offset as in ARM related docu for linux suggested */
221 #define TQMA6_FDT_ADDRESS 0x18000000
223 /* set to a resonable value, changeable by user */
224 #define TQMA6_CMA_SIZE 160M
226 #define CONFIG_EXTRA_ENV_SETTINGS \
230 "boot_type=bootz\0" \
231 "kernel_name=if test \"${boot_type}\" != bootz; then " \
232 "setenv kernel ${uimage}; " \
233 "else setenv kernel ${zimage}; fi\0" \
234 "uboot=u-boot.imx\0" \
235 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
236 "fdt_addr="__stringify(TQMA6_FDT_ADDRESS)"\0" \
237 "console=" CONSOLE_DEV "\0" \
238 "cma_size="__stringify(TQMA6_CMA_SIZE)"\0" \
239 "fdt_high=0xffffffff\0" \
240 "initrd_high=0xffffffff\0" \
242 "addcma=setenv bootargs ${bootargs} cma=${cma_size}\0" \
243 "addtty=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \
244 "addfb=setenv bootargs ${bootargs} " \
245 "imx-fbdev.legacyfb_depth=32 consoleblank=0\0" \
248 "mmcargs=run addmmc addtty addfb addcma\0" \
249 "addmmc=setenv bootargs ${bootargs} " \
250 "root=/dev/mmcblk${mmcblkdev}p${mmcpart} ${rootfsmode} " \
252 "mmcboot=echo Booting from mmc ...; " \
253 "setenv bootargs; " \
256 "if run loadfdt; then " \
257 "echo boot device tree kernel ...; " \
258 "${boot_type} ${loadaddr} - ${fdt_addr}; " \
262 "setenv bootargs \0" \
264 "rootpath=/srv/nfs/tqma6\0" \
266 "netargs=run addnfs addip addtty addfb addcma\0" \
267 "addnfs=setenv bootargs ${bootargs} " \
268 "root=/dev/nfs rw " \
269 "nfsroot=${serverip}:${rootpath},v3,tcp;\0" \
270 "addip_static=setenv bootargs ${bootargs} " \
271 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:" \
272 "${hostname}:${netdev}:off\0" \
273 "addip_dynamic=setenv bootargs ${bootargs} ip=dhcp\0" \
274 "addip=if test \"${ipmode}\" != static; then " \
275 "run addip_dynamic; else run addip_static; fi\0" \
276 "set_getcmd=if test \"${ipmode}\" != static; then " \
277 "setenv getcmd dhcp; setenv autoload yes; " \
278 "else setenv getcmd tftp; setenv autoload no; fi\0" \
279 "netboot=echo Booting from net ...; " \
280 "run kernel_name; " \
282 "setenv bootargs; " \
284 "if ${getcmd} ${kernel}; then " \
285 "if ${getcmd} ${fdt_addr} ${fdt_file}; then " \
286 "${boot_type} ${loadaddr} - ${fdt_addr}; " \
289 "echo ... failed\0" \
290 "panicboot=echo No boot device !!! reset\0" \
291 TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
293 /* Physical Memory Map */
294 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
296 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
297 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
298 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
300 #define CONFIG_SYS_INIT_SP_OFFSET \
301 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
302 #define CONFIG_SYS_INIT_SP_ADDR \
303 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
306 * All the defines above are for the TQMa6 SoM
308 * Now include the baseboard specific configuration
311 #include "tqma6_mba6.h"
313 #include "tqma6_wru4.h"
315 #error "No baseboard for the TQMa6 defined!"
318 /* Support at least the sensor on TQMa6 SOM */
320 #endif /* __CONFIG_H */