blob: 542f7f5df90a87430cedcb6c9aea1cf12763f244 [file] [log] [blame]
Ian Campbellcba69ee2014-05-05 11:52:26 +01001/*
2 * (C) Copyright 2012-2012 Henrik Nordstrom <henrik@henriknordstrom.net>
3 *
4 * (C) Copyright 2007-2011
5 * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
6 * Tom Cubie <tangliang@allwinnertech.com>
7 *
8 * Configuration settings for the Allwinner sunxi series of boards.
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12
13#ifndef _SUNXI_COMMON_CONFIG_H
14#define _SUNXI_COMMON_CONFIG_H
15
Hans de Goededaf6d392015-09-13 17:29:33 +020016#include <asm/arch/cpu.h>
Hans de Goedee049fe22015-05-19 22:12:31 +020017#include <linux/stringify.h>
18
Siarhei Siamashka77ef1362015-02-21 07:34:09 +020019#ifdef CONFIG_OLD_SUNXI_KERNEL_COMPAT
20/*
21 * The U-Boot workarounds bugs in the outdated buggy sunxi-3.4 kernels at the
22 * expense of restricting some features, so the regular machine id values can
23 * be used.
24 */
25# define CONFIG_MACH_TYPE_COMPAT_REV 0
26#else
27/*
28 * A compatibility guard to prevent loading outdated buggy sunxi-3.4 kernels.
29 * Only sunxi-3.4 kernels with appropriate fixes applied are able to pass
30 * beyond the machine id check.
31 */
32# define CONFIG_MACH_TYPE_COMPAT_REV 1
33#endif
34
Andre Przywarad29adf82017-04-26 01:32:48 +010035#ifdef CONFIG_ARM64
36#define CONFIG_BUILD_TARGET "u-boot.itb"
Jagan Tekie628f002017-11-10 22:21:09 +053037#define CONFIG_SYS_BOOTM_LEN (32 << 20)
Andre Przywarad29adf82017-04-26 01:32:48 +010038#endif
39
Ian Campbellcba69ee2014-05-05 11:52:26 +010040/* Serial & console */
Ian Campbellcba69ee2014-05-05 11:52:26 +010041#define CONFIG_SYS_NS16550_SERIAL
42/* ns16550 reg in the low bits of cpu reg */
Ian Campbellcba69ee2014-05-05 11:52:26 +010043#define CONFIG_SYS_NS16550_CLK 24000000
Thomas Chou4fb60552015-11-19 21:48:13 +080044#ifndef CONFIG_DM_SERIAL
Simon Glass1a81cf832014-10-30 20:25:50 -060045# define CONFIG_SYS_NS16550_REG_SIZE -4
46# define CONFIG_SYS_NS16550_COM1 SUNXI_UART0_BASE
47# define CONFIG_SYS_NS16550_COM2 SUNXI_UART1_BASE
48# define CONFIG_SYS_NS16550_COM3 SUNXI_UART2_BASE
49# define CONFIG_SYS_NS16550_COM4 SUNXI_UART3_BASE
50# define CONFIG_SYS_NS16550_COM5 SUNXI_R_UART_BASE
51#endif
Ian Campbellcba69ee2014-05-05 11:52:26 +010052
Paul Kocialkowski8a65f692015-05-16 19:52:11 +020053/* CPU */
Andre Przywarae4916e82017-02-16 01:20:19 +000054#define COUNTER_FREQUENCY 24000000
Paul Kocialkowski8a65f692015-05-16 19:52:11 +020055
Hans de Goedee049fe22015-05-19 22:12:31 +020056/*
57 * The DRAM Base differs between some models. We cannot use macros for the
58 * CONFIG_FOO defines which contain the DRAM base address since they end
59 * up unexpanded in include/autoconf.mk .
60 *
61 * So we have to have this #ifdef #else #endif block for these.
62 */
63#ifdef CONFIG_MACH_SUN9I
64#define SDRAM_OFFSET(x) 0x2##x
65#define CONFIG_SYS_SDRAM_BASE 0x20000000
66#define CONFIG_SYS_LOAD_ADDR 0x22000000 /* default load address */
67#define CONFIG_SYS_TEXT_BASE 0x2a000000
Hans de Goedeff42d102015-09-13 13:02:48 +020068/* Note SPL_STACK_R_ADDR is set through Kconfig, we include it here
69 * since it needs to fit in with the other values. By also #defining it
70 * we get warnings if the Kconfig value mismatches. */
71#define CONFIG_SPL_STACK_R_ADDR 0x2fe00000
Hans de Goedee049fe22015-05-19 22:12:31 +020072#define CONFIG_SPL_BSS_START_ADDR 0x2ff80000
73#else
74#define SDRAM_OFFSET(x) 0x4##x
Ian Campbellcba69ee2014-05-05 11:52:26 +010075#define CONFIG_SYS_SDRAM_BASE 0x40000000
Hans de Goedee049fe22015-05-19 22:12:31 +020076#define CONFIG_SYS_LOAD_ADDR 0x42000000 /* default load address */
Icenowy Zhengc1994892017-04-08 15:30:12 +080077/* V3s do not have enough memory to place code at 0x4a000000 */
78#ifndef CONFIG_MACH_SUN8I_V3S
Hans de Goedee049fe22015-05-19 22:12:31 +020079#define CONFIG_SYS_TEXT_BASE 0x4a000000
Icenowy Zhengc1994892017-04-08 15:30:12 +080080#else
81#define CONFIG_SYS_TEXT_BASE 0x42e00000
82#endif
Hans de Goedeff42d102015-09-13 13:02:48 +020083/* Note SPL_STACK_R_ADDR is set through Kconfig, we include it here
84 * since it needs to fit in with the other values. By also #defining it
85 * we get warnings if the Kconfig value mismatches. */
86#define CONFIG_SPL_STACK_R_ADDR 0x4fe00000
Hans de Goedee049fe22015-05-19 22:12:31 +020087#define CONFIG_SPL_BSS_START_ADDR 0x4ff80000
88#endif
89
90#define CONFIG_SPL_BSS_MAX_SIZE 0x00080000 /* 512 KiB */
Hans de Goedee049fe22015-05-19 22:12:31 +020091
Andre Przywarabc613d82017-02-16 01:20:23 +000092#ifdef CONFIG_SUNXI_HIGH_SRAM
Hans de Goede77fe9882015-05-20 15:27:16 +020093/*
94 * The A80's A1 sram starts at 0x00010000 rather then at 0x00000000 and is
95 * slightly bigger. Note that it is possible to map the first 32 KiB of the
96 * A1 at 0x00000000 like with older SoCs by writing 0x16aa0001 to the
97 * undocumented 0x008000e0 SYS_CTRL register. Where the 16aa is a key and
98 * the 1 actually activates the mapping of the first 32 KiB to 0x00000000.
99 */
100#define CONFIG_SYS_INIT_RAM_ADDR 0x10000
Andre Przywaraeb504fa2016-09-05 01:32:38 +0100101#define CONFIG_SYS_INIT_RAM_SIZE 0x08000 /* FIXME: 40 KiB ? */
Hans de Goede77fe9882015-05-20 15:27:16 +0200102#else
Ian Campbellcba69ee2014-05-05 11:52:26 +0100103#define CONFIG_SYS_INIT_RAM_ADDR 0x0
104#define CONFIG_SYS_INIT_RAM_SIZE 0x8000 /* 32 KiB */
Hans de Goede77fe9882015-05-20 15:27:16 +0200105#endif
Ian Campbellcba69ee2014-05-05 11:52:26 +0100106
107#define CONFIG_SYS_INIT_SP_OFFSET \
108 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
109#define CONFIG_SYS_INIT_SP_ADDR \
110 (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
111
112#define CONFIG_NR_DRAM_BANKS 1
113#define PHYS_SDRAM_0 CONFIG_SYS_SDRAM_BASE
114#define PHYS_SDRAM_0_SIZE 0x80000000 /* 2 GiB */
115
Ian Campbella6e50a82014-07-18 20:38:41 +0100116#ifdef CONFIG_AHCI
Ian Campbella6e50a82014-07-18 20:38:41 +0100117#define CONFIG_SCSI_AHCI_PLAT
118#define CONFIG_SUNXI_AHCI
Bernhard Nortmann0751b132015-06-10 10:51:40 +0200119#define CONFIG_SYS_64BIT_LBA
Ian Campbella6e50a82014-07-18 20:38:41 +0100120#define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
121#define CONFIG_SYS_SCSI_MAX_LUN 1
122#define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
123 CONFIG_SYS_SCSI_MAX_LUN)
Ian Campbella6e50a82014-07-18 20:38:41 +0100124#endif
125
Ian Campbellcba69ee2014-05-05 11:52:26 +0100126#define CONFIG_SETUP_MEMORY_TAGS
127#define CONFIG_CMDLINE_TAG
128#define CONFIG_INITRD_TAG
Paul Kocialkowski9f852212015-03-28 18:35:36 +0100129#define CONFIG_SERIAL_TAG
Ian Campbellcba69ee2014-05-05 11:52:26 +0100130
Hans de Goedee5268612015-08-16 14:48:22 +0200131#ifdef CONFIG_NAND_SUNXI
Boris Brezillona0dfa882016-06-15 21:09:27 +0200132#define CONFIG_SYS_NAND_MAX_ECCPOS 1664
Boris Brezillon4ccae812016-06-15 21:09:23 +0200133#define CONFIG_SYS_NAND_ONFI_DETECTION
134#define CONFIG_SYS_MAX_NAND_DEVICE 8
Hans de Goeded482a8d2017-02-27 18:22:10 +0100135
136#define CONFIG_MTD_DEVICE
137#define CONFIG_MTD_PARTITIONS
Piotr Zierhoffer960caeb2015-07-23 14:33:03 +0200138#endif
139
Siarhei Siamashka19e99fb2016-06-07 14:28:34 +0300140#ifdef CONFIG_SPL_SPI_SUNXI
Siarhei Siamashka19e99fb2016-06-07 14:28:34 +0300141#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x8000
142#endif
143
Ian Campbelle24ea552014-05-05 14:42:31 +0100144/* mmc config */
Maxime Ripard44c79872015-10-15 22:04:07 +0200145#ifdef CONFIG_MMC
Ian Campbelle24ea552014-05-05 14:42:31 +0100146#define CONFIG_MMC_SUNXI_SLOT 0
Maxime Ripardfb1c43c2017-02-27 18:22:03 +0100147#endif
148
149#if defined(CONFIG_ENV_IS_IN_MMC)
Maxime Ripard99219662018-01-16 09:44:24 +0100150
151#ifdef CONFIG_ARM64
152/*
153 * This is actually (CONFIG_ENV_OFFSET -
154 * (CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR * 512)), but the value will be used
155 * directly in a makefile, without the preprocessor expansion.
156 */
157#define CONFIG_BOARD_SIZE_LIMIT 0x7e000
158#endif
159
Maxime Ripardde86fc32017-08-23 10:12:22 +0200160#if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
161/* If we have two devices (most likely eMMC + MMC), favour the eMMC */
162#define CONFIG_SYS_MMC_ENV_DEV 1
163#else
164/* Otherwise, use the only device we have */
165#define CONFIG_SYS_MMC_ENV_DEV 0
166#endif
Emmanuel Vadotae042be2016-11-05 20:51:11 +0100167#define CONFIG_SYS_MMC_MAX_DEVICE 4
Maxime Ripardd6a7e0c2017-03-20 15:57:22 +0100168#elif defined(CONFIG_ENV_IS_NOWHERE)
169#define CONFIG_ENV_SIZE (128 << 10)
Chen-Yu Tsaiff2b47f2014-10-22 16:47:42 +0800170#endif
Ian Campbelle24ea552014-05-05 14:42:31 +0100171
Icenowy Zhengc1994892017-04-08 15:30:12 +0800172#ifndef CONFIG_MACH_SUN8I_V3S
Hans de Goede5c965ed2015-09-13 17:16:54 +0200173/* 64MB of malloc() pool */
174#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (64 << 20))
Icenowy Zhengc1994892017-04-08 15:30:12 +0800175#else
176/* 2MB of malloc() pool */
177#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (2 << 20))
178#endif
Ian Campbellcba69ee2014-05-05 11:52:26 +0100179
180/*
181 * Miscellaneous configurable options
182 */
Ian Campbell06beadb2014-10-07 14:20:30 +0100183#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
184#define CONFIG_SYS_PBSIZE 1024 /* Print Buffer Size */
Ian Campbellcba69ee2014-05-05 11:52:26 +0100185
Ian Campbellcba69ee2014-05-05 11:52:26 +0100186/* standalone support */
Hans de Goedee049fe22015-05-19 22:12:31 +0200187#define CONFIG_STANDALONE_LOAD_ADDR CONFIG_SYS_LOAD_ADDR
Ian Campbellcba69ee2014-05-05 11:52:26 +0100188
Ian Campbellcba69ee2014-05-05 11:52:26 +0100189/* FLASH and environment organization */
190
Boris Brezillonfa5e1022015-07-27 16:21:26 +0200191#define CONFIG_SYS_MONITOR_LEN (768 << 10) /* 768 KiB */
Ian Campbellcba69ee2014-05-05 11:52:26 +0100192
Ian Campbellcba69ee2014-05-05 11:52:26 +0100193#define CONFIG_SPL_FRAMEWORK
Ian Campbellcba69ee2014-05-05 11:52:26 +0100194
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000195#ifndef CONFIG_ARM64 /* AArch64 FEL support is not ready yet */
Simon Glass942cb0b2015-02-07 10:47:30 -0700196#define CONFIG_SPL_BOARD_LOAD_IMAGE
Andre Przywaraeb77f5c2017-01-02 11:48:45 +0000197#endif
Simon Glass942cb0b2015-02-07 10:47:30 -0700198
Andre Przywarabc613d82017-02-16 01:20:23 +0000199#ifdef CONFIG_SUNXI_HIGH_SRAM
Siarhei Siamashka7f0ef5a2017-04-26 01:32:49 +0100200#define CONFIG_SPL_TEXT_BASE 0x10060 /* sram start+header */
201#define CONFIG_SPL_MAX_SIZE 0x7fa0 /* 32 KiB */
Andre Przywara54522c92017-04-26 01:32:42 +0100202#ifdef CONFIG_ARM64
203/* end of SRAM A2 for now, as SRAM A1 is pretty tight for an ARM64 build */
204#define LOW_LEVEL_SRAM_STACK 0x00054000
205#else
Andre Przywarabc613d82017-02-16 01:20:23 +0000206#define LOW_LEVEL_SRAM_STACK 0x00018000
Andre Przywara54522c92017-04-26 01:32:42 +0100207#endif /* !CONFIG_ARM64 */
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200208#else
Siarhei Siamashka7f0ef5a2017-04-26 01:32:49 +0100209#define CONFIG_SPL_TEXT_BASE 0x60 /* sram start+header */
210#define CONFIG_SPL_MAX_SIZE 0x5fa0 /* 24KB on sun4i/sun7i */
Andre Przywarabc613d82017-02-16 01:20:23 +0000211#define LOW_LEVEL_SRAM_STACK 0x00008000 /* End of sram */
Siarhei Siamashkad96ebc42016-03-29 17:29:10 +0200212#endif
Ian Campbell50827a52014-05-05 11:52:30 +0100213
Andre Przywarabc613d82017-02-16 01:20:23 +0000214#define CONFIG_SPL_STACK LOW_LEVEL_SRAM_STACK
215
Ian Campbell50827a52014-05-05 11:52:30 +0100216#define CONFIG_SPL_PAD_TO 32768 /* decimal for 'dd' */
217
Ian Campbellcba69ee2014-05-05 11:52:26 +0100218
Hans de Goede66203772014-06-13 22:55:49 +0200219/* I2C */
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100220#if defined CONFIG_AXP152_POWER || defined CONFIG_AXP209_POWER || \
221 defined CONFIG_SY8106A_POWER
Hans de Goedead406102015-01-23 15:28:22 +0100222#endif
223
Paul Kocialkowski6c739c52015-04-10 23:09:52 +0200224#if defined CONFIG_I2C0_ENABLE || defined CONFIG_I2C1_ENABLE || \
225 defined CONFIG_I2C2_ENABLE || defined CONFIG_I2C3_ENABLE || \
Jelle van der Waa9d082682016-01-14 14:06:26 +0100226 defined CONFIG_I2C4_ENABLE || defined CONFIG_R_I2C_ENABLE
Hans de Goede66203772014-06-13 22:55:49 +0200227#define CONFIG_SYS_I2C_MVTWSI
Jernej Skrabeca8f01cc2017-04-27 00:03:36 +0200228#ifndef CONFIG_DM_I2C
229#define CONFIG_SYS_I2C
Hans de Goede66203772014-06-13 22:55:49 +0200230#define CONFIG_SYS_I2C_SPEED 400000
231#define CONFIG_SYS_I2C_SLAVE 0x7f
Hans de Goede8b2db322015-04-23 17:47:22 +0200232#endif
Jernej Skrabeca8f01cc2017-04-27 00:03:36 +0200233#endif
Hans de Goede55410082015-02-16 17:23:25 +0100234
235#if defined CONFIG_VIDEO_LCD_PANEL_I2C && !(defined CONFIG_SPL_BUILD)
236#define CONFIG_SYS_I2C_SOFT
237#define CONFIG_SYS_I2C_SOFT_SPEED 50000
238#define CONFIG_SYS_I2C_SOFT_SLAVE 0x00
Hans de Goede55410082015-02-16 17:23:25 +0100239/* We use pin names in Kconfig and sunxi_name_to_gpio() */
240#define CONFIG_SOFT_I2C_GPIO_SDA soft_i2c_gpio_sda
241#define CONFIG_SOFT_I2C_GPIO_SCL soft_i2c_gpio_scl
242#ifndef __ASSEMBLY__
243extern int soft_i2c_gpio_sda;
244extern int soft_i2c_gpio_scl;
245#endif
Hans de Goede1fc42012015-03-07 12:00:02 +0100246#define CONFIG_VIDEO_LCD_I2C_BUS 0 /* The lcd panel soft i2c is bus 0 */
247#define CONFIG_SYS_SPD_BUS_NUM 1 /* And the axp209 i2c bus is bus 1 */
248#else
249#define CONFIG_SYS_SPD_BUS_NUM 0 /* The axp209 i2c bus is bus 0 */
250#define CONFIG_VIDEO_LCD_I2C_BUS -1 /* NA, but necessary to compile */
Hans de Goede55410082015-02-16 17:23:25 +0100251#endif
252
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200253/* PMU */
vishnupatekar95ab8fe2015-11-29 01:07:22 +0800254#if defined CONFIG_AXP152_POWER || defined CONFIG_AXP209_POWER || \
Jelle van der Waa0d8382a2016-02-23 18:47:19 +0100255 defined CONFIG_AXP221_POWER || defined CONFIG_AXP818_POWER || \
256 defined CONFIG_SY8106A_POWER
Henrik Nordstrom14bc66b2014-06-13 22:55:50 +0200257#endif
258
Hans de Goedea5da3c82015-08-01 14:44:29 +0200259#ifdef CONFIG_REQUIRE_SERIAL_CONSOLE
Hans de Goedef3133962015-02-20 16:55:12 +0100260#if CONFIG_CONS_INDEX == 1
261#ifdef CONFIG_MACH_SUN9I
262#define OF_STDOUT_PATH "/soc/serial@07000000:115200"
263#else
264#define OF_STDOUT_PATH "/soc@01c00000/serial@01c28000:115200"
265#endif
266#elif CONFIG_CONS_INDEX == 2 && defined(CONFIG_MACH_SUN5I)
267#define OF_STDOUT_PATH "/soc@01c00000/serial@01c28400:115200"
Laurent Itti5cd83b112015-05-05 17:02:00 -0700268#elif CONFIG_CONS_INDEX == 3 && defined(CONFIG_MACH_SUN8I)
269#define OF_STDOUT_PATH "/soc@01c00000/serial@01c28800:115200"
Hans de Goedef3133962015-02-20 16:55:12 +0100270#elif CONFIG_CONS_INDEX == 5 && defined(CONFIG_MACH_SUN8I)
271#define OF_STDOUT_PATH "/soc@01c00000/serial@01f02800:115200"
272#else
273#error Unsupported console port nr. Please fix stdout-path in sunxi-common.h.
274#endif
Hans de Goedea5da3c82015-08-01 14:44:29 +0200275#endif /* ifdef CONFIG_REQUIRE_SERIAL_CONSOLE */
Hans de Goedef3133962015-02-20 16:55:12 +0100276
Ian Campbellabce2c62014-06-05 19:00:15 +0100277/* GPIO */
278#define CONFIG_SUNXI_GPIO
Ian Campbellabce2c62014-06-05 19:00:15 +0100279
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800280#ifdef CONFIG_VIDEO_SUNXI
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200281/*
Hans de Goede5633a292015-02-02 17:13:29 +0100282 * The amount of RAM to keep free at the top of RAM when relocating u-boot,
283 * to use as framebuffer. This must be a multiple of 4096.
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200284 */
Hans de Goede5c965ed2015-09-13 17:16:54 +0200285#define CONFIG_SUNXI_MAX_FB_SIZE (16 << 20)
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200286
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200287#define CONFIG_VIDEO_LOGO
Hans de Goedebe8ec632014-12-19 13:46:33 +0100288#define CONFIG_VIDEO_STD_TIMINGS
Hans de Goede75481602014-12-19 16:05:12 +0100289#define CONFIG_I2C_EDID
Hans de Goede58332f82015-08-05 00:06:47 +0200290#define VIDEO_LINE_LEN (pGD->plnSizeX)
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200291
292/* allow both serial and cfb console. */
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200293/* stop x86 thinking in cfbconsole from trying to init a pc keyboard */
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200294
Icenowy Zheng401a3ca2017-10-26 11:14:44 +0800295#endif /* CONFIG_VIDEO_SUNXI */
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200296
Hans de Goedec26fb9d2014-06-09 11:37:00 +0200297/* Ethernet support */
Artturi Alme286fad2017-11-08 05:08:57 +0200298#ifdef CONFIG_SUN4I_EMAC
Hans de Goede8145dea2015-04-16 21:47:06 +0200299#define CONFIG_PHY_ADDR 1
Hans de Goedec26fb9d2014-06-09 11:37:00 +0200300#define CONFIG_MII /* MII PHY management */
301#endif
302
Dave Prue6ff005c2017-08-31 19:21:01 +0200303#ifdef CONFIG_SUN7I_GMAC
Ian Campbell58358232014-05-05 11:52:28 +0100304#define CONFIG_PHY_ADDR 1
305#define CONFIG_MII /* MII PHY management */
Hans de Goede1eae8f62016-03-16 13:46:22 +0100306#define CONFIG_PHY_REALTEK
Ian Campbell58358232014-05-05 11:52:28 +0100307#endif
308
Paul Kocialkowski2582ca02015-08-04 17:04:09 +0200309#ifdef CONFIG_USB_EHCI_HCD
Hans de Goede6a72e802015-05-10 14:10:27 +0200310#define CONFIG_USB_OHCI_NEW
311#define CONFIG_USB_OHCI_SUNXI
312#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 1
Hans de Goede1a800f72015-01-11 17:17:00 +0100313#endif
314
Paul Kocialkowskib21144e2015-08-04 17:04:11 +0200315#ifdef CONFIG_USB_FUNCTION_MASS_STORAGE
Paul Kocialkowskib21144e2015-08-04 17:04:11 +0200316#endif
317
Hans de Goede86b49092014-09-18 21:03:34 +0200318#ifdef CONFIG_USB_KEYBOARD
Hans de Goede86b49092014-09-18 21:03:34 +0200319#define CONFIG_PREBOOT
Hans de Goede86b49092014-09-18 21:03:34 +0200320#endif
321
Jonathan Liub41d7d02014-06-14 08:59:09 +0200322#define CONFIG_MISC_INIT_R
323
Ian Campbellcba69ee2014-05-05 11:52:26 +0100324#ifndef CONFIG_SPL_BUILD
325#include <config_distro_defaults.h>
Hans de Goede2ec3a612014-07-31 23:04:45 +0200326
Andre Przywara671f9ad2016-05-04 22:15:32 +0100327#ifdef CONFIG_ARM64
328/*
329 * Boards seem to come with at least 512MB of DRAM.
330 * The kernel should go at 512K, which is the default text offset (that will
331 * be adjusted at runtime if needed).
332 * There is no compression for arm64 kernels (yet), so leave some space
333 * for really big kernels, say 256MB for now.
334 * Scripts, PXE and DTBs should go afterwards, leaving the rest for the initrd.
335 * Align the initrd to a 2MB page.
336 */
Icenowy Zhengc1994892017-04-08 15:30:12 +0800337#define BOOTM_SIZE __stringify(0xa000000)
Andre Przywara671f9ad2016-05-04 22:15:32 +0100338#define KERNEL_ADDR_R __stringify(SDRAM_OFFSET(0080000))
339#define FDT_ADDR_R __stringify(SDRAM_OFFSET(FA00000))
340#define SCRIPT_ADDR_R __stringify(SDRAM_OFFSET(FC00000))
341#define PXEFILE_ADDR_R __stringify(SDRAM_OFFSET(FD00000))
342#define RAMDISK_ADDR_R __stringify(SDRAM_OFFSET(FE00000))
343
344#else
Hans de Goede8c95c552014-12-24 16:08:30 +0100345/*
Hans de Goede5c965ed2015-09-13 17:16:54 +0200346 * 160M RAM (256M minimum minus 64MB heap + 32MB for u-boot, stack, fb, etc.
Hans de Goede8c95c552014-12-24 16:08:30 +0100347 * 32M uncompressed kernel, 16M compressed kernel, 1M fdt,
348 * 1M script, 1M pxe and the ramdisk at the end.
349 */
Icenowy Zhengc1994892017-04-08 15:30:12 +0800350#ifndef CONFIG_MACH_SUN8I_V3S
351#define BOOTM_SIZE __stringify(0xa000000)
Siarhei Siamashka2a909c52015-10-25 06:44:46 +0200352#define KERNEL_ADDR_R __stringify(SDRAM_OFFSET(2000000))
353#define FDT_ADDR_R __stringify(SDRAM_OFFSET(3000000))
354#define SCRIPT_ADDR_R __stringify(SDRAM_OFFSET(3100000))
355#define PXEFILE_ADDR_R __stringify(SDRAM_OFFSET(3200000))
356#define RAMDISK_ADDR_R __stringify(SDRAM_OFFSET(3300000))
Icenowy Zhengc1994892017-04-08 15:30:12 +0800357#else
358/*
359 * 64M RAM minus 2MB heap + 16MB for u-boot, stack, fb, etc.
360 * 16M uncompressed kernel, 8M compressed kernel, 1M fdt,
361 * 1M script, 1M pxe and the ramdisk at the end.
362 */
363#define BOOTM_SIZE __stringify(0x2e00000)
364#define KERNEL_ADDR_R __stringify(SDRAM_OFFSET(1000000))
365#define FDT_ADDR_R __stringify(SDRAM_OFFSET(1800000))
366#define SCRIPT_ADDR_R __stringify(SDRAM_OFFSET(1900000))
367#define PXEFILE_ADDR_R __stringify(SDRAM_OFFSET(1A00000))
368#define RAMDISK_ADDR_R __stringify(SDRAM_OFFSET(1B00000))
369#endif
Andre Przywara671f9ad2016-05-04 22:15:32 +0100370#endif
Siarhei Siamashka2a909c52015-10-25 06:44:46 +0200371
Hans de Goede846e3252014-08-01 09:37:58 +0200372#define MEM_LAYOUT_ENV_SETTINGS \
Icenowy Zhengc1994892017-04-08 15:30:12 +0800373 "bootm_size=" BOOTM_SIZE "\0" \
Siarhei Siamashka2a909c52015-10-25 06:44:46 +0200374 "kernel_addr_r=" KERNEL_ADDR_R "\0" \
375 "fdt_addr_r=" FDT_ADDR_R "\0" \
376 "scriptaddr=" SCRIPT_ADDR_R "\0" \
377 "pxefile_addr_r=" PXEFILE_ADDR_R "\0" \
378 "ramdisk_addr_r=" RAMDISK_ADDR_R "\0"
379
380#define DFU_ALT_INFO_RAM \
381 "dfu_alt_info_ram=" \
382 "kernel ram " KERNEL_ADDR_R " 0x1000000;" \
383 "fdt ram " FDT_ADDR_R " 0x100000;" \
384 "ramdisk ram " RAMDISK_ADDR_R " 0x4000000\0"
Hans de Goede846e3252014-08-01 09:37:58 +0200385
Chen-Yu Tsai41f8e9f2014-10-07 15:11:49 +0800386#ifdef CONFIG_MMC
Karsten Merker5a37a402015-12-16 20:59:40 +0100387#if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
Maxime Ripardde86fc32017-08-23 10:12:22 +0200388#define BOOTENV_DEV_MMC_AUTO(devtypeu, devtypel, instance) \
389 BOOTENV_DEV_MMC(MMC, mmc, 0) \
390 BOOTENV_DEV_MMC(MMC, mmc, 1) \
391 "bootcmd_mmc_auto=" \
392 "if test ${mmc_bootdev} -eq 1; then " \
393 "run bootcmd_mmc1; " \
394 "run bootcmd_mmc0; " \
395 "elif test ${mmc_bootdev} -eq 0; then " \
396 "run bootcmd_mmc0; " \
397 "run bootcmd_mmc1; " \
398 "fi\0"
399
400#define BOOTENV_DEV_NAME_MMC_AUTO(devtypeu, devtypel, instance) \
401 "mmc_auto "
402
403#define BOOT_TARGET_DEVICES_MMC(func) func(MMC_AUTO, mmc_auto, na)
Karsten Merker5a37a402015-12-16 20:59:40 +0100404#else
Maxime Ripardde86fc32017-08-23 10:12:22 +0200405#define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0)
Karsten Merker5a37a402015-12-16 20:59:40 +0100406#endif
Chen-Yu Tsai41f8e9f2014-10-07 15:11:49 +0800407#else
408#define BOOT_TARGET_DEVICES_MMC(func)
409#endif
410
Hans de Goede2ec3a612014-07-31 23:04:45 +0200411#ifdef CONFIG_AHCI
412#define BOOT_TARGET_DEVICES_SCSI(func) func(SCSI, scsi, 0)
413#else
414#define BOOT_TARGET_DEVICES_SCSI(func)
415#endif
416
Paul Kocialkowski2582ca02015-08-04 17:04:09 +0200417#ifdef CONFIG_USB_STORAGE
Chen-Yu Tsai859b3f12014-10-03 20:16:22 +0800418#define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
419#else
420#define BOOT_TARGET_DEVICES_USB(func)
421#endif
422
Bernhard Nortmannf3b589c2015-09-17 18:52:53 +0200423/* FEL boot support, auto-execute boot.scr if a script address was provided */
424#define BOOTENV_DEV_FEL(devtypeu, devtypel, instance) \
425 "bootcmd_fel=" \
426 "if test -n ${fel_booted} && test -n ${fel_scriptaddr}; then " \
427 "echo '(FEL boot)'; " \
428 "source ${fel_scriptaddr}; " \
429 "fi\0"
430#define BOOTENV_DEV_NAME_FEL(devtypeu, devtypel, instance) \
431 "fel "
432
Hans de Goede2ec3a612014-07-31 23:04:45 +0200433#define BOOT_TARGET_DEVICES(func) \
Bernhard Nortmannf3b589c2015-09-17 18:52:53 +0200434 func(FEL, fel, na) \
Chen-Yu Tsai41f8e9f2014-10-07 15:11:49 +0800435 BOOT_TARGET_DEVICES_MMC(func) \
Hans de Goede2ec3a612014-07-31 23:04:45 +0200436 BOOT_TARGET_DEVICES_SCSI(func) \
Chen-Yu Tsai859b3f12014-10-03 20:16:22 +0800437 BOOT_TARGET_DEVICES_USB(func) \
Hans de Goede2ec3a612014-07-31 23:04:45 +0200438 func(PXE, pxe, na) \
439 func(DHCP, dhcp, na)
440
Hans de Goede3b824022015-10-09 17:11:15 +0100441#ifdef CONFIG_OLD_SUNXI_KERNEL_COMPAT
442#define BOOTCMD_SUNXI_COMPAT \
443 "bootcmd_sunxi_compat=" \
444 "setenv root /dev/mmcblk0p3 rootwait; " \
445 "if ext2load mmc 0 0x44000000 uEnv.txt; then " \
446 "echo Loaded environment from uEnv.txt; " \
447 "env import -t 0x44000000 ${filesize}; " \
448 "fi; " \
449 "setenv bootargs console=${console} root=${root} ${extraargs}; " \
450 "ext2load mmc 0 0x43000000 script.bin && " \
451 "ext2load mmc 0 0x48000000 uImage && " \
452 "bootm 0x48000000\0"
453#else
454#define BOOTCMD_SUNXI_COMPAT
455#endif
456
Hans de Goede2ec3a612014-07-31 23:04:45 +0200457#include <config_distro_bootcmd.h>
458
Hans de Goede86b49092014-09-18 21:03:34 +0200459#ifdef CONFIG_USB_KEYBOARD
460#define CONSOLE_STDIN_SETTINGS \
461 "preboot=usb start\0" \
462 "stdin=serial,usbkbd\0"
463#else
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200464#define CONSOLE_STDIN_SETTINGS \
465 "stdin=serial\0"
Hans de Goede86b49092014-09-18 21:03:34 +0200466#endif
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200467
468#ifdef CONFIG_VIDEO
469#define CONSOLE_STDOUT_SETTINGS \
470 "stdout=serial,vga\0" \
471 "stderr=serial,vga\0"
Jernej Skrabec56009452017-03-27 19:22:32 +0200472#elif CONFIG_DM_VIDEO
473#define CONFIG_SYS_WHITE_ON_BLACK
474#define CONSOLE_STDOUT_SETTINGS \
475 "stdout=serial,vidconsole\0" \
476 "stderr=serial,vidconsole\0"
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200477#else
478#define CONSOLE_STDOUT_SETTINGS \
479 "stdout=serial\0" \
480 "stderr=serial\0"
481#endif
482
Maxime Ripardc8564b22017-02-27 18:22:11 +0100483#ifdef CONFIG_MTDIDS_DEFAULT
484#define SUNXI_MTDIDS_DEFAULT \
485 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0"
486#else
487#define SUNXI_MTDIDS_DEFAULT
488#endif
489
490#ifdef CONFIG_MTDPARTS_DEFAULT
491#define SUNXI_MTDPARTS_DEFAULT \
492 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0"
493#else
494#define SUNXI_MTDPARTS_DEFAULT
495#endif
496
Maxime Ripardc53654f2017-11-14 21:24:00 +0100497#define PARTS_DEFAULT \
498 "name=loader1,start=8k,size=32k,uuid=${uuid_gpt_loader1};" \
499 "name=loader2,size=984k,uuid=${uuid_gpt_loader2};" \
500 "name=esp,size=128M,bootable,uuid=${uuid_gpt_esp};" \
501 "name=system,size=-,uuid=${uuid_gpt_system};"
502
503#define UUID_GPT_ESP "c12a7328-f81f-11d2-ba4b-00a0c93ec93b"
504
505#ifdef CONFIG_ARM64
506#define UUID_GPT_SYSTEM "b921b045-1df0-41c3-af44-4c6f280d3fae"
507#else
508#define UUID_GPT_SYSTEM "69dad710-2ce4-4e3c-b16c-21a1d49abed3"
509#endif
510
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200511#define CONSOLE_ENV_SETTINGS \
512 CONSOLE_STDIN_SETTINGS \
513 CONSOLE_STDOUT_SETTINGS
514
Andreas Färber2eff3b72017-04-14 18:44:47 +0200515#ifdef CONFIG_ARM64
516#define FDTFILE "allwinner/" CONFIG_DEFAULT_DEVICE_TREE ".dtb"
517#else
518#define FDTFILE CONFIG_DEFAULT_DEVICE_TREE ".dtb"
519#endif
520
Hans de Goede2ec3a612014-07-31 23:04:45 +0200521#define CONFIG_EXTRA_ENV_SETTINGS \
Luc Verhaegen7f2c5212014-08-13 07:55:06 +0200522 CONSOLE_ENV_SETTINGS \
Hans de Goede846e3252014-08-01 09:37:58 +0200523 MEM_LAYOUT_ENV_SETTINGS \
Siarhei Siamashka2a909c52015-10-25 06:44:46 +0200524 DFU_ALT_INFO_RAM \
Andreas Färber2eff3b72017-04-14 18:44:47 +0200525 "fdtfile=" FDTFILE "\0" \
Hans de Goede846e3252014-08-01 09:37:58 +0200526 "console=ttyS0,115200\0" \
Maxime Ripardc8564b22017-02-27 18:22:11 +0100527 SUNXI_MTDIDS_DEFAULT \
528 SUNXI_MTDPARTS_DEFAULT \
Maxime Ripardc53654f2017-11-14 21:24:00 +0100529 "uuid_gpt_esp=" UUID_GPT_ESP "\0" \
530 "uuid_gpt_system=" UUID_GPT_SYSTEM "\0" \
531 "partitions=" PARTS_DEFAULT "\0" \
Hans de Goede3b824022015-10-09 17:11:15 +0100532 BOOTCMD_SUNXI_COMPAT \
Hans de Goede2ec3a612014-07-31 23:04:45 +0200533 BOOTENV
534
535#else /* ifndef CONFIG_SPL_BUILD */
536#define CONFIG_EXTRA_ENV_SETTINGS
Ian Campbellcba69ee2014-05-05 11:52:26 +0100537#endif
538
539#endif /* _SUNXI_COMMON_CONFIG_H */