blob: 0c449e310999146e4948e09a696f8c29e2a70aa6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass17aa5482015-08-30 16:55:41 -06002/*
3 * (C) Copyright 2015 Google, Inc
Simon Glass17aa5482015-08-30 16:55:41 -06004 */
5
6#ifndef __CONFIG_RK3288_COMMON_H
7#define __CONFIG_RK3288_COMMON_H
8
Jacob Chen7f35bbb2016-10-08 13:47:41 +08009#include "rockchip-common.h"
Simon Glass17aa5482015-08-30 16:55:41 -060010
Tom Rini65cc0e22022-11-16 13:10:41 -050011#define CFG_SYS_HZ_CLOCK 24000000
Simon Glass17aa5482015-08-30 16:55:41 -060012
Tom Rini7b5f75c2022-12-04 10:04:13 -050013#define CFG_IRAM_BASE 0xff700000
Kever Yang5f246802019-07-22 19:59:09 +080014
Tom Riniaa6e94d2022-11-16 13:10:37 -050015#define CFG_SYS_SDRAM_BASE 0
Kever Yang6d1970f2017-06-23 16:11:05 +080016#define SDRAM_MAX_SIZE 0xfe000000
Simon Glass17aa5482015-08-30 16:55:41 -060017
Sjoerd Simons6460fc42015-08-30 16:55:48 -060018#define ENV_MEM_LAYOUT_SETTINGS \
19 "scriptaddr=0x00000000\0" \
20 "pxefile_addr_r=0x00100000\0" \
21 "fdt_addr_r=0x01f00000\0" \
22 "kernel_addr_r=0x02000000\0" \
23 "ramdisk_addr_r=0x04000000\0"
24
Sandy Patterson60169822016-07-11 13:38:52 -040025/* Linux fails to load the fdt if it's loaded above 256M on a Rock 2 board, so
Sjoerd Simons6460fc42015-08-30 16:55:48 -060026 * limit the fdt reallocation to that */
Tom Rini0613c362022-12-04 10:03:50 -050027#define CFG_EXTRA_ENV_SETTINGS \
Sandy Patterson60169822016-07-11 13:38:52 -040028 "fdt_high=0x0fffffff\0" \
29 "initrd_high=0x0fffffff\0" \
Klaus Gogera2a50532018-05-25 23:45:05 +020030 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Xu Ziyuan6ead8bd2016-08-03 11:55:05 +080031 "partitions=" PARTS_DEFAULT \
Sjoerd Simons6460fc42015-08-30 16:55:48 -060032 ENV_MEM_LAYOUT_SETTINGS \
Simon Glass27a19612016-01-21 19:44:13 -070033 ROCKCHIP_DEVICE_SETTINGS \
Simon Glass7755dc52023-04-24 13:49:51 +120034 "boot_targets=" BOOT_TARGETS "\0"
Simon Glass17aa5482015-08-30 16:55:41 -060035
Simon Glass17aa5482015-08-30 16:55:41 -060036#endif