]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/configs/qemu-arm.h
ata: Drop CONFIG_SYS_SCSI_MAX_* from boards using DM_SCSI
[thirdparty/u-boot.git] / include / configs / qemu-arm.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
32f11829
TT
2/*
3 * Copyright (c) 2017 Tuomas Tynkkynen
32f11829
TT
4 */
5
6#ifndef __CONFIG_H
7#define __CONFIG_H
8
9#include <linux/sizes.h>
10
11/* Physical memory map */
32f11829 12
32f11829
TT
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#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + SZ_2M)
18#define CONFIG_SYS_MALLOC_LEN SZ_16M
19
1a164ad3 20/* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */
32f11829 21#define CONFIG_SYS_HZ 1000
32f11829 22
b19886b9
HS
23/* QEMU emulates the ARM AMBA PL031 RTC */
24#define CONFIG_SYS_RTC_PL031_BASE 0x09010000
25
32f11829
TT
26/* Environment options */
27#define CONFIG_ENV_SIZE SZ_64K
28
32f11829 29#define BOOT_TARGET_DEVICES(func) \
c3302355
AG
30 func(SCSI, scsi, 0) \
31 func(DHCP, dhcp, na)
32f11829
TT
32
33#include <config_distro_bootcmd.h>
34
35#define CONFIG_PREBOOT "pci enum"
36#define CONFIG_EXTRA_ENV_SETTINGS \
37 "fdt_high=0xffffffff\0" \
38 "initrd_high=0xffffffff\0" \
39 "fdt_addr=0x40000000\0" \
40 "scriptaddr=0x40200000\0" \
41 "pxefile_addr_r=0x40300000\0" \
42 "kernel_addr_r=0x40400000\0" \
43 "ramdisk_addr_r=0x44000000\0" \
44 BOOTENV
45
b771f0b1
TT
46#define CONFIG_SYS_CBSIZE 512
47
32f11829 48#endif /* __CONFIG_H */