Heiko Stuebner | aff82aa | 2019-07-16 22:17:13 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * (C) Copyright 2017 Rockchip Electronics Co., Ltd |
| 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_PX30_COMMON_H |
| 7 | #define __CONFIG_PX30_COMMON_H |
| 8 | |
| 9 | #include "rockchip-common.h" |
| 10 | |
Heiko Stuebner | aff82aa | 2019-07-16 22:17:13 +0200 | [diff] [blame] | 11 | #define CONFIG_SYS_NS16550_MEM32 |
| 12 | |
Heiko Stuebner | aff82aa | 2019-07-16 22:17:13 +0200 | [diff] [blame] | 13 | /* FIXME: ff020000 is pmu_mem (10k), while ff0e0000 is regular int_mem */ |
| 14 | #define CONFIG_IRAM_BASE 0xff020000 |
| 15 | |
Heiko Stuebner | aff82aa | 2019-07-16 22:17:13 +0200 | [diff] [blame] | 16 | #define GICD_BASE 0xff131000 |
| 17 | #define GICC_BASE 0xff132000 |
| 18 | |
Heiko Stuebner | aff82aa | 2019-07-16 22:17:13 +0200 | [diff] [blame] | 19 | #define CONFIG_SYS_SDRAM_BASE 0 |
| 20 | #define SDRAM_MAX_SIZE 0xff000000 |
| 21 | #define SDRAM_BANK_SIZE (2UL << 30) |
| 22 | |
Heiko Stuebner | aff82aa | 2019-07-16 22:17:13 +0200 | [diff] [blame] | 23 | #define ENV_MEM_LAYOUT_SETTINGS \ |
| 24 | "scriptaddr=0x00500000\0" \ |
| 25 | "pxefile_addr_r=0x00600000\0" \ |
| 26 | "fdt_addr_r=0x08300000\0" \ |
| 27 | "kernel_addr_r=0x00280000\0" \ |
| 28 | "kernel_addr_c=0x03e80000\0" \ |
| 29 | "ramdisk_addr_r=0x0a200000\0" |
| 30 | |
| 31 | #include <config_distro_bootcmd.h> |
| 32 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 33 | ENV_MEM_LAYOUT_SETTINGS \ |
| 34 | "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
| 35 | "partitions=" PARTS_DEFAULT \ |
| 36 | ROCKCHIP_DEVICE_SETTINGS \ |
| 37 | BOOTENV |
| 38 | |
| 39 | #endif |