blob: 0bf9e8b9a2e6f1b445784a450e419aa1cabb0421 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
huang lin1115b642015-11-17 14:20:27 +08002/*
3 * (C) Copyright 2015 Rockchip Electronics Co., Ltd
huang lin1115b642015-11-17 14:20:27 +08004 */
5#ifndef __CONFIG_RK3036_COMMON_H
6#define __CONFIG_RK3036_COMMON_H
7
Jacob Chen63dc9712016-10-08 13:47:41 +08008#include "rockchip-common.h"
huang lin1115b642015-11-17 14:20:27 +08009
Tom Rini6a5dccc2022-11-16 13:10:41 -050010#define CFG_SYS_HZ_CLOCK 24000000
huang lin1115b642015-11-17 14:20:27 +080011
Tom Rinibb4dd962022-11-16 13:10:37 -050012#define CFG_SYS_SDRAM_BASE 0x60000000
huang lin1115b642015-11-17 14:20:27 +080013#define SDRAM_BANK_SIZE (512UL << 20UL)
Kever Yang5db9e672017-06-23 16:11:05 +080014#define SDRAM_MAX_SIZE (CONFIG_NR_DRAM_BANKS * SDRAM_BANK_SIZE)
huang lin1115b642015-11-17 14:20:27 +080015
huang lin1115b642015-11-17 14:20:27 +080016#define ENV_MEM_LAYOUT_SETTINGS \
17 "scriptaddr=0x60000000\0" \
18 "pxefile_addr_r=0x60100000\0" \
19 "fdt_addr_r=0x61f00000\0" \
20 "kernel_addr_r=0x62000000\0" \
21 "ramdisk_addr_r=0x64000000\0"
22
huang lin1115b642015-11-17 14:20:27 +080023/* Linux fails to load the fdt if it's loaded above 512M on a evb-rk3036 board,
24 * so limit the fdt reallocation to that */
Tom Rinic9edebe2022-12-04 10:03:50 -050025#define CFG_EXTRA_ENV_SETTINGS \
Klaus Goger2b6b4f22018-05-25 23:45:05 +020026 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
huang lin1115b642015-11-17 14:20:27 +080027 "fdt_high=0x7fffffff\0" \
Jacob Chene5152912016-09-19 18:46:25 +080028 "partitions=" PARTS_DEFAULT \
huang lin1115b642015-11-17 14:20:27 +080029 ENV_MEM_LAYOUT_SETTINGS \
Simon Glassf27e9d52023-04-24 13:49:51 +120030 "boot_targets=" BOOT_TARGETS "\0"
huang lin1115b642015-11-17 14:20:27 +080031
huang lin1115b642015-11-17 14:20:27 +080032#endif