Merge tag 'next-20220328' of https://source.denx.de/u-boot/custodians/u-boot-video...
[platform/kernel/u-boot.git] / include / configs / sifive-unleashed.h
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
14 #ifdef CONFIG_SPL
15
16 #define CONFIG_SPL_MAX_SIZE             0x00100000
17 #define CONFIG_SPL_BSS_START_ADDR       0x85000000
18 #define CONFIG_SPL_BSS_MAX_SIZE         0x00100000
19 #define CONFIG_SYS_SPL_MALLOC_START     (CONFIG_SPL_BSS_START_ADDR + \
20                                          CONFIG_SPL_BSS_MAX_SIZE)
21 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x00100000
22
23 #define CONFIG_SPL_STACK        (0x08000000 + 0x001D0000 - \
24                                  GENERATED_GBL_DATA_SIZE)
25
26 #endif
27
28 #define CONFIG_SYS_SDRAM_BASE           0x80000000
29 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + SZ_2M)
30
31 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
32
33 #define CONFIG_STANDALONE_LOAD_ADDR     0x80200000
34
35 #define RISCV_MMODE_TIMERBASE           0x2000000
36 #define RISCV_MMODE_TIMER_FREQ          1000000
37
38 #define RISCV_SMODE_TIMER_FREQ          1000000
39
40 /* Environment options */
41
42 #ifndef CONFIG_SPL_BUILD
43 #define BOOT_TARGET_DEVICES(func) \
44         func(MMC, mmc, 0) \
45         func(SF, sf, 0) \
46         func(DHCP, dhcp, na)
47
48 #include <config_distro_bootcmd.h>
49 #include <environment/distro/sf.h>
50
51 #define TYPE_GUID_LOADER1       "5B193300-FC78-40CD-8002-E86C45580B47"
52 #define TYPE_GUID_LOADER2       "2E54B353-1271-4842-806F-E436D6AF6985"
53 #define TYPE_GUID_SYSTEM        "0FC63DAF-8483-4772-8E79-3D69D8477DE4"
54
55 #define PARTS_DEFAULT \
56         "name=loader1,start=17K,size=1M,type=${type_guid_gpt_loader1};" \
57         "name=loader2,size=4MB,type=${type_guid_gpt_loader2};" \
58         "name=system,size=-,bootable,type=${type_guid_gpt_system};"
59
60 #define CONFIG_EXTRA_ENV_SETTINGS \
61         "fdt_high=0xffffffffffffffff\0" \
62         "initrd_high=0xffffffffffffffff\0" \
63         "kernel_addr_r=0x84000000\0" \
64         "fdt_addr_r=0x88000000\0" \
65         "scriptaddr=0x88100000\0" \
66         "script_offset_f=0x1fff000\0" \
67         "script_size_f=0x1000\0" \
68         "pxefile_addr_r=0x88200000\0" \
69         "ramdisk_addr_r=0x88300000\0" \
70         "type_guid_gpt_loader1=" TYPE_GUID_LOADER1 "\0" \
71         "type_guid_gpt_loader2=" TYPE_GUID_LOADER2 "\0" \
72         "type_guid_gpt_system=" TYPE_GUID_SYSTEM "\0" \
73         "partitions=" PARTS_DEFAULT "\0" \
74         "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
75         BOOTENV \
76         BOOTENV_SF
77 #endif
78
79 #endif /* __CONFIG_H */