Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 2 | /* |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 3 | * (C) Copyright 2012-2016 Stephen Warren |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_H |
| 7 | #define __CONFIG_H |
| 8 | |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 9 | #include <linux/sizes.h> |
| 10 | #include <asm/arch/timer.h> |
Alexander Stein | 060f9bf | 2015-07-24 09:22:11 +0200 | [diff] [blame] | 11 | |
Matthias Brugger | 8e3361c | 2019-11-19 16:01:03 +0100 | [diff] [blame] | 12 | #ifndef __ASSEMBLY__ |
| 13 | #include <asm/arch/base.h> |
| 14 | #endif |
| 15 | |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 16 | /* Architecture, CPU, etc.*/ |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 17 | |
| 18 | /* Use SoC timer for AArch32, but architected timer for AArch64 */ |
| 19 | #ifndef CONFIG_ARM64 |
| 20 | #define CONFIG_SYS_TIMER_RATE 1000000 |
| 21 | #define CONFIG_SYS_TIMER_COUNTER \ |
| 22 | (&((struct bcm2835_timer_regs *)BCM2835_TIMER_PHYSADDR)->clo) |
| 23 | #endif |
| 24 | |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 25 | /* Memory layout */ |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 26 | #define CONFIG_SYS_SDRAM_BASE 0x00000000 |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 27 | #define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE |
| 28 | /* |
| 29 | * The board really has 256M. However, the VC (VideoCore co-processor) shares |
| 30 | * the RAM, and uses a configurable portion at the top. We tell U-Boot that a |
| 31 | * smaller amount of RAM is present in order to avoid stomping on the area |
| 32 | * the VC uses. |
| 33 | */ |
| 34 | #define CONFIG_SYS_SDRAM_SIZE SZ_128M |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 35 | |
Bonnans, Laurent | 659f4fe | 2019-07-31 11:59:41 +0000 | [diff] [blame] | 36 | #ifdef CONFIG_ARM64 |
| 37 | #define CONFIG_SYS_BOOTM_LEN SZ_64M |
| 38 | #endif |
| 39 | |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 40 | /* Devices */ |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 41 | /* LCD */ |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 42 | |
Marek Szyprowski | f29002f | 2019-12-02 12:11:18 +0100 | [diff] [blame] | 43 | /* DFU over USB/UDC */ |
| 44 | #ifdef CONFIG_CMD_DFU |
Marek Szyprowski | f29002f | 2019-12-02 12:11:18 +0100 | [diff] [blame] | 45 | #ifdef CONFIG_ARM64 |
| 46 | #define KERNEL_FILENAME "Image" |
| 47 | #else |
| 48 | #define KERNEL_FILENAME "zImage" |
| 49 | #endif |
| 50 | |
| 51 | #define ENV_DFU_SETTINGS \ |
| 52 | "dfu_alt_info=u-boot.bin fat 0 1;uboot.env fat 0 1;" \ |
| 53 | "config.txt fat 0 1;" \ |
| 54 | KERNEL_FILENAME " fat 0 1\0" |
| 55 | #else |
| 56 | #define ENV_DFU_SETTINGS "" |
| 57 | #endif |
| 58 | |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 59 | /* Console configuration */ |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 60 | |
| 61 | /* Environment */ |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 62 | |
| 63 | /* Shell */ |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 64 | |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 65 | /* Environment */ |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 66 | #define ENV_DEVICE_SETTINGS \ |
| 67 | "stdin=serial,usbkbd\0" \ |
Simon Glass | ea843b6 | 2017-04-05 16:23:44 -0600 | [diff] [blame] | 68 | "stdout=serial,vidconsole\0" \ |
| 69 | "stderr=serial,vidconsole\0" |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 70 | |
Tuomas Tynkkynen | 7227425 | 2018-04-20 13:03:48 +0300 | [diff] [blame] | 71 | #ifdef CONFIG_ARM64 |
| 72 | #define FDT_HIGH "ffffffffffffffff" |
| 73 | #define INITRD_HIGH "ffffffffffffffff" |
| 74 | #else |
| 75 | #define FDT_HIGH "ffffffff" |
| 76 | #define INITRD_HIGH "ffffffff" |
| 77 | #endif |
| 78 | |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 79 | /* |
| 80 | * Memory layout for where various images get loaded by boot scripts: |
| 81 | * |
| 82 | * I suspect address 0 is used as the SMP pen on the RPi2, so avoid this. |
| 83 | * |
Tuomas Tynkkynen | 385cbe2 | 2018-04-20 13:03:49 +0300 | [diff] [blame] | 84 | * Older versions of the boot firmware place the firmware-loaded DTB at 0x100, |
| 85 | * newer versions place it in high memory. So prevent U-Boot from doing its own |
| 86 | * DTB + initrd relocation so that we won't accidentally relocate the initrd |
| 87 | * over the firmware-loaded DTB and generally try to lay out things starting |
| 88 | * from the bottom of RAM. |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 89 | * |
Tuomas Tynkkynen | 385cbe2 | 2018-04-20 13:03:49 +0300 | [diff] [blame] | 90 | * kernel_addr_r has different constraints on ARM and Aarch64. For 32-bit ARM, |
| 91 | * it must be within the first 128M of RAM in order for the kernel's |
| 92 | * CONFIG_AUTO_ZRELADDR option to work. The kernel itself will be decompressed |
| 93 | * to 0x8000 but the decompressor clobbers 0x4000-0x8000 as well. The |
| 94 | * decompressor also likes to relocate itself to right past the end of the |
| 95 | * decompressed kernel, so in total the sum of the compressed and and |
| 96 | * decompressed kernel needs to be reserved. |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 97 | * |
Tuomas Tynkkynen | 385cbe2 | 2018-04-20 13:03:49 +0300 | [diff] [blame] | 98 | * For Aarch64, the kernel image is uncompressed and must be loaded at |
| 99 | * text_offset bytes (specified in the header of the Image) into a 2MB |
| 100 | * boundary. The 'booti' command relocates the image if necessary. Linux uses |
| 101 | * a default text_offset of 0x80000. In summary, loading at 0x80000 |
| 102 | * satisfies all these constraints and reserving memory up to 0x02400000 |
| 103 | * permits fairly large (roughly 36M) kernels. |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 104 | * |
Tuomas Tynkkynen | 385cbe2 | 2018-04-20 13:03:49 +0300 | [diff] [blame] | 105 | * scriptaddr and pxefile_addr_r can be pretty much anywhere that doesn't |
| 106 | * conflict with something else. Reserving 1M for each of them at |
| 107 | * 0x02400000-0x02500000 and 0x02500000-0x02600000 should be plenty. |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 108 | * |
Tuomas Tynkkynen | 385cbe2 | 2018-04-20 13:03:49 +0300 | [diff] [blame] | 109 | * On ARM, both the DTB and any possible initrd must be loaded such that they |
| 110 | * fit inside the lowmem mapping in Linux. In practice, this usually means not |
| 111 | * more than ~700M away from the start of the kernel image but this number can |
| 112 | * be larger OR smaller depending on e.g. the 'vmalloc=xxxM' command line |
| 113 | * parameter given to the kernel. So reserving memory from low to high |
| 114 | * satisfies this constraint again. Reserving 1M at 0x02600000-0x02700000 for |
| 115 | * the DTB leaves rest of the free RAM to the initrd starting at 0x02700000. |
| 116 | * Even with the smallest possible CPU-GPU memory split of the CPU getting |
| 117 | * only 64M, the remaining 25M starting at 0x02700000 should allow quite |
| 118 | * large initrds before they start colliding with U-Boot. |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 119 | */ |
| 120 | #define ENV_MEM_LAYOUT_SETTINGS \ |
Tuomas Tynkkynen | 7227425 | 2018-04-20 13:03:48 +0300 | [diff] [blame] | 121 | "fdt_high=" FDT_HIGH "\0" \ |
| 122 | "initrd_high=" INITRD_HIGH "\0" \ |
Tuomas Tynkkynen | 385cbe2 | 2018-04-20 13:03:49 +0300 | [diff] [blame] | 123 | "kernel_addr_r=0x00080000\0" \ |
| 124 | "scriptaddr=0x02400000\0" \ |
| 125 | "pxefile_addr_r=0x02500000\0" \ |
| 126 | "fdt_addr_r=0x02600000\0" \ |
| 127 | "ramdisk_addr_r=0x02700000\0" |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 128 | |
akaher | e4617bd | 2019-04-11 05:23:50 +0000 | [diff] [blame] | 129 | #if CONFIG_IS_ENABLED(CMD_MMC) |
| 130 | #define BOOT_TARGET_MMC(func) \ |
| 131 | func(MMC, mmc, 0) \ |
Mike Karels | 874e544 | 2021-10-27 22:26:15 +0000 | [diff] [blame] | 132 | func(MMC, mmc, 1) \ |
| 133 | func(MMC, mmc, 2) |
akaher | e4617bd | 2019-04-11 05:23:50 +0000 | [diff] [blame] | 134 | #else |
| 135 | #define BOOT_TARGET_MMC(func) |
| 136 | #endif |
| 137 | |
| 138 | #if CONFIG_IS_ENABLED(CMD_USB) |
| 139 | #define BOOT_TARGET_USB(func) func(USB, usb, 0) |
| 140 | #else |
| 141 | #define BOOT_TARGET_USB(func) |
| 142 | #endif |
| 143 | |
| 144 | #if CONFIG_IS_ENABLED(CMD_PXE) |
| 145 | #define BOOT_TARGET_PXE(func) func(PXE, pxe, na) |
| 146 | #else |
| 147 | #define BOOT_TARGET_PXE(func) |
| 148 | #endif |
| 149 | |
| 150 | #if CONFIG_IS_ENABLED(CMD_DHCP) |
| 151 | #define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na) |
| 152 | #else |
| 153 | #define BOOT_TARGET_DHCP(func) |
| 154 | #endif |
| 155 | |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 156 | #define BOOT_TARGET_DEVICES(func) \ |
akaher | e4617bd | 2019-04-11 05:23:50 +0000 | [diff] [blame] | 157 | BOOT_TARGET_MMC(func) \ |
| 158 | BOOT_TARGET_USB(func) \ |
| 159 | BOOT_TARGET_PXE(func) \ |
| 160 | BOOT_TARGET_DHCP(func) |
| 161 | |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 162 | #include <config_distro_bootcmd.h> |
| 163 | |
| 164 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 165 | "dhcpuboot=usb start; dhcp u-boot.uimg; bootm\0" \ |
| 166 | ENV_DEVICE_SETTINGS \ |
Marek Szyprowski | f29002f | 2019-12-02 12:11:18 +0100 | [diff] [blame] | 167 | ENV_DFU_SETTINGS \ |
Stephen Warren | fe84ebf | 2016-04-04 20:00:41 -0600 | [diff] [blame] | 168 | ENV_MEM_LAYOUT_SETTINGS \ |
| 169 | BOOTENV |
| 170 | |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 171 | |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 172 | #endif |