blob: d77a7d7b098ad2ea6722fe4c6710cfe4728edc3e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Kever Yangaa827752017-11-28 16:04:16 +08002/*
3 * (C) Copyright 2017 Rockchip Electronics Co., Ltd
Kever Yangaa827752017-11-28 16:04:16 +08004 */
5
6#ifndef __CONFIG_RK3128_COMMON_H
7#define __CONFIG_RK3128_COMMON_H
8
9#include "rockchip-common.h"
10
11#define CONFIG_SYS_MAXARGS 16
Kever Yangaa827752017-11-28 16:04:16 +080012#define CONFIG_SYS_CBSIZE 1024
Kever Yangaa827752017-11-28 16:04:16 +080013
Kever Yang5593b462019-07-09 22:00:27 +080014#define COUNTER_FREQUENCY 24000000
Kever Yang5593b462019-07-09 22:00:27 +080015#define CONFIG_SYS_HZ_CLOCK 24000000
Kever Yangaa827752017-11-28 16:04:16 +080016
Kever Yangaf376322019-07-22 19:59:09 +080017#define CONFIG_IRAM_BASE 0x10080000
18
Kever Yangaa827752017-11-28 16:04:16 +080019#define CONFIG_SYS_INIT_SP_ADDR 0x60100000
Kever Yangaa827752017-11-28 16:04:16 +080020
21#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */
22
Kever Yangaa827752017-11-28 16:04:16 +080023/* RAW SD card / eMMC locations. */
Kever Yangaa827752017-11-28 16:04:16 +080024
Kever Yangaa827752017-11-28 16:04:16 +080025#define CONFIG_SYS_SDRAM_BASE 0x60000000
Kever Yangaa827752017-11-28 16:04:16 +080026#define SDRAM_MAX_SIZE 0x80000000
27
Kever Yangaa827752017-11-28 16:04:16 +080028#define CONFIG_USB_OHCI_NEW
29#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 1
30
31#ifndef CONFIG_SPL_BUILD
32
33/* usb mass storage */
Kever Yangaa827752017-11-28 16:04:16 +080034
35#define ENV_MEM_LAYOUT_SETTINGS \
36 "scriptaddr=0x60500000\0" \
37 "pxefile_addr_r=0x60600000\0" \
38 "fdt_addr_r=0x61f00000\0" \
39 "kernel_addr_r=0x62000000\0" \
40 "ramdisk_addr_r=0x64000000\0"
41
42#include <config_distro_bootcmd.h>
43#define CONFIG_EXTRA_ENV_SETTINGS \
44 ENV_MEM_LAYOUT_SETTINGS \
Klaus Goger2b6b4f22018-05-25 23:45:05 +020045 "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \
Kever Yangaa827752017-11-28 16:04:16 +080046 "partitions=" PARTS_DEFAULT \
47 BOOTENV
48
49#endif
50
51#endif