blob: 6d01b61718a36d528e65794b00a9cde81773954a [file] [log] [blame]
Stephen Warren0d04f342012-08-05 16:07:22 +00001/*
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 Brodkin1ace4022014-02-26 17:47:58 +040020#include <linux/sizes.h>
Stephen Warren0d04f342012-08-05 16:07:22 +000021
22/* Architecture, CPU, etc.*/
Stephen Warren2460e172014-06-13 23:37:49 -060023#define CONFIG_SYS_GENERIC_BOARD
Stephen Warren0d04f342012-08-05 16:07:22 +000024#define CONFIG_ARM1176
25#define CONFIG_BCM2835
26#define CONFIG_ARCH_CPU_INIT
Stephen Warren38baa4f2013-01-29 16:37:39 +000027#define CONFIG_SYS_DCACHE_OFF
Stephen Warren0d04f342012-08-05 16:07:22 +000028/*
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 Warren0d04f342012-08-05 16:07:22 +000034/* 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 Warren131a1e62013-01-29 16:37:42 +000052#define CONFIG_LOADADDR 0x00200000
Stephen Warren0d04f342012-08-05 16:07:22 +000053
54/* Flash */
55#define CONFIG_SYS_NO_FLASH
56
57/* Devices */
58/* GPIO */
59#define CONFIG_BCM2835_GPIO
Stephen Warren6be3c9f2013-01-29 16:37:40 +000060/* LCD */
61#define CONFIG_LCD
Stephen Warrenea697ae2013-05-27 18:31:18 +000062#define CONFIG_LCD_DT_SIMPLEFB
Stephen Warren6be3c9f2013-01-29 16:37:40 +000063#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 Warren0d04f342012-08-05 16:07:22 +000072
Stephen Warren131a1e62013-01-29 16:37:42 +000073/* 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 Warren227ec972014-09-26 20:51:40 -060080#define CONFIG_CMD_USB
81#ifdef CONFIG_CMD_USB
82#define CONFIG_USB_DWC2
83#define CONFIG_USB_DWC2_REG_ADDR 0x20980000
84#define CONFIG_USB_STORAGE
85#define CONFIG_USB_HOST_ETHER
86#define CONFIG_USB_ETHER_SMSC95XX
87#define CONFIG_MISC_INIT_R
88#endif
89
Stephen Warren0d04f342012-08-05 16:07:22 +000090/* Console UART */
91#define CONFIG_PL011_SERIAL
92#define CONFIG_PL011_CLOCK 3000000
93#define CONFIG_PL01x_PORTS { (void *)0x20201000 }
94#define CONFIG_CONS_INDEX 0
95#define CONFIG_BAUDRATE 115200
96
97/* Console configuration */
98#define CONFIG_SYS_CBSIZE 1024
99#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
100 sizeof(CONFIG_SYS_PROMPT) + 16)
101
102/* Environment */
103#define CONFIG_ENV_SIZE SZ_16K
104#define CONFIG_ENV_IS_NOWHERE
Stephen Warren131a1e62013-01-29 16:37:42 +0000105#define CONFIG_ENV_VARS_UBOOT_CONFIG
Stephen Warren0d04f342012-08-05 16:07:22 +0000106#define CONFIG_SYS_LOAD_ADDR 0x1000000
Stephen Warren6be3c9f2013-01-29 16:37:40 +0000107#define CONFIG_CONSOLE_MUX
108#define CONFIG_SYS_CONSOLE_IS_IN_ENV
Stephen Warren5c92d482014-02-05 20:49:22 -0700109#define CONFIG_PREBOOT \
110 "if load mmc 0:1 ${loadaddr} /uEnv.txt; then " \
Alexander Holler11547b22014-07-14 17:49:58 +0200111 "env import -t -r ${loadaddr} ${filesize}; " \
Stephen Warren5c92d482014-02-05 20:49:22 -0700112 "fi"
113
Stephen Warrened1127e2014-07-30 16:37:16 -0600114/* Shell */
115#define CONFIG_SYS_MAXARGS 8
116#define CONFIG_SYS_PROMPT "U-Boot> "
117#define CONFIG_COMMAND_HISTORY
118
119/* Commands */
120#include <config_cmd_default.h>
121#define CONFIG_CMD_GPIO
122#define CONFIG_CMD_MMC
123#define CONFIG_PARTITION_UUIDS
124#define CONFIG_CMD_PART
125
126/* Device tree support */
127#define CONFIG_OF_BOARD_SETUP
128/* 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
135/* Some things don't make sense on this HW or yet */
136#undef CONFIG_CMD_FPGA
Stephen Warrened1127e2014-07-30 16:37:16 -0600137#undef CONFIG_CMD_SAVEENV
Stephen Warrened1127e2014-07-30 16:37:16 -0600138
139/* Environment */
Stephen Warren1998a1a2014-02-13 20:44:07 -0700140#define ENV_DEVICE_SETTINGS \
141 "stdin=serial,lcd\0" \
142 "stdout=serial,lcd\0" \
143 "stderr=serial,lcd\0"
144
Stephen Warren131a1e62013-01-29 16:37:42 +0000145/*
146 * Memory layout for where various images get loaded by boot scripts:
147 *
148 * scriptaddr can be pretty much anywhere that doesn't conflict with something
149 * else. Put it low in memory to avoid conflicts.
150 *
Stephen Warren1998a1a2014-02-13 20:44:07 -0700151 * pxefile_addr_r can be pretty much anywhere that doesn't conflict with
152 * something else. Put it low in memory to avoid conflicts.
153 *
Stephen Warren131a1e62013-01-29 16:37:42 +0000154 * kernel_addr_r must be within the first 128M of RAM in order for the
155 * kernel's CONFIG_AUTO_ZRELADDR option to work. Since the kernel will
156 * decompress itself to 0x8000 after the start of RAM, kernel_addr_r
157 * should not overlap that area, or the kernel will have to copy itself
158 * somewhere else before decompression. Similarly, the address of any other
159 * data passed to the kernel shouldn't overlap the start of RAM. Pushing
160 * this up to 16M allows for a sizable kernel to be decompressed below the
161 * compressed load address.
162 *
163 * fdt_addr_r simply shouldn't overlap anything else. Choosing 32M allows for
164 * the compressed kernel to be up to 16M too.
165 *
166 * ramdisk_addr_r simply shouldn't overlap anything else. Choosing 33M allows
167 * for the FDT/DTB to be up to 1M, which is hopefully plenty.
168 */
Stephen Warren1998a1a2014-02-13 20:44:07 -0700169#define ENV_MEM_LAYOUT_SETTINGS \
Stephen Warren131a1e62013-01-29 16:37:42 +0000170 "scriptaddr=0x00000000\0" \
Stephen Warren1998a1a2014-02-13 20:44:07 -0700171 "pxefile_addr_r=0x00100000\0" \
Stephen Warren131a1e62013-01-29 16:37:42 +0000172 "kernel_addr_r=0x01000000\0" \
173 "fdt_addr_r=0x02000000\0" \
Stephen Warrenbccaa472014-01-28 22:41:50 -0700174 "fdtfile=bcm2835-rpi-b.dtb\0" \
Stephen Warren131a1e62013-01-29 16:37:42 +0000175 "ramdisk_addr_r=0x02100000\0" \
Stephen Warren1998a1a2014-02-13 20:44:07 -0700176
Stephen Warrened1127e2014-07-30 16:37:16 -0600177#define BOOT_TARGET_DEVICES(func) \
Stephen Warren227ec972014-09-26 20:51:40 -0600178 func(MMC, mmc, 0) \
179 func(USB, usb, 0) \
180 func(PXE, pxe, na) \
181 func(DHCP, dhcp, na)
Stephen Warrened1127e2014-07-30 16:37:16 -0600182#include <config_distro_bootcmd.h>
Stephen Warren1998a1a2014-02-13 20:44:07 -0700183
184#define CONFIG_EXTRA_ENV_SETTINGS \
185 ENV_DEVICE_SETTINGS \
186 ENV_MEM_LAYOUT_SETTINGS \
Stephen Warrened1127e2014-07-30 16:37:16 -0600187 BOOTENV
Stephen Warren1998a1a2014-02-13 20:44:07 -0700188
189#define CONFIG_BOOTDELAY 2
Stephen Warren0d04f342012-08-05 16:07:22 +0000190
Stephen Warren0d04f342012-08-05 16:07:22 +0000191#endif