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