mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-29 10:31:30 +00:00
We move the SYS_CACHE_SHIFT_N options from arch/arm/Kconfig to arch/Kconfig, and introduce SYS_CACHE_SHIFT_4 to provide a size of 16. Introduce select statements for other architectures based on current usage. For MIPS, we take the existing arch-specific symbol and migrate to the generic symbol. This lets us remove a little bit of otherwise unused code. Cc: Alexey Brodkin <alexey.brodkin@synopsys.com> Cc: Anup Patel <anup.patel@wdc.com> Cc: Atish Patra <atish.patra@wdc.com> Cc: Bin Meng <bmeng.cn@gmail.com> Cc: Leo <ycliang@andestech.com> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Paul Walmsley <paul.walmsley@sifive.com> Cc: Sean Anderson <seanga2@gmail.com> Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com> Acked-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Reviewed-by: Rick Chen <rick@andestech.com>
30 lines
852 B
C
30 lines
852 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2019-20 Sean Anderson <seanga2@gmail.com>
|
|
*/
|
|
|
|
#ifndef CONFIGS_SIPEED_MAIX_H
|
|
#define CONFIGS_SIPEED_MAIX_H
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
/* Start just below the second bank so we don't clobber it during reloc */
|
|
#define CONFIG_SYS_INIT_SP_ADDR 0x803FFFFF
|
|
#define CONFIG_SYS_MALLOC_LEN SZ_128K
|
|
|
|
#define CONFIG_SYS_SDRAM_BASE 0x80000000
|
|
#define CONFIG_SYS_SDRAM_SIZE SZ_8M
|
|
|
|
#ifndef CONFIG_EXTRA_ENV_SETTINGS
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
"loadaddr=0x80060000\0" \
|
|
"fdt_addr_r=0x80400000\0" \
|
|
"scriptaddr=0x80020000\0" \
|
|
"kernel_addr_r=0x80060000\0" \
|
|
"fdtfile=kendryte/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
|
|
"k210_bootcmd=load mmc 0:1 $loadaddr /uImage && " \
|
|
"load mmc 0:1 $fdt_addr_r /k210.dtb && " \
|
|
"bootm $loadaddr - $fdt_addr_r\0"
|
|
#endif
|
|
|
|
#endif /* CONFIGS_SIPEED_MAIX_H */
|