blob: a97550b7320748e51e25750c6057071bd8f2248d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Stephen Warren0d04f342012-08-05 16:07:22 +00002/*
Stephen Warrenfe84ebf2016-04-04 20:00:41 -06003 * (C) Copyright 2012-2016 Stephen Warren
Stephen Warren0d04f342012-08-05 16:07:22 +00004 */
5
6#ifndef __CONFIG_H
7#define __CONFIG_H
8
Stephen Warrenfe84ebf2016-04-04 20:00:41 -06009#include <linux/sizes.h>
10#include <asm/arch/timer.h>
Alexander Stein060f9bf2015-07-24 09:22:11 +020011
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060012#if defined(CONFIG_TARGET_RPI_2) || defined(CONFIG_TARGET_RPI_3_32B)
13#define CONFIG_SKIP_LOWLEVEL_INIT
14#endif
15
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060016/* Architecture, CPU, etc.*/
17#define CONFIG_ARCH_CPU_INIT
18
19/* Use SoC timer for AArch32, but architected timer for AArch64 */
20#ifndef CONFIG_ARM64
21#define CONFIG_SYS_TIMER_RATE 1000000
22#define CONFIG_SYS_TIMER_COUNTER \
23 (&((struct bcm2835_timer_regs *)BCM2835_TIMER_PHYSADDR)->clo)
24#endif
25
Tom Rini94ba26f2017-01-25 20:42:35 -050026/*
27 * 2835 is a SKU in a series for which the 2708 is the first or primary SoC,
28 * so 2708 has historically been used rather than a dedicated 2835 ID.
29 *
30 * We don't define a machine type for bcm2709/bcm2836 since the RPi Foundation
31 * chose to use someone else's previously registered machine ID (3139, MX51_GGC)
32 * rather than obtaining a valid ID:-/
33 *
34 * For the bcm2837, hopefully a machine type is not needed, since everything
35 * is DT.
36 */
37#ifdef CONFIG_BCM2835
38#define CONFIG_MACH_TYPE MACH_TYPE_BCM2708
39#endif
40
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060041/* Memory layout */
42#define CONFIG_NR_DRAM_BANKS 1
43#define CONFIG_SYS_SDRAM_BASE 0x00000000
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060044#define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE
45/*
46 * The board really has 256M. However, the VC (VideoCore co-processor) shares
47 * the RAM, and uses a configurable portion at the top. We tell U-Boot that a
48 * smaller amount of RAM is present in order to avoid stomping on the area
49 * the VC uses.
50 */
51#define CONFIG_SYS_SDRAM_SIZE SZ_128M
52#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \
53 CONFIG_SYS_SDRAM_SIZE - \
54 GENERATED_GBL_DATA_SIZE)
55#define CONFIG_SYS_MALLOC_LEN SZ_4M
56#define CONFIG_SYS_MEMTEST_START 0x00100000
57#define CONFIG_SYS_MEMTEST_END 0x00200000
58#define CONFIG_LOADADDR 0x00200000
59
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060060/* Devices */
61/* GPIO */
62#define CONFIG_BCM2835_GPIO
63/* LCD */
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060064#define CONFIG_LCD_DT_SIMPLEFB
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060065#define CONFIG_VIDEO_BCM2835
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060066
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060067#ifdef CONFIG_CMD_USB
Simon Glassd0375f32015-08-07 07:42:22 -060068#define CONFIG_TFTP_TSIZE
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060069#define CONFIG_MISC_INIT_R
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060070#endif
71
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060072/* Console configuration */
73#define CONFIG_SYS_CBSIZE 1024
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060074
75/* Environment */
76#define CONFIG_ENV_SIZE SZ_16K
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060077#define CONFIG_SYS_LOAD_ADDR 0x1000000
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060078#define CONFIG_PREBOOT "usb start"
79
80/* Shell */
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060081
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060082/* ATAGs support for bootm/bootz */
83#define CONFIG_SETUP_MEMORY_TAGS
84#define CONFIG_CMDLINE_TAG
85#define CONFIG_INITRD_TAG
86
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060087/* Environment */
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060088#define ENV_DEVICE_SETTINGS \
89 "stdin=serial,usbkbd\0" \
Simon Glassea843b62017-04-05 16:23:44 -060090 "stdout=serial,vidconsole\0" \
91 "stderr=serial,vidconsole\0"
Stephen Warrenfe84ebf2016-04-04 20:00:41 -060092
Tuomas Tynkkynen72274252018-04-20 13:03:48 +030093#ifdef CONFIG_ARM64
94#define FDT_HIGH "ffffffffffffffff"
95#define INITRD_HIGH "ffffffffffffffff"
96#else
97#define FDT_HIGH "ffffffff"
98#define INITRD_HIGH "ffffffff"
99#endif
100
Stephen Warrenfe84ebf2016-04-04 20:00:41 -0600101/*
102 * Memory layout for where various images get loaded by boot scripts:
103 *
104 * I suspect address 0 is used as the SMP pen on the RPi2, so avoid this.
105 *
Tuomas Tynkkynen385cbe22018-04-20 13:03:49 +0300106 * Older versions of the boot firmware place the firmware-loaded DTB at 0x100,
107 * newer versions place it in high memory. So prevent U-Boot from doing its own
108 * DTB + initrd relocation so that we won't accidentally relocate the initrd
109 * over the firmware-loaded DTB and generally try to lay out things starting
110 * from the bottom of RAM.
Stephen Warrenfe84ebf2016-04-04 20:00:41 -0600111 *
Tuomas Tynkkynen385cbe22018-04-20 13:03:49 +0300112 * kernel_addr_r has different constraints on ARM and Aarch64. For 32-bit ARM,
113 * it must be within the first 128M of RAM in order for the kernel's
114 * CONFIG_AUTO_ZRELADDR option to work. The kernel itself will be decompressed
115 * to 0x8000 but the decompressor clobbers 0x4000-0x8000 as well. The
116 * decompressor also likes to relocate itself to right past the end of the
117 * decompressed kernel, so in total the sum of the compressed and and
118 * decompressed kernel needs to be reserved.
Stephen Warrenfe84ebf2016-04-04 20:00:41 -0600119 *
Tuomas Tynkkynen385cbe22018-04-20 13:03:49 +0300120 * For Aarch64, the kernel image is uncompressed and must be loaded at
121 * text_offset bytes (specified in the header of the Image) into a 2MB
122 * boundary. The 'booti' command relocates the image if necessary. Linux uses
123 * a default text_offset of 0x80000. In summary, loading at 0x80000
124 * satisfies all these constraints and reserving memory up to 0x02400000
125 * permits fairly large (roughly 36M) kernels.
Stephen Warrenfe84ebf2016-04-04 20:00:41 -0600126 *
Tuomas Tynkkynen385cbe22018-04-20 13:03:49 +0300127 * scriptaddr and pxefile_addr_r can be pretty much anywhere that doesn't
128 * conflict with something else. Reserving 1M for each of them at
129 * 0x02400000-0x02500000 and 0x02500000-0x02600000 should be plenty.
Stephen Warrenfe84ebf2016-04-04 20:00:41 -0600130 *
Tuomas Tynkkynen385cbe22018-04-20 13:03:49 +0300131 * On ARM, both the DTB and any possible initrd must be loaded such that they
132 * fit inside the lowmem mapping in Linux. In practice, this usually means not
133 * more than ~700M away from the start of the kernel image but this number can
134 * be larger OR smaller depending on e.g. the 'vmalloc=xxxM' command line
135 * parameter given to the kernel. So reserving memory from low to high
136 * satisfies this constraint again. Reserving 1M at 0x02600000-0x02700000 for
137 * the DTB leaves rest of the free RAM to the initrd starting at 0x02700000.
138 * Even with the smallest possible CPU-GPU memory split of the CPU getting
139 * only 64M, the remaining 25M starting at 0x02700000 should allow quite
140 * large initrds before they start colliding with U-Boot.
Stephen Warrenfe84ebf2016-04-04 20:00:41 -0600141 */
142#define ENV_MEM_LAYOUT_SETTINGS \
Tuomas Tynkkynen72274252018-04-20 13:03:48 +0300143 "fdt_high=" FDT_HIGH "\0" \
144 "initrd_high=" INITRD_HIGH "\0" \
Tuomas Tynkkynen385cbe22018-04-20 13:03:49 +0300145 "kernel_addr_r=0x00080000\0" \
146 "scriptaddr=0x02400000\0" \
147 "pxefile_addr_r=0x02500000\0" \
148 "fdt_addr_r=0x02600000\0" \
149 "ramdisk_addr_r=0x02700000\0"
Stephen Warrenfe84ebf2016-04-04 20:00:41 -0600150
151#define BOOT_TARGET_DEVICES(func) \
152 func(MMC, mmc, 0) \
153 func(USB, usb, 0) \
154 func(PXE, pxe, na) \
155 func(DHCP, dhcp, na)
156#include <config_distro_bootcmd.h>
157
158#define CONFIG_EXTRA_ENV_SETTINGS \
159 "dhcpuboot=usb start; dhcp u-boot.uimg; bootm\0" \
160 ENV_DEVICE_SETTINGS \
161 ENV_MEM_LAYOUT_SETTINGS \
162 BOOTENV
163
Stephen Warren0d04f342012-08-05 16:07:22 +0000164
Stephen Warren0d04f342012-08-05 16:07:22 +0000165#endif