mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
aa6e94deab
The rest of the unmigrated CONFIG symbols in the CONFIG_SYS_SDRAM namespace do not easily transition to Kconfig. In many cases they likely should come from the device tree instead. Move these out of CONFIG namespace and in to CFG namespace. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
54 lines
1.5 KiB
C
54 lines
1.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2020-2021 SiFive, Inc
|
|
*
|
|
* Authors:
|
|
* Pragnesh Patel <pragnesh.patel@sifive.com>
|
|
*/
|
|
|
|
#ifndef __SIFIVE_UNMATCHED_H
|
|
#define __SIFIVE_UNMATCHED_H
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
#define CFG_SYS_SDRAM_BASE 0x80000000
|
|
|
|
#define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
|
|
|
|
/* Environment options */
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
func(NVME, nvme, 0) \
|
|
func(USB, usb, 0) \
|
|
func(MMC, mmc, 0) \
|
|
func(SCSI, scsi, 0) \
|
|
func(PXE, pxe, na) \
|
|
func(DHCP, dhcp, na)
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
#define TYPE_GUID_LOADER1 "5B193300-FC78-40CD-8002-E86C45580B47"
|
|
#define TYPE_GUID_LOADER2 "2E54B353-1271-4842-806F-E436D6AF6985"
|
|
#define TYPE_GUID_SYSTEM "0FC63DAF-8483-4772-8E79-3D69D8477DE4"
|
|
|
|
#define PARTS_DEFAULT \
|
|
"name=loader1,start=17K,size=1M,type=${type_guid_gpt_loader1};" \
|
|
"name=loader2,size=4MB,type=${type_guid_gpt_loader2};" \
|
|
"name=system,size=-,bootable,type=${type_guid_gpt_system};"
|
|
|
|
#define CONFIG_EXTRA_ENV_SETTINGS \
|
|
"kernel_addr_r=0x84000000\0" \
|
|
"kernel_comp_addr_r=0x88000000\0" \
|
|
"kernel_comp_size=0x4000000\0" \
|
|
"fdt_addr_r=0x8c000000\0" \
|
|
"scriptaddr=0x8c100000\0" \
|
|
"pxefile_addr_r=0x8c200000\0" \
|
|
"ramdisk_addr_r=0x8c300000\0" \
|
|
"type_guid_gpt_loader1=" TYPE_GUID_LOADER1 "\0" \
|
|
"type_guid_gpt_loader2=" TYPE_GUID_LOADER2 "\0" \
|
|
"type_guid_gpt_system=" TYPE_GUID_SYSTEM "\0" \
|
|
"partitions=" PARTS_DEFAULT "\0" \
|
|
"fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
|
|
BOOTENV
|
|
|
|
#endif /* __SIFIVE_UNMATCHED_H */
|