Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 1 | /* |
| 2 | * am335x_evm.h |
| 3 | * |
| 4 | * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation version 2. |
| 9 | * |
| 10 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
| 11 | * kind, whether express or implied; without even the implied warranty |
| 12 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | */ |
| 15 | |
| 16 | #ifndef __CONFIG_BALTOS_H |
| 17 | #define __CONFIG_BALTOS_H |
| 18 | |
Yegor Yefremov | 5f9c58e | 2015-07-06 17:28:36 +0200 | [diff] [blame] | 19 | #include <linux/sizes.h> |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 20 | #include <configs/ti_am335x_common.h> |
| 21 | |
Tom Rini | 92a1bab | 2017-01-25 20:42:36 -0500 | [diff] [blame] | 22 | #define CONFIG_MACH_TYPE MACH_TYPE_AM335XEVM |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 23 | |
| 24 | /* Clock Defines */ |
| 25 | #define V_OSCK 24000000 /* Clock output from T2 */ |
| 26 | #define V_SCLK (V_OSCK) |
| 27 | |
| 28 | /* Custom script for NOR */ |
| 29 | #define CONFIG_SYS_LDSCRIPT "board/vscom/baltos/u-boot.lds" |
| 30 | |
| 31 | /* Always 128 KiB env size */ |
| 32 | #define CONFIG_ENV_SIZE (128 << 10) |
| 33 | |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 34 | /* FIT support */ |
Yegor Yefremov | 5f9c58e | 2015-07-06 17:28:36 +0200 | [diff] [blame] | 35 | #define CONFIG_SYS_BOOTM_LEN SZ_64M |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 36 | |
| 37 | /* UBI Support */ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 38 | #define CONFIG_MTD_PARTITIONS |
| 39 | #define CONFIG_MTD_DEVICE |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 40 | |
| 41 | /* I2C configuration */ |
| 42 | #undef CONFIG_SYS_OMAP24_I2C_SPEED |
Yegor Yefremov | e6b1b58 | 2015-07-06 17:28:35 +0200 | [diff] [blame] | 43 | #define CONFIG_SYS_OMAP24_I2C_SPEED 1000 |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 44 | |
| 45 | #ifdef CONFIG_NAND |
Yegor Yefremov | 5f9c58e | 2015-07-06 17:28:36 +0200 | [diff] [blame] | 46 | #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x00080000 |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 47 | #ifdef CONFIG_SPL_OS_BOOT |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 48 | #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x00200000 /* kernel offset */ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 49 | #endif |
| 50 | #define NANDARGS \ |
| 51 | "mtdids=" MTDIDS_DEFAULT "\0" \ |
| 52 | "mtdparts=" MTDPARTS_DEFAULT "\0" \ |
| 53 | "nandargs=setenv bootargs console=${console} " \ |
| 54 | "${optargs} " \ |
| 55 | "${mtdparts} " \ |
| 56 | "root=${nandroot} " \ |
| 57 | "rootfstype=${nandrootfstype}\0" \ |
| 58 | "nandroot=ubi0:rootfs rw ubi.mtd=5\0" \ |
| 59 | "nandrootfstype=ubifs rootwait=1\0" \ |
| 60 | "nandboot=echo Booting from nand ...; " \ |
| 61 | "run nandargs; " \ |
| 62 | "setenv loadaddr 0x84000000; " \ |
| 63 | "ubi part UBI; " \ |
| 64 | "ubifsmount ubi0:kernel; " \ |
| 65 | "ubifsload $loadaddr kernel-fit.itb;" \ |
| 66 | "ubifsumount; " \ |
Yegor Yefremov | 5f9c58e | 2015-07-06 17:28:36 +0200 | [diff] [blame] | 67 | "bootm ${loadaddr}#conf${board_name}; " \ |
| 68 | "if test $? -ne 0; then echo Using default FIT config; " \ |
| 69 | "bootm ${loadaddr}; fi;\0" |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 70 | #else |
| 71 | #define NANDARGS "" |
| 72 | #endif |
| 73 | |
| 74 | #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG |
| 75 | |
| 76 | #ifndef CONFIG_SPL_BUILD |
| 77 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 78 | DEFAULT_LINUX_BOOT_ENV \ |
| 79 | "boot_fdt=try\0" \ |
| 80 | "bootpart=0:2\0" \ |
| 81 | "bootdir=/boot\0" \ |
| 82 | "bootfile=zImage\0" \ |
| 83 | "fdtfile=undefined\0" \ |
| 84 | "console=ttyO0,115200n8\0" \ |
| 85 | "partitions=" \ |
| 86 | "uuid_disk=${uuid_gpt_disk};" \ |
| 87 | "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}\0" \ |
| 88 | "optargs=\0" \ |
| 89 | "mmcdev=0\0" \ |
| 90 | "mmcroot=/dev/mmcblk0p2 ro\0" \ |
Yegor Yefremov | 88679a2 | 2016-12-01 12:52:18 +0100 | [diff] [blame] | 91 | "usbroot=/dev/sda2 ro\0" \ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 92 | "mmcrootfstype=ext4 rootwait\0" \ |
Yegor Yefremov | 88679a2 | 2016-12-01 12:52:18 +0100 | [diff] [blame] | 93 | "usbrootfstype=ext4 rootwait\0" \ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 94 | "rootpath=/export/rootfs\0" \ |
| 95 | "nfsopts=nolock\0" \ |
| 96 | "static_ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}" \ |
| 97 | "::off\0" \ |
| 98 | "ramroot=/dev/ram0 rw\0" \ |
| 99 | "ramrootfstype=ext2\0" \ |
| 100 | "mmcargs=setenv bootargs console=${console} " \ |
| 101 | "${optargs} " \ |
| 102 | "${mtdparts} " \ |
| 103 | "root=${mmcroot} " \ |
| 104 | "rootfstype=${mmcrootfstype}\0" \ |
Yegor Yefremov | 88679a2 | 2016-12-01 12:52:18 +0100 | [diff] [blame] | 105 | "usbargs=setenv bootargs console=${console} " \ |
| 106 | "${optargs} " \ |
| 107 | "${mtdparts} " \ |
| 108 | "root=${usbroot} " \ |
| 109 | "rootfstype=${usbrootfstype}\0" \ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 110 | "spiroot=/dev/mtdblock4 rw\0" \ |
| 111 | "spirootfstype=jffs2\0" \ |
| 112 | "spisrcaddr=0xe0000\0" \ |
| 113 | "spiimgsize=0x362000\0" \ |
| 114 | "spibusno=0\0" \ |
| 115 | "spiargs=setenv bootargs console=${console} " \ |
| 116 | "${optargs} " \ |
| 117 | "root=${spiroot} " \ |
| 118 | "rootfstype=${spirootfstype}\0" \ |
| 119 | "netargs=setenv bootargs console=${console} " \ |
| 120 | "${optargs} " \ |
| 121 | "root=/dev/nfs " \ |
| 122 | "nfsroot=${serverip}:${rootpath},${nfsopts} rw " \ |
| 123 | "ip=dhcp\0" \ |
| 124 | "bootenv=uEnv.txt\0" \ |
| 125 | "loadbootenv=load mmc ${mmcdev} ${loadaddr} ${bootenv}\0" \ |
Yegor Yefremov | 88679a2 | 2016-12-01 12:52:18 +0100 | [diff] [blame] | 126 | "usbloadbootenv=load usb 0:1 ${loadaddr} ${bootenv}\0" \ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 127 | "importbootenv=echo Importing environment from mmc ...; " \ |
| 128 | "env import -t $loadaddr $filesize\0" \ |
Yegor Yefremov | 88679a2 | 2016-12-01 12:52:18 +0100 | [diff] [blame] | 129 | "usbimportbootenv=echo Importing environment from USB ...; " \ |
| 130 | "env import -t $loadaddr $filesize\0" \ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 131 | "ramargs=setenv bootargs console=${console} " \ |
| 132 | "${optargs} " \ |
| 133 | "root=${ramroot} " \ |
| 134 | "rootfstype=${ramrootfstype}\0" \ |
| 135 | "loadramdisk=load mmc ${mmcdev} ${rdaddr} ramdisk.gz\0" \ |
| 136 | "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \ |
Yegor Yefremov | 88679a2 | 2016-12-01 12:52:18 +0100 | [diff] [blame] | 137 | "usbloadimage=load usb 0:1 ${loadaddr} kernel-fit.itb\0" \ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 138 | "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \ |
Yegor Yefremov | 88679a2 | 2016-12-01 12:52:18 +0100 | [diff] [blame] | 139 | "usbloados=run usbargs; " \ |
| 140 | "bootm ${loadaddr}#conf${board_name}; " \ |
| 141 | "if test $? -ne 0; then " \ |
| 142 | "echo Using default FIT configuration; " \ |
| 143 | "bootm ${loadaddr}; " \ |
| 144 | "fi;\0" \ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 145 | "mmcloados=run mmcargs; " \ |
| 146 | "if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \ |
| 147 | "if run loadfdt; then " \ |
| 148 | "bootz ${loadaddr} - ${fdtaddr}; " \ |
| 149 | "else " \ |
| 150 | "if test ${boot_fdt} = try; then " \ |
| 151 | "bootz; " \ |
| 152 | "else " \ |
| 153 | "echo WARN: Cannot load the DT; " \ |
| 154 | "fi; " \ |
| 155 | "fi; " \ |
| 156 | "else " \ |
| 157 | "bootz; " \ |
| 158 | "fi;\0" \ |
Yegor Yefremov | 88679a2 | 2016-12-01 12:52:18 +0100 | [diff] [blame] | 159 | "usbboot=usb reset; " \ |
| 160 | "if usb storage; then " \ |
| 161 | "echo USB drive found;" \ |
| 162 | "if run usbloadbootenv; then " \ |
| 163 | "echo Loaded environment from ${bootenv};" \ |
| 164 | "run usbimportbootenv;" \ |
| 165 | "fi;" \ |
| 166 | "if test -n $uenvcmd; then " \ |
| 167 | "echo Running uenvcmd ...;" \ |
| 168 | "run uenvcmd;" \ |
| 169 | "fi;" \ |
| 170 | "if run usbloadimage; then " \ |
| 171 | "run usbloados;" \ |
| 172 | "fi;" \ |
| 173 | "fi;\0" \ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 174 | "mmcboot=mmc dev ${mmcdev}; " \ |
| 175 | "if mmc rescan; then " \ |
| 176 | "echo SD/MMC found on device ${mmcdev};" \ |
| 177 | "if run loadbootenv; then " \ |
| 178 | "echo Loaded environment from ${bootenv};" \ |
| 179 | "run importbootenv;" \ |
| 180 | "fi;" \ |
| 181 | "if test -n $uenvcmd; then " \ |
| 182 | "echo Running uenvcmd ...;" \ |
| 183 | "run uenvcmd;" \ |
| 184 | "fi;" \ |
| 185 | "if run loadimage; then " \ |
| 186 | "run mmcloados;" \ |
| 187 | "fi;" \ |
| 188 | "fi;\0" \ |
| 189 | "spiboot=echo Booting from spi ...; " \ |
| 190 | "run spiargs; " \ |
| 191 | "sf probe ${spibusno}:0; " \ |
| 192 | "sf read ${loadaddr} ${spisrcaddr} ${spiimgsize}; " \ |
| 193 | "bootz ${loadaddr}\0" \ |
| 194 | "netboot=echo Booting from network ...; " \ |
| 195 | "setenv autoload no; " \ |
| 196 | "dhcp; " \ |
| 197 | "tftp ${loadaddr} ${bootfile}; " \ |
| 198 | "tftp ${fdtaddr} ${fdtfile}; " \ |
| 199 | "run netargs; " \ |
| 200 | "bootz ${loadaddr} - ${fdtaddr}\0" \ |
| 201 | "ramboot=echo Booting from ramdisk ...; " \ |
| 202 | "run ramargs; " \ |
| 203 | "bootz ${loadaddr} ${rdaddr} ${fdtaddr}\0" \ |
| 204 | "findfdt=setenv fdtfile am335x-baltos.dtb\0" \ |
| 205 | NANDARGS |
| 206 | /*DFUARGS*/ |
| 207 | #endif |
| 208 | |
| 209 | #define CONFIG_BOOTCOMMAND \ |
| 210 | "run findfdt; " \ |
Yegor Yefremov | 88679a2 | 2016-12-01 12:52:18 +0100 | [diff] [blame] | 211 | "run usbboot;" \ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 212 | "run mmcboot;" \ |
| 213 | "setenv mmcdev 1; " \ |
| 214 | "setenv bootpart 1:2; " \ |
| 215 | "run mmcboot;" \ |
| 216 | "run nandboot;" |
| 217 | |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 218 | /* NS16550 Configuration */ |
| 219 | #define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */ |
| 220 | #define CONFIG_SYS_NS16550_COM2 0x48022000 /* UART1 */ |
| 221 | #define CONFIG_SYS_NS16550_COM3 0x48024000 /* UART2 */ |
| 222 | #define CONFIG_SYS_NS16550_COM4 0x481a6000 /* UART3 */ |
| 223 | #define CONFIG_SYS_NS16550_COM5 0x481a8000 /* UART4 */ |
| 224 | #define CONFIG_SYS_NS16550_COM6 0x481aa000 /* UART5 */ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 225 | |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 226 | #define CONFIG_ENV_EEPROM_IS_ON_I2C |
| 227 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* Main EEPROM */ |
| 228 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2 |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 229 | |
| 230 | /* PMIC support */ |
| 231 | #define CONFIG_POWER_TPS65910 |
| 232 | |
| 233 | /* SPL */ |
| 234 | #ifndef CONFIG_NOR_BOOT |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 235 | /* Bootcount using the RTC block */ |
| 236 | #define CONFIG_BOOTCOUNT_LIMIT |
| 237 | #define CONFIG_BOOTCOUNT_AM33XX |
| 238 | |
| 239 | /* USB gadget RNDIS */ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 240 | |
| 241 | /* General network SPL, both CPSW and USB gadget RNDIS */ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 242 | #define CONFIG_SPL_NET_VCI_STRING "AM335x U-Boot SPL"*/ |
| 243 | |
Lokesh Vutla | 3a517fd | 2017-04-26 13:37:07 +0530 | [diff] [blame] | 244 | #define CONFIG_SPL_LDSCRIPT "arch/arm/mach-omap2/u-boot-spl.lds" |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 245 | |
| 246 | #ifdef CONFIG_NAND |
| 247 | #define CONFIG_NAND_OMAP_GPMC |
Yegor Yefremov | 5f9c58e | 2015-07-06 17:28:36 +0200 | [diff] [blame] | 248 | #define CONFIG_NAND_OMAP_GPMC_PREFETCH |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 249 | #define CONFIG_NAND_OMAP_ELM |
| 250 | #define CONFIG_SYS_NAND_5_ADDR_CYCLE |
| 251 | #define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \ |
| 252 | CONFIG_SYS_NAND_PAGE_SIZE) |
| 253 | #define CONFIG_SYS_NAND_PAGE_SIZE 2048 |
| 254 | #define CONFIG_SYS_NAND_OOBSIZE 64 |
| 255 | #define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024) |
| 256 | #define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS |
| 257 | #define CONFIG_SYS_NAND_ECCPOS { 2, 3, 4, 5, 6, 7, 8, 9, \ |
| 258 | 10, 11, 12, 13, 14, 15, 16, 17, \ |
| 259 | 18, 19, 20, 21, 22, 23, 24, 25, \ |
| 260 | 26, 27, 28, 29, 30, 31, 32, 33, \ |
| 261 | 34, 35, 36, 37, 38, 39, 40, 41, \ |
| 262 | 42, 43, 44, 45, 46, 47, 48, 49, \ |
| 263 | 50, 51, 52, 53, 54, 55, 56, 57, } |
| 264 | |
| 265 | #define CONFIG_SYS_NAND_ECCSIZE 512 |
| 266 | #define CONFIG_SYS_NAND_ECCBYTES 14 |
| 267 | #define CONFIG_SYS_NAND_ONFI_DETECTION |
| 268 | #define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW |
| 269 | #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE |
| 270 | #endif |
| 271 | #endif |
| 272 | |
| 273 | /* |
| 274 | * USB configuration. We enable MUSB support, both for host and for |
| 275 | * gadget. We set USB0 as peripheral and USB1 as host, based on the |
| 276 | * board schematic and physical port wired to each. Then for host we |
| 277 | * add mass storage support and for gadget we add both RNDIS ethernet |
| 278 | * and DFU. |
| 279 | */ |
| 280 | #define CONFIG_USB_MUSB_DSPS |
Paul Kocialkowski | 95de1e2 | 2015-08-04 17:04:06 +0200 | [diff] [blame] | 281 | #define CONFIG_USB_MUSB_PIO_ONLY |
| 282 | #define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 283 | #define CONFIG_AM335X_USB0 |
Yegor Yefremov | 5e5055f | 2015-07-09 13:34:24 +0200 | [diff] [blame] | 284 | #define CONFIG_AM335X_USB0_MODE MUSB_HOST |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 285 | #define CONFIG_AM335X_USB1 |
Yegor Yefremov | 5e5055f | 2015-07-09 13:34:24 +0200 | [diff] [blame] | 286 | #define CONFIG_AM335X_USB1_MODE MUSB_OTG |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 287 | |
Paul Kocialkowski | 95de1e2 | 2015-08-04 17:04:06 +0200 | [diff] [blame] | 288 | #ifdef CONFIG_USB_MUSB_GADGET |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 289 | #define CONFIG_USB_ETHER |
| 290 | #define CONFIG_USB_ETH_RNDIS |
| 291 | #define CONFIG_USBNET_HOST_ADDR "de:ad:be:af:00:00" |
Paul Kocialkowski | 95de1e2 | 2015-08-04 17:04:06 +0200 | [diff] [blame] | 292 | #endif /* CONFIG_USB_MUSB_GADGET */ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 293 | |
| 294 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT) |
| 295 | /* disable host part of MUSB in SPL */ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 296 | /* disable EFI partitions and partition UUID support */ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 297 | /* |
| 298 | * Disable CPSW SPL support so we fit within the 101KiB limit. |
| 299 | */ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 300 | #endif |
| 301 | |
| 302 | /* Network. */ |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 303 | #define CONFIG_PHY_ADDR 0 |
| 304 | #define CONFIG_PHY_SMSC |
| 305 | #define CONFIG_MII |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 306 | #define CONFIG_PHY_ATHEROS |
| 307 | |
| 308 | /* NAND support */ |
| 309 | #ifdef CONFIG_NAND |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 310 | #define GPMC_NAND_ECC_LP_x8_LAYOUT 1 |
| 311 | #if !defined(CONFIG_SPI_BOOT) && !defined(CONFIG_NOR_BOOT) |
| 312 | #define MTDIDS_DEFAULT "nand0=omap2-nand.0" |
| 313 | #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:128k(SPL)," \ |
| 314 | "128k(SPL.backup1)," \ |
| 315 | "128k(SPL.backup2)," \ |
| 316 | "128k(SPL.backup3)," \ |
| 317 | "1920k(u-boot)," \ |
| 318 | "-(UBI)" |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 319 | #endif |
| 320 | #endif |
| 321 | |
| 322 | #endif /* ! __CONFIG_BALTOS_H */ |