Anup Patel | 3fda026 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * Copyright (c) 2019 Western Digital Corporation or its affiliates. |
| 4 | * |
| 5 | * Authors: |
| 6 | * Anup Patel <anup.patel@wdc.com> |
| 7 | */ |
| 8 | |
| 9 | #ifndef __CONFIG_H |
| 10 | #define __CONFIG_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 |
Anup Patel | 3fda026 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 15 | |
Pragnesh Patel | bc8d12b | 2021-01-17 18:11:25 +0530 | [diff] [blame] | 16 | #define RISCV_MMODE_TIMERBASE 0x2000000 |
| 17 | #define RISCV_MMODE_TIMER_FREQ 1000000 |
| 18 | |
| 19 | #define RISCV_SMODE_TIMER_FREQ 1000000 |
| 20 | |
Anup Patel | 3fda026 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 21 | /* Environment options */ |
Anup Patel | 3fda026 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 22 | |
| 23 | #define BOOT_TARGET_DEVICES(func) \ |
Alistair Francis | f379fa6 | 2019-08-16 11:00:00 -0700 | [diff] [blame] | 24 | func(MMC, mmc, 0) \ |
Jagan Teki | 2270ae6 | 2020-07-15 15:39:03 +0530 | [diff] [blame] | 25 | func(SF, sf, 0) \ |
Anup Patel | 3fda026 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 26 | func(DHCP, dhcp, na) |
| 27 | |
| 28 | #include <config_distro_bootcmd.h> |
Jagan Teki | 2270ae6 | 2020-07-15 15:39:03 +0530 | [diff] [blame] | 29 | #include <environment/distro/sf.h> |
Anup Patel | 3fda026 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 30 | |
Jagan Teki | 085cb1d | 2020-05-29 11:33:36 +0530 | [diff] [blame] | 31 | #define TYPE_GUID_LOADER1 "5B193300-FC78-40CD-8002-E86C45580B47" |
| 32 | #define TYPE_GUID_LOADER2 "2E54B353-1271-4842-806F-E436D6AF6985" |
| 33 | #define TYPE_GUID_SYSTEM "0FC63DAF-8483-4772-8E79-3D69D8477DE4" |
| 34 | |
| 35 | #define PARTS_DEFAULT \ |
| 36 | "name=loader1,start=17K,size=1M,type=${type_guid_gpt_loader1};" \ |
| 37 | "name=loader2,size=4MB,type=${type_guid_gpt_loader2};" \ |
| 38 | "name=system,size=-,bootable,type=${type_guid_gpt_system};" |
| 39 | |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 40 | #define CFG_EXTRA_ENV_SETTINGS \ |
Anup Patel | 3fda026 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 41 | "fdt_high=0xffffffffffffffff\0" \ |
| 42 | "initrd_high=0xffffffffffffffff\0" \ |
Anup Patel | 53fd12c | 2019-07-24 04:09:44 +0000 | [diff] [blame] | 43 | "kernel_addr_r=0x84000000\0" \ |
Bin Meng | ce78c4c | 2022-05-24 12:31:13 +0800 | [diff] [blame] | 44 | "kernel_comp_addr_r=0x88000000\0" \ |
| 45 | "kernel_comp_size=0x4000000\0" \ |
| 46 | "fdt_addr_r=0x8c000000\0" \ |
| 47 | "scriptaddr=0x8c100000\0" \ |
Jagan Teki | ca0f93f | 2020-07-15 15:39:02 +0530 | [diff] [blame] | 48 | "script_offset_f=0x1fff000\0" \ |
| 49 | "script_size_f=0x1000\0" \ |
Bin Meng | ce78c4c | 2022-05-24 12:31:13 +0800 | [diff] [blame] | 50 | "pxefile_addr_r=0x8c200000\0" \ |
| 51 | "ramdisk_addr_r=0x8c300000\0" \ |
Jagan Teki | 085cb1d | 2020-05-29 11:33:36 +0530 | [diff] [blame] | 52 | "type_guid_gpt_loader1=" TYPE_GUID_LOADER1 "\0" \ |
| 53 | "type_guid_gpt_loader2=" TYPE_GUID_LOADER2 "\0" \ |
| 54 | "type_guid_gpt_system=" TYPE_GUID_SYSTEM "\0" \ |
| 55 | "partitions=" PARTS_DEFAULT "\0" \ |
Dimitri John Ledkov | fe01f41 | 2021-06-16 16:39:06 +0100 | [diff] [blame] | 56 | "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
Jagan Teki | 2270ae6 | 2020-07-15 15:39:03 +0530 | [diff] [blame] | 57 | BOOTENV \ |
| 58 | BOOTENV_SF |
Anup Patel | 53fd12c | 2019-07-24 04:09:44 +0000 | [diff] [blame] | 59 | |
Anup Patel | 3fda026 | 2019-02-25 08:15:19 +0000 | [diff] [blame] | 60 | #endif /* __CONFIG_H */ |