Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 1 | /* 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 Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 14 | #define CFG_SYS_SDRAM_BASE 0x80000000 |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 15 | |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 16 | /* Environment options */ |
| 17 | |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 18 | #define BOOT_TARGET_DEVICES(func) \ |
| 19 | func(NVME, nvme, 0) \ |
Aurelien Jarno | 2b0af9f | 2023-01-07 23:32:39 +0100 | [diff] [blame] | 20 | func(NVME, nvme, 1) \ |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 21 | func(USB, usb, 0) \ |
| 22 | func(MMC, mmc, 0) \ |
Heinrich Schuchardt | 7383432 | 2021-08-25 18:21:57 +0200 | [diff] [blame] | 23 | func(SCSI, scsi, 0) \ |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 24 | 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 Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 38 | #define CFG_EXTRA_ENV_SETTINGS \ |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 39 | "kernel_addr_r=0x84000000\0" \ |
Bin Meng | b84d24c | 2022-05-24 12:31:12 +0800 | [diff] [blame] | 40 | "kernel_comp_addr_r=0x88000000\0" \ |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 41 | "kernel_comp_size=0x4000000\0" \ |
Bin Meng | b84d24c | 2022-05-24 12:31:12 +0800 | [diff] [blame] | 42 | "fdt_addr_r=0x8c000000\0" \ |
| 43 | "scriptaddr=0x8c100000\0" \ |
| 44 | "pxefile_addr_r=0x8c200000\0" \ |
| 45 | "ramdisk_addr_r=0x8c300000\0" \ |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 46 | "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 Ledkov | fe01f41 | 2021-06-16 16:39:06 +0100 | [diff] [blame] | 50 | "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 51 | BOOTENV |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 52 | |
Green Wan | 70415e1 | 2021-05-27 06:52:13 -0700 | [diff] [blame] | 53 | #endif /* __SIFIVE_UNMATCHED_H */ |