configs: sama5d2: enable option CONFIG_ATMEL_TCB_TIMER
[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
22 /* Environment options */
23
24 #if CONFIG_IS_ENABLED(CMD_USB)
25 # define BOOT_TARGET_USB(func) func(USB, usb, 0)
26 #else
27 # define BOOT_TARGET_USB(func)
28 #endif
29
30 #if CONFIG_IS_ENABLED(CMD_SCSI)
31 # define BOOT_TARGET_SCSI(func) func(SCSI, scsi, 0)
32 #else
33 # define BOOT_TARGET_SCSI(func)
34 #endif
35
36 #if CONFIG_IS_ENABLED(CMD_VIRTIO)
37 # define BOOT_TARGET_VIRTIO(func) func(VIRTIO, virtio, 0)
38 #else
39 # define BOOT_TARGET_VIRTIO(func)
40 #endif
41
42 #if CONFIG_IS_ENABLED(CMD_DHCP)
43 # define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
44 #else
45 # define BOOT_TARGET_DHCP(func)
46 #endif
47
48 #define BOOT_TARGET_DEVICES(func) \
49         BOOT_TARGET_USB(func) \
50         BOOT_TARGET_SCSI(func) \
51         BOOT_TARGET_VIRTIO(func) \
52         BOOT_TARGET_DHCP(func)
53
54 #include <config_distro_bootcmd.h>
55
56 #define CONFIG_EXTRA_ENV_SETTINGS \
57         "fdt_high=0xffffffff\0" \
58         "initrd_high=0xffffffff\0" \
59         "fdt_addr=0x40000000\0" \
60         "scriptaddr=0x40200000\0" \
61         "pxefile_addr_r=0x40300000\0" \
62         "kernel_addr_r=0x40400000\0" \
63         "ramdisk_addr_r=0x44000000\0" \
64         BOOTENV
65
66 #define CONFIG_SYS_CBSIZE 512
67
68 #define CONFIG_SYS_MONITOR_BASE         CONFIG_SYS_TEXT_BASE
69 #define CONFIG_SYS_MAX_FLASH_SECT       256 /* Sector: 256K, Bank: 64M */
70
71 #endif /* __CONFIG_H */