Kever Yang | 168eef7 | 2017-06-23 17:17:52 +0800 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2017 Rockchip Electronics Co., Ltd |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | #ifndef __CONFIG_RK322X_COMMON_H |
| 7 | #define __CONFIG_RK322X_COMMON_H |
| 8 | |
| 9 | #include <asm/arch/hardware.h> |
| 10 | #include "rockchip-common.h" |
| 11 | |
| 12 | #define CONFIG_SKIP_LOWLEVEL_INIT |
| 13 | #define CONFIG_ENV_SIZE 0x2000 |
| 14 | #define CONFIG_SYS_MAXARGS 16 |
| 15 | #define CONFIG_SYS_MALLOC_LEN (32 << 20) |
| 16 | #define CONFIG_SYS_CBSIZE 1024 |
| 17 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */ |
| 18 | |
| 19 | #define CONFIG_SYS_TIMER_RATE (24 * 1000 * 1000) |
| 20 | #define CONFIG_SYS_TIMER_BASE 0x110c00a0 /* TIMER5 */ |
| 21 | #define CONFIG_SYS_TIMER_COUNTER (CONFIG_SYS_TIMER_BASE + 8) |
| 22 | |
| 23 | #define CONFIG_SPL_FRAMEWORK |
| 24 | #define CONFIG_SYS_NS16550_MEM32 |
| 25 | #define CONFIG_SYS_TEXT_BASE 0x60000000 |
| 26 | #define CONFIG_SYS_INIT_SP_ADDR 0x60100000 |
| 27 | #define CONFIG_SYS_LOAD_ADDR 0x60800800 |
| 28 | #define CONFIG_SPL_STACK 0x10088000 |
| 29 | #define CONFIG_SPL_TEXT_BASE 0x10081004 |
| 30 | |
| 31 | #define CONFIG_ROCKCHIP_MAX_INIT_SIZE (28 << 10) |
| 32 | #define CONFIG_ROCKCHIP_CHIP_TAG "RK32" |
| 33 | |
| 34 | /* MMC/SD IP block */ |
| 35 | #define CONFIG_BOUNCE_BUFFER |
| 36 | |
| 37 | #define CONFIG_SYS_SDRAM_BASE 0x60000000 |
| 38 | #define CONFIG_NR_DRAM_BANKS 2 |
| 39 | #define SDRAM_BANK_SIZE (512UL << 20UL) |
| 40 | #define SDRAM_MAX_SIZE 0x80000000 |
| 41 | |
| 42 | #ifndef CONFIG_SPL_BUILD |
| 43 | /* usb otg */ |
| 44 | #define CONFIG_USB_GADGET |
| 45 | #define CONFIG_USB_GADGET_DUALSPEED |
| 46 | #define CONFIG_USB_GADGET_DWC2_OTG |
| 47 | #define CONFIG_USB_GADGET_VBUS_DRAW 0 |
| 48 | |
| 49 | /* fastboot */ |
| 50 | #define CONFIG_CMD_FASTBOOT |
| 51 | #define CONFIG_USB_FUNCTION_FASTBOOT |
| 52 | #define CONFIG_FASTBOOT_FLASH |
| 53 | #define CONFIG_FASTBOOT_FLASH_MMC_DEV 0 |
| 54 | #define CONFIG_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR |
| 55 | #define CONFIG_FASTBOOT_BUF_SIZE 0x08000000 |
| 56 | |
| 57 | /* usb mass storage */ |
| 58 | #define CONFIG_USB_FUNCTION_MASS_STORAGE |
| 59 | #define CONFIG_CMD_USB_MASS_STORAGE |
| 60 | |
| 61 | #define CONFIG_USB_GADGET_DOWNLOAD |
| 62 | #define CONFIG_G_DNL_MANUFACTURER "Rockchip" |
| 63 | #define CONFIG_G_DNL_VENDOR_NUM 0x2207 |
| 64 | #define CONFIG_G_DNL_PRODUCT_NUM 0x320a |
| 65 | |
| 66 | /* usb host */ |
| 67 | #ifdef CONFIG_CMD_USB |
Kever Yang | 168eef7 | 2017-06-23 17:17:52 +0800 | [diff] [blame] | 68 | #define CONFIG_USB_HOST_ETHER |
| 69 | #define CONFIG_USB_ETHER_SMSC95XX |
| 70 | #define CONFIG_USB_ETHER_ASIX |
| 71 | #endif |
| 72 | #define ENV_MEM_LAYOUT_SETTINGS \ |
| 73 | "scriptaddr=0x60000000\0" \ |
| 74 | "pxefile_addr_r=0x60100000\0" \ |
| 75 | "fdt_addr_r=0x61f00000\0" \ |
| 76 | "kernel_addr_r=0x62000000\0" \ |
| 77 | "ramdisk_addr_r=0x64000000\0" |
| 78 | |
| 79 | #include <config_distro_bootcmd.h> |
| 80 | |
| 81 | /* Linux fails to load the fdt if it's loaded above 512M on a evb-rk3036 board, |
| 82 | * so limit the fdt reallocation to that */ |
| 83 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 84 | "fdt_high=0x7fffffff\0" \ |
| 85 | "partitions=" PARTS_DEFAULT \ |
| 86 | ENV_MEM_LAYOUT_SETTINGS \ |
| 87 | BOOTENV |
| 88 | #endif |
| 89 | |
| 90 | #define CONFIG_PREBOOT |
| 91 | |
| 92 | #endif |