blob: 74150b7d4b064d0801f76b0285752ae1ff37c8ac [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
Tom Riniaa6e94d2022-11-16 13:10:37 -050014#define CFG_SYS_SDRAM_BASE 0x80000000
Green Wan70415e12021-05-27 06:52:13 -070015
Green Wan70415e12021-05-27 06:52:13 -070016/* Environment options */
17
Green Wan70415e12021-05-27 06:52:13 -070018#define BOOT_TARGET_DEVICES(func) \
19 func(NVME, nvme, 0) \
Aurelien Jarno2b0af9f2023-01-07 23:32:39 +010020 func(NVME, nvme, 1) \
Green Wan70415e12021-05-27 06:52:13 -070021 func(USB, usb, 0) \
22 func(MMC, mmc, 0) \
Heinrich Schuchardt73834322021-08-25 18:21:57 +020023 func(SCSI, scsi, 0) \
Green Wan70415e12021-05-27 06:52:13 -070024 func(PXE, pxe, na) \
25 func(DHCP, dhcp, na)
26
27#include <config_distro_bootcmd.h>
28
29#define TYPE_GUID_LOADER1 "5B193300-FC78-40CD-8002-E86C45580B47"
30#define TYPE_GUID_LOADER2 "2E54B353-1271-4842-806F-E436D6AF6985"
31#define TYPE_GUID_SYSTEM "0FC63DAF-8483-4772-8E79-3D69D8477DE4"
32
33#define PARTS_DEFAULT \
34 "name=loader1,start=17K,size=1M,type=${type_guid_gpt_loader1};" \
35 "name=loader2,size=4MB,type=${type_guid_gpt_loader2};" \
36 "name=system,size=-,bootable,type=${type_guid_gpt_system};"
37
Tom Rini0613c362022-12-04 10:03:50 -050038#define CFG_EXTRA_ENV_SETTINGS \
Green Wan70415e12021-05-27 06:52:13 -070039 "kernel_addr_r=0x84000000\0" \
Bin Mengb84d24c2022-05-24 12:31:12 +080040 "kernel_comp_addr_r=0x88000000\0" \
Green Wan70415e12021-05-27 06:52:13 -070041 "kernel_comp_size=0x4000000\0" \
Bin Mengb84d24c2022-05-24 12:31:12 +080042 "fdt_addr_r=0x8c000000\0" \
43 "scriptaddr=0x8c100000\0" \
44 "pxefile_addr_r=0x8c200000\0" \
45 "ramdisk_addr_r=0x8c300000\0" \
Green Wan70415e12021-05-27 06:52:13 -070046 "type_guid_gpt_loader1=" TYPE_GUID_LOADER1 "\0" \
47 "type_guid_gpt_loader2=" TYPE_GUID_LOADER2 "\0" \
48 "type_guid_gpt_system=" TYPE_GUID_SYSTEM "\0" \
49 "partitions=" PARTS_DEFAULT "\0" \
Dimitri John Ledkovfe01f412021-06-16 16:39:06 +010050 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Green Wan70415e12021-05-27 06:52:13 -070051 BOOTENV
Green Wan70415e12021-05-27 06:52:13 -070052
Green Wan70415e12021-05-27 06:52:13 -070053#endif /* __SIFIVE_UNMATCHED_H */