Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2012 Stephen Warren |
| 3 | * |
| 4 | * See file CREDITS for list of people who contributed to this |
| 5 | * project. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * version 2 as published by the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | */ |
| 16 | |
| 17 | #ifndef __CONFIG_H |
| 18 | #define __CONFIG_H |
| 19 | |
Alexey Brodkin | 1ace402 | 2014-02-26 17:47:58 +0400 | [diff] [blame] | 20 | #include <linux/sizes.h> |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 21 | |
| 22 | /* Architecture, CPU, etc.*/ |
Stephen Warren | 2460e17 | 2014-06-13 23:37:49 -0600 | [diff] [blame] | 23 | #define CONFIG_SYS_GENERIC_BOARD |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 24 | #define CONFIG_ARM1176 |
| 25 | #define CONFIG_BCM2835 |
| 26 | #define CONFIG_ARCH_CPU_INIT |
Stephen Warren | 38baa4f | 2013-01-29 16:37:39 +0000 | [diff] [blame] | 27 | #define CONFIG_SYS_DCACHE_OFF |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 28 | /* |
| 29 | * 2835 is a SKU in a series for which the 2708 is the first or primary SoC, |
| 30 | * so 2708 has historically been used rather than a dedicated 2835 ID. |
| 31 | */ |
| 32 | #define CONFIG_MACH_TYPE MACH_TYPE_BCM2708 |
| 33 | |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 34 | /* Memory layout */ |
| 35 | #define CONFIG_NR_DRAM_BANKS 1 |
| 36 | #define CONFIG_SYS_SDRAM_BASE 0x00000000 |
| 37 | #define CONFIG_SYS_TEXT_BASE 0x00008000 |
| 38 | #define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE |
| 39 | /* |
| 40 | * The board really has 256M. However, the VC (VideoCore co-processor) shares |
| 41 | * the RAM, and uses a configurable portion at the top. We tell U-Boot that a |
| 42 | * smaller amount of RAM is present in order to avoid stomping on the area |
| 43 | * the VC uses. |
| 44 | */ |
| 45 | #define CONFIG_SYS_SDRAM_SIZE SZ_128M |
| 46 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \ |
| 47 | CONFIG_SYS_SDRAM_SIZE - \ |
| 48 | GENERATED_GBL_DATA_SIZE) |
| 49 | #define CONFIG_SYS_MALLOC_LEN SZ_4M |
| 50 | #define CONFIG_SYS_MEMTEST_START 0x00100000 |
| 51 | #define CONFIG_SYS_MEMTEST_END 0x00200000 |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 52 | #define CONFIG_LOADADDR 0x00200000 |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 53 | |
| 54 | /* Flash */ |
| 55 | #define CONFIG_SYS_NO_FLASH |
| 56 | |
| 57 | /* Devices */ |
| 58 | /* GPIO */ |
| 59 | #define CONFIG_BCM2835_GPIO |
Stephen Warren | 6be3c9f | 2013-01-29 16:37:40 +0000 | [diff] [blame] | 60 | /* LCD */ |
| 61 | #define CONFIG_LCD |
Stephen Warren | ea697ae | 2013-05-27 18:31:18 +0000 | [diff] [blame] | 62 | #define CONFIG_LCD_DT_SIMPLEFB |
Stephen Warren | 6be3c9f | 2013-01-29 16:37:40 +0000 | [diff] [blame] | 63 | #define LCD_BPP LCD_COLOR16 |
| 64 | /* |
| 65 | * Prevent allocation of RAM for FB; the real FB address is queried |
| 66 | * dynamically from the VideoCore co-processor, and comes from RAM |
| 67 | * not owned by the ARM CPU. |
| 68 | */ |
| 69 | #define CONFIG_FB_ADDR 0 |
| 70 | #define CONFIG_VIDEO_BCM2835 |
| 71 | #define CONFIG_SYS_WHITE_ON_BLACK |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 72 | |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 73 | /* SD/MMC configuration */ |
| 74 | #define CONFIG_GENERIC_MMC |
| 75 | #define CONFIG_MMC |
| 76 | #define CONFIG_SDHCI |
| 77 | #define CONFIG_MMC_SDHCI_IO_ACCESSORS |
| 78 | #define CONFIG_BCM2835_SDHCI |
| 79 | |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 80 | /* Console UART */ |
| 81 | #define CONFIG_PL011_SERIAL |
| 82 | #define CONFIG_PL011_CLOCK 3000000 |
| 83 | #define CONFIG_PL01x_PORTS { (void *)0x20201000 } |
| 84 | #define CONFIG_CONS_INDEX 0 |
| 85 | #define CONFIG_BAUDRATE 115200 |
| 86 | |
| 87 | /* Console configuration */ |
| 88 | #define CONFIG_SYS_CBSIZE 1024 |
| 89 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| 90 | sizeof(CONFIG_SYS_PROMPT) + 16) |
| 91 | |
| 92 | /* Environment */ |
| 93 | #define CONFIG_ENV_SIZE SZ_16K |
| 94 | #define CONFIG_ENV_IS_NOWHERE |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 95 | #define CONFIG_ENV_VARS_UBOOT_CONFIG |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 96 | #define CONFIG_SYS_LOAD_ADDR 0x1000000 |
Stephen Warren | 6be3c9f | 2013-01-29 16:37:40 +0000 | [diff] [blame] | 97 | #define CONFIG_CONSOLE_MUX |
| 98 | #define CONFIG_SYS_CONSOLE_IS_IN_ENV |
Stephen Warren | 5c92d48 | 2014-02-05 20:49:22 -0700 | [diff] [blame] | 99 | #define CONFIG_PREBOOT \ |
| 100 | "if load mmc 0:1 ${loadaddr} /uEnv.txt; then " \ |
Alexander Holler | 11547b2 | 2014-07-14 17:49:58 +0200 | [diff] [blame] | 101 | "env import -t -r ${loadaddr} ${filesize}; " \ |
Stephen Warren | 5c92d48 | 2014-02-05 20:49:22 -0700 | [diff] [blame] | 102 | "fi" |
| 103 | |
Stephen Warren | 1998a1a | 2014-02-13 20:44:07 -0700 | [diff] [blame] | 104 | #define ENV_DEVICE_SETTINGS \ |
| 105 | "stdin=serial,lcd\0" \ |
| 106 | "stdout=serial,lcd\0" \ |
| 107 | "stderr=serial,lcd\0" |
| 108 | |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 109 | /* |
| 110 | * Memory layout for where various images get loaded by boot scripts: |
| 111 | * |
| 112 | * scriptaddr can be pretty much anywhere that doesn't conflict with something |
| 113 | * else. Put it low in memory to avoid conflicts. |
| 114 | * |
Stephen Warren | 1998a1a | 2014-02-13 20:44:07 -0700 | [diff] [blame] | 115 | * pxefile_addr_r can be pretty much anywhere that doesn't conflict with |
| 116 | * something else. Put it low in memory to avoid conflicts. |
| 117 | * |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 118 | * kernel_addr_r must be within the first 128M of RAM in order for the |
| 119 | * kernel's CONFIG_AUTO_ZRELADDR option to work. Since the kernel will |
| 120 | * decompress itself to 0x8000 after the start of RAM, kernel_addr_r |
| 121 | * should not overlap that area, or the kernel will have to copy itself |
| 122 | * somewhere else before decompression. Similarly, the address of any other |
| 123 | * data passed to the kernel shouldn't overlap the start of RAM. Pushing |
| 124 | * this up to 16M allows for a sizable kernel to be decompressed below the |
| 125 | * compressed load address. |
| 126 | * |
| 127 | * fdt_addr_r simply shouldn't overlap anything else. Choosing 32M allows for |
| 128 | * the compressed kernel to be up to 16M too. |
| 129 | * |
| 130 | * ramdisk_addr_r simply shouldn't overlap anything else. Choosing 33M allows |
| 131 | * for the FDT/DTB to be up to 1M, which is hopefully plenty. |
| 132 | */ |
Stephen Warren | 1998a1a | 2014-02-13 20:44:07 -0700 | [diff] [blame] | 133 | #define ENV_MEM_LAYOUT_SETTINGS \ |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 134 | "scriptaddr=0x00000000\0" \ |
Stephen Warren | 1998a1a | 2014-02-13 20:44:07 -0700 | [diff] [blame] | 135 | "pxefile_addr_r=0x00100000\0" \ |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 136 | "kernel_addr_r=0x01000000\0" \ |
| 137 | "fdt_addr_r=0x02000000\0" \ |
Stephen Warren | bccaa47 | 2014-01-28 22:41:50 -0700 | [diff] [blame] | 138 | "fdtfile=bcm2835-rpi-b.dtb\0" \ |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 139 | "ramdisk_addr_r=0x02100000\0" \ |
Stephen Warren | 1998a1a | 2014-02-13 20:44:07 -0700 | [diff] [blame] | 140 | |
| 141 | #define BOOTCMDS_MMC \ |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 142 | "mmc_boot=" \ |
| 143 | "setenv devtype mmc; " \ |
| 144 | "if mmc dev ${devnum}; then " \ |
Stephen Warren | 1998a1a | 2014-02-13 20:44:07 -0700 | [diff] [blame] | 145 | "run scan_boot; " \ |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 146 | "fi\0" \ |
Stephen Warren | 1998a1a | 2014-02-13 20:44:07 -0700 | [diff] [blame] | 147 | "bootcmd_mmc0=setenv devnum 0; run mmc_boot;\0" |
| 148 | #define BOOT_TARGETS_MMC "mmc0" |
| 149 | |
| 150 | #define BOOTCMDS_COMMON \ |
| 151 | "rootpart=1\0" \ |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 152 | \ |
Stephen Warren | 1998a1a | 2014-02-13 20:44:07 -0700 | [diff] [blame] | 153 | "do_script_boot=" \ |
| 154 | "load ${devtype} ${devnum}:${rootpart} " \ |
| 155 | "${scriptaddr} ${prefix}${script}; " \ |
| 156 | "source ${scriptaddr}\0" \ |
| 157 | \ |
| 158 | "script_boot=" \ |
| 159 | "for script in ${boot_scripts}; do " \ |
| 160 | "if test -e ${devtype} ${devnum}:${rootpart} " \ |
| 161 | "${prefix}${script}; then " \ |
| 162 | "echo Found ${prefix}${script}; " \ |
| 163 | "run do_script_boot; " \ |
| 164 | "echo SCRIPT FAILED: continuing...; " \ |
| 165 | "fi; " \ |
| 166 | "done\0" \ |
| 167 | \ |
| 168 | "do_sysboot_boot=" \ |
| 169 | "sysboot ${devtype} ${devnum}:${rootpart} any " \ |
| 170 | "${scriptaddr} ${prefix}extlinux/extlinux.conf\0" \ |
| 171 | \ |
| 172 | "sysboot_boot=" \ |
| 173 | "if test -e ${devtype} ${devnum}:${rootpart} " \ |
| 174 | "${prefix}extlinux/extlinux.conf; then " \ |
| 175 | "echo Found ${prefix}extlinux/extlinux.conf; " \ |
| 176 | "run do_sysboot_boot; " \ |
| 177 | "echo SCRIPT FAILED: continuing...; " \ |
| 178 | "fi\0" \ |
| 179 | \ |
| 180 | "scan_boot=" \ |
| 181 | "echo Scanning ${devtype} ${devnum}...; " \ |
| 182 | "for prefix in ${boot_prefixes}; do " \ |
| 183 | "run sysboot_boot; " \ |
| 184 | "run script_boot; " \ |
| 185 | "done\0" \ |
| 186 | \ |
| 187 | "boot_targets=" \ |
| 188 | BOOT_TARGETS_MMC " " \ |
| 189 | "\0" \ |
| 190 | \ |
| 191 | "boot_prefixes=/\0" \ |
| 192 | \ |
| 193 | "boot_scripts=boot.scr.uimg\0" \ |
| 194 | \ |
| 195 | BOOTCMDS_MMC |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 196 | |
| 197 | #define CONFIG_BOOTCOMMAND \ |
| 198 | "for target in ${boot_targets}; do run bootcmd_${target}; done" |
| 199 | |
Stephen Warren | 1998a1a | 2014-02-13 20:44:07 -0700 | [diff] [blame] | 200 | #define CONFIG_BOOTCOMMAND \ |
| 201 | "for target in ${boot_targets}; do run bootcmd_${target}; done" |
| 202 | |
| 203 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 204 | ENV_DEVICE_SETTINGS \ |
| 205 | ENV_MEM_LAYOUT_SETTINGS \ |
| 206 | BOOTCMDS_COMMON |
| 207 | |
| 208 | #define CONFIG_BOOTDELAY 2 |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 209 | |
| 210 | /* Shell */ |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 211 | #define CONFIG_SYS_MAXARGS 8 |
| 212 | #define CONFIG_SYS_PROMPT "U-Boot> " |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 213 | #define CONFIG_COMMAND_HISTORY |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 214 | |
| 215 | /* Commands */ |
| 216 | #include <config_cmd_default.h> |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 217 | #define CONFIG_CMD_GPIO |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 218 | #define CONFIG_CMD_MMC |
Stephen Warren | 131a1e6 | 2013-01-29 16:37:42 +0000 | [diff] [blame] | 219 | #define CONFIG_PARTITION_UUIDS |
| 220 | #define CONFIG_CMD_PART |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 221 | |
Stephen Warren | 29235b7 | 2014-02-05 20:49:21 -0700 | [diff] [blame] | 222 | /* Device tree support */ |
Stephen Warren | ea697ae | 2013-05-27 18:31:18 +0000 | [diff] [blame] | 223 | #define CONFIG_OF_BOARD_SETUP |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 224 | /* ATAGs support for bootm/bootz */ |
| 225 | #define CONFIG_SETUP_MEMORY_TAGS |
| 226 | #define CONFIG_CMDLINE_TAG |
| 227 | #define CONFIG_INITRD_TAG |
| 228 | |
Stephen Warren | 29235b7 | 2014-02-05 20:49:21 -0700 | [diff] [blame] | 229 | #include <config_distro_defaults.h> |
| 230 | |
| 231 | /* Some things don't make sense on this HW or yet */ |
| 232 | #undef CONFIG_CMD_FPGA |
| 233 | #undef CONFIG_CMD_NET |
| 234 | #undef CONFIG_CMD_NFS |
| 235 | #undef CONFIG_CMD_SAVEENV |
| 236 | #undef CONFIG_CMD_DHCP |
| 237 | #undef CONFIG_CMD_MII |
| 238 | #undef CONFIG_CMD_NET |
| 239 | #undef CONFIG_CMD_PING |
| 240 | |
Stephen Warren | 0d04f34 | 2012-08-05 16:07:22 +0000 | [diff] [blame] | 241 | #endif |