blob: 1ef75a87836b22905edccf59bd6b6caca62328ec [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Tuomas Tynkkynen32f11822017-09-19 23:18:07 +03002/*
3 * Copyright (c) 2017 Tuomas Tynkkynen
Tuomas Tynkkynen32f11822017-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 Tynkkynen32f11822017-09-19 23:18:07 +030012
Tuomas Tynkkynen32f11822017-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
Dhananjay Phadkec7c02332020-01-14 17:41:41 -080020#define CONFIG_SYS_BOOTM_LEN SZ_64M
21
Tuomas Tynkkynen1a164ad2018-04-12 04:24:45 +030022/* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */
Tuomas Tynkkynen32f11822017-09-19 23:18:07 +030023#define CONFIG_SYS_HZ 1000
Tuomas Tynkkynen32f11822017-09-19 23:18:07 +030024
Tuomas Tynkkynen32f11822017-09-19 23:18:07 +030025/* Environment options */
Tuomas Tynkkynen32f11822017-09-19 23:18:07 +030026
Tuomas Tynkkynen32f11822017-09-19 23:18:07 +030027#define BOOT_TARGET_DEVICES(func) \
AKASHI Takahiro279dc042018-12-14 18:53:22 +090028 func(USB, usb, 0) \
Alexander Grafc3302352018-09-04 13:49:29 +020029 func(SCSI, scsi, 0) \
Sumit Garg5266db12018-11-13 10:21:24 +053030 func(VIRTIO, virtio, 0) \
Alexander Grafc3302352018-09-04 13:49:29 +020031 func(DHCP, dhcp, na)
Tuomas Tynkkynen32f11822017-09-19 23:18:07 +030032
33#include <config_distro_bootcmd.h>
34
Tuomas Tynkkynen32f11822017-09-19 23:18:07 +030035#define CONFIG_EXTRA_ENV_SETTINGS \
36 "fdt_high=0xffffffff\0" \
37 "initrd_high=0xffffffff\0" \
38 "fdt_addr=0x40000000\0" \
39 "scriptaddr=0x40200000\0" \
40 "pxefile_addr_r=0x40300000\0" \
41 "kernel_addr_r=0x40400000\0" \
42 "ramdisk_addr_r=0x44000000\0" \
43 BOOTENV
44
Tuomas Tynkkynenb771f0b2018-03-05 23:20:41 +020045#define CONFIG_SYS_CBSIZE 512
46
Sumit Garg03fb0952018-11-26 16:50:17 +053047#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
AKASHI Takahiro70a64a02019-07-03 10:44:40 +090048#ifdef CONFIG_TFABOOT
49#define CONFIG_SYS_FLASH_BASE 0x4000000
50#define CONFIG_SYS_MAX_FLASH_BANKS 1
51#else
Sumit Garg03fb0952018-11-26 16:50:17 +053052#define CONFIG_SYS_FLASH_BASE 0x0
53#define CONFIG_SYS_MAX_FLASH_BANKS 2
AKASHI Takahiro70a64a02019-07-03 10:44:40 +090054#endif
Sumit Garg03fb0952018-11-26 16:50:17 +053055#define CONFIG_SYS_MAX_FLASH_SECT 256 /* Sector: 256K, Bank: 64M */
56
Tuomas Tynkkynen32f11822017-09-19 23:18:07 +030057#endif /* __CONFIG_H */