]> git.sur5r.net Git - u-boot/blob - include/configs/qemu-arm.h
f306b416352083ac2c6bcd7dddd193737e21dbd9
[u-boot] / include / configs / qemu-arm.h
1 /*
2  * Copyright (c) 2017 Tuomas Tynkkynen
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #ifndef __CONFIG_H
8 #define __CONFIG_H
9
10 #include <linux/sizes.h>
11
12 /* Physical memory map */
13
14 #define CONFIG_NR_DRAM_BANKS            1
15 #define CONFIG_SYS_SDRAM_BASE           0x40000000
16
17 /* The DTB generated by QEMU is placed at start of RAM, stay away from there */
18 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + SZ_2M)
19 #define CONFIG_SYS_LOAD_ADDR            (CONFIG_SYS_SDRAM_BASE + SZ_2M)
20 #define CONFIG_SYS_MALLOC_LEN           SZ_16M
21
22 /* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */
23 #define CONFIG_SYS_HZ                       1000
24
25 /* For block devices, QEMU emulates an ICH9 AHCI controller over PCI */
26 #define CONFIG_SYS_SCSI_MAX_SCSI_ID 6
27
28 /* Environment options */
29 #define CONFIG_ENV_SIZE                         SZ_64K
30
31 #define BOOT_TARGET_DEVICES(func) \
32         func(SCSI, scsi, 0)
33
34 #include <config_distro_bootcmd.h>
35
36 #define CONFIG_PREBOOT "pci enum"
37 #define CONFIG_EXTRA_ENV_SETTINGS \
38         "fdt_high=0xffffffff\0" \
39         "initrd_high=0xffffffff\0" \
40         "fdt_addr=0x40000000\0" \
41         "scriptaddr=0x40200000\0" \
42         "pxefile_addr_r=0x40300000\0" \
43         "kernel_addr_r=0x40400000\0" \
44         "ramdisk_addr_r=0x44000000\0" \
45         BOOTENV
46
47 #define CONFIG_SYS_CBSIZE 512
48
49 #endif /* __CONFIG_H */