blob: 89aee0a85b406b1c9dc6a42df06f07573736aa4b [file] [log] [blame]
Stephen Warren46414292015-02-16 12:16:15 -07001/*
2 * (C) Copyright 2012,2015 Stephen Warren
3 *
4 * SPDX-License-Identifier: GPL-2.0
5 */
6
7#ifndef _RPI_COMMON_H_
8#define _RPI_COMMON_H_
9
10#include <linux/sizes.h>
Marek Vasute390bd52015-05-04 22:54:37 +020011#include <asm/arch/timer.h>
Stephen Warren46414292015-02-16 12:16:15 -070012
13/* Architecture, CPU, etc.*/
Stephen Warren46414292015-02-16 12:16:15 -070014#define CONFIG_ARCH_CPU_INIT
Marek Vasute390bd52015-05-04 22:54:37 +020015
16#define CONFIG_SYS_TIMER_RATE 1000000
17#define CONFIG_SYS_TIMER_COUNTER \
18 (&((struct bcm2835_timer_regs *)BCM2835_TIMER_PHYSADDR)->clo)
19
Stephen Warren46414292015-02-16 12:16:15 -070020/*
21 * 2835 is a SKU in a series for which the 2708 is the first or primary SoC,
22 * so 2708 has historically been used rather than a dedicated 2835 ID.
23 *
24 * We don't define a machine type for bcm2709/bcm2836 since the RPi Foundation
25 * chose to use someone else's previously registered machine ID (3139, MX51_GGC)
26 * rather than obtaining a valid ID:-/
27 */
Stephen Warrened7481c2016-03-16 21:40:56 -060028#ifdef CONFIG_BCM2835
Stephen Warren46414292015-02-16 12:16:15 -070029#define CONFIG_MACH_TYPE MACH_TYPE_BCM2708
30#endif
31
32/* Memory layout */
33#define CONFIG_NR_DRAM_BANKS 1
34#define CONFIG_SYS_SDRAM_BASE 0x00000000
35#define CONFIG_SYS_TEXT_BASE 0x00008000
36#define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE
37/*
38 * The board really has 256M. However, the VC (VideoCore co-processor) shares
39 * the RAM, and uses a configurable portion at the top. We tell U-Boot that a
40 * smaller amount of RAM is present in order to avoid stomping on the area
41 * the VC uses.
42 */
43#define CONFIG_SYS_SDRAM_SIZE SZ_128M
44#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \
45 CONFIG_SYS_SDRAM_SIZE - \
46 GENERATED_GBL_DATA_SIZE)
47#define CONFIG_SYS_MALLOC_LEN SZ_4M
48#define CONFIG_SYS_MEMTEST_START 0x00100000
49#define CONFIG_SYS_MEMTEST_END 0x00200000
50#define CONFIG_LOADADDR 0x00200000
51
52/* Flash */
53#define CONFIG_SYS_NO_FLASH
54
55/* Devices */
56/* GPIO */
57#define CONFIG_BCM2835_GPIO
58/* LCD */
59#define CONFIG_LCD
60#define CONFIG_LCD_DT_SIMPLEFB
61#define LCD_BPP LCD_COLOR16
62/*
63 * Prevent allocation of RAM for FB; the real FB address is queried
64 * dynamically from the VideoCore co-processor, and comes from RAM
65 * not owned by the ARM CPU.
66 */
67#define CONFIG_FB_ADDR 0
68#define CONFIG_VIDEO_BCM2835
69#define CONFIG_SYS_WHITE_ON_BLACK
Lubomir Rintel1fd4bed2016-02-22 22:15:33 +010070#define CONFIG_CONSOLE_SCROLL_LINES 10
Stephen Warren46414292015-02-16 12:16:15 -070071
72/* SD/MMC configuration */
73#define CONFIG_GENERIC_MMC
74#define CONFIG_MMC
75#define CONFIG_SDHCI
76#define CONFIG_MMC_SDHCI_IO_ACCESSORS
77#define CONFIG_BCM2835_SDHCI
78
79#define CONFIG_CMD_USB
80#ifdef CONFIG_CMD_USB
81#define CONFIG_USB_DWC2
Stephen Warrened7481c2016-03-16 21:40:56 -060082#ifndef CONFIG_BCM2835
Stephen Warren46414292015-02-16 12:16:15 -070083#define CONFIG_USB_DWC2_REG_ADDR 0x3f980000
84#else
85#define CONFIG_USB_DWC2_REG_ADDR 0x20980000
86#endif
87#define CONFIG_USB_STORAGE
88#define CONFIG_USB_HOST_ETHER
89#define CONFIG_USB_ETHER_SMSC95XX
90#define CONFIG_MISC_INIT_R
Stephen Warren1ff60152015-12-15 20:50:22 -070091#define CONFIG_USB_KEYBOARD
92#define CONFIG_SYS_USB_EVENT_POLL
93#define CONFIG_SYS_STDIO_DEREGISTER
Stephen Warren46414292015-02-16 12:16:15 -070094#endif
95
96/* Console UART */
97#define CONFIG_PL01X_SERIAL
98#define CONFIG_CONS_INDEX 0
99#define CONFIG_BAUDRATE 115200
100
101/* Console configuration */
102#define CONFIG_SYS_CBSIZE 1024
103#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
104 sizeof(CONFIG_SYS_PROMPT) + 16)
105
106/* Environment */
107#define CONFIG_ENV_SIZE SZ_16K
108#define CONFIG_ENV_IS_IN_FAT
109#define FAT_ENV_INTERFACE "mmc"
110#define FAT_ENV_DEVICE_AND_PART "0:1"
111#define FAT_ENV_FILE "uboot.env"
112#define CONFIG_FAT_WRITE
113#define CONFIG_ENV_VARS_UBOOT_CONFIG
114#define CONFIG_SYS_LOAD_ADDR 0x1000000
115#define CONFIG_CONSOLE_MUX
116#define CONFIG_SYS_CONSOLE_IS_IN_ENV
Stephen Warren1ff60152015-12-15 20:50:22 -0700117#define CONFIG_PREBOOT "usb start"
Stephen Warren46414292015-02-16 12:16:15 -0700118
119/* Shell */
Stephen Warren1f60d7c2016-02-15 17:38:02 -0700120#define CONFIG_SYS_MAXARGS 16
Stephen Warren46414292015-02-16 12:16:15 -0700121#define CONFIG_COMMAND_HISTORY
122
123/* Commands */
Stephen Warren46414292015-02-16 12:16:15 -0700124#define CONFIG_CMD_MMC
125#define CONFIG_PARTITION_UUIDS
126#define CONFIG_CMD_PART
127
Stephen Warren46414292015-02-16 12:16:15 -0700128/* ATAGs support for bootm/bootz */
129#define CONFIG_SETUP_MEMORY_TAGS
130#define CONFIG_CMDLINE_TAG
131#define CONFIG_INITRD_TAG
132
133#include <config_distro_defaults.h>
134
Stephen Warren46414292015-02-16 12:16:15 -0700135/* Environment */
Guillaume GARDETbff78562015-08-25 15:10:26 +0200136#define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
Stephen Warren46414292015-02-16 12:16:15 -0700137#define ENV_DEVICE_SETTINGS \
Stephen Warren1ff60152015-12-15 20:50:22 -0700138 "stdin=serial,usbkbd\0" \
Stephen Warren46414292015-02-16 12:16:15 -0700139 "stdout=serial,lcd\0" \
140 "stderr=serial,lcd\0"
141
142/*
143 * Memory layout for where various images get loaded by boot scripts:
144 *
Stephen Warren685dc832016-02-05 22:45:46 -0700145 * I suspect address 0 is used as the SMP pen on the RPi2, so avoid this.
146 *
147 * fdt_addr_r simply shouldn't overlap anything else. However, the RPi's
148 * binary firmware loads a DT to address 0x100, so we choose this address to
149 * match it. This allows custom boot scripts to pass this DT on to Linux
150 * simply by not over-writing the data at this address. When using U-Boot,
151 * U-Boot (and scripts it executes) typicaly ignore the DT loaded by the FW
152 * and loads its own DT from disk (triggered by boot.scr or extlinux.conf).
Stephen Warren46414292015-02-16 12:16:15 -0700153 *
154 * pxefile_addr_r can be pretty much anywhere that doesn't conflict with
155 * something else. Put it low in memory to avoid conflicts.
156 *
157 * kernel_addr_r must be within the first 128M of RAM in order for the
158 * kernel's CONFIG_AUTO_ZRELADDR option to work. Since the kernel will
159 * decompress itself to 0x8000 after the start of RAM, kernel_addr_r
160 * should not overlap that area, or the kernel will have to copy itself
161 * somewhere else before decompression. Similarly, the address of any other
162 * data passed to the kernel shouldn't overlap the start of RAM. Pushing
163 * this up to 16M allows for a sizable kernel to be decompressed below the
164 * compressed load address.
165 *
Stephen Warren685dc832016-02-05 22:45:46 -0700166 * scriptaddr can be pretty much anywhere that doesn't conflict with something
167 * else. Choosing 32M allows for the compressed kernel to be up to 16M.
Stephen Warren46414292015-02-16 12:16:15 -0700168 *
169 * ramdisk_addr_r simply shouldn't overlap anything else. Choosing 33M allows
Stephen Warren685dc832016-02-05 22:45:46 -0700170 * for any boot script to be up to 1M, which is hopefully plenty.
Stephen Warren46414292015-02-16 12:16:15 -0700171 */
172#define ENV_MEM_LAYOUT_SETTINGS \
Stephen Warren89ca1002016-02-05 22:45:47 -0700173 "fdt_high=ffffffff\0" \
Lubomir Rintel9d313612016-02-14 19:23:24 +0100174 "initrd_high=ffffffff\0" \
Jonathan Liu14006a52015-08-22 20:27:17 +1000175 "fdt_addr_r=0x00000100\0" \
Stephen Warren46414292015-02-16 12:16:15 -0700176 "pxefile_addr_r=0x00100000\0" \
177 "kernel_addr_r=0x01000000\0" \
Jonathan Liu14006a52015-08-22 20:27:17 +1000178 "scriptaddr=0x02000000\0" \
Stephen Warren46414292015-02-16 12:16:15 -0700179 "ramdisk_addr_r=0x02100000\0" \
180
181#define BOOT_TARGET_DEVICES(func) \
182 func(MMC, mmc, 0) \
183 func(USB, usb, 0) \
184 func(PXE, pxe, na) \
185 func(DHCP, dhcp, na)
186#include <config_distro_bootcmd.h>
187
188#define CONFIG_EXTRA_ENV_SETTINGS \
189 ENV_DEVICE_SETTINGS \
190 ENV_MEM_LAYOUT_SETTINGS \
191 BOOTENV
192
193#define CONFIG_BOOTDELAY 2
194
195#endif