blob: c0896e5f6281f1d9f515bada6ac82ee21725d720 [file] [log] [blame]
Heiko Stuebner46281a72019-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
Quentin Schulz65163362023-01-09 11:36:41 +010011#define CFG_IRAM_BASE 0xff0e0000
Heiko Stuebner46281a72019-07-16 22:17:13 +020012
Heiko Stuebner46281a72019-07-16 22:17:13 +020013#define GICD_BASE 0xff131000
14#define GICC_BASE 0xff132000
15
Tom Riniaa6e94d2022-11-16 13:10:37 -050016#define CFG_SYS_SDRAM_BASE 0
Heiko Stuebner46281a72019-07-16 22:17:13 +020017#define SDRAM_MAX_SIZE 0xff000000
18#define SDRAM_BANK_SIZE (2UL << 30)
19
Heiko Stuebner46281a72019-07-16 22:17:13 +020020#define ENV_MEM_LAYOUT_SETTINGS \
21 "scriptaddr=0x00500000\0" \
22 "pxefile_addr_r=0x00600000\0" \
23 "fdt_addr_r=0x08300000\0" \
24 "kernel_addr_r=0x00280000\0" \
25 "kernel_addr_c=0x03e80000\0" \
26 "ramdisk_addr_r=0x0a200000\0"
27
28#include <config_distro_bootcmd.h>
Tom Rini0613c362022-12-04 10:03:50 -050029#define CFG_EXTRA_ENV_SETTINGS \
Heiko Stuebner46281a72019-07-16 22:17:13 +020030 ENV_MEM_LAYOUT_SETTINGS \
31 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
32 "partitions=" PARTS_DEFAULT \
33 ROCKCHIP_DEVICE_SETTINGS \
34 BOOTENV
35
36#endif