blob: 96dcfb420f7bfe954fefc8099ebb77408ce8a567 [file] [log] [blame]
Heiko Stuebneraff82aa2019-07-16 22:17:13 +02001/* 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 Stuebneraff82aa2019-07-16 22:17:13 +020011#define CONFIG_SYS_NS16550_MEM32
12
Heiko Stuebneraff82aa2019-07-16 22:17:13 +020013/* FIXME: ff020000 is pmu_mem (10k), while ff0e0000 is regular int_mem */
14#define CONFIG_IRAM_BASE 0xff020000
15
Heiko Stuebneraff82aa2019-07-16 22:17:13 +020016#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */
17
18#define GICD_BASE 0xff131000
19#define GICC_BASE 0xff132000
20
21#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */
22
Heiko Stuebneraff82aa2019-07-16 22:17:13 +020023#define CONFIG_SYS_SDRAM_BASE 0
24#define SDRAM_MAX_SIZE 0xff000000
25#define SDRAM_BANK_SIZE (2UL << 30)
26
27#ifndef CONFIG_SPL_BUILD
28
29#define ENV_MEM_LAYOUT_SETTINGS \
30 "scriptaddr=0x00500000\0" \
31 "pxefile_addr_r=0x00600000\0" \
32 "fdt_addr_r=0x08300000\0" \
33 "kernel_addr_r=0x00280000\0" \
34 "kernel_addr_c=0x03e80000\0" \
35 "ramdisk_addr_r=0x0a200000\0"
36
37#include <config_distro_bootcmd.h>
38#define CONFIG_EXTRA_ENV_SETTINGS \
39 ENV_MEM_LAYOUT_SETTINGS \
40 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
41 "partitions=" PARTS_DEFAULT \
42 ROCKCHIP_DEVICE_SETTINGS \
43 BOOTENV
44
45#endif
46
47#endif