blob: 49d1878ebdd7f6247fd44d5fb0f0778ef03879b2 [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 GICD_BASE 0xff131000
17#define GICC_BASE 0xff132000
18
Heiko Stuebneraff82aa2019-07-16 22:17:13 +020019#define CONFIG_SYS_SDRAM_BASE 0
20#define SDRAM_MAX_SIZE 0xff000000
21#define SDRAM_BANK_SIZE (2UL << 30)
22
Heiko Stuebneraff82aa2019-07-16 22:17:13 +020023#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