Merge tag 'xilinx-for-v2022.10' of https://source.denx.de/u-boot/custodians/u-boot...
[platform/kernel/u-boot.git] / include / configs / qemu-arm.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2017 Tuomas Tynkkynen
4  */
5
6 #ifndef __CONFIG_H
7 #define __CONFIG_H
8
9 #include <linux/sizes.h>
10
11 /* Physical memory map */
12
13 #define CONFIG_SYS_SDRAM_BASE           0x40000000
14
15 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
16
17 /* GUIDs for capsule updatable firmware images */
18 #define QEMU_ARM_UBOOT_IMAGE_GUID \
19         EFI_GUID(0xf885b085, 0x99f8, 0x45af, 0x84, 0x7d, \
20                  0xd5, 0x14, 0x10, 0x7a, 0x4a, 0x2c)
21
22 #define QEMU_ARM64_UBOOT_IMAGE_GUID \
23         EFI_GUID(0x058b7d83, 0x50d5, 0x4c47, 0xa1, 0x95, \
24                  0x60, 0xd8, 0x6a, 0xd3, 0x41, 0xc4)
25
26 /* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */
27
28 /* Environment options */
29
30 #if CONFIG_IS_ENABLED(CMD_USB)
31 # define BOOT_TARGET_USB(func) func(USB, usb, 0)
32 #else
33 # define BOOT_TARGET_USB(func)
34 #endif
35
36 #if CONFIG_IS_ENABLED(CMD_SCSI)
37 # define BOOT_TARGET_SCSI(func) func(SCSI, scsi, 0)
38 #else
39 # define BOOT_TARGET_SCSI(func)
40 #endif
41
42 #if CONFIG_IS_ENABLED(CMD_VIRTIO)
43 # define BOOT_TARGET_VIRTIO(func) func(VIRTIO, virtio, 0)
44 #else
45 # define BOOT_TARGET_VIRTIO(func)
46 #endif
47
48 #if CONFIG_IS_ENABLED(CMD_NVME)
49 # define BOOT_TARGET_NVME(func) func(NVME, nvme, 0)
50 #else
51 # define BOOT_TARGET_NVME(func)
52 #endif
53
54 #if CONFIG_IS_ENABLED(CMD_DHCP)
55 # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
56 #else
57 # define BOOT_TARGET_DHCP(func)
58 #endif
59
60 #define BOOT_TARGET_DEVICES(func) \
61         BOOT_TARGET_USB(func) \
62         BOOT_TARGET_SCSI(func) \
63         BOOT_TARGET_VIRTIO(func) \
64         BOOT_TARGET_NVME(func) \
65         BOOT_TARGET_DHCP(func)
66
67 #include <config_distro_bootcmd.h>
68
69 #define CONFIG_EXTRA_ENV_SETTINGS \
70         "fdt_high=0xffffffff\0" \
71         "initrd_high=0xffffffff\0" \
72         "fdt_addr=0x40000000\0" \
73         "scriptaddr=0x40200000\0" \
74         "pxefile_addr_r=0x40300000\0" \
75         "kernel_addr_r=0x40400000\0" \
76         "ramdisk_addr_r=0x44000000\0" \
77         BOOTENV
78
79 #define CONFIG_SYS_MAX_FLASH_SECT       256 /* Sector: 256K, Bank: 64M */
80
81 #endif /* __CONFIG_H */