Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 2 | /* |
3 | * (C) Copyright 2015 Google, Inc | ||||
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 4 | */ |
5 | |||||
6 | #ifndef __CONFIG_RK3288_COMMON_H | ||||
7 | #define __CONFIG_RK3288_COMMON_H | ||||
8 | |||||
Kever Yang | 15f09a1 | 2019-03-28 11:01:23 +0800 | [diff] [blame] | 9 | #include <asm/arch-rockchip/hardware.h> |
Jacob Chen | 7f35bbb9 | 2016-10-08 13:47:41 +0800 | [diff] [blame] | 10 | #include "rockchip-common.h" |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 11 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 12 | #define CFG_SYS_HZ_CLOCK 24000000 |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 13 | |
Tom Rini | 7b5f75c | 2022-12-04 10:04:13 -0500 | [diff] [blame] | 14 | #define CFG_IRAM_BASE 0xff700000 |
Kever Yang | 5f24680 | 2019-07-22 19:59:09 +0800 | [diff] [blame] | 15 | |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 16 | /* RAW SD card / eMMC locations. */ |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 17 | |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 18 | #define CFG_SYS_SDRAM_BASE 0 |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 19 | #define SDRAM_BANK_SIZE (2UL << 30) |
Kever Yang | 6d1970f | 2017-06-23 16:11:05 +0800 | [diff] [blame] | 20 | #define SDRAM_MAX_SIZE 0xfe000000 |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 21 | |
Sjoerd Simons | 6460fc4 | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 22 | #define ENV_MEM_LAYOUT_SETTINGS \ |
23 | "scriptaddr=0x00000000\0" \ | ||||
24 | "pxefile_addr_r=0x00100000\0" \ | ||||
25 | "fdt_addr_r=0x01f00000\0" \ | ||||
26 | "kernel_addr_r=0x02000000\0" \ | ||||
27 | "ramdisk_addr_r=0x04000000\0" | ||||
28 | |||||
Sjoerd Simons | 6460fc4 | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 29 | #include <config_distro_bootcmd.h> |
30 | |||||
Sandy Patterson | 6016982 | 2016-07-11 13:38:52 -0400 | [diff] [blame] | 31 | /* Linux fails to load the fdt if it's loaded above 256M on a Rock 2 board, so |
Sjoerd Simons | 6460fc4 | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 32 | * limit the fdt reallocation to that */ |
Tom Rini | 0613c36 | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 33 | #define CFG_EXTRA_ENV_SETTINGS \ |
Sandy Patterson | 6016982 | 2016-07-11 13:38:52 -0400 | [diff] [blame] | 34 | "fdt_high=0x0fffffff\0" \ |
35 | "initrd_high=0x0fffffff\0" \ | ||||
Klaus Goger | a2a5053 | 2018-05-25 23:45:05 +0200 | [diff] [blame] | 36 | "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
Xu Ziyuan | 6ead8bd | 2016-08-03 11:55:05 +0800 | [diff] [blame] | 37 | "partitions=" PARTS_DEFAULT \ |
Sjoerd Simons | 6460fc4 | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 38 | ENV_MEM_LAYOUT_SETTINGS \ |
Simon Glass | 27a1961 | 2016-01-21 19:44:13 -0700 | [diff] [blame] | 39 | ROCKCHIP_DEVICE_SETTINGS \ |
Sjoerd Simons | 6460fc4 | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 40 | BOOTENV |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 41 | |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 42 | #endif |