1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (c) 2017 Tuomas Tynkkynen
9 #include <linux/sizes.h>
11 /* Physical memory map */
13 #define CONFIG_SYS_SDRAM_BASE 0x40000000
15 #define CONFIG_SYS_BOOTM_LEN SZ_64M
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)
22 #define QEMU_ARM64_UBOOT_IMAGE_GUID \
23 EFI_GUID(0x058b7d83, 0x50d5, 0x4c47, 0xa1, 0x95, \
24 0x60, 0xd8, 0x6a, 0xd3, 0x41, 0xc4)
26 /* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */
28 /* Environment options */
30 #if CONFIG_IS_ENABLED(CMD_USB)
31 # define BOOT_TARGET_USB(func) func(USB, usb, 0)
33 # define BOOT_TARGET_USB(func)
36 #if CONFIG_IS_ENABLED(CMD_SCSI)
37 # define BOOT_TARGET_SCSI(func) func(SCSI, scsi, 0)
39 # define BOOT_TARGET_SCSI(func)
42 #if CONFIG_IS_ENABLED(CMD_VIRTIO)
43 # define BOOT_TARGET_VIRTIO(func) func(VIRTIO, virtio, 0)
45 # define BOOT_TARGET_VIRTIO(func)
48 #if CONFIG_IS_ENABLED(CMD_NVME)
49 # define BOOT_TARGET_NVME(func) func(NVME, nvme, 0)
51 # define BOOT_TARGET_NVME(func)
54 #if CONFIG_IS_ENABLED(CMD_DHCP)
55 # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
57 # define BOOT_TARGET_DHCP(func)
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)
67 #include <config_distro_bootcmd.h>
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" \
79 #define CONFIG_SYS_MAX_FLASH_SECT 256 /* Sector: 256K, Bank: 64M */
81 #endif /* __CONFIG_H */