David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Configuration for Versatile Express. Parts were derived from other ARM |
| 3 | * configurations. |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #ifndef __VEXPRESS_AEMV8A_H |
| 9 | #define __VEXPRESS_AEMV8A_H |
| 10 | |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 11 | #ifdef CONFIG_TARGET_VEXPRESS64_BASE_FVP |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 12 | #ifndef CONFIG_SEMIHOSTING |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 13 | #error CONFIG_TARGET_VEXPRESS64_BASE_FVP requires CONFIG_SEMIHOSTING |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 14 | #endif |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 15 | #define CONFIG_ARMV8_SWITCH_TO_EL1 |
| 16 | #endif |
| 17 | |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 18 | #define CONFIG_REMAKE_ELF |
| 19 | |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 20 | #define CONFIG_SUPPORT_RAW_INITRD |
| 21 | |
Alexander Graf | e593bf5 | 2016-03-04 01:09:51 +0100 | [diff] [blame] | 22 | /* MMU Definitions */ |
| 23 | #define CONFIG_SYS_CACHELINE_SIZE 64 |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 24 | |
| 25 | #define CONFIG_IDENT_STRING " vexpress_aemv8a" |
Bin Meng | a187559 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 26 | #define CONFIG_BOOTP_VCI_STRING "U-Boot.armv8.vexpress_aemv8a" |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 27 | |
| 28 | /* Link Definitions */ |
Ryan Harkin | fc04b92 | 2015-10-09 17:18:02 +0100 | [diff] [blame] | 29 | #if defined(CONFIG_TARGET_VEXPRESS64_BASE_FVP) || \ |
| 30 | defined(CONFIG_TARGET_VEXPRESS64_BASE_FVP_DRAM) |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 31 | /* ATF loads u-boot here for BASE_FVP model */ |
| 32 | #define CONFIG_SYS_TEXT_BASE 0x88000000 |
| 33 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x03f00000) |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 34 | #elif CONFIG_TARGET_VEXPRESS64_JUNO |
| 35 | #define CONFIG_SYS_TEXT_BASE 0xe0000000 |
| 36 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x7fff0) |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 37 | #endif |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 38 | |
Ryan Harkin | 0d3012a | 2015-10-09 17:18:01 +0100 | [diff] [blame] | 39 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ |
| 40 | |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 41 | /* CS register bases for the original memory map. */ |
| 42 | #define V2M_PA_CS0 0x00000000 |
| 43 | #define V2M_PA_CS1 0x14000000 |
| 44 | #define V2M_PA_CS2 0x18000000 |
| 45 | #define V2M_PA_CS3 0x1c000000 |
| 46 | #define V2M_PA_CS4 0x0c000000 |
| 47 | #define V2M_PA_CS5 0x10000000 |
| 48 | |
| 49 | #define V2M_PERIPH_OFFSET(x) (x << 16) |
| 50 | #define V2M_SYSREGS (V2M_PA_CS3 + V2M_PERIPH_OFFSET(1)) |
| 51 | #define V2M_SYSCTL (V2M_PA_CS3 + V2M_PERIPH_OFFSET(2)) |
| 52 | #define V2M_SERIAL_BUS_PCI (V2M_PA_CS3 + V2M_PERIPH_OFFSET(3)) |
| 53 | |
| 54 | #define V2M_BASE 0x80000000 |
| 55 | |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 56 | /* Common peripherals relative to CS7. */ |
| 57 | #define V2M_AACI (V2M_PA_CS3 + V2M_PERIPH_OFFSET(4)) |
| 58 | #define V2M_MMCI (V2M_PA_CS3 + V2M_PERIPH_OFFSET(5)) |
| 59 | #define V2M_KMI0 (V2M_PA_CS3 + V2M_PERIPH_OFFSET(6)) |
| 60 | #define V2M_KMI1 (V2M_PA_CS3 + V2M_PERIPH_OFFSET(7)) |
| 61 | |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 62 | #ifdef CONFIG_TARGET_VEXPRESS64_JUNO |
| 63 | #define V2M_UART0 0x7ff80000 |
| 64 | #define V2M_UART1 0x7ff70000 |
| 65 | #else /* Not Juno */ |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 66 | #define V2M_UART0 (V2M_PA_CS3 + V2M_PERIPH_OFFSET(9)) |
| 67 | #define V2M_UART1 (V2M_PA_CS3 + V2M_PERIPH_OFFSET(10)) |
| 68 | #define V2M_UART2 (V2M_PA_CS3 + V2M_PERIPH_OFFSET(11)) |
| 69 | #define V2M_UART3 (V2M_PA_CS3 + V2M_PERIPH_OFFSET(12)) |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 70 | #endif |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 71 | |
| 72 | #define V2M_WDT (V2M_PA_CS3 + V2M_PERIPH_OFFSET(15)) |
| 73 | |
| 74 | #define V2M_TIMER01 (V2M_PA_CS3 + V2M_PERIPH_OFFSET(17)) |
| 75 | #define V2M_TIMER23 (V2M_PA_CS3 + V2M_PERIPH_OFFSET(18)) |
| 76 | |
| 77 | #define V2M_SERIAL_BUS_DVI (V2M_PA_CS3 + V2M_PERIPH_OFFSET(22)) |
| 78 | #define V2M_RTC (V2M_PA_CS3 + V2M_PERIPH_OFFSET(23)) |
| 79 | |
| 80 | #define V2M_CF (V2M_PA_CS3 + V2M_PERIPH_OFFSET(26)) |
| 81 | |
| 82 | #define V2M_CLCD (V2M_PA_CS3 + V2M_PERIPH_OFFSET(31)) |
| 83 | |
| 84 | /* System register offsets. */ |
| 85 | #define V2M_SYS_CFGDATA (V2M_SYSREGS + 0x0a0) |
| 86 | #define V2M_SYS_CFGCTRL (V2M_SYSREGS + 0x0a4) |
| 87 | #define V2M_SYS_CFGSTAT (V2M_SYSREGS + 0x0a8) |
| 88 | |
| 89 | /* Generic Timer Definitions */ |
| 90 | #define COUNTER_FREQUENCY (0x1800000) /* 24MHz */ |
| 91 | |
| 92 | /* Generic Interrupt Controller Definitions */ |
David Feng | c71645a | 2014-03-14 14:26:27 +0800 | [diff] [blame] | 93 | #ifdef CONFIG_GICV3 |
| 94 | #define GICD_BASE (0x2f000000) |
| 95 | #define GICR_BASE (0x2f100000) |
| 96 | #else |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 97 | |
Ryan Harkin | fc04b92 | 2015-10-09 17:18:02 +0100 | [diff] [blame] | 98 | #if defined(CONFIG_TARGET_VEXPRESS64_BASE_FVP) || \ |
| 99 | defined(CONFIG_TARGET_VEXPRESS64_BASE_FVP_DRAM) |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 100 | #define GICD_BASE (0x2f000000) |
| 101 | #define GICC_BASE (0x2c000000) |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 102 | #elif CONFIG_TARGET_VEXPRESS64_JUNO |
| 103 | #define GICD_BASE (0x2C010000) |
| 104 | #define GICC_BASE (0x2C02f000) |
David Feng | c71645a | 2014-03-14 14:26:27 +0800 | [diff] [blame] | 105 | #endif |
Linus Walleij | 03314f0 | 2015-03-23 11:06:14 +0100 | [diff] [blame] | 106 | #endif /* !CONFIG_GICV3 */ |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 107 | |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 108 | /* Size of malloc() pool */ |
Tom Rini | 5bcae13 | 2014-08-14 06:42:37 -0400 | [diff] [blame] | 109 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (8 << 20)) |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 110 | |
Linus Walleij | b31f9d7 | 2015-02-17 11:35:25 +0100 | [diff] [blame] | 111 | /* Ethernet Configuration */ |
| 112 | #ifdef CONFIG_TARGET_VEXPRESS64_JUNO |
| 113 | /* The real hardware Versatile express uses SMSC9118 */ |
| 114 | #define CONFIG_SMC911X 1 |
| 115 | #define CONFIG_SMC911X_32_BIT 1 |
| 116 | #define CONFIG_SMC911X_BASE (0x018000000) |
| 117 | #else |
| 118 | /* The Vexpress64 simulators use SMSC91C111 */ |
Bhupesh Sharma | 3865ceb | 2014-01-16 09:47:40 -0600 | [diff] [blame] | 119 | #define CONFIG_SMC91111 1 |
| 120 | #define CONFIG_SMC91111_BASE (0x01A000000) |
Linus Walleij | b31f9d7 | 2015-02-17 11:35:25 +0100 | [diff] [blame] | 121 | #endif |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 122 | |
| 123 | /* PL011 Serial Configuration */ |
Linus Walleij | d280ea0 | 2015-04-14 10:01:35 +0200 | [diff] [blame] | 124 | #define CONFIG_BAUDRATE 115200 |
David Feng | d8bafe13 | 2015-01-31 11:55:29 +0800 | [diff] [blame] | 125 | #define CONFIG_CONS_INDEX 0 |
Linus Walleij | d280ea0 | 2015-04-14 10:01:35 +0200 | [diff] [blame] | 126 | #define CONFIG_PL01X_SERIAL |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 127 | #define CONFIG_PL011_SERIAL |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 128 | #ifdef CONFIG_TARGET_VEXPRESS64_JUNO |
| 129 | #define CONFIG_PL011_CLOCK 7273800 |
| 130 | #else |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 131 | #define CONFIG_PL011_CLOCK 24000000 |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 132 | #endif |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 133 | |
| 134 | /* Command line configuration */ |
| 135 | #define CONFIG_MENU |
| 136 | /*#define CONFIG_MENU_SHOW*/ |
| 137 | #define CONFIG_CMD_CACHE |
Tom Rini | 6717252 | 2014-08-14 06:42:38 -0400 | [diff] [blame] | 138 | #define CONFIG_CMD_BOOTI |
| 139 | #define CONFIG_CMD_UNZIP |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 140 | #define CONFIG_CMD_DHCP |
| 141 | #define CONFIG_CMD_PXE |
| 142 | #define CONFIG_CMD_ENV |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 143 | #define CONFIG_CMD_MII |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 144 | #define CONFIG_CMD_PING |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 145 | #define CONFIG_CMD_FAT |
| 146 | #define CONFIG_DOS_PARTITION |
| 147 | |
| 148 | /* BOOTP options */ |
| 149 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 150 | #define CONFIG_BOOTP_BOOTPATH |
| 151 | #define CONFIG_BOOTP_GATEWAY |
| 152 | #define CONFIG_BOOTP_HOSTNAME |
| 153 | #define CONFIG_BOOTP_PXE |
| 154 | #define CONFIG_BOOTP_PXE_CLIENTARCH 0x100 |
| 155 | |
| 156 | /* Miscellaneous configurable options */ |
| 157 | #define CONFIG_SYS_LOAD_ADDR (V2M_BASE + 0x10000000) |
| 158 | |
| 159 | /* Physical Memory Map */ |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 160 | #define PHYS_SDRAM_1 (V2M_BASE) /* SDRAM Bank #1 */ |
Linus Walleij | 3035570 | 2015-05-11 10:03:57 +0200 | [diff] [blame] | 161 | /* Top 16MB reserved for secure world use */ |
| 162 | #define DRAM_SEC_SIZE 0x01000000 |
| 163 | #define PHYS_SDRAM_1_SIZE 0x80000000 - DRAM_SEC_SIZE |
| 164 | #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1 |
| 165 | |
Ryan Harkin | 2c2b218 | 2015-11-18 10:39:07 +0000 | [diff] [blame] | 166 | #ifdef CONFIG_TARGET_VEXPRESS64_JUNO |
| 167 | #define CONFIG_NR_DRAM_BANKS 2 |
| 168 | #define PHYS_SDRAM_2 (0x880000000) |
| 169 | #define PHYS_SDRAM_2_SIZE 0x180000000 |
| 170 | #else |
| 171 | #define CONFIG_NR_DRAM_BANKS 1 |
| 172 | #endif |
| 173 | |
Linus Walleij | 3035570 | 2015-05-11 10:03:57 +0200 | [diff] [blame] | 174 | /* Enable memtest */ |
| 175 | #define CONFIG_CMD_MEMTEST |
| 176 | #define CONFIG_SYS_MEMTEST_START PHYS_SDRAM_1 |
| 177 | #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE) |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 178 | |
| 179 | /* Initial environment variables */ |
Linus Walleij | 10d1491 | 2015-04-05 01:48:32 +0200 | [diff] [blame] | 180 | #ifdef CONFIG_TARGET_VEXPRESS64_JUNO |
| 181 | /* |
| 182 | * Defines where the kernel and FDT exist in NOR flash and where it will |
| 183 | * be copied into DRAM |
| 184 | */ |
| 185 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Ryan Harkin | ecbed5d | 2015-10-09 17:18:07 +0100 | [diff] [blame] | 186 | "kernel_name=norkern\0" \ |
| 187 | "kernel_alt_name=Image\0" \ |
Andre Przywara | 7babe48 | 2016-01-04 15:43:36 +0000 | [diff] [blame] | 188 | "kernel_addr=0x80080000\0" \ |
Ryan Harkin | 4a6bdb5 | 2015-10-09 17:18:06 +0100 | [diff] [blame] | 189 | "initrd_name=ramdisk.img\0" \ |
| 190 | "initrd_addr=0x84000000\0" \ |
Alexander Graf | da3e620 | 2016-03-04 01:10:11 +0100 | [diff] [blame] | 191 | "fdtfile=board.dtb\0" \ |
Ryan Harkin | ecbed5d | 2015-10-09 17:18:07 +0100 | [diff] [blame] | 192 | "fdt_alt_name=juno\0" \ |
Linus Walleij | 10d1491 | 2015-04-05 01:48:32 +0200 | [diff] [blame] | 193 | "fdt_addr=0x83000000\0" \ |
| 194 | "fdt_high=0xffffffffffffffff\0" \ |
| 195 | "initrd_high=0xffffffffffffffff\0" \ |
| 196 | |
| 197 | /* Assume we boot with root on the first partition of a USB stick */ |
| 198 | #define CONFIG_BOOTARGS "console=ttyAMA0,115200n8 " \ |
Ryan Harkin | 492f24e | 2015-10-09 17:18:08 +0100 | [diff] [blame] | 199 | "root=/dev/sda2 rw " \ |
Linus Walleij | 33665f7 | 2015-05-14 17:38:33 +0200 | [diff] [blame] | 200 | "rootwait "\ |
Ryan Harkin | c0ae970 | 2015-10-09 17:17:59 +0100 | [diff] [blame] | 201 | "earlyprintk=pl011,0x7ff80000 debug "\ |
| 202 | "user_debug=31 "\ |
Ryan Harkin | 74e264b | 2015-10-09 17:18:03 +0100 | [diff] [blame] | 203 | "androidboot.hardware=juno "\ |
Linus Walleij | 10d1491 | 2015-04-05 01:48:32 +0200 | [diff] [blame] | 204 | "loglevel=9" |
| 205 | |
| 206 | /* Copy the kernel and FDT to DRAM memory and boot */ |
| 207 | #define CONFIG_BOOTCOMMAND "afs load ${kernel_name} ${kernel_addr} ; " \ |
Ryan Harkin | ecbed5d | 2015-10-09 17:18:07 +0100 | [diff] [blame] | 208 | "if test $? -eq 1; then "\ |
| 209 | " echo Loading ${kernel_alt_name} instead of "\ |
| 210 | "${kernel_name}; "\ |
| 211 | " afs load ${kernel_alt_name} ${kernel_addr};"\ |
| 212 | "fi ; "\ |
Alexander Graf | da3e620 | 2016-03-04 01:10:11 +0100 | [diff] [blame] | 213 | "afs load ${fdtfile} ${fdt_addr} ; " \ |
Ryan Harkin | ecbed5d | 2015-10-09 17:18:07 +0100 | [diff] [blame] | 214 | "if test $? -eq 1; then "\ |
| 215 | " echo Loading ${fdt_alt_name} instead of "\ |
Alexander Graf | da3e620 | 2016-03-04 01:10:11 +0100 | [diff] [blame] | 216 | "${fdtfile}; "\ |
Ryan Harkin | ecbed5d | 2015-10-09 17:18:07 +0100 | [diff] [blame] | 217 | " afs load ${fdt_alt_name} ${fdt_addr}; "\ |
| 218 | "fi ; "\ |
Linus Walleij | 10d1491 | 2015-04-05 01:48:32 +0200 | [diff] [blame] | 219 | "fdt addr ${fdt_addr}; fdt resize; " \ |
Ryan Harkin | 4a6bdb5 | 2015-10-09 17:18:06 +0100 | [diff] [blame] | 220 | "if afs load ${initrd_name} ${initrd_addr} ; "\ |
| 221 | "then "\ |
| 222 | " setenv initrd_param ${initrd_addr}; "\ |
| 223 | " else setenv initrd_param -; "\ |
| 224 | "fi ; " \ |
| 225 | "booti ${kernel_addr} ${initrd_param} ${fdt_addr}" |
Linus Walleij | 10d1491 | 2015-04-05 01:48:32 +0200 | [diff] [blame] | 226 | |
| 227 | #define CONFIG_BOOTDELAY 1 |
| 228 | |
| 229 | #elif CONFIG_TARGET_VEXPRESS64_BASE_FVP |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 230 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Linus Walleij | 1fd0f92 | 2015-05-27 09:45:39 +0200 | [diff] [blame] | 231 | "kernel_name=Image\0" \ |
Andre Przywara | 7babe48 | 2016-01-04 15:43:36 +0000 | [diff] [blame] | 232 | "kernel_addr=0x80080000\0" \ |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 233 | "initrd_name=ramdisk.img\0" \ |
Linus Walleij | 49995ff | 2015-03-23 11:06:12 +0100 | [diff] [blame] | 234 | "initrd_addr=0x88000000\0" \ |
Alexander Graf | da3e620 | 2016-03-04 01:10:11 +0100 | [diff] [blame] | 235 | "fdtfile=devtree.dtb\0" \ |
Linus Walleij | 49995ff | 2015-03-23 11:06:12 +0100 | [diff] [blame] | 236 | "fdt_addr=0x83000000\0" \ |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 237 | "fdt_high=0xffffffffffffffff\0" \ |
| 238 | "initrd_high=0xffffffffffffffff\0" |
| 239 | |
| 240 | #define CONFIG_BOOTARGS "console=ttyAMA0 earlyprintk=pl011,"\ |
| 241 | "0x1c090000 debug user_debug=31 "\ |
| 242 | "loglevel=9" |
| 243 | |
Linus Walleij | 49995ff | 2015-03-23 11:06:12 +0100 | [diff] [blame] | 244 | #define CONFIG_BOOTCOMMAND "smhload ${kernel_name} ${kernel_addr}; " \ |
Alexander Graf | da3e620 | 2016-03-04 01:10:11 +0100 | [diff] [blame] | 245 | "smhload ${fdtfile} ${fdt_addr}; " \ |
Ryan Harkin | c0ae970 | 2015-10-09 17:17:59 +0100 | [diff] [blame] | 246 | "smhload ${initrd_name} ${initrd_addr} "\ |
| 247 | "initrd_end; " \ |
Linus Walleij | 1fd0f92 | 2015-05-27 09:45:39 +0200 | [diff] [blame] | 248 | "fdt addr ${fdt_addr}; fdt resize; " \ |
| 249 | "fdt chosen ${initrd_addr} ${initrd_end}; " \ |
| 250 | "booti $kernel_addr - $fdt_addr" |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 251 | |
| 252 | #define CONFIG_BOOTDELAY 1 |
| 253 | |
Ryan Harkin | fc04b92 | 2015-10-09 17:18:02 +0100 | [diff] [blame] | 254 | #elif CONFIG_TARGET_VEXPRESS64_BASE_FVP_DRAM |
| 255 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 256 | "kernel_addr=0x80080000\0" \ |
| 257 | "initrd_addr=0x84000000\0" \ |
| 258 | "fdt_addr=0x83000000\0" \ |
| 259 | "fdt_high=0xffffffffffffffff\0" \ |
| 260 | "initrd_high=0xffffffffffffffff\0" |
| 261 | |
| 262 | #define CONFIG_BOOTARGS "console=ttyAMA0 earlyprintk=pl011,"\ |
| 263 | "0x1c090000 debug user_debug=31 "\ |
| 264 | "androidboot.hardware=fvpbase "\ |
| 265 | "root=/dev/vda2 rw "\ |
| 266 | "rootwait "\ |
| 267 | "loglevel=9" |
| 268 | |
| 269 | #define CONFIG_BOOTCOMMAND "booti $kernel_addr $initrd_addr $fdt_addr" |
| 270 | |
| 271 | #define CONFIG_BOOTDELAY 1 |
| 272 | |
Darwin Rambo | 261d276 | 2014-06-09 11:12:59 -0700 | [diff] [blame] | 273 | #endif |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 274 | |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 275 | /* Monitor Command Prompt */ |
| 276 | #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */ |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 277 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| 278 | sizeof(CONFIG_SYS_PROMPT) + 16) |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 279 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE |
| 280 | #define CONFIG_SYS_LONGHELP |
Tom Rini | 5bcae13 | 2014-08-14 06:42:37 -0400 | [diff] [blame] | 281 | #define CONFIG_CMDLINE_EDITING |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 282 | #define CONFIG_SYS_MAXARGS 64 /* max command args */ |
| 283 | |
Ryan Harkin | f3c71c9 | 2015-11-18 10:39:09 +0000 | [diff] [blame] | 284 | #ifdef CONFIG_TARGET_VEXPRESS64_JUNO |
| 285 | #define CONFIG_SYS_FLASH_BASE 0x08000000 |
| 286 | /* 255 x 256KiB sectors + 4 x 64KiB sectors at the end = 259 */ |
| 287 | #define CONFIG_SYS_MAX_FLASH_SECT 259 |
| 288 | /* Store environment at top of flash in the same location as blank.img */ |
| 289 | /* in the Juno firmware. */ |
| 290 | #define CONFIG_ENV_ADDR 0x0BFC0000 |
| 291 | #define CONFIG_ENV_SECT_SIZE 0x00010000 |
Linus Walleij | 14f264e | 2015-02-19 17:19:37 +0100 | [diff] [blame] | 292 | #else |
Ryan Harkin | f3c71c9 | 2015-11-18 10:39:09 +0000 | [diff] [blame] | 293 | #define CONFIG_SYS_FLASH_BASE 0x0C000000 |
| 294 | /* 256 x 256KiB sectors */ |
| 295 | #define CONFIG_SYS_MAX_FLASH_SECT 256 |
| 296 | /* Store environment at top of flash */ |
| 297 | #define CONFIG_ENV_ADDR 0x0FFC0000 |
| 298 | #define CONFIG_ENV_SECT_SIZE 0x00040000 |
| 299 | #endif |
| 300 | |
Linus Walleij | 10d1491 | 2015-04-05 01:48:32 +0200 | [diff] [blame] | 301 | #define CONFIG_CMD_ARMFLASH |
Linus Walleij | 14f264e | 2015-02-19 17:19:37 +0100 | [diff] [blame] | 302 | #define CONFIG_SYS_FLASH_CFI 1 |
| 303 | #define CONFIG_FLASH_CFI_DRIVER 1 |
Ryan Harkin | f19f389 | 2015-05-08 18:07:52 +0100 | [diff] [blame] | 304 | #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_32BIT |
Ryan Harkin | f3c71c9 | 2015-11-18 10:39:09 +0000 | [diff] [blame] | 305 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
Linus Walleij | 14f264e | 2015-02-19 17:19:37 +0100 | [diff] [blame] | 306 | |
Linus Walleij | 14f264e | 2015-02-19 17:19:37 +0100 | [diff] [blame] | 307 | #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE /* use buffered writes */ |
| 308 | #define CONFIG_SYS_FLASH_PROTECTION /* The devices have real protection */ |
| 309 | #define CONFIG_SYS_FLASH_EMPTY_INFO /* flinfo indicates empty blocks */ |
Ryan Harkin | f3c71c9 | 2015-11-18 10:39:09 +0000 | [diff] [blame] | 310 | #define FLASH_MAX_SECTOR_SIZE 0x00040000 |
| 311 | #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE |
| 312 | #define CONFIG_ENV_IS_IN_FLASH 1 |
Linus Walleij | 14f264e | 2015-02-19 17:19:37 +0100 | [diff] [blame] | 313 | |
Linus Walleij | 14f264e | 2015-02-19 17:19:37 +0100 | [diff] [blame] | 314 | |
David Feng | 1291682 | 2013-12-14 11:47:37 +0800 | [diff] [blame] | 315 | #endif /* __VEXPRESS_AEMV8A_H */ |