Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2017 Rockchip Electronics Co., Ltd |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 4 | */ |
| 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 Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 12 | #define CONFIG_SYS_CBSIZE 1024 |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 13 | |
Kever Yang | 5593b46 | 2019-07-09 22:00:27 +0800 | [diff] [blame] | 14 | #define COUNTER_FREQUENCY 24000000 |
Kever Yang | 5593b46 | 2019-07-09 22:00:27 +0800 | [diff] [blame] | 15 | #define CONFIG_SYS_HZ_CLOCK 24000000 |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 16 | |
Kever Yang | af37632 | 2019-07-22 19:59:09 +0800 | [diff] [blame] | 17 | #define CONFIG_IRAM_BASE 0x10080000 |
| 18 | |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 19 | #define CONFIG_SYS_INIT_SP_ADDR 0x60100000 |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 20 | |
| 21 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */ |
| 22 | |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 23 | /* RAW SD card / eMMC locations. */ |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 24 | |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 25 | #define CONFIG_SYS_SDRAM_BASE 0x60000000 |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 26 | #define SDRAM_MAX_SIZE 0x80000000 |
| 27 | |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 28 | #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 Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 34 | |
| 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 Goger | 2b6b4f2 | 2018-05-25 23:45:05 +0200 | [diff] [blame] | 45 | "fdt_file=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
Kever Yang | aa82775 | 2017-11-28 16:04:16 +0800 | [diff] [blame] | 46 | "partitions=" PARTS_DEFAULT \ |
| 47 | BOOTENV |
| 48 | |
| 49 | #endif |
| 50 | |
| 51 | #endif |