blob: 9cdc9004a91fcc2d35905b9cbb8a62d2437f46fc [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Kever Yangec02b3c2017-02-23 15:37:51 +08002/*
3 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
Kever Yangec02b3c2017-02-23 15:37:51 +08004 */
5
6#ifndef __CONFIG_RK3328_COMMON_H
7#define __CONFIG_RK3328_COMMON_H
8
9#include "rockchip-common.h"
10
Kever Yangaf376322019-07-22 19:59:09 +080011#define CONFIG_IRAM_BASE 0xff090000
12
Kever Yangec02b3c2017-02-23 15:37:51 +080013#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */
14
Kever Yangec02b3c2017-02-23 15:37:51 +080015/* FAT sd card locations. */
Kever Yangec02b3c2017-02-23 15:37:51 +080016#define CONFIG_SYS_SDRAM_BASE 0
Kever Yang5db9e672017-06-23 16:11:05 +080017#define SDRAM_MAX_SIZE 0xff000000
Kever Yangec02b3c2017-02-23 15:37:51 +080018
Kever Yangec02b3c2017-02-23 15:37:51 +080019#ifndef CONFIG_SPL_BUILD
20
21#define ENV_MEM_LAYOUT_SETTINGS \
22 "scriptaddr=0x00500000\0" \
23 "pxefile_addr_r=0x00600000\0" \
24 "fdt_addr_r=0x01f00000\0" \
Klaus Gogerb922cc62018-02-19 08:02:26 +010025 "kernel_addr_r=0x02080000\0" \
Ben Wolsieffera100f9f2019-12-03 00:40:05 -050026 "ramdisk_addr_r=0x06000000\0"
Kever Yangec02b3c2017-02-23 15:37:51 +080027
28#include <config_distro_bootcmd.h>
29#define CONFIG_EXTRA_ENV_SETTINGS \
30 ENV_MEM_LAYOUT_SETTINGS \
Klaus Goger2b6b4f22018-05-25 23:45:05 +020031 "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
Kever Yangec02b3c2017-02-23 15:37:51 +080032 "partitions=" PARTS_DEFAULT \
33 BOOTENV
34
35#endif
36
Meng Dongyang00bc0642017-05-17 18:21:45 +080037/* rockchip ohci host driver */
38#define CONFIG_USB_OHCI_NEW
39#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 1
Meng Dongyang7b223b72017-05-17 18:21:47 +080040
Kever Yangec02b3c2017-02-23 15:37:51 +080041#endif