blob: 4874c515d7bb52a02b23e106cb0aa5891c2c71ff [file] [log] [blame]
Stephen Warren0e012c32012-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 Brodkin267d8e22014-02-26 17:47:58 +040020#include <linux/sizes.h>
Stephen Warren0e012c32012-08-05 16:07:22 +000021
22/* Architecture, CPU, etc.*/
Stephen Warren02402f62014-06-13 23:37:49 -060023#define CONFIG_SYS_GENERIC_BOARD
Stephen Warren0e012c32012-08-05 16:07:22 +000024#define CONFIG_BCM2835
25#define CONFIG_ARCH_CPU_INIT
Stephen Warren12a8a7d2013-01-29 16:37:39 +000026#define CONFIG_SYS_DCACHE_OFF
Stephen Warren0e012c32012-08-05 16:07:22 +000027/*
28 * 2835 is a SKU in a series for which the 2708 is the first or primary SoC,
29 * so 2708 has historically been used rather than a dedicated 2835 ID.
30 */
31#define CONFIG_MACH_TYPE MACH_TYPE_BCM2708
32
Simon Glass74807622014-09-22 17:30:56 -060033/* Enable driver model */
34#define CONFIG_DM
35#define CONFIG_CMD_DM
36#define CONFIG_DM_GPIO
37
Stephen Warren0e012c32012-08-05 16:07:22 +000038/* Memory layout */
39#define CONFIG_NR_DRAM_BANKS 1
40#define CONFIG_SYS_SDRAM_BASE 0x00000000
41#define CONFIG_SYS_TEXT_BASE 0x00008000
42#define CONFIG_SYS_UBOOT_BASE CONFIG_SYS_TEXT_BASE
43/*
44 * The board really has 256M. However, the VC (VideoCore co-processor) shares
45 * the RAM, and uses a configurable portion at the top. We tell U-Boot that a
46 * smaller amount of RAM is present in order to avoid stomping on the area
47 * the VC uses.
48 */
49#define CONFIG_SYS_SDRAM_SIZE SZ_128M
50#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + \
51 CONFIG_SYS_SDRAM_SIZE - \
52 GENERATED_GBL_DATA_SIZE)
53#define CONFIG_SYS_MALLOC_LEN SZ_4M
54#define CONFIG_SYS_MEMTEST_START 0x00100000
55#define CONFIG_SYS_MEMTEST_END 0x00200000
Stephen Warrenc4ab9712013-01-29 16:37:42 +000056#define CONFIG_LOADADDR 0x00200000
Stephen Warren0e012c32012-08-05 16:07:22 +000057
58/* Flash */
59#define CONFIG_SYS_NO_FLASH
60
61/* Devices */
62/* GPIO */
63#define CONFIG_BCM2835_GPIO
Stephen Warren4ecd4982013-01-29 16:37:40 +000064/* LCD */
65#define CONFIG_LCD
Stephen Warrenaa44d532013-05-27 18:31:18 +000066#define CONFIG_LCD_DT_SIMPLEFB
Stephen Warren4ecd4982013-01-29 16:37:40 +000067#define LCD_BPP LCD_COLOR16
68/*
69 * Prevent allocation of RAM for FB; the real FB address is queried
70 * dynamically from the VideoCore co-processor, and comes from RAM
71 * not owned by the ARM CPU.
72 */
73#define CONFIG_FB_ADDR 0
74#define CONFIG_VIDEO_BCM2835
75#define CONFIG_SYS_WHITE_ON_BLACK
Stephen Warren0e012c32012-08-05 16:07:22 +000076
Stephen Warrenc4ab9712013-01-29 16:37:42 +000077/* SD/MMC configuration */
78#define CONFIG_GENERIC_MMC
79#define CONFIG_MMC
80#define CONFIG_SDHCI
81#define CONFIG_MMC_SDHCI_IO_ACCESSORS
82#define CONFIG_BCM2835_SDHCI
83
Stephen Warren6d392c52014-09-26 20:51:40 -060084#define CONFIG_CMD_USB
85#ifdef CONFIG_CMD_USB
86#define CONFIG_USB_DWC2
87#define CONFIG_USB_DWC2_REG_ADDR 0x20980000
88#define CONFIG_USB_STORAGE
89#define CONFIG_USB_HOST_ETHER
90#define CONFIG_USB_ETHER_SMSC95XX
91#define CONFIG_MISC_INIT_R
92#endif
93
Stephen Warren0e012c32012-08-05 16:07:22 +000094/* Console UART */
95#define CONFIG_PL011_SERIAL
96#define CONFIG_PL011_CLOCK 3000000
97#define CONFIG_PL01x_PORTS { (void *)0x20201000 }
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_NOWHERE
Stephen Warrenc4ab9712013-01-29 16:37:42 +0000109#define CONFIG_ENV_VARS_UBOOT_CONFIG
Stephen Warren0e012c32012-08-05 16:07:22 +0000110#define CONFIG_SYS_LOAD_ADDR 0x1000000
Stephen Warren4ecd4982013-01-29 16:37:40 +0000111#define CONFIG_CONSOLE_MUX
112#define CONFIG_SYS_CONSOLE_IS_IN_ENV
Stephen Warrendcc73642014-02-05 20:49:22 -0700113#define CONFIG_PREBOOT \
114 "if load mmc 0:1 ${loadaddr} /uEnv.txt; then " \
Alexander Hollercdda2bc2014-07-14 17:49:58 +0200115 "env import -t -r ${loadaddr} ${filesize}; " \
Stephen Warrendcc73642014-02-05 20:49:22 -0700116 "fi"
117
Stephen Warrenaafd4fc2014-07-30 16:37:16 -0600118/* Shell */
119#define CONFIG_SYS_MAXARGS 8
120#define CONFIG_SYS_PROMPT "U-Boot> "
121#define CONFIG_COMMAND_HISTORY
122
123/* Commands */
124#include <config_cmd_default.h>
125#define CONFIG_CMD_GPIO
126#define CONFIG_CMD_MMC
127#define CONFIG_PARTITION_UUIDS
128#define CONFIG_CMD_PART
129
130/* Device tree support */
131#define CONFIG_OF_BOARD_SETUP
132/* ATAGs support for bootm/bootz */
133#define CONFIG_SETUP_MEMORY_TAGS
134#define CONFIG_CMDLINE_TAG
135#define CONFIG_INITRD_TAG
136
137#include <config_distro_defaults.h>
138
139/* Some things don't make sense on this HW or yet */
140#undef CONFIG_CMD_FPGA
Stephen Warrenaafd4fc2014-07-30 16:37:16 -0600141#undef CONFIG_CMD_SAVEENV
Stephen Warrenaafd4fc2014-07-30 16:37:16 -0600142
143/* Environment */
Stephen Warren40fa0bf2014-02-13 20:44:07 -0700144#define ENV_DEVICE_SETTINGS \
145 "stdin=serial,lcd\0" \
146 "stdout=serial,lcd\0" \
147 "stderr=serial,lcd\0"
148
Stephen Warrenc4ab9712013-01-29 16:37:42 +0000149/*
150 * Memory layout for where various images get loaded by boot scripts:
151 *
152 * scriptaddr can be pretty much anywhere that doesn't conflict with something
153 * else. Put it low in memory to avoid conflicts.
154 *
Stephen Warren40fa0bf2014-02-13 20:44:07 -0700155 * pxefile_addr_r can be pretty much anywhere that doesn't conflict with
156 * something else. Put it low in memory to avoid conflicts.
157 *
Stephen Warrenc4ab9712013-01-29 16:37:42 +0000158 * kernel_addr_r must be within the first 128M of RAM in order for the
159 * kernel's CONFIG_AUTO_ZRELADDR option to work. Since the kernel will
160 * decompress itself to 0x8000 after the start of RAM, kernel_addr_r
161 * should not overlap that area, or the kernel will have to copy itself
162 * somewhere else before decompression. Similarly, the address of any other
163 * data passed to the kernel shouldn't overlap the start of RAM. Pushing
164 * this up to 16M allows for a sizable kernel to be decompressed below the
165 * compressed load address.
166 *
167 * fdt_addr_r simply shouldn't overlap anything else. Choosing 32M allows for
168 * the compressed kernel to be up to 16M too.
169 *
170 * ramdisk_addr_r simply shouldn't overlap anything else. Choosing 33M allows
171 * for the FDT/DTB to be up to 1M, which is hopefully plenty.
172 */
Stephen Warren40fa0bf2014-02-13 20:44:07 -0700173#define ENV_MEM_LAYOUT_SETTINGS \
Stephen Warrenc4ab9712013-01-29 16:37:42 +0000174 "scriptaddr=0x00000000\0" \
Stephen Warren40fa0bf2014-02-13 20:44:07 -0700175 "pxefile_addr_r=0x00100000\0" \
Stephen Warrenc4ab9712013-01-29 16:37:42 +0000176 "kernel_addr_r=0x01000000\0" \
177 "fdt_addr_r=0x02000000\0" \
178 "ramdisk_addr_r=0x02100000\0" \
Stephen Warren40fa0bf2014-02-13 20:44:07 -0700179
Stephen Warrenaafd4fc2014-07-30 16:37:16 -0600180#define BOOT_TARGET_DEVICES(func) \
Stephen Warren6d392c52014-09-26 20:51:40 -0600181 func(MMC, mmc, 0) \
182 func(USB, usb, 0) \
183 func(PXE, pxe, na) \
184 func(DHCP, dhcp, na)
Stephen Warrenaafd4fc2014-07-30 16:37:16 -0600185#include <config_distro_bootcmd.h>
Stephen Warren40fa0bf2014-02-13 20:44:07 -0700186
187#define CONFIG_EXTRA_ENV_SETTINGS \
188 ENV_DEVICE_SETTINGS \
189 ENV_MEM_LAYOUT_SETTINGS \
Stephen Warrenaafd4fc2014-07-30 16:37:16 -0600190 BOOTENV
Stephen Warren40fa0bf2014-02-13 20:44:07 -0700191
192#define CONFIG_BOOTDELAY 2
Stephen Warren0e012c32012-08-05 16:07:22 +0000193
Stephen Warren0e012c32012-08-05 16:07:22 +0000194#endif