Merge tag 'xilinx-for-v2022.01-rc1' of https://source.denx.de/u-boot/custodians/u...
[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 /* The DTB generated by QEMU is placed at start of RAM, stay away from there */
16 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + SZ_2M)
17
18 #define CONFIG_SYS_BOOTM_LEN            SZ_64M
19
20 /* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */
21 #define CONFIG_SYS_HZ                       1000
22
23 /* Environment options */
24
25 #define BOOT_TARGET_DEVICES(func) \
26         func(USB, usb, 0) \
27         func(SCSI, scsi, 0) \
28         func(VIRTIO, virtio, 0) \
29         func(DHCP, dhcp, na)
30
31 #include <config_distro_bootcmd.h>
32
33 #define CONFIG_EXTRA_ENV_SETTINGS \
34         "fdt_high=0xffffffff\0" \
35         "initrd_high=0xffffffff\0" \
36         "fdt_addr=0x40000000\0" \
37         "scriptaddr=0x40200000\0" \
38         "pxefile_addr_r=0x40300000\0" \
39         "kernel_addr_r=0x40400000\0" \
40         "ramdisk_addr_r=0x44000000\0" \
41         BOOTENV
42
43 #define CONFIG_SYS_CBSIZE 512
44
45 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_TEXT_BASE
46 #define CONFIG_SYS_MAX_FLASH_BANKS_DETECT       2
47 #define CONFIG_SYS_MAX_FLASH_SECT       256 /* Sector: 256K, Bank: 64M */
48 #define CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS
49
50 #endif /* __CONFIG_H */