blob: 2e5592cf94d5ab2ee52b1c431042707f195e2a5b [file] [log] [blame]
Anup Patel3fda0262019-02-25 08:15:19 +00001/* 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
14#define CONFIG_SYS_SDRAM_BASE 0x80000000
Anup Patel3fda0262019-02-25 08:15:19 +000015
Anup Patel3fda0262019-02-25 08:15:19 +000016#define CONFIG_STANDALONE_LOAD_ADDR 0x80200000
17
Pragnesh Patelbc8d12b2021-01-17 18:11:25 +053018#define RISCV_MMODE_TIMERBASE 0x2000000
19#define RISCV_MMODE_TIMER_FREQ 1000000
20
21#define RISCV_SMODE_TIMER_FREQ 1000000
22
Anup Patel3fda0262019-02-25 08:15:19 +000023/* Environment options */
Anup Patel3fda0262019-02-25 08:15:19 +000024
25#define BOOT_TARGET_DEVICES(func) \
Alistair Francisf379fa62019-08-16 11:00:00 -070026 func(MMC, mmc, 0) \
Jagan Teki2270ae62020-07-15 15:39:03 +053027 func(SF, sf, 0) \
Anup Patel3fda0262019-02-25 08:15:19 +000028 func(DHCP, dhcp, na)
29
30#include <config_distro_bootcmd.h>
Jagan Teki2270ae62020-07-15 15:39:03 +053031#include <environment/distro/sf.h>
Anup Patel3fda0262019-02-25 08:15:19 +000032
Jagan Teki085cb1d2020-05-29 11:33:36 +053033#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
Anup Patel3fda0262019-02-25 08:15:19 +000042#define CONFIG_EXTRA_ENV_SETTINGS \
43 "fdt_high=0xffffffffffffffff\0" \
44 "initrd_high=0xffffffffffffffff\0" \
Anup Patel53fd12c2019-07-24 04:09:44 +000045 "kernel_addr_r=0x84000000\0" \
Bin Mengce78c4c2022-05-24 12:31:13 +080046 "kernel_comp_addr_r=0x88000000\0" \
47 "kernel_comp_size=0x4000000\0" \
48 "fdt_addr_r=0x8c000000\0" \
49 "scriptaddr=0x8c100000\0" \
Jagan Tekica0f93f2020-07-15 15:39:02 +053050 "script_offset_f=0x1fff000\0" \
51 "script_size_f=0x1000\0" \
Bin Mengce78c4c2022-05-24 12:31:13 +080052 "pxefile_addr_r=0x8c200000\0" \
53 "ramdisk_addr_r=0x8c300000\0" \
Jagan Teki085cb1d2020-05-29 11:33:36 +053054 "type_guid_gpt_loader1=" TYPE_GUID_LOADER1 "\0" \
55 "type_guid_gpt_loader2=" TYPE_GUID_LOADER2 "\0" \
56 "type_guid_gpt_system=" TYPE_GUID_SYSTEM "\0" \
57 "partitions=" PARTS_DEFAULT "\0" \
Dimitri John Ledkovfe01f412021-06-16 16:39:06 +010058 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Jagan Teki2270ae62020-07-15 15:39:03 +053059 BOOTENV \
60 BOOTENV_SF
Anup Patel53fd12c2019-07-24 04:09:44 +000061
Anup Patel3fda0262019-02-25 08:15:19 +000062#endif /* __CONFIG_H */