]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/rk3399_common.h
common: Add DISPLAY_BOARDINFO
[people/ms/u-boot.git] / include / configs / rk3399_common.h
1 /*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7 #ifndef __CONFIG_RK3399_COMMON_H
8 #define __CONFIG_RK3399_COMMON_H
9
10 #define CONFIG_SYS_NO_FLASH
11 #define CONFIG_NR_DRAM_BANKS 1
12 #define CONFIG_ENV_SIZE 0x2000
13 #define CONFIG_SYS_MAXARGS 16
14 #define CONFIG_BAUDRATE 1500000
15 #define CONFIG_SYS_MALLOC_LEN (32 << 20)
16 #define CONFIG_SYS_CBSIZE 1024
17 #define CONFIG_SKIP_LOWLEVEL_INIT
18
19 #define CONFIG_SYS_NS16550_MEM32
20
21 #define CONFIG_SYS_TEXT_BASE 0x00200000
22 #define CONFIG_SYS_INIT_SP_ADDR 0x00300000
23 #define CONFIG_SYS_LOAD_ADDR 0x00800800
24
25 #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */
26
27 /* MMC/SD IP block */
28 #define CONFIG_MMC
29 #define CONFIG_GENERIC_MMC
30 #define CONFIG_DWMMC
31 #define CONFIG_SDHCI
32 #define CONFIG_BOUNCE_BUFFER
33 #define CONFIG_ROCKCHIP_SDHCI_MAX_FREQ 200000000
34
35 #define CONFIG_SUPPORT_VFAT
36 #define CONFIG_FS_FAT
37 #define CONFIG_FAT_WRITE
38 #define CONFIG_FS_EXT4
39 #define CONFIG_CMD_PART
40
41 /* RAW SD card / eMMC locations. */
42 #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 256
43 #define CONFIG_SYS_SPI_U_BOOT_OFFS (128 << 10)
44
45 /* FAT sd card locations. */
46 #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1
47 #define CONFIG_SYS_SDRAM_BASE 0
48 #define CONFIG_NR_DRAM_BANKS 1
49
50 #define CONFIG_SPI_FLASH
51 #define CONFIG_SPI
52 #define CONFIG_SF_DEFAULT_SPEED 20000000
53
54 #ifndef CONFIG_SPL_BUILD
55 #include <config_distro_defaults.h>
56
57 #define ENV_MEM_LAYOUT_SETTINGS \
58 "scriptaddr=0x00000000\0" \
59 "pxefile_addr_r=0x00100000\0" \
60 "fdt_addr_r=0x01f00000\0" \
61 "kernel_addr_r=0x02000000\0" \
62 "ramdisk_addr_r=0x04000000\0"
63
64 #define CONFIG_CMD_GPT
65 #define CONFIG_RANDOM_UUID
66 #define CONFIG_PARTITION_UUIDS
67 #define PARTS_DEFAULT \
68 "uuid_disk=${uuid_gpt_disk};" \
69 "name=boot,start=16M,size=32M,bootable;" \
70 "name=rootfs,size=-,uuid=${uuid_gpt_rootfs};\0" \
71
72 /* First try to boot from SD (index 0), then eMMC (index 1) */
73 #define BOOT_TARGET_DEVICES(func) \
74 func(MMC, mmc, 0) \
75 func(MMC, mmc, 1)
76
77 #include <config_distro_bootcmd.h>
78 #define CONFIG_EXTRA_ENV_SETTINGS \
79 ENV_MEM_LAYOUT_SETTINGS \
80 "partitions=" PARTS_DEFAULT \
81 BOOTENV
82
83 #endif
84
85 /* enable usb config for usb ether */
86 #define CONFIG_USB_HOST_ETHER
87
88 #define CONFIG_USB_ETHER_ASIX
89 #define CONFIG_USB_ETHER_ASIX88179
90 #define CONFIG_USB_ETHER_MCS7830
91 #define CONFIG_USB_ETHER_SMSC95XX
92 #define CONFIG_USB_ETHER_RTL8152
93
94 /* rockchip xhci host driver */
95 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 2
96
97 #endif