Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Andy Yan | 2d982da | 2017-06-01 18:00:55 +0800 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd |
Andy Yan | 2d982da | 2017-06-01 18:00:55 +0800 | [diff] [blame] | 4 | */ |
| 5 | #ifndef __CONFIG_RV1108_COMMON_H |
| 6 | #define __CONFIG_RV1108_COMMON_H |
| 7 | |
Kever Yang | 9fbe17c | 2019-03-28 11:01:23 +0800 | [diff] [blame] | 8 | #include <asm/arch-rockchip/hardware.h> |
Andy Yan | 2d982da | 2017-06-01 18:00:55 +0800 | [diff] [blame] | 9 | #include "rockchip-common.h" |
| 10 | |
Tom Rini | 3088b31 | 2022-12-04 10:04:13 -0500 | [diff] [blame] | 11 | #define CFG_IRAM_BASE 0x10080000 |
Kever Yang | af37632 | 2019-07-22 19:59:09 +0800 | [diff] [blame] | 12 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 13 | #define CFG_SYS_TIMER_RATE (24 * 1000 * 1000) |
Andy Yan | 2d982da | 2017-06-01 18:00:55 +0800 | [diff] [blame] | 14 | /* TIMER1,initialized by ddr initialize code */ |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 15 | #define CFG_SYS_TIMER_BASE 0x10350020 |
| 16 | #define CFG_SYS_TIMER_COUNTER (CFG_SYS_TIMER_BASE + 8) |
Andy Yan | 2d982da | 2017-06-01 18:00:55 +0800 | [diff] [blame] | 17 | |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 18 | #define CFG_SYS_SDRAM_BASE 0x60000000 |
Andy Yan | 2d982da | 2017-06-01 18:00:55 +0800 | [diff] [blame] | 19 | |
Otavio Salvador | d49cf01 | 2018-11-30 11:34:17 -0200 | [diff] [blame] | 20 | #define ENV_MEM_LAYOUT_SETTINGS \ |
| 21 | "scriptaddr=0x60000000\0" \ |
| 22 | "fdt_addr_r=0x61f00000\0" \ |
| 23 | "kernel_addr_r=0x62000000\0" \ |
| 24 | "ramdisk_addr_r=0x64000000\0" |
| 25 | |
| 26 | #include <config_distro_bootcmd.h> |
Tom Rini | c9edebe | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 27 | #define CFG_EXTRA_ENV_SETTINGS \ |
Otavio Salvador | d49cf01 | 2018-11-30 11:34:17 -0200 | [diff] [blame] | 28 | ENV_MEM_LAYOUT_SETTINGS \ |
| 29 | "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
| 30 | "partitions=" PARTS_DEFAULT \ |
Simon Glass | f27e9d5 | 2023-04-24 13:49:51 +1200 | [diff] [blame^] | 31 | "boot_targets=" BOOT_TARGETS "\0" |
Tom Rini | 1e57cbb | 2022-06-10 22:59:38 -0400 | [diff] [blame] | 32 | |
Otavio Salvador | d49cf01 | 2018-11-30 11:34:17 -0200 | [diff] [blame] | 33 | #endif |