blob: 6a3b6900463a5580762bc307a1dd72e27e54f6c6 [file] [log] [blame]
Johan Jonkera289fc72022-04-16 17:09:47 +02001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * (C) Copyright 2015 Google, Inc
4 */
5
6#ifndef __CONFIG_RK3066_COMMON_H
7#define __CONFIG_RK3066_COMMON_H
8
Johan Jonkera289fc72022-04-16 17:09:47 +02009#include "rockchip-common.h"
10
Tom Rini3088b312022-12-04 10:04:13 -050011#define CFG_IRAM_BASE 0x10080000
Johan Jonkera289fc72022-04-16 17:09:47 +020012
Tom Rinibb4dd962022-11-16 13:10:37 -050013#define CFG_SYS_SDRAM_BASE 0x60000000
Johan Jonkera289fc72022-04-16 17:09:47 +020014#define SDRAM_BANK_SIZE (1024UL << 20UL)
15#define SDRAM_MAX_SIZE CONFIG_NR_DRAM_BANKS * SDRAM_BANK_SIZE
16
Johan Jonkera289fc72022-04-16 17:09:47 +020017#define ENV_MEM_LAYOUT_SETTINGS \
18 "scriptaddr=0x60000000\0" \
19 "pxefile_addr_r=0x60100000\0" \
20 "fdt_addr_r=0x61f00000\0" \
21 "kernel_addr_r=0x62000000\0" \
22 "ramdisk_addr_r=0x64000000\0"
23
Tom Rinic9edebe2022-12-04 10:03:50 -050024#define CFG_EXTRA_ENV_SETTINGS \
Johan Jonkera289fc72022-04-16 17:09:47 +020025 "fdt_high=0x6fffffff\0" \
26 "initrd_high=0x6fffffff\0" \
27 "partitions=" PARTS_DEFAULT \
28 ENV_MEM_LAYOUT_SETTINGS \
29 ROCKCHIP_DEVICE_SETTINGS \
Simon Glassf27e9d52023-04-24 13:49:51 +120030 "boot_targets=" BOOT_TARGETS "\0"
Johan Jonkera289fc72022-04-16 17:09:47 +020031
Johan Jonkera289fc72022-04-16 17:09:47 +020032#endif