xref: /openbmc/u-boot/include/configs/qemu-arm.h (revision b2153075)
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 #define CONFIG_SYS_TEXT_BASE		0x00000000
14 
15 #define CONFIG_NR_DRAM_BANKS		1
16 #define CONFIG_SYS_SDRAM_BASE		0x40000000
17 
18 /* The DTB generated by QEMU is placed at start of RAM, stay away from there */
19 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + SZ_2M)
20 #define CONFIG_SYS_LOAD_ADDR		(CONFIG_SYS_SDRAM_BASE + SZ_2M)
21 #define CONFIG_SYS_MALLOC_LEN		SZ_16M
22 
23 /* QEMU implements a 62.5MHz architected timer */
24 /* FIXME: can we rely on CNTFREQ instead of hardcoding this fact here? */
25 #define CONFIG_SYS_ARCH_TIMER
26 #define CONFIG_SYS_HZ                       1000
27 #define CONFIG_SYS_HZ_CLOCK                 62500000
28 
29 /* For block devices, QEMU emulates an ICH9 AHCI controller over PCI */
30 #define CONFIG_SYS_SCSI_MAX_SCSI_ID 6
31 
32 /* Environment options */
33 #define CONFIG_ENV_SIZE				SZ_64K
34 
35 #include <config_distro_defaults.h>
36 
37 #define BOOT_TARGET_DEVICES(func) \
38 	func(SCSI, scsi, 0)
39 
40 #include <config_distro_bootcmd.h>
41 
42 #define CONFIG_PREBOOT "pci enum"
43 #define CONFIG_EXTRA_ENV_SETTINGS \
44 	"fdt_high=0xffffffff\0" \
45 	"initrd_high=0xffffffff\0" \
46 	"fdt_addr=0x40000000\0" \
47 	"scriptaddr=0x40200000\0" \
48 	"pxefile_addr_r=0x40300000\0" \
49 	"kernel_addr_r=0x40400000\0" \
50 	"ramdisk_addr_r=0x44000000\0" \
51 	BOOTENV
52 
53 #endif /* __CONFIG_H */
54