Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 2 | /* |
Markus Niebel | 468fb1e | 2017-02-28 16:37:33 +0100 | [diff] [blame] | 3 | * Copyright (C) 2013, 2014, 2017 Markus Niebel <Markus.Niebel@tq-group.com> |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 4 | * |
Matthias Schiffer | a5e3052 | 2021-11-02 11:36:46 +0100 | [diff] [blame] | 5 | * Configuration settings for the TQ-Systems TQMa6<Q,D,DL,S> module. |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __CONFIG_H |
| 9 | #define __CONFIG_H |
| 10 | |
Markus Niebel | 66cacc9 | 2015-06-04 17:25:30 +0200 | [diff] [blame] | 11 | #include <linux/kconfig.h> |
Simon Glass | 1af3c7f | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 12 | #include <linux/stringify.h> |
| 13 | |
Markus Niebel | 1719d49 | 2014-10-23 15:47:05 +0200 | [diff] [blame] | 14 | /* SPL */ |
| 15 | /* #if defined(CONFIG_SPL_BUILD) */ |
Markus Niebel | 1719d49 | 2014-10-23 15:47:05 +0200 | [diff] [blame] | 16 | /* common IMX6 SPL configuration */ |
| 17 | #include "imx6_spl.h" |
| 18 | |
| 19 | /* #endif */ |
| 20 | |
Fabio Estevam | cd6ddc4 | 2015-05-28 12:33:34 -0300 | [diff] [blame] | 21 | /* place code in last 4 MiB of RAM */ |
Fabio Estevam | cd6ddc4 | 2015-05-28 12:33:34 -0300 | [diff] [blame] | 22 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 23 | #include "mx6_common.h" |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 24 | |
Markus Niebel | d4b349e | 2017-02-28 16:37:32 +0100 | [diff] [blame] | 25 | #if defined(CONFIG_TQMA6S) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 26 | #define PHYS_SDRAM_SIZE (512u * SZ_1M) |
Markus Niebel | 468fb1e | 2017-02-28 16:37:33 +0100 | [diff] [blame] | 27 | #elif defined(CONFIG_TQMA6DL) |
| 28 | #define PHYS_SDRAM_SIZE (SZ_1G) |
Markus Niebel | d4b349e | 2017-02-28 16:37:32 +0100 | [diff] [blame] | 29 | #elif defined(CONFIG_TQMA6Q) |
Markus Niebel | 468fb1e | 2017-02-28 16:37:33 +0100 | [diff] [blame] | 30 | #define PHYS_SDRAM_SIZE (SZ_1G) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 31 | #endif |
| 32 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 33 | /* SPI Flash */ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 34 | |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 35 | #define TQMA6_SPI_FLASH_SECTOR_SIZE SZ_64K |
| 36 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 37 | /* I2C Configs */ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 38 | #define CONFIG_I2C_MULTI_BUS |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 39 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 40 | /* I2C EEPROM (M24C64) */ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 41 | #define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_BITS 5 /* 32 Bytes */ |
| 42 | #define CONFIG_SYS_I2C_EEPROM_PAGE_WRITE_DELAY_MS 20 |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 43 | |
Michael Krummsdorf | e7ae6b5 | 2020-04-09 15:21:40 +0200 | [diff] [blame] | 44 | #if !defined(CONFIG_DM_PMIC) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 45 | #define CONFIG_POWER_PFUZE100 |
| 46 | #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08 |
| 47 | #define TQMA6_PFUZE100_I2C_BUS 2 |
Michael Krummsdorf | e7ae6b5 | 2020-04-09 15:21:40 +0200 | [diff] [blame] | 48 | #endif |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 49 | |
| 50 | /* MMC Configs */ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 51 | #define CONFIG_SYS_FSL_ESDHC_ADDR 0 |
| 52 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 53 | /* USB Configs */ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 54 | #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW) |
Stefan Roese | 911b5ea | 2015-03-12 13:34:29 +0100 | [diff] [blame] | 55 | #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 |
| 56 | #define CONFIG_EHCI_HCD_INIT_AFTER_RESET /* For OTG port */ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 57 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 58 | #define IMX_FEC_BASE ENET_BASE_ADDR |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 59 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 60 | #define CONFIG_ARP_TIMEOUT 200UL |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 61 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 62 | #if defined(CONFIG_TQMA6X_MMC_BOOT) |
| 63 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 64 | #define TQMA6_UBOOT_OFFSET SZ_1K |
| 65 | #define TQMA6_UBOOT_SECTOR_START 0x2 |
| 66 | #define TQMA6_UBOOT_SECTOR_COUNT 0x7fe |
| 67 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 68 | #define TQMA6_FDT_OFFSET (2 * SZ_1M) |
| 69 | #define TQMA6_FDT_SECTOR_START 0x1000 |
| 70 | #define TQMA6_FDT_SECTOR_COUNT 0x800 |
| 71 | |
| 72 | #define TQMA6_KERNEL_SECTOR_START 0x2000 |
| 73 | #define TQMA6_KERNEL_SECTOR_COUNT 0x2000 |
| 74 | |
| 75 | #define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \ |
| 76 | "uboot_start="__stringify(TQMA6_UBOOT_SECTOR_START)"\0" \ |
| 77 | "uboot_size="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0" \ |
| 78 | "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0" \ |
| 79 | "fdt_size="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0" \ |
| 80 | "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0" \ |
| 81 | "kernel_size="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0" \ |
| 82 | "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \ |
| 83 | "loadimage=mmc dev ${mmcdev}; " \ |
| 84 | "mmc read ${loadaddr} ${kernel_start} ${kernel_size};\0" \ |
| 85 | "loadfdt=mmc dev ${mmcdev}; " \ |
| 86 | "mmc read ${fdt_addr} ${fdt_start} ${fdt_size};\0" \ |
| 87 | "update_uboot=if tftp ${uboot}; then " \ |
| 88 | "if itest ${filesize} > 0; then " \ |
| 89 | "mmc dev ${mmcdev}; mmc rescan; " \ |
Markus Niebel | e7203d7 | 2017-02-03 16:14:02 +0100 | [diff] [blame] | 90 | "setexpr blkc ${filesize} + 0x1ff; " \ |
| 91 | "setexpr blkc ${blkc} / 0x200; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 92 | "if itest ${blkc} <= ${uboot_size}; then " \ |
| 93 | "mmc write ${loadaddr} ${uboot_start} " \ |
| 94 | "${blkc}; " \ |
| 95 | "fi; " \ |
| 96 | "fi; fi; " \ |
| 97 | "setenv filesize; setenv blkc \0" \ |
| 98 | "update_kernel=run kernel_name; " \ |
| 99 | "if tftp ${kernel}; then " \ |
| 100 | "if itest ${filesize} > 0; then " \ |
| 101 | "mmc dev ${mmcdev}; mmc rescan; " \ |
Markus Niebel | e7203d7 | 2017-02-03 16:14:02 +0100 | [diff] [blame] | 102 | "setexpr blkc ${filesize} + 0x1ff; " \ |
| 103 | "setexpr blkc ${blkc} / 0x200; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 104 | "if itest ${blkc} <= ${kernel_size}; then " \ |
| 105 | "mmc write ${loadaddr} " \ |
| 106 | "${kernel_start} ${blkc}; " \ |
| 107 | "fi; " \ |
| 108 | "fi; " \ |
| 109 | "fi; " \ |
| 110 | "setenv filesize; setenv blkc \0" \ |
| 111 | "update_fdt=if tftp ${fdt_file}; then " \ |
| 112 | "if itest ${filesize} > 0; then " \ |
| 113 | "mmc dev ${mmcdev}; mmc rescan; " \ |
Markus Niebel | e7203d7 | 2017-02-03 16:14:02 +0100 | [diff] [blame] | 114 | "setexpr blkc ${filesize} + 0x1ff; " \ |
| 115 | "setexpr blkc ${blkc} / 0x200; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 116 | "if itest ${blkc} <= ${fdt_size}; then " \ |
| 117 | "mmc write ${loadaddr} ${fdt_start} ${blkc}; " \ |
| 118 | "fi; " \ |
| 119 | "fi; fi; " \ |
| 120 | "setenv filesize; setenv blkc \0" \ |
| 121 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 122 | #elif defined(CONFIG_TQMA6X_SPI_BOOT) |
| 123 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 124 | #define TQMA6_UBOOT_OFFSET 0x400 |
| 125 | #define TQMA6_UBOOT_SECTOR_START 0x0 |
| 126 | /* max u-boot size: 512k */ |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 127 | #define TQMA6_UBOOT_SECTOR_SIZE TQMA6_SPI_FLASH_SECTOR_SIZE |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 128 | #define TQMA6_UBOOT_SECTOR_COUNT 0x8 |
| 129 | #define TQMA6_UBOOT_SIZE (TQMA6_UBOOT_SECTOR_SIZE * \ |
| 130 | TQMA6_UBOOT_SECTOR_COUNT) |
| 131 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 132 | #define TQMA6_FDT_OFFSET (CONFIG_ENV_OFFSET_REDUND + \ |
| 133 | CONFIG_ENV_SECT_SIZE) |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 134 | #define TQMA6_FDT_SECT_SIZE (TQMA6_SPI_FLASH_SECTOR_SIZE) |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 135 | |
| 136 | #define TQMA6_FDT_SECTOR_START 0x0a /* 8 Sector u-boot, 2 Sector env */ |
| 137 | #define TQMA6_FDT_SECTOR_COUNT 0x01 |
| 138 | |
| 139 | #define TQMA6_KERNEL_SECTOR_START 0x10 |
| 140 | #define TQMA6_KERNEL_SECTOR_COUNT 0x60 |
| 141 | |
| 142 | #define TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \ |
| 143 | "mmcblkdev=0\0" \ |
| 144 | "uboot_offset="__stringify(TQMA6_UBOOT_OFFSET)"\0" \ |
| 145 | "uboot_sectors="__stringify(TQMA6_UBOOT_SECTOR_COUNT)"\0" \ |
| 146 | "fdt_start="__stringify(TQMA6_FDT_SECTOR_START)"\0" \ |
| 147 | "fdt_sectors="__stringify(TQMA6_FDT_SECTOR_COUNT)"\0" \ |
| 148 | "kernel_start="__stringify(TQMA6_KERNEL_SECTOR_START)"\0" \ |
| 149 | "kernel_sectors="__stringify(TQMA6_KERNEL_SECTOR_COUNT)"\0" \ |
| 150 | "update_uboot=if tftp ${uboot}; then " \ |
| 151 | "if itest ${filesize} > 0; then " \ |
| 152 | "setexpr blkc ${filesize} + " \ |
| 153 | __stringify(TQMA6_UBOOT_OFFSET) "; " \ |
| 154 | "setexpr size ${uboot_sectors} * " \ |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 155 | __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 156 | "if itest ${blkc} <= ${size}; then " \ |
| 157 | "sf probe; " \ |
| 158 | "sf erase 0 ${size}; " \ |
| 159 | "sf write ${loadaddr} ${uboot_offset} " \ |
| 160 | "${filesize}; " \ |
| 161 | "fi; " \ |
| 162 | "fi; fi; " \ |
| 163 | "setenv filesize 0; setenv blkc; setenv size \0" \ |
| 164 | "update_kernel=run kernel_name; if tftp ${kernel}; then " \ |
| 165 | "if itest ${filesize} > 0; then " \ |
| 166 | "setexpr size ${kernel_sectors} * " \ |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 167 | __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 168 | "setexpr offset ${kernel_start} * " \ |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 169 | __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 170 | "if itest ${filesize} <= ${size}; then " \ |
| 171 | "sf probe; " \ |
| 172 | "sf erase ${offset} ${size}; " \ |
| 173 | "sf write ${loadaddr} ${offset} " \ |
| 174 | "${filesize}; " \ |
| 175 | "fi; " \ |
| 176 | "fi; fi; " \ |
| 177 | "setenv filesize 0; setenv size ; setenv offset\0" \ |
| 178 | "update_fdt=if tftp ${fdt_file}; then " \ |
| 179 | "if itest ${filesize} > 0; then " \ |
| 180 | "setexpr size ${fdt_sectors} * " \ |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 181 | __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 182 | "setexpr offset ${fdt_start} * " \ |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 183 | __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 184 | "if itest ${filesize} <= ${size}; then " \ |
| 185 | "sf probe; " \ |
| 186 | "sf erase ${offset} ${size}; " \ |
| 187 | "sf write ${loadaddr} ${offset} " \ |
| 188 | "${filesize}; " \ |
| 189 | "fi; " \ |
| 190 | "fi; fi; " \ |
| 191 | "setenv filesize 0; setenv size ; setenv offset\0" \ |
| 192 | "loadimage=sf probe; " \ |
| 193 | "setexpr size ${kernel_sectors} * " \ |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 194 | __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 195 | "setexpr offset ${kernel_start} * " \ |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 196 | __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 197 | "sf read ${loadaddr} ${offset} ${size}; " \ |
| 198 | "setenv size ; setenv offset\0" \ |
| 199 | "loadfdt=sf probe; " \ |
| 200 | "setexpr size ${fdt_sectors} * " \ |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 201 | __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 202 | "setexpr offset ${fdt_start} * " \ |
Markus Niebel | 5283546 | 2014-11-18 13:22:54 +0100 | [diff] [blame] | 203 | __stringify(TQMA6_SPI_FLASH_SECTOR_SIZE)"; " \ |
Markus Niebel | 0b14f1a | 2017-02-03 16:14:00 +0100 | [diff] [blame] | 204 | "sf read ${fdt_addr} ${offset} ${size}; " \ |
Tom Rini | 970bf86 | 2021-11-10 09:11:40 -0500 | [diff] [blame] | 205 | "setenv size ; setenv offset\0" |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 206 | #else |
| 207 | |
| 208 | #error "need to define boot source" |
| 209 | |
| 210 | #endif |
| 211 | |
| 212 | /* 128 MiB offset as in ARM related docu for linux suggested */ |
| 213 | #define TQMA6_FDT_ADDRESS 0x18000000 |
| 214 | |
Markus Niebel | 9e9846a | 2017-02-03 16:13:58 +0100 | [diff] [blame] | 215 | /* set to a resonable value, changeable by user */ |
| 216 | #define TQMA6_CMA_SIZE 160M |
| 217 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 218 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 219 | "board=tqma6\0" \ |
| 220 | "uimage=uImage\0" \ |
| 221 | "zimage=zImage\0" \ |
| 222 | "boot_type=bootz\0" \ |
| 223 | "kernel_name=if test \"${boot_type}\" != bootz; then " \ |
| 224 | "setenv kernel ${uimage}; " \ |
| 225 | "else setenv kernel ${zimage}; fi\0" \ |
| 226 | "uboot=u-boot.imx\0" \ |
| 227 | "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
| 228 | "fdt_addr="__stringify(TQMA6_FDT_ADDRESS)"\0" \ |
Markus Niebel | dc05e47 | 2017-02-03 16:14:03 +0100 | [diff] [blame] | 229 | "console=" CONSOLE_DEV "\0" \ |
Markus Niebel | 9e9846a | 2017-02-03 16:13:58 +0100 | [diff] [blame] | 230 | "cma_size="__stringify(TQMA6_CMA_SIZE)"\0" \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 231 | "fdt_high=0xffffffff\0" \ |
| 232 | "initrd_high=0xffffffff\0" \ |
Markus Niebel | 3471390 | 2017-02-03 16:14:01 +0100 | [diff] [blame] | 233 | "rootfsmode=ro\0" \ |
Markus Niebel | 9e9846a | 2017-02-03 16:13:58 +0100 | [diff] [blame] | 234 | "addcma=setenv bootargs ${bootargs} cma=${cma_size}\0" \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 235 | "addtty=setenv bootargs ${bootargs} console=${console},${baudrate}\0" \ |
| 236 | "addfb=setenv bootargs ${bootargs} " \ |
| 237 | "imx-fbdev.legacyfb_depth=32 consoleblank=0\0" \ |
| 238 | "mmcpart=2\0" \ |
| 239 | "mmcblkdev=0\0" \ |
Markus Niebel | 9e9846a | 2017-02-03 16:13:58 +0100 | [diff] [blame] | 240 | "mmcargs=run addmmc addtty addfb addcma\0" \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 241 | "addmmc=setenv bootargs ${bootargs} " \ |
Markus Niebel | 3471390 | 2017-02-03 16:14:01 +0100 | [diff] [blame] | 242 | "root=/dev/mmcblk${mmcblkdev}p${mmcpart} ${rootfsmode} " \ |
| 243 | "rootwait\0" \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 244 | "mmcboot=echo Booting from mmc ...; " \ |
| 245 | "setenv bootargs; " \ |
| 246 | "run mmcargs; " \ |
| 247 | "run loadimage; " \ |
| 248 | "if run loadfdt; then " \ |
| 249 | "echo boot device tree kernel ...; " \ |
| 250 | "${boot_type} ${loadaddr} - ${fdt_addr}; " \ |
| 251 | "else " \ |
| 252 | "${boot_type}; " \ |
| 253 | "fi;\0" \ |
| 254 | "setenv bootargs \0" \ |
| 255 | "netdev=eth0\0" \ |
| 256 | "rootpath=/srv/nfs/tqma6\0" \ |
| 257 | "ipmode=static\0" \ |
Markus Niebel | 9e9846a | 2017-02-03 16:13:58 +0100 | [diff] [blame] | 258 | "netargs=run addnfs addip addtty addfb addcma\0" \ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 259 | "addnfs=setenv bootargs ${bootargs} " \ |
| 260 | "root=/dev/nfs rw " \ |
| 261 | "nfsroot=${serverip}:${rootpath},v3,tcp;\0" \ |
| 262 | "addip_static=setenv bootargs ${bootargs} " \ |
| 263 | "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:" \ |
| 264 | "${hostname}:${netdev}:off\0" \ |
| 265 | "addip_dynamic=setenv bootargs ${bootargs} ip=dhcp\0" \ |
| 266 | "addip=if test \"${ipmode}\" != static; then " \ |
| 267 | "run addip_dynamic; else run addip_static; fi\0" \ |
| 268 | "set_getcmd=if test \"${ipmode}\" != static; then " \ |
| 269 | "setenv getcmd dhcp; setenv autoload yes; " \ |
| 270 | "else setenv getcmd tftp; setenv autoload no; fi\0" \ |
| 271 | "netboot=echo Booting from net ...; " \ |
| 272 | "run kernel_name; " \ |
| 273 | "run set_getcmd; " \ |
| 274 | "setenv bootargs; " \ |
| 275 | "run netargs; " \ |
| 276 | "if ${getcmd} ${kernel}; then " \ |
| 277 | "if ${getcmd} ${fdt_addr} ${fdt_file}; then " \ |
| 278 | "${boot_type} ${loadaddr} - ${fdt_addr}; " \ |
| 279 | "fi; " \ |
| 280 | "fi; " \ |
| 281 | "echo ... failed\0" \ |
| 282 | "panicboot=echo No boot device !!! reset\0" \ |
| 283 | TQMA6_EXTRA_BOOTDEV_ENV_SETTINGS \ |
| 284 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 285 | /* Physical Memory Map */ |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 286 | #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR |
| 287 | |
| 288 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM |
| 289 | #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR |
| 290 | #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE |
| 291 | |
| 292 | #define CONFIG_SYS_INIT_SP_OFFSET \ |
| 293 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
| 294 | #define CONFIG_SYS_INIT_SP_ADDR \ |
| 295 | (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET) |
| 296 | |
Stefan Roese | 6b396b3 | 2015-03-12 16:34:16 +0100 | [diff] [blame] | 297 | /* |
| 298 | * All the defines above are for the TQMa6 SoM |
| 299 | * |
| 300 | * Now include the baseboard specific configuration |
| 301 | */ |
| 302 | #ifdef CONFIG_MBA6 |
| 303 | #include "tqma6_mba6.h" |
Stefan Roese | 452308c | 2015-07-06 13:36:33 +0200 | [diff] [blame] | 304 | #elif CONFIG_WRU4 |
| 305 | #include "tqma6_wru4.h" |
Stefan Roese | 6b396b3 | 2015-03-12 16:34:16 +0100 | [diff] [blame] | 306 | #else |
| 307 | #error "No baseboard for the TQMa6 defined!" |
| 308 | #endif |
| 309 | |
| 310 | /* Support at least the sensor on TQMa6 SOM */ |
Stefan Roese | 6b396b3 | 2015-03-12 16:34:16 +0100 | [diff] [blame] | 311 | |
Markus Niebel | cb07d74 | 2014-07-18 16:52:44 +0200 | [diff] [blame] | 312 | #endif /* __CONFIG_H */ |