]> Git Repo - J-u-boot.git/blame - include/configs/rpi.h
global: Convert CONFIG_LOADADDR to CONFIG_SYS_LOADADDR
[J-u-boot.git] / include / configs / rpi.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0 */
0d04f34a 2/*
fe84ebf0 3 * (C) Copyright 2012-2016 Stephen Warren
0d04f34a
SW
4 */
5
6#ifndef __CONFIG_H
7#define __CONFIG_H
8
fe84ebf0
SW
9#include <linux/sizes.h>
10#include <asm/arch/timer.h>
11
8e3361c8
MB
12#ifndef __ASSEMBLY__
13#include <asm/arch/base.h>
14#endif
15
fe84ebf0
SW
16#if defined(CONFIG_TARGET_RPI_2) || defined(CONFIG_TARGET_RPI_3_32B)
17#define CONFIG_SKIP_LOWLEVEL_INIT
18#endif
19
fe84ebf0 20/* Architecture, CPU, etc.*/
fe84ebf0
SW
21
22/* Use SoC timer for AArch32, but architected timer for AArch64 */
23#ifndef CONFIG_ARM64
24#define CONFIG_SYS_TIMER_RATE 1000000
25#define CONFIG_SYS_TIMER_COUNTER \
26 (&((struct bcm2835_timer_regs *)BCM2835_TIMER_PHYSADDR)->clo)
27#endif
28
94ba26f2
TR
29/*
30 * 2835 is a SKU in a series for which the 2708 is the first or primary SoC,
31 * so 2708 has historically been used rather than a dedicated 2835 ID.
32 *
33 * We don't define a machine type for bcm2709/bcm2836 since the RPi Foundation
34 * chose to use someone else's previously registered machine ID (3139, MX51_GGC)
35 * rather than obtaining a valid ID:-/
36 *
37 * For the bcm2837, hopefully a machine type is not needed, since everything
38 * is DT.
39 */
40#ifdef CONFIG_BCM2835
41#define CONFIG_MACH_TYPE MACH_TYPE_BCM2708
42#endif
43
fe84ebf0 44/* Memory layout */
fe84ebf0 45#define CONFIG_SYS_SDRAM_BASE 0x00000000
fe84ebf0
SW
46#define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE
47/*
48 * The board really has 256M. However, the VC (VideoCore co-processor) shares
49 * the RAM, and uses a configurable portion at the top. We tell U-Boot that a
50 * smaller amount of RAM is present in order to avoid stomping on the area
51 * the VC uses.
52 */
53#define CONFIG_SYS_SDRAM_SIZE SZ_128M
54#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \
55 CONFIG_SYS_SDRAM_SIZE - \
56 GENERATED_GBL_DATA_SIZE)
57#define CONFIG_SYS_MALLOC_LEN SZ_4M
fe84ebf0 58
659f4fe3
BL
59#ifdef CONFIG_ARM64
60#define CONFIG_SYS_BOOTM_LEN SZ_64M
61#endif
62
fe84ebf0
SW
63/* Devices */
64/* GPIO */
65#define CONFIG_BCM2835_GPIO
66/* LCD */
fe84ebf0 67#define CONFIG_LCD_DT_SIMPLEFB
fe84ebf0 68#define CONFIG_VIDEO_BCM2835
fe84ebf0 69
f29002fc
MS
70/* DFU over USB/UDC */
71#ifdef CONFIG_CMD_DFU
f29002fc
MS
72#ifdef CONFIG_ARM64
73#define KERNEL_FILENAME "Image"
74#else
75#define KERNEL_FILENAME "zImage"
76#endif
77
78#define ENV_DFU_SETTINGS \
79 "dfu_alt_info=u-boot.bin fat 0 1;uboot.env fat 0 1;" \
80 "config.txt fat 0 1;" \
81 KERNEL_FILENAME " fat 0 1\0"
82#else
83#define ENV_DFU_SETTINGS ""
84#endif
85
fe84ebf0
SW
86/* Console configuration */
87#define CONFIG_SYS_CBSIZE 1024
fe84ebf0
SW
88
89/* Environment */
fe84ebf0 90#define CONFIG_SYS_LOAD_ADDR 0x1000000
fe84ebf0
SW
91
92/* Shell */
fe84ebf0 93
fe84ebf0
SW
94/* ATAGs support for bootm/bootz */
95#define CONFIG_SETUP_MEMORY_TAGS
96#define CONFIG_CMDLINE_TAG
97#define CONFIG_INITRD_TAG
98
fe84ebf0 99/* Environment */
fe84ebf0
SW
100#define ENV_DEVICE_SETTINGS \
101 "stdin=serial,usbkbd\0" \
ea843b6d
SG
102 "stdout=serial,vidconsole\0" \
103 "stderr=serial,vidconsole\0"
fe84ebf0 104
72274259
TT
105#ifdef CONFIG_ARM64
106#define FDT_HIGH "ffffffffffffffff"
107#define INITRD_HIGH "ffffffffffffffff"
108#else
109#define FDT_HIGH "ffffffff"
110#define INITRD_HIGH "ffffffff"
111#endif
112
fe84ebf0
SW
113/*
114 * Memory layout for where various images get loaded by boot scripts:
115 *
116 * I suspect address 0 is used as the SMP pen on the RPi2, so avoid this.
117 *
385cbe29
TT
118 * Older versions of the boot firmware place the firmware-loaded DTB at 0x100,
119 * newer versions place it in high memory. So prevent U-Boot from doing its own
120 * DTB + initrd relocation so that we won't accidentally relocate the initrd
121 * over the firmware-loaded DTB and generally try to lay out things starting
122 * from the bottom of RAM.
fe84ebf0 123 *
385cbe29
TT
124 * kernel_addr_r has different constraints on ARM and Aarch64. For 32-bit ARM,
125 * it must be within the first 128M of RAM in order for the kernel's
126 * CONFIG_AUTO_ZRELADDR option to work. The kernel itself will be decompressed
127 * to 0x8000 but the decompressor clobbers 0x4000-0x8000 as well. The
128 * decompressor also likes to relocate itself to right past the end of the
129 * decompressed kernel, so in total the sum of the compressed and and
130 * decompressed kernel needs to be reserved.
fe84ebf0 131 *
385cbe29
TT
132 * For Aarch64, the kernel image is uncompressed and must be loaded at
133 * text_offset bytes (specified in the header of the Image) into a 2MB
134 * boundary. The 'booti' command relocates the image if necessary. Linux uses
135 * a default text_offset of 0x80000. In summary, loading at 0x80000
136 * satisfies all these constraints and reserving memory up to 0x02400000
137 * permits fairly large (roughly 36M) kernels.
fe84ebf0 138 *
385cbe29
TT
139 * scriptaddr and pxefile_addr_r can be pretty much anywhere that doesn't
140 * conflict with something else. Reserving 1M for each of them at
141 * 0x02400000-0x02500000 and 0x02500000-0x02600000 should be plenty.
fe84ebf0 142 *
385cbe29
TT
143 * On ARM, both the DTB and any possible initrd must be loaded such that they
144 * fit inside the lowmem mapping in Linux. In practice, this usually means not
145 * more than ~700M away from the start of the kernel image but this number can
146 * be larger OR smaller depending on e.g. the 'vmalloc=xxxM' command line
147 * parameter given to the kernel. So reserving memory from low to high
148 * satisfies this constraint again. Reserving 1M at 0x02600000-0x02700000 for
149 * the DTB leaves rest of the free RAM to the initrd starting at 0x02700000.
150 * Even with the smallest possible CPU-GPU memory split of the CPU getting
151 * only 64M, the remaining 25M starting at 0x02700000 should allow quite
152 * large initrds before they start colliding with U-Boot.
fe84ebf0
SW
153 */
154#define ENV_MEM_LAYOUT_SETTINGS \
72274259
TT
155 "fdt_high=" FDT_HIGH "\0" \
156 "initrd_high=" INITRD_HIGH "\0" \
385cbe29
TT
157 "kernel_addr_r=0x00080000\0" \
158 "scriptaddr=0x02400000\0" \
159 "pxefile_addr_r=0x02500000\0" \
160 "fdt_addr_r=0x02600000\0" \
161 "ramdisk_addr_r=0x02700000\0"
fe84ebf0 162
e4617bdb 163#if CONFIG_IS_ENABLED(CMD_MMC)
164 #define BOOT_TARGET_MMC(func) \
165 func(MMC, mmc, 0) \
166 func(MMC, mmc, 1)
167#else
168 #define BOOT_TARGET_MMC(func)
169#endif
170
171#if CONFIG_IS_ENABLED(CMD_USB)
172 #define BOOT_TARGET_USB(func) func(USB, usb, 0)
173#else
174 #define BOOT_TARGET_USB(func)
175#endif
176
177#if CONFIG_IS_ENABLED(CMD_PXE)
178 #define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
179#else
180 #define BOOT_TARGET_PXE(func)
181#endif
182
183#if CONFIG_IS_ENABLED(CMD_DHCP)
184 #define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
185#else
186 #define BOOT_TARGET_DHCP(func)
187#endif
188
fe84ebf0 189#define BOOT_TARGET_DEVICES(func) \
e4617bdb 190 BOOT_TARGET_MMC(func) \
191 BOOT_TARGET_USB(func) \
192 BOOT_TARGET_PXE(func) \
193 BOOT_TARGET_DHCP(func)
194
fe84ebf0
SW
195#include <config_distro_bootcmd.h>
196
197#define CONFIG_EXTRA_ENV_SETTINGS \
198 "dhcpuboot=usb start; dhcp u-boot.uimg; bootm\0" \
199 ENV_DEVICE_SETTINGS \
f29002fc 200 ENV_DFU_SETTINGS \
fe84ebf0
SW
201 ENV_MEM_LAYOUT_SETTINGS \
202 BOOTENV
060f9bf5 203
0d04f34a 204
0d04f34a 205#endif
This page took 0.801544 seconds and 4 git commands to generate.