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