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 | |
| 9 | #include <asm/arch/hardware.h> |
Jacob Chen | 7f35bbb | 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 | |
Xu Ziyuan | 5a4a90f | 2016-08-27 21:53:14 +0800 | [diff] [blame] | 12 | #define CONFIG_SKIP_LOWLEVEL_INIT_ONLY |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 13 | #define CONFIG_SYS_MALLOC_LEN (32 << 20) |
| 14 | #define CONFIG_SYS_CBSIZE 1024 |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 15 | |
| 16 | #define CONFIG_SYS_TIMER_RATE (24 * 1000 * 1000) |
huang lin | cc2244b | 2015-11-17 14:20:09 +0800 | [diff] [blame] | 17 | #define CONFIG_SYS_TIMER_BASE 0xff810020 /* TIMER7 */ |
| 18 | #define CONFIG_SYS_TIMER_COUNTER (CONFIG_SYS_TIMER_BASE + 8) |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 19 | |
Philipp Tomsich | ee14d29 | 2017-06-29 11:21:15 +0200 | [diff] [blame] | 20 | #ifdef CONFIG_SPL_ROCKCHIP_BACK_TO_BROM |
Xu Ziyuan | b47ea79 | 2016-07-12 19:09:49 +0800 | [diff] [blame] | 21 | /* Bootrom will load u-boot binary to 0x0 once return from SPL */ |
Xu Ziyuan | b47ea79 | 2016-07-12 19:09:49 +0800 | [diff] [blame] | 22 | #endif |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 23 | #define CONFIG_SYS_INIT_SP_ADDR 0x00100000 |
| 24 | #define CONFIG_SYS_LOAD_ADDR 0x00800800 |
| 25 | #define CONFIG_SPL_STACK 0xff718000 |
Jagan Teki | 532cb7f | 2017-09-27 23:03:12 +0530 | [diff] [blame] | 26 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_TPL_BOOTROM_SUPPORT) |
| 27 | # define CONFIG_SPL_TEXT_BASE 0x0 |
| 28 | #else |
Kever Yang | a33fee1 | 2017-10-10 16:21:05 +0200 | [diff] [blame] | 29 | # define CONFIG_SPL_TEXT_BASE 0xff704000 |
Jagan Teki | 532cb7f | 2017-09-27 23:03:12 +0530 | [diff] [blame] | 30 | #endif |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 31 | |
| 32 | /* MMC/SD IP block */ |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 33 | #define CONFIG_BOUNCE_BUFFER |
| 34 | |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 35 | /* RAW SD card / eMMC locations. */ |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 36 | #define CONFIG_SYS_SPI_U_BOOT_OFFS (128 << 10) |
| 37 | |
| 38 | /* FAT sd card locations. */ |
| 39 | #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1 |
| 40 | #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" |
| 41 | |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 42 | #define CONFIG_SYS_SDRAM_BASE 0 |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 43 | #define SDRAM_BANK_SIZE (2UL << 30) |
Kever Yang | 6d1970f | 2017-06-23 16:11:05 +0800 | [diff] [blame] | 44 | #define SDRAM_MAX_SIZE 0xfe000000 |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 45 | |
| 46 | #define CONFIG_SPI_FLASH |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 47 | #define CONFIG_SF_DEFAULT_SPEED 20000000 |
| 48 | |
jk.kernel@gmail.com | 1743d0b | 2016-07-26 18:28:24 +0800 | [diff] [blame] | 49 | #ifndef CONFIG_SPL_BUILD |
Xu Ziyuan | 266c8fa | 2016-07-15 00:26:59 +0800 | [diff] [blame] | 50 | /* usb otg */ |
Xu Ziyuan | 266c8fa | 2016-07-15 00:26:59 +0800 | [diff] [blame] | 51 | |
Xu Ziyuan | b9f9339 | 2016-08-03 11:55:06 +0800 | [diff] [blame] | 52 | /* usb mass storage */ |
Xu Ziyuan | b9f9339 | 2016-08-03 11:55:06 +0800 | [diff] [blame] | 53 | #define CONFIG_CMD_USB_MASS_STORAGE |
| 54 | |
Kever Yang | f57f35a | 2016-11-24 15:29:51 +0800 | [diff] [blame] | 55 | /* usb host support */ |
Sjoerd Simons | 6460fc4 | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 56 | #define ENV_MEM_LAYOUT_SETTINGS \ |
| 57 | "scriptaddr=0x00000000\0" \ |
| 58 | "pxefile_addr_r=0x00100000\0" \ |
| 59 | "fdt_addr_r=0x01f00000\0" \ |
| 60 | "kernel_addr_r=0x02000000\0" \ |
| 61 | "ramdisk_addr_r=0x04000000\0" |
| 62 | |
Sjoerd Simons | 6460fc4 | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 63 | #include <config_distro_bootcmd.h> |
| 64 | |
Sandy Patterson | 6016982 | 2016-07-11 13:38:52 -0400 | [diff] [blame] | 65 | /* 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] | 66 | * limit the fdt reallocation to that */ |
| 67 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Sandy Patterson | 6016982 | 2016-07-11 13:38:52 -0400 | [diff] [blame] | 68 | "fdt_high=0x0fffffff\0" \ |
| 69 | "initrd_high=0x0fffffff\0" \ |
Klaus Goger | a2a5053 | 2018-05-25 23:45:05 +0200 | [diff] [blame] | 70 | "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \ |
Xu Ziyuan | 6ead8bd | 2016-08-03 11:55:05 +0800 | [diff] [blame] | 71 | "partitions=" PARTS_DEFAULT \ |
Sjoerd Simons | 6460fc4 | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 72 | ENV_MEM_LAYOUT_SETTINGS \ |
Simon Glass | 27a1961 | 2016-01-21 19:44:13 -0700 | [diff] [blame] | 73 | ROCKCHIP_DEVICE_SETTINGS \ |
Sjoerd Simons | 6460fc4 | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 74 | BOOTENV |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 75 | #endif |
| 76 | |
Jacob Chen | 67171e1 | 2016-09-19 18:46:28 +0800 | [diff] [blame] | 77 | #define CONFIG_PREBOOT |
| 78 | |
Simon Glass | 17aa548 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 79 | #endif |