blob: a8cee1e44d4dee125b7663346bfa055aed0e289c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Heiko Stübner0a2be692017-02-18 19:46:36 +01002/*
3 * (C) Copyright 2015 Google, Inc
Heiko Stübner0a2be692017-02-18 19:46:36 +01004 */
5
6#ifndef __CONFIG_RK3188_COMMON_H
7#define __CONFIG_RK3188_COMMON_H
8
Kever Yang15f09a12019-03-28 11:01:23 +08009#include <asm/arch-rockchip/hardware.h>
Heiko Stübner0a2be692017-02-18 19:46:36 +010010#include "rockchip-common.h"
11
Tom Rini7b5f75c2022-12-04 10:04:13 -050012#define CFG_IRAM_BASE 0x10080000
Heiko Stübner0a2be692017-02-18 19:46:36 +010013
Tom Riniaa6e94d2022-11-16 13:10:37 -050014#define CFG_SYS_SDRAM_BASE 0x60000000
Kever Yang6d1970f2017-06-23 16:11:05 +080015#define SDRAM_MAX_SIZE 0x80000000
Heiko Stübner0a2be692017-02-18 19:46:36 +010016
Heiko Stübner0a2be692017-02-18 19:46:36 +010017#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
Heiko Stübner0a2be692017-02-18 19:46:36 +010024/* Linux fails to load the fdt if it's loaded above 256M on a Rock board,
25 * so limit the fdt reallocation to that */
Tom Rini0613c362022-12-04 10:03:50 -050026#define CFG_EXTRA_ENV_SETTINGS \
Klaus Gogera2a50532018-05-25 23:45:05 +020027 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Heiko Stübner0a2be692017-02-18 19:46:36 +010028 "fdt_high=0x6fffffff\0" \
29 "initrd_high=0x6fffffff\0" \
30 "partitions=" PARTS_DEFAULT \
31 ENV_MEM_LAYOUT_SETTINGS \
32 ROCKCHIP_DEVICE_SETTINGS \
Simon Glass7755dc52023-04-24 13:49:51 +120033 "boot_targets=" BOOT_TARGETS "\0"
Heiko Stübner0a2be692017-02-18 19:46:36 +010034
Heiko Stübner0a2be692017-02-18 19:46:36 +010035#endif