blob: f5a341c84496b517c8da5c6d161112e9f86a7c6c [file] [log] [blame]
Green Wan70415e12021-05-27 06:52:13 -07001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (c) 2020-2021 SiFive, Inc
4 *
5 * Authors:
6 * Pragnesh Patel <pragnesh.patel@sifive.com>
7 */
8
9#ifndef __SIFIVE_UNMATCHED_H
10#define __SIFIVE_UNMATCHED_H
11
12#include <linux/sizes.h>
13
Green Wan70415e12021-05-27 06:52:13 -070014#define CONFIG_SYS_SDRAM_BASE 0x80000000
Green Wan70415e12021-05-27 06:52:13 -070015
Green Wan70415e12021-05-27 06:52:13 -070016#define CONFIG_SYS_BOOTM_LEN SZ_64M
17
18#define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
19
Green Wan70415e12021-05-27 06:52:13 -070020/* Environment options */
21
22#ifndef CONFIG_SPL_BUILD
23#define BOOT_TARGET_DEVICES(func) \
24 func(NVME, nvme, 0) \
25 func(USB, usb, 0) \
26 func(MMC, mmc, 0) \
Heinrich Schuchardt73834322021-08-25 18:21:57 +020027 func(SCSI, scsi, 0) \
Green Wan70415e12021-05-27 06:52:13 -070028 func(PXE, pxe, na) \
29 func(DHCP, dhcp, na)
30
31#include <config_distro_bootcmd.h>
32
33#define TYPE_GUID_LOADER1 "5B193300-FC78-40CD-8002-E86C45580B47"
34#define TYPE_GUID_LOADER2 "2E54B353-1271-4842-806F-E436D6AF6985"
35#define TYPE_GUID_SYSTEM "0FC63DAF-8483-4772-8E79-3D69D8477DE4"
36
37#define PARTS_DEFAULT \
38 "name=loader1,start=17K,size=1M,type=${type_guid_gpt_loader1};" \
39 "name=loader2,size=4MB,type=${type_guid_gpt_loader2};" \
40 "name=system,size=-,bootable,type=${type_guid_gpt_system};"
41
42#define CONFIG_EXTRA_ENV_SETTINGS \
43 "kernel_addr_r=0x84000000\0" \
Bin Mengb84d24c2022-05-24 12:31:12 +080044 "kernel_comp_addr_r=0x88000000\0" \
Green Wan70415e12021-05-27 06:52:13 -070045 "kernel_comp_size=0x4000000\0" \
Bin Mengb84d24c2022-05-24 12:31:12 +080046 "fdt_addr_r=0x8c000000\0" \
47 "scriptaddr=0x8c100000\0" \
48 "pxefile_addr_r=0x8c200000\0" \
49 "ramdisk_addr_r=0x8c300000\0" \
Green Wan70415e12021-05-27 06:52:13 -070050 "type_guid_gpt_loader1=" TYPE_GUID_LOADER1 "\0" \
51 "type_guid_gpt_loader2=" TYPE_GUID_LOADER2 "\0" \
52 "type_guid_gpt_system=" TYPE_GUID_SYSTEM "\0" \
53 "partitions=" PARTS_DEFAULT "\0" \
Dimitri John Ledkovfe01f412021-06-16 16:39:06 +010054 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Green Wan70415e12021-05-27 06:52:13 -070055 BOOTENV
Green Wan70415e12021-05-27 06:52:13 -070056#endif /* CONFIG_SPL_BUILD */
57
Zong Li946afdf2021-06-30 23:23:45 +080058#define CONFIG_SYS_EEPROM_BUS_NUM 0
Zong Li946afdf2021-06-30 23:23:45 +080059
Green Wan70415e12021-05-27 06:52:13 -070060#endif /* __SIFIVE_UNMATCHED_H */