blob: 3ad1cf3232db1b45dc66f2df1a41fce7d26f37c0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +03002/*
3 * Copyright (c) 2017 Tuomas Tynkkynen
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +03004 */
5
6#ifndef __CONFIG_H
7#define __CONFIG_H
8
9#include <linux/sizes.h>
10
11/* Physical memory map */
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030012
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030013#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)
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030017
Dhananjay Phadke7bf7ae12020-01-14 17:41:41 -080018#define CONFIG_SYS_BOOTM_LEN SZ_64M
19
Tuomas Tynkkynen047a4752018-04-12 04:24:45 +030020/* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030021
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030022/* Environment options */
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030023
Piotr Kubikf580a302021-12-29 14:30:04 +010024#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
Alexander Graf3636a9c2022-02-27 13:20:32 +010042#if CONFIG_IS_ENABLED(CMD_NVME)
43# define BOOT_TARGET_NVME(func) func(NVME, nvme, 0)
44#else
45# define BOOT_TARGET_NVME(func)
46#endif
47
Piotr Kubikf580a302021-12-29 14:30:04 +010048#if CONFIG_IS_ENABLED(CMD_DHCP)
49# define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
50#else
51# define BOOT_TARGET_DHCP(func)
52#endif
53
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030054#define BOOT_TARGET_DEVICES(func) \
Piotr Kubikf580a302021-12-29 14:30:04 +010055 BOOT_TARGET_USB(func) \
56 BOOT_TARGET_SCSI(func) \
57 BOOT_TARGET_VIRTIO(func) \
Alexander Graf3636a9c2022-02-27 13:20:32 +010058 BOOT_TARGET_NVME(func) \
Piotr Kubikf580a302021-12-29 14:30:04 +010059 BOOT_TARGET_DHCP(func)
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030060
61#include <config_distro_bootcmd.h>
62
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030063#define CONFIG_EXTRA_ENV_SETTINGS \
64 "fdt_high=0xffffffff\0" \
65 "initrd_high=0xffffffff\0" \
66 "fdt_addr=0x40000000\0" \
67 "scriptaddr=0x40200000\0" \
68 "pxefile_addr_r=0x40300000\0" \
69 "kernel_addr_r=0x40400000\0" \
70 "ramdisk_addr_r=0x44000000\0" \
71 BOOTENV
72
Tuomas Tynkkynena504cd82018-03-05 23:20:41 +020073#define CONFIG_SYS_CBSIZE 512
74
Sumit Garg9b614ea2018-11-26 16:50:17 +053075#define CONFIG_SYS_MAX_FLASH_SECT 256 /* Sector: 256K, Bank: 64M */
76
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030077#endif /* __CONFIG_H */