Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2015 Google, Inc |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #ifndef __CONFIG_RK3288_COMMON_H |
| 8 | #define __CONFIG_RK3288_COMMON_H |
| 9 | |
| 10 | #include <asm/arch/hardware.h> |
Jacob Chen | 63dc971 | 2016-10-08 13:47:41 +0800 | [diff] [blame] | 11 | #include "rockchip-common.h" |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 12 | |
Xu Ziyuan | 68728e8 | 2016-08-27 21:53:14 +0800 | [diff] [blame] | 13 | #define CONFIG_SKIP_LOWLEVEL_INIT_ONLY |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 14 | #define CONFIG_NR_DRAM_BANKS 1 |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 15 | #define CONFIG_SYS_MALLOC_LEN (32 << 20) |
| 16 | #define CONFIG_SYS_CBSIZE 1024 |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 17 | |
| 18 | #define CONFIG_SYS_TIMER_RATE (24 * 1000 * 1000) |
huang lin | 8db3e24 | 2015-11-17 14:20:09 +0800 | [diff] [blame] | 19 | #define CONFIG_SYS_TIMER_BASE 0xff810020 /* TIMER7 */ |
| 20 | #define CONFIG_SYS_TIMER_COUNTER (CONFIG_SYS_TIMER_BASE + 8) |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 21 | |
| 22 | #define CONFIG_SPL_FRAMEWORK |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 23 | #define CONFIG_SYS_NS16550_MEM32 |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 24 | |
Philipp Tomsich | 798370f | 2017-06-29 11:21:15 +0200 | [diff] [blame] | 25 | #ifdef CONFIG_SPL_ROCKCHIP_BACK_TO_BROM |
Xu Ziyuan | 5401eb8 | 2016-07-12 19:09:49 +0800 | [diff] [blame] | 26 | /* Bootrom will load u-boot binary to 0x0 once return from SPL */ |
| 27 | #define CONFIG_SYS_TEXT_BASE 0x00000000 |
| 28 | #else |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 29 | #define CONFIG_SYS_TEXT_BASE 0x00100000 |
Xu Ziyuan | 5401eb8 | 2016-07-12 19:09:49 +0800 | [diff] [blame] | 30 | #endif |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 31 | #define CONFIG_SYS_INIT_SP_ADDR 0x00100000 |
| 32 | #define CONFIG_SYS_LOAD_ADDR 0x00800800 |
| 33 | #define CONFIG_SPL_STACK 0xff718000 |
Jagan Teki | 387fd4b | 2017-09-27 23:03:12 +0530 | [diff] [blame] | 34 | #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_TPL_BOOTROM_SUPPORT) |
| 35 | # define CONFIG_SPL_TEXT_BASE 0x0 |
| 36 | #else |
Kever Yang | 5f651fd | 2017-10-10 16:21:05 +0200 | [diff] [blame] | 37 | # define CONFIG_SPL_TEXT_BASE 0xff704000 |
Jagan Teki | 387fd4b | 2017-09-27 23:03:12 +0530 | [diff] [blame] | 38 | #endif |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 39 | |
| 40 | /* MMC/SD IP block */ |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 41 | #define CONFIG_BOUNCE_BUFFER |
| 42 | |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 43 | /* RAW SD card / eMMC locations. */ |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 44 | #define CONFIG_SYS_SPI_U_BOOT_OFFS (128 << 10) |
| 45 | |
| 46 | /* FAT sd card locations. */ |
| 47 | #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1 |
| 48 | #define CONFIG_SPL_FS_LOAD_PAYLOAD_NAME "u-boot.img" |
| 49 | |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 50 | #define CONFIG_SYS_SDRAM_BASE 0 |
| 51 | #define CONFIG_NR_DRAM_BANKS 1 |
| 52 | #define SDRAM_BANK_SIZE (2UL << 30) |
Kever Yang | 5db9e67 | 2017-06-23 16:11:05 +0800 | [diff] [blame] | 53 | #define SDRAM_MAX_SIZE 0xfe000000 |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 54 | |
| 55 | #define CONFIG_SPI_FLASH |
| 56 | #define CONFIG_SPI |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 57 | #define CONFIG_SF_DEFAULT_SPEED 20000000 |
| 58 | |
jk.kernel@gmail.com | 376bcc6 | 2016-07-26 18:28:24 +0800 | [diff] [blame] | 59 | #ifndef CONFIG_SPL_BUILD |
Xu Ziyuan | a11a53f | 2016-07-15 00:26:59 +0800 | [diff] [blame] | 60 | /* usb otg */ |
Xu Ziyuan | a11a53f | 2016-07-15 00:26:59 +0800 | [diff] [blame] | 61 | |
Xu Ziyuan | b653b47 | 2016-08-03 11:55:06 +0800 | [diff] [blame] | 62 | /* usb mass storage */ |
Xu Ziyuan | b653b47 | 2016-08-03 11:55:06 +0800 | [diff] [blame] | 63 | #define CONFIG_CMD_USB_MASS_STORAGE |
| 64 | |
Kever Yang | f7d6def | 2016-11-24 15:29:51 +0800 | [diff] [blame] | 65 | /* usb host support */ |
Sjoerd Simons | 427418b | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 66 | #define ENV_MEM_LAYOUT_SETTINGS \ |
| 67 | "scriptaddr=0x00000000\0" \ |
| 68 | "pxefile_addr_r=0x00100000\0" \ |
| 69 | "fdt_addr_r=0x01f00000\0" \ |
| 70 | "kernel_addr_r=0x02000000\0" \ |
| 71 | "ramdisk_addr_r=0x04000000\0" |
| 72 | |
Sjoerd Simons | 427418b | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 73 | #include <config_distro_bootcmd.h> |
| 74 | |
Sandy Patterson | f4526ef | 2016-07-11 13:38:52 -0400 | [diff] [blame] | 75 | /* Linux fails to load the fdt if it's loaded above 256M on a Rock 2 board, so |
Sjoerd Simons | 427418b | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 76 | * limit the fdt reallocation to that */ |
| 77 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Sandy Patterson | f4526ef | 2016-07-11 13:38:52 -0400 | [diff] [blame] | 78 | "fdt_high=0x0fffffff\0" \ |
| 79 | "initrd_high=0x0fffffff\0" \ |
Xu Ziyuan | 05c3ca6 | 2016-08-03 11:55:05 +0800 | [diff] [blame] | 80 | "partitions=" PARTS_DEFAULT \ |
Sjoerd Simons | 427418b | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 81 | ENV_MEM_LAYOUT_SETTINGS \ |
Simon Glass | cf88b7c | 2016-01-21 19:44:13 -0700 | [diff] [blame] | 82 | ROCKCHIP_DEVICE_SETTINGS \ |
Sjoerd Simons | 427418b | 2015-08-30 16:55:48 -0600 | [diff] [blame] | 83 | BOOTENV |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 84 | #endif |
| 85 | |
Jacob Chen | c95f378 | 2016-09-19 18:46:28 +0800 | [diff] [blame] | 86 | #define CONFIG_PREBOOT |
| 87 | |
Simon Glass | ec3be54 | 2015-08-30 16:55:41 -0600 | [diff] [blame] | 88 | #endif |