Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2017 Tuomas Tynkkynen |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_H |
| 7 | #define __CONFIG_H |
| 8 | |
| 9 | #include <linux/sizes.h> |
| 10 | |
| 11 | /* Physical memory map */ |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 12 | |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 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 | |
Tuomas Tynkkynen | 047a475 | 2018-04-12 04:24:45 +0300 | [diff] [blame] | 20 | /* For timer, QEMU emulates an ARMv7/ARMv8 architected timer */ |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 21 | #define CONFIG_SYS_HZ 1000 |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 22 | |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 23 | /* Environment options */ |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 24 | |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 25 | #define BOOT_TARGET_DEVICES(func) \ |
AKASHI Takahiro | 7cc96a4 | 2018-12-14 18:53:22 +0900 | [diff] [blame] | 26 | func(USB, usb, 0) \ |
Alexander Graf | 9b288b9 | 2018-09-04 13:49:29 +0200 | [diff] [blame] | 27 | func(SCSI, scsi, 0) \ |
Sumit Garg | c960663 | 2018-11-13 10:21:24 +0530 | [diff] [blame] | 28 | func(VIRTIO, virtio, 0) \ |
Alexander Graf | 9b288b9 | 2018-09-04 13:49:29 +0200 | [diff] [blame] | 29 | func(DHCP, dhcp, na) |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 30 | |
| 31 | #include <config_distro_bootcmd.h> |
| 32 | |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 33 | #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 Tynkkynen | a504cd8 | 2018-03-05 23:20:41 +0200 | [diff] [blame] | 43 | #define CONFIG_SYS_CBSIZE 512 |
| 44 | |
Sumit Garg | 9b614ea | 2018-11-26 16:50:17 +0530 | [diff] [blame] | 45 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
AKASHI Takahiro | ff91dde | 2019-07-03 10:44:40 +0900 | [diff] [blame] | 46 | #ifdef CONFIG_TFABOOT |
| 47 | #define CONFIG_SYS_FLASH_BASE 0x4000000 |
| 48 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
| 49 | #else |
Sumit Garg | 9b614ea | 2018-11-26 16:50:17 +0530 | [diff] [blame] | 50 | #define CONFIG_SYS_FLASH_BASE 0x0 |
| 51 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 |
AKASHI Takahiro | ff91dde | 2019-07-03 10:44:40 +0900 | [diff] [blame] | 52 | #endif |
Sumit Garg | 9b614ea | 2018-11-26 16:50:17 +0530 | [diff] [blame] | 53 | #define CONFIG_SYS_MAX_FLASH_SECT 256 /* Sector: 256K, Bank: 64M */ |
| 54 | |
Tuomas Tynkkynen | 28cac52 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 55 | #endif /* __CONFIG_H */ |