blob: fb599c951022cc94d1d2136d20908061545e15d6 [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)
17#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + SZ_2M)
18#define CONFIG_SYS_MALLOC_LEN SZ_16M
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#define CONFIG_SYS_HZ 1000
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030022
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030023/* Environment options */
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030024
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030025#define BOOT_TARGET_DEVICES(func) \
AKASHI Takahiro7cc96a42018-12-14 18:53:22 +090026 func(USB, usb, 0) \
Alexander Graf9b288b92018-09-04 13:49:29 +020027 func(SCSI, scsi, 0) \
Sumit Gargc9606632018-11-13 10:21:24 +053028 func(VIRTIO, virtio, 0) \
Alexander Graf9b288b92018-09-04 13:49:29 +020029 func(DHCP, dhcp, na)
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030030
31#include <config_distro_bootcmd.h>
32
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030033#define CONFIG_EXTRA_ENV_SETTINGS \
34 "fdt_high=0xffffffff\0" \
35 "initrd_high=0xffffffff\0" \
36 "fdt_addr=0x40000000\0" \
37 "scriptaddr=0x40200000\0" \
38 "pxefile_addr_r=0x40300000\0" \
39 "kernel_addr_r=0x40400000\0" \
40 "ramdisk_addr_r=0x44000000\0" \
41 BOOTENV
42
Tuomas Tynkkynena504cd82018-03-05 23:20:41 +020043#define CONFIG_SYS_CBSIZE 512
44
Sumit Garg9b614ea2018-11-26 16:50:17 +053045#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
AKASHI Takahiroff91dde2019-07-03 10:44:40 +090046#ifdef CONFIG_TFABOOT
47#define CONFIG_SYS_FLASH_BASE 0x4000000
48#define CONFIG_SYS_MAX_FLASH_BANKS 1
49#else
Sumit Garg9b614ea2018-11-26 16:50:17 +053050#define CONFIG_SYS_FLASH_BASE 0x0
51#define CONFIG_SYS_MAX_FLASH_BANKS 2
AKASHI Takahiroff91dde2019-07-03 10:44:40 +090052#endif
Sumit Garg9b614ea2018-11-26 16:50:17 +053053#define CONFIG_SYS_MAX_FLASH_SECT 256 /* Sector: 256K, Bank: 64M */
54
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +030055#endif /* __CONFIG_H */