Merge tag 'v2021.10-rc4' into next
[platform/kernel/u-boot.git] / include / configs / sama5d2_xplained.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Configuration file for the SAMA5D2 Xplained Board.
4  *
5  * Copyright (C) 2015 Atmel Corporation
6  *                    Wenyou Yang <wenyou.yang@atmel.com>
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 #include "at91-sama5_common.h"
13
14 /* SDRAM */
15 #define CONFIG_SYS_SDRAM_BASE           0x20000000
16 #define CONFIG_SYS_SDRAM_SIZE           0x20000000
17
18 #ifdef CONFIG_SPL_BUILD
19 #define CONFIG_SYS_INIT_SP_ADDR         0x218000
20 #else
21 #define CONFIG_SYS_INIT_SP_ADDR \
22         (CONFIG_SYS_SDRAM_BASE + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
23 #endif
24
25 /* SerialFlash */
26
27 #ifdef CONFIG_SD_BOOT
28
29 /* bootstrap + u-boot + env in sd card */
30 #undef CONFIG_BOOTCOMMAND
31
32 #define CONFIG_BOOTCOMMAND      "fatload mmc " CONFIG_ENV_FAT_DEVICE_AND_PART " 0x21000000 at91-sama5d2_xplained.dtb; " \
33                                 "fatload mmc " CONFIG_ENV_FAT_DEVICE_AND_PART " 0x22000000 zImage; " \
34                                 "bootz 0x22000000 - 0x21000000"
35
36 #elif CONFIG_SPI_BOOT
37
38 /* bootstrap + u-boot + env in sd card, but kernel + dtb in eMMC */
39 #undef CONFIG_BOOTCOMMAND
40
41 #define CONFIG_BOOTCOMMAND      "ext4load mmc 0:1 0x21000000 /boot/at91-sama5d2_xplained.dtb; " \
42                                 "ext4load mmc 0:1 0x22000000 /boot/zImage; " \
43                                 "bootz 0x22000000 - 0x21000000"
44
45 #endif
46
47 #ifdef CONFIG_QSPI_BOOT
48 #undef CONFIG_ENV_SPI_BUS
49 #undef CONFIG_BOOTCOMMAND
50 #define CONFIG_ENV_SPI_BUS      1
51 #define CONFIG_BOOTCOMMAND      "sf probe 1:0; "                        \
52                                 "sf read 0x21000000 0x180000 0x80000; " \
53                                 "sf read 0x22000000 0x200000 0x600000; "\
54                                 "bootz 0x22000000 - 0x21000000"
55
56 #endif
57
58 /* SPL */
59 #define CONFIG_SPL_MAX_SIZE             0x10000
60 #define CONFIG_SPL_BSS_START_ADDR       0x20000000
61 #define CONFIG_SPL_BSS_MAX_SIZE         0x80000
62 #define CONFIG_SYS_SPL_MALLOC_START     0x20080000
63 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x80000
64
65 #define CONFIG_SYS_MONITOR_LEN          (512 << 10)
66
67 #ifdef CONFIG_SD_BOOT
68 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME         "u-boot.img"
69 #endif
70
71 #endif