Convert CONFIG_SYS_MMCSD_FS_BOOT_PARTITION to Kconfig
[platform/kernel/u-boot.git] / include / configs / ax25-ae350.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2017 Andes Technology Corporation
4  * Rick Chen, Andes Technology Corporation <rick@andestech.com>
5  */
6
7 #ifndef __CONFIG_H
8 #define __CONFIG_H
9
10 #ifdef CONFIG_SPL
11 #define CONFIG_SPL_MAX_SIZE             0x00100000
12 #define CONFIG_SPL_BSS_START_ADDR       0x04000000
13 #define CONFIG_SPL_BSS_MAX_SIZE         0x00100000
14
15 #ifndef CONFIG_XIP
16 #define CONFIG_SPL_LOAD_FIT_ADDRESS     0x00200000
17 #else
18 #define CONFIG_SPL_LOAD_FIT_ADDRESS     0x80010000
19 #endif
20
21 #ifdef CONFIG_SPL_MMC_SUPPORT
22 #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME         "u-boot.itb"
23 #endif
24 #endif
25
26 /*
27  * CPU and Board Configuration Options
28  */
29
30 /*
31  * Miscellaneous configurable options
32  */
33 #define CONFIG_SYS_CBSIZE       1024    /* Console I/O Buffer Size */
34
35 /*
36  * Print Buffer Size
37  */
38 #define CONFIG_SYS_PBSIZE       \
39         (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
40
41 /*
42  * max number of command args
43  */
44 #define CONFIG_SYS_MAXARGS      16
45
46 /*
47  * Boot Argument Buffer Size
48  */
49 #define CONFIG_SYS_BARGSIZE     CONFIG_SYS_CBSIZE
50
51 /*
52  * Size of malloc() pool
53  * 512kB is suggested, (CONFIG_ENV_SIZE + 128 * 1024) was not enough
54  */
55 #define CONFIG_SYS_MALLOC_LEN   (512 << 10)
56
57 /* DT blob (fdt) address */
58 #define CONFIG_SYS_FDT_BASE             0x800f0000
59
60 /*
61  * Physical Memory Map
62  */
63 #define PHYS_SDRAM_0    0x00000000              /* SDRAM Bank #1 */
64 #define PHYS_SDRAM_1    \
65         (PHYS_SDRAM_0 + PHYS_SDRAM_0_SIZE)      /* SDRAM Bank #2 */
66 #define PHYS_SDRAM_0_SIZE       0x20000000      /* 512 MB */
67 #define PHYS_SDRAM_1_SIZE       0x20000000      /* 512 MB */
68 #define CONFIG_SYS_SDRAM_BASE   PHYS_SDRAM_0
69
70 /*
71  * Serial console configuration
72  */
73 #define CONFIG_SYS_NS16550_SERIAL
74 #ifndef CONFIG_DM_SERIAL
75 #define CONFIG_SYS_NS16550_REG_SIZE     -4
76 #endif
77 #define CONFIG_SYS_NS16550_CLK          19660800
78
79 /* Init Stack Pointer */
80 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + 0x1000000 - \
81                                         GENERATED_GBL_DATA_SIZE)
82
83 /*
84  * Load address and memory test area should agree with
85  * arch/riscv/config.mk. Be careful not to overwrite U-Boot itself.
86  */
87 #define CONFIG_SYS_LOAD_ADDR            0x100000        /* SDRAM */
88
89 /*
90  * memtest works on 512 MB in DRAM
91  */
92
93 /*
94  * FLASH and environment organization
95  */
96
97 /* use CFI framework */
98
99 #define CONFIG_SYS_FLASH_CFI_WIDTH      FLASH_CFI_16BIT
100 #define CONFIG_SYS_CFI_FLASH_STATUS_POLL
101
102 /* support JEDEC */
103 #ifdef CONFIG_CFI_FLASH
104 #define CONFIG_SYS_MAX_FLASH_BANKS_DETECT       1
105 #endif/* Do not use CONFIG_FLASH_CFI_LEGACY to detect on board flash */
106 #define PHYS_FLASH_1                    0x88000000      /* BANK 0 */
107 #define CONFIG_SYS_FLASH_BASE           PHYS_FLASH_1
108 #define CONFIG_SYS_FLASH_BANKS_LIST     { PHYS_FLASH_1, }
109 #define CONFIG_SYS_MONITOR_BASE         PHYS_FLASH_1
110
111 #define CONFIG_SYS_FLASH_ERASE_TOUT     120000  /* TO for Flash Erase (ms) */
112 #define CONFIG_SYS_FLASH_WRITE_TOUT     500     /* TO for Flash Write (ms) */
113
114 /* max number of memory banks */
115 /*
116  * There are 4 banks supported for this Controller,
117  * but we have only 1 bank connected to flash on board
118 */
119 #ifndef CONFIG_SYS_MAX_FLASH_BANKS_DETECT
120 #define CONFIG_SYS_MAX_FLASH_BANKS      1
121 #endif
122 #define CONFIG_SYS_FLASH_BANKS_SIZES {0x4000000}
123
124 /* max number of sectors on one chip */
125 #define CONFIG_FLASH_SECTOR_SIZE        (0x10000*2)
126 #define CONFIG_SYS_MAX_FLASH_SECT       512
127
128 /* environments */
129
130 /* SPI FLASH */
131
132 /*
133  * For booting Linux, the board info and command line data
134  * have to be in the first 16 MB of memory, since this is
135  * the maximum mapped by the Linux kernel during initialization.
136  */
137
138 /* Initial Memory map for Linux*/
139 #define CONFIG_SYS_BOOTMAPSZ    (64 << 20)
140 /* Increase max gunzip size */
141 #define CONFIG_SYS_BOOTM_LEN    (64 << 20)
142
143 /* When we use RAM as ENV */
144
145 /* Enable distro boot */
146 #define BOOT_TARGET_DEVICES(func) \
147         func(MMC, mmc, 0) \
148         func(DHCP, dhcp, na)
149 #include <config_distro_bootcmd.h>
150
151 #define CONFIG_EXTRA_ENV_SETTINGS       \
152                                 "kernel_addr_r=0x00080000\0" \
153                                 "pxefile_addr_r=0x01f00000\0" \
154                                 "scriptaddr=0x01f00000\0" \
155                                 "fdt_addr_r=0x02000000\0" \
156                                 "ramdisk_addr_r=0x02800000\0" \
157                                 BOOTENV
158
159 #endif /* __CONFIG_H */