2019-02-25 08:15:19 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 Western Digital Corporation or its affiliates.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anup Patel <anup.patel@wdc.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_H
|
|
|
|
#define __CONFIG_H
|
|
|
|
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_BASE 0x80000000
|
2019-02-25 08:15:19 +00:00
|
|
|
|
2021-01-17 12:41:25 +00:00
|
|
|
#define RISCV_MMODE_TIMERBASE 0x2000000
|
|
|
|
#define RISCV_MMODE_TIMER_FREQ 1000000
|
|
|
|
|
|
|
|
#define RISCV_SMODE_TIMER_FREQ 1000000
|
|
|
|
|
2019-02-25 08:15:19 +00:00
|
|
|
/* Environment options */
|
|
|
|
|
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
2019-08-16 18:00:00 +00:00
|
|
|
func(MMC, mmc, 0) \
|
2020-07-15 10:09:03 +00:00
|
|
|
func(SF, sf, 0) \
|
2019-02-25 08:15:19 +00:00
|
|
|
func(DHCP, dhcp, na)
|
|
|
|
|
|
|
|
#include <config_distro_bootcmd.h>
|
2020-07-15 10:09:03 +00:00
|
|
|
#include <environment/distro/sf.h>
|
2019-02-25 08:15:19 +00:00
|
|
|
|
2020-05-29 06:03:36 +00:00
|
|
|
#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};"
|
|
|
|
|
2022-12-04 15:03:50 +00:00
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
2019-02-25 08:15:19 +00:00
|
|
|
"fdt_high=0xffffffffffffffff\0" \
|
|
|
|
"initrd_high=0xffffffffffffffff\0" \
|
2019-07-24 04:09:44 +00:00
|
|
|
"kernel_addr_r=0x84000000\0" \
|
2022-05-24 04:31:13 +00:00
|
|
|
"kernel_comp_addr_r=0x88000000\0" \
|
|
|
|
"kernel_comp_size=0x4000000\0" \
|
|
|
|
"fdt_addr_r=0x8c000000\0" \
|
|
|
|
"scriptaddr=0x8c100000\0" \
|
2020-07-15 10:09:02 +00:00
|
|
|
"script_offset_f=0x1fff000\0" \
|
|
|
|
"script_size_f=0x1000\0" \
|
2022-05-24 04:31:13 +00:00
|
|
|
"pxefile_addr_r=0x8c200000\0" \
|
|
|
|
"ramdisk_addr_r=0x8c300000\0" \
|
2020-05-29 06:03:36 +00:00
|
|
|
"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" \
|
2021-06-16 15:39:06 +00:00
|
|
|
"fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
|
2020-07-15 10:09:03 +00:00
|
|
|
BOOTENV \
|
|
|
|
BOOTENV_SF
|
2019-07-24 04:09:44 +00:00
|
|
|
|
2019-02-25 08:15:19 +00:00
|
|
|
#endif /* __CONFIG_H */
|