1 /* SPDX-License-Identifier: GPL-2.0+ */
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
39 #define CONFIG_SYS_I2C_SPEED 100000
41 /* I2C EEPROM (M24C64) */
42 #define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_BITS 5 /* 32 Bytes */
43 #define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_DELAY_MS 20
45 #if !defined(CONFIG_DM_PMIC)
47 #define CONFIG_POWER_I2C
48 #define CONFIG_POWER_PFUZE100
49 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
50 #define TQMA6_PFUZE100_I2C_BUS 2
54 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
57 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
58 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2
59 #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */
61 #define CONFIG_FEC_MXC
62 #define IMX_FEC_BASE ENET_BASE_ADDR
64 #define CONFIG_ARP_TIMEOUT 200UL
66 /* Size of malloc() pool */
67 #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2 * SZ_1M)
69 #if defined(CONFIG_TQMA6X_MMC_BOOT)
71 #define TQMA6_UBOOT_OFFSET SZ_1K
72 #define TQMA6_UBOOT_SECTOR_START 0x2
73 #define TQMA6_UBOOT_SECTOR_COUNT 0x7fe
75 #define TQMA6_FDT_OFFSET (2 * SZ_1M)
76 #define TQMA6_FDT_SECTOR_START 0x1000
77 #define TQMA6_FDT_SECTOR_COUNT 0x800
79 #define TQMA6_KERNEL_SECTOR_START 0x2000
80 #define TQMA6_KERNEL_SECTOR_COUNT 0x2000
82 #define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
83 "uboot_start="__stringify(TQMA6_UBOOT_SECTOR_START)"\0" \
84 "uboot_size="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0" \
85 "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0" \
86 "fdt_size="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0" \
87 "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0" \
88 "kernel_size="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0" \
89 "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \
90 "loadimage=mmc dev ${mmcdev}; " \
91 "mmc read ${loadaddr} ${kernel_start} ${kernel_size};\0" \
92 "loadfdt=mmc dev ${mmcdev}; " \
93 "mmc read ${fdt_addr} ${fdt_start} ${fdt_size};\0" \
94 "update_uboot=if tftp ${uboot}; then " \
95 "if itest ${filesize} > 0; then " \
96 "mmc dev ${mmcdev}; mmc rescan; " \
97 "setexpr blkc ${filesize} + 0x1ff; " \
98 "setexpr blkc ${blkc} / 0x200; " \
99 "if itest ${blkc} <= ${uboot_size}; then " \
100 "mmc write ${loadaddr} ${uboot_start} " \
104 "setenv filesize; setenv blkc \0" \
105 "update_kernel=run kernel_name; " \
106 "if tftp ${kernel}; then " \
107 "if itest ${filesize} > 0; then " \
108 "mmc dev ${mmcdev}; mmc rescan; " \
109 "setexpr blkc ${filesize} + 0x1ff; " \
110 "setexpr blkc ${blkc} / 0x200; " \
111 "if itest ${blkc} <= ${kernel_size}; then " \
112 "mmc write ${loadaddr} " \
113 "${kernel_start} ${blkc}; " \
117 "setenv filesize; setenv blkc \0" \
118 "update_fdt=if tftp ${fdt_file}; then " \
119 "if itest ${filesize} > 0; then " \
120 "mmc dev ${mmcdev}; mmc rescan; " \
121 "setexpr blkc ${filesize} + 0x1ff; " \
122 "setexpr blkc ${blkc} / 0x200; " \
123 "if itest ${blkc} <= ${fdt_size}; then " \
124 "mmc write ${loadaddr} ${fdt_start} ${blkc}; " \
127 "setenv filesize; setenv blkc \0" \
129 #define CONFIG_BOOTCOMMAND \
130 "run mmcboot; run netboot; run panicboot"
132 #elif defined(CONFIG_TQMA6X_SPI_BOOT)
134 #define TQMA6_UBOOT_OFFSET 0x400
135 #define TQMA6_UBOOT_SECTOR_START 0x0
136 /* max u-boot size: 512k */
137 #define TQMA6_UBOOT_SECTOR_SIZE TQMA6_SPI_FLASH_SECTOR_SIZE
138 #define TQMA6_UBOOT_SECTOR_COUNT 0x8
139 #define TQMA6_UBOOT_SIZE (TQMA6_UBOOT_SECTOR_SIZE * \
140 TQMA6_UBOOT_SECTOR_COUNT)
142 #define TQMA6_FDT_OFFSET (CONFIG_ENV_OFFSET_REDUND + \
143 CONFIG_ENV_SECT_SIZE)
144 #define TQMA6_FDT_SECT_SIZE (TQMA6_SPI_FLASH_SECTOR_SIZE)
146 #define TQMA6_FDT_SECTOR_START 0x0a /* 8 Sector u-boot, 2 Sector env */
147 #define TQMA6_FDT_SECTOR_COUNT 0x01
149 #define TQMA6_KERNEL_SECTOR_START 0x10
150 #define TQMA6_KERNEL_SECTOR_COUNT 0x60
152 #define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
154 "uboot_offset="__stringify(TQMA6_UBOOT_OFFSET)"\0" \
155 "uboot_sectors="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0" \
156 "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0" \
157 "fdt_sectors="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0" \
158 "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0" \
159 "kernel_sectors="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0" \
160 "update_uboot=if tftp ${uboot}; then " \
161 "if itest ${filesize} > 0; then " \
162 "setexpr blkc ${filesize} + " \
163 __stringify(TQMA6_UBOOT_OFFSET) "; " \
164 "setexpr size ${uboot_sectors} * " \
165 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
166 "if itest ${blkc} <= ${size}; then " \
168 "sf erase 0 ${size}; " \
169 "sf write ${loadaddr} ${uboot_offset} " \
173 "setenv filesize 0; setenv blkc; setenv size \0" \
174 "update_kernel=run kernel_name; if tftp ${kernel}; then " \
175 "if itest ${filesize} > 0; then " \
176 "setexpr size ${kernel_sectors} * " \
177 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
178 "setexpr offset ${kernel_start} * " \
179 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
180 "if itest ${filesize} <= ${size}; then " \
182 "sf erase ${offset} ${size}; " \
183 "sf write ${loadaddr} ${offset} " \
187 "setenv filesize 0; setenv size ; setenv offset\0" \
188 "update_fdt=if tftp ${fdt_file}; then " \
189 "if itest ${filesize} > 0; then " \
190 "setexpr size ${fdt_sectors} * " \
191 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
192 "setexpr offset ${fdt_start} * " \
193 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
194 "if itest ${filesize} <= ${size}; then " \
196 "sf erase ${offset} ${size}; " \
197 "sf write ${loadaddr} ${offset} " \
201 "setenv filesize 0; setenv size ; setenv offset\0" \
202 "loadimage=sf probe; " \
203 "setexpr size ${kernel_sectors} * " \
204 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
205 "setexpr offset ${kernel_start} * " \
206 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
207 "sf read ${loadaddr} ${offset} ${size}; " \
208 "setenv size ; setenv offset\0" \
209 "loadfdt=sf probe; " \
210 "setexpr size ${fdt_sectors} * " \
211 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
212 "setexpr offset ${fdt_start} * " \
213 __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \
214 "sf read ${fdt_addr} ${offset} ${size}; " \
215 "setenv size ; setenv offset\0" \
217 #define CONFIG_BOOTCOMMAND \
218 "sf probe; run mmcboot; run netboot; run panicboot" \
222 #error "need to define boot source"
226 /* 128 MiB offset as in ARM related docu for linux suggested */
227 #define TQMA6_FDT_ADDRESS 0x18000000
229 /* set to a resonable value, changeable by user */
230 #define TQMA6_CMA_SIZE 160M
232 #define CONFIG_EXTRA_ENV_SETTINGS \
236 "boot_type=bootz\0" \
237 "kernel_name=if test \"${boot_type}\" != bootz; then " \
238 "setenv kernel ${uimage}; " \
239 "else setenv kernel ${zimage}; fi\0" \
240 "uboot=u-boot.imx\0" \
241 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
242 "fdt_addr="__stringify(TQMA6_FDT_ADDRESS)"\0" \
243 "console=" CONSOLE_DEV "\0" \
244 "cma_size="__stringify(TQMA6_CMA_SIZE)"\0" \
245 "fdt_high=0xffffffff\0" \
246 "initrd_high=0xffffffff\0" \
248 "addcma=setenv bootargs ${bootargs} cma=${cma_size}\0" \
249 "addtty=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \
250 "addfb=setenv bootargs ${bootargs} " \
251 "imx-fbdev.legacyfb_depth=32 consoleblank=0\0" \
254 "mmcargs=run addmmc addtty addfb addcma\0" \
255 "addmmc=setenv bootargs ${bootargs} " \
256 "root=/dev/mmcblk${mmcblkdev}p${mmcpart} ${rootfsmode} " \
258 "mmcboot=echo Booting from mmc ...; " \
259 "setenv bootargs; " \
262 "if run loadfdt; then " \
263 "echo boot device tree kernel ...; " \
264 "${boot_type} ${loadaddr} - ${fdt_addr}; " \
268 "setenv bootargs \0" \
270 "rootpath=/srv/nfs/tqma6\0" \
272 "netargs=run addnfs addip addtty addfb addcma\0" \
273 "addnfs=setenv bootargs ${bootargs} " \
274 "root=/dev/nfs rw " \
275 "nfsroot=${serverip}:${rootpath},v3,tcp;\0" \
276 "addip_static=setenv bootargs ${bootargs} " \
277 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:" \
278 "${hostname}:${netdev}:off\0" \
279 "addip_dynamic=setenv bootargs ${bootargs} ip=dhcp\0" \
280 "addip=if test \"${ipmode}\" != static; then " \
281 "run addip_dynamic; else run addip_static; fi\0" \
282 "set_getcmd=if test \"${ipmode}\" != static; then " \
283 "setenv getcmd dhcp; setenv autoload yes; " \
284 "else setenv getcmd tftp; setenv autoload no; fi\0" \
285 "netboot=echo Booting from net ...; " \
286 "run kernel_name; " \
288 "setenv bootargs; " \
290 "if ${getcmd} ${kernel}; then " \
291 "if ${getcmd} ${fdt_addr} ${fdt_file}; then " \
292 "${boot_type} ${loadaddr} - ${fdt_addr}; " \
295 "echo ... failed\0" \
296 "panicboot=echo No boot device !!! reset\0" \
297 TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \
299 /* Physical Memory Map */
300 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
302 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
303 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
304 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
306 #define CONFIG_SYS_INIT_SP_OFFSET \
307 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
308 #define CONFIG_SYS_INIT_SP_ADDR \
309 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
312 * All the defines above are for the TQMa6 SoM
314 * Now include the baseboard specific configuration
317 #include "tqma6_mba6.h"
319 #include "tqma6_wru4.h"
321 #error "No baseboard for the TQMa6 defined!"
324 /* Support at least the sensor on TQMa6 SOM */
326 #endif /* __CONFIG_H */