mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-01 17:12:11 +00:00
board: rockchip: Add support for rk3588 GenBook
Add support for Cool Pi GenBook, it works as a carrier board connect with CM5 SOM. Specification: - Rockchip RK3588 - LPDDR5X 8/32 GB - eMMC 64 GB - HDMI Type A out x 1 - USB 3.0 Host x 1 - USB-C 3.0 with DisplayPort AltMode - PCIE M.2 E Key for RTL8852BE Wireless connection - PCIE M.2 M Key for NVME connection - eDP panel with 1920x1080 Tested by Armbian boot on USB disk. Change-Id: I4d9b8572dc7c400077dde666633f3fea1b47dd03 Signed-off-by: Andy Yan <andyshrk@163.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
parent
3126a63c8d
commit
dfcd4afd4c
10 changed files with 257 additions and 0 deletions
20
arch/arm/dts/rk3588-coolpi-cm5-genbook-u-boot.dtsi
Normal file
20
arch/arm/dts/rk3588-coolpi-cm5-genbook-u-boot.dtsi
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||||
|
|
||||||
|
#include "rk3588-u-boot.dtsi"
|
||||||
|
|
||||||
|
&fspim2_pins {
|
||||||
|
bootph-pre-ram;
|
||||||
|
bootph-some-ram;
|
||||||
|
};
|
||||||
|
|
||||||
|
&sfc {
|
||||||
|
flash@0 {
|
||||||
|
bootph-pre-ram;
|
||||||
|
bootph-some-ram;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/* USB A out */
|
||||||
|
&usb_host1_xhci {
|
||||||
|
snps,dis_u3_susphy_quirk;
|
||||||
|
};
|
|
@ -29,6 +29,24 @@ config TARGET_CM3588_NAS_RK3588
|
||||||
- 3.5mm Headphone out, 2.0mm PH-2A Mic in
|
- 3.5mm Headphone out, 2.0mm PH-2A Mic in
|
||||||
- 5V Fan connector, PWM beeper, IR receiver, RTC battery connector
|
- 5V Fan connector, PWM beeper, IR receiver, RTC battery connector
|
||||||
|
|
||||||
|
config TARGET_GENBOOK_CM5_RK3588
|
||||||
|
bool "Cool Pi CM5 GenBook"
|
||||||
|
select BOARD_LATE_INIT
|
||||||
|
help
|
||||||
|
GeenBook is a notebook based on Rockchip RK3588, and works as a carrier
|
||||||
|
board connect with CM5 SOM.
|
||||||
|
|
||||||
|
Specification:
|
||||||
|
- Rockchip RK3588
|
||||||
|
- LPDDR5X 8/32 GB
|
||||||
|
- eMMC 64 GB
|
||||||
|
- HDMI Type A out x 1
|
||||||
|
- USB 3.0 Host x 1
|
||||||
|
- USB-C 3.0 with DisplayPort AltMode
|
||||||
|
- PCIE M.2 E Key for RTL8852BE Wireless connection
|
||||||
|
- PCIE M.2 M Key for NVME connection
|
||||||
|
- eDP panel with 1920x1080
|
||||||
|
|
||||||
config TARGET_JAGUAR_RK3588
|
config TARGET_JAGUAR_RK3588
|
||||||
bool "Theobroma Systems SBC-RK3588-AMR (Jaguar)"
|
bool "Theobroma Systems SBC-RK3588-AMR (Jaguar)"
|
||||||
select BOARD_LATE_INIT
|
select BOARD_LATE_INIT
|
||||||
|
@ -367,6 +385,7 @@ config TEXT_BASE
|
||||||
default 0x00a00000
|
default 0x00a00000
|
||||||
|
|
||||||
source "board/armsom/sige7-rk3588/Kconfig"
|
source "board/armsom/sige7-rk3588/Kconfig"
|
||||||
|
source "board/coolpi/genbook_cm5_rk3588/Kconfig"
|
||||||
source "board/edgeble/neural-compute-module-6/Kconfig"
|
source "board/edgeble/neural-compute-module-6/Kconfig"
|
||||||
source "board/friendlyelec/cm3588-nas-rk3588/Kconfig"
|
source "board/friendlyelec/cm3588-nas-rk3588/Kconfig"
|
||||||
source "board/friendlyelec/nanopc-t6-rk3588/Kconfig"
|
source "board/friendlyelec/nanopc-t6-rk3588/Kconfig"
|
||||||
|
|
12
board/coolpi/genbook_cm5_rk3588/Kconfig
Normal file
12
board/coolpi/genbook_cm5_rk3588/Kconfig
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
if TARGET_GENBOOK_CM5_RK3588
|
||||||
|
|
||||||
|
config SYS_BOARD
|
||||||
|
default "genbook_cm5_rk3588"
|
||||||
|
|
||||||
|
config SYS_VENDOR
|
||||||
|
default "coolpi"
|
||||||
|
|
||||||
|
config SYS_CONFIG_NAME
|
||||||
|
default "genbook-cm5-rk3588"
|
||||||
|
|
||||||
|
endif
|
7
board/coolpi/genbook_cm5_rk3588/MAINTAINERS
Normal file
7
board/coolpi/genbook_cm5_rk3588/MAINTAINERS
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
GENBOOK-CM5-RK3588
|
||||||
|
M: Andy Yan <andyshrk@163.com>
|
||||||
|
S: Maintained
|
||||||
|
F: board/coolpi/genbook-cm5-rk3588
|
||||||
|
F: include/configs/genbook-cm5-rk3588.h
|
||||||
|
F: configs/coolpi-cm5-genbook-rk3588_defconfig
|
||||||
|
F: arch/arm/dts/rk3588-coolpi-cm5-genbook-u-boot.dtsi
|
101
configs/coolpi-cm5-genbook-rk3588_defconfig
Normal file
101
configs/coolpi-cm5-genbook-rk3588_defconfig
Normal file
|
@ -0,0 +1,101 @@
|
||||||
|
CONFIG_ARM=y
|
||||||
|
CONFIG_SKIP_LOWLEVEL_INIT=y
|
||||||
|
CONFIG_COUNTER_FREQUENCY=24000000
|
||||||
|
CONFIG_ARCH_ROCKCHIP=y
|
||||||
|
CONFIG_SF_DEFAULT_SPEED=24000000
|
||||||
|
CONFIG_SF_DEFAULT_MODE=0x2000
|
||||||
|
CONFIG_DEFAULT_DEVICE_TREE="rockchip/rk3588-coolpi-cm5-genbook"
|
||||||
|
CONFIG_ROCKCHIP_RK3588=y
|
||||||
|
CONFIG_ROCKCHIP_SPI_IMAGE=y
|
||||||
|
CONFIG_SPL_SERIAL=y
|
||||||
|
CONFIG_TARGET_GENBOOK_CM5_RK3588=y
|
||||||
|
CONFIG_SYS_LOAD_ADDR=0xc00800
|
||||||
|
CONFIG_SF_DEFAULT_BUS=5
|
||||||
|
CONFIG_DEBUG_UART_BASE=0xFEB50000
|
||||||
|
CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
|
CONFIG_SPL_SPI_FLASH_SUPPORT=y
|
||||||
|
CONFIG_SPL_SPI=y
|
||||||
|
CONFIG_PCI=y
|
||||||
|
CONFIG_DEBUG_UART=y
|
||||||
|
CONFIG_AHCI=y
|
||||||
|
# CONFIG_ANDROID_BOOT_IMAGE is not set
|
||||||
|
CONFIG_FIT=y
|
||||||
|
CONFIG_FIT_VERBOSE=y
|
||||||
|
CONFIG_SPL_FIT_SIGNATURE=y
|
||||||
|
CONFIG_SPL_LOAD_FIT=y
|
||||||
|
CONFIG_LEGACY_IMAGE_FORMAT=y
|
||||||
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3588-coolpi-cm5-genbook.dtb"
|
||||||
|
# CONFIG_DISPLAY_CPUINFO is not set
|
||||||
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
|
CONFIG_SPL_MAX_SIZE=0x40000
|
||||||
|
CONFIG_SPL_PAD_TO=0x7f8000
|
||||||
|
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set
|
||||||
|
CONFIG_SPL_SPI_LOAD=y
|
||||||
|
CONFIG_SYS_SPI_U_BOOT_OFFS=0x60000
|
||||||
|
CONFIG_SPL_ATF=y
|
||||||
|
# CONFIG_CMD_BIND is not set
|
||||||
|
# CONFIG_CMD_FASTBOOT is not set
|
||||||
|
CONFIG_CMD_GPIO=y
|
||||||
|
CONFIG_CMD_GPT=y
|
||||||
|
CONFIG_CMD_I2C=y
|
||||||
|
CONFIG_CMD_MMC=y
|
||||||
|
CONFIG_CMD_PCI=y
|
||||||
|
CONFIG_CMD_USB=y
|
||||||
|
CONFIG_CMD_USB_MASS_STORAGE=y
|
||||||
|
# CONFIG_CMD_SETEXPR is not set
|
||||||
|
CONFIG_CMD_REGULATOR=y
|
||||||
|
# CONFIG_SPL_DOS_PARTITION is not set
|
||||||
|
CONFIG_SPL_OF_CONTROL=y
|
||||||
|
CONFIG_OF_LIVE=y
|
||||||
|
CONFIG_OF_SPL_REMOVE_PROPS="clock-names interrupt-parent assigned-clocks assigned-clock-rates assigned-clock-parents"
|
||||||
|
CONFIG_SPL_DM_SEQ_ALIAS=y
|
||||||
|
CONFIG_SPL_REGMAP=y
|
||||||
|
CONFIG_SPL_SYSCON=y
|
||||||
|
CONFIG_AHCI_PCI=y
|
||||||
|
CONFIG_DWC_AHCI=y
|
||||||
|
CONFIG_SPL_CLK=y
|
||||||
|
CONFIG_FASTBOOT_BUF_ADDR=0x800800
|
||||||
|
CONFIG_ROCKCHIP_GPIO=y
|
||||||
|
CONFIG_SYS_I2C_ROCKCHIP=y
|
||||||
|
CONFIG_LED=y
|
||||||
|
CONFIG_LED_GPIO=y
|
||||||
|
CONFIG_MISC=y
|
||||||
|
CONFIG_SUPPORT_EMMC_RPMB=y
|
||||||
|
CONFIG_MMC_HS400_ES_SUPPORT=y
|
||||||
|
CONFIG_SPL_MMC_HS400_ES_SUPPORT=y
|
||||||
|
CONFIG_MMC_HS400_SUPPORT=y
|
||||||
|
CONFIG_SPL_MMC_HS400_SUPPORT=y
|
||||||
|
CONFIG_MMC_SDHCI=y
|
||||||
|
CONFIG_MMC_SDHCI_SDMA=y
|
||||||
|
CONFIG_MMC_SDHCI_ROCKCHIP=y
|
||||||
|
CONFIG_SPI_FLASH_SFDP_SUPPORT=y
|
||||||
|
CONFIG_SPI_FLASH_XMC=y
|
||||||
|
CONFIG_SPI_FLASH_XTX=y
|
||||||
|
CONFIG_NVME_PCI=y
|
||||||
|
CONFIG_PCIE_DW_ROCKCHIP=y
|
||||||
|
CONFIG_PHY_ROCKCHIP_INNO_USB2=y
|
||||||
|
CONFIG_PHY_ROCKCHIP_NANENG_COMBOPHY=y
|
||||||
|
CONFIG_PHY_ROCKCHIP_USBDP=y
|
||||||
|
CONFIG_SPL_PINCTRL=y
|
||||||
|
CONFIG_DM_PMIC=y
|
||||||
|
CONFIG_PMIC_RK8XX=y
|
||||||
|
CONFIG_REGULATOR_RK8XX=y
|
||||||
|
CONFIG_PWM_ROCKCHIP=y
|
||||||
|
CONFIG_SPL_RAM=y
|
||||||
|
CONFIG_SCSI=y
|
||||||
|
CONFIG_BAUDRATE=1500000
|
||||||
|
CONFIG_DEBUG_UART_SHIFT=2
|
||||||
|
CONFIG_SYS_NS16550_MEM32=y
|
||||||
|
CONFIG_ROCKCHIP_SFC=y
|
||||||
|
CONFIG_ROCKCHIP_SPI=y
|
||||||
|
CONFIG_SYSRESET=y
|
||||||
|
CONFIG_USB=y
|
||||||
|
CONFIG_USB_XHCI_HCD=y
|
||||||
|
CONFIG_USB_EHCI_HCD=y
|
||||||
|
CONFIG_USB_EHCI_GENERIC=y
|
||||||
|
CONFIG_USB_OHCI_HCD=y
|
||||||
|
CONFIG_USB_OHCI_GENERIC=y
|
||||||
|
CONFIG_USB_DWC3=y
|
||||||
|
CONFIG_USB_DWC3_GENERIC=y
|
||||||
|
CONFIG_USB_GADGET=y
|
||||||
|
CONFIG_ERRNO_STR=y
|
68
doc/board/coolpi/genbook_cm5_rk3588.rst
Normal file
68
doc/board/coolpi/genbook_cm5_rk3588.rst
Normal file
|
@ -0,0 +1,68 @@
|
||||||
|
.. SPDX-License-Identifier: GPL-2.0+
|
||||||
|
|
||||||
|
GenBook
|
||||||
|
=======
|
||||||
|
Cool Pi GenBook is a laptop powered by RK3588, it works with a
|
||||||
|
carrier board connect with CM5.
|
||||||
|
|
||||||
|
Specification:
|
||||||
|
* Rockchip RK3588
|
||||||
|
* LPDDR5X 8/32 GB
|
||||||
|
* eMMC 64 GB
|
||||||
|
* SPI Nor 8 MB
|
||||||
|
* HDMI Type A out x 1
|
||||||
|
* USB 3.0 Host x 1
|
||||||
|
* USB-C 3.0 with DisplayPort AltMode
|
||||||
|
* PCIE M.2 E Key for RTL8852BE Wireless connection
|
||||||
|
* PCIE M.2 M Key for NVME connection
|
||||||
|
* eDP panel with 1920x1080
|
||||||
|
|
||||||
|
Here is the step-by-step to compile and boot to U-Boot on GenBook.
|
||||||
|
|
||||||
|
Get the TF-A and DDR init (TPL) binaries
|
||||||
|
----------------------------------------
|
||||||
|
|
||||||
|
.. prompt:: bash
|
||||||
|
|
||||||
|
> cd u-boot
|
||||||
|
> export ROCKCHIP_TPL=../rkbin/bin/rk35/rk3588_ddr_lp4_2112MHz_lp5_2400MHz_v1.17.bin
|
||||||
|
> export BL31=../rkbin/bin/rk35/rk3588_bl31_v1.46.elf
|
||||||
|
> make coolpi-genbook-cm5-rk3588_defconfig
|
||||||
|
> make CROSS_COMPILE=aarch64-linux-gnu-
|
||||||
|
|
||||||
|
This will build ``u-boot-rockchip.bin`` for eMMC and ``u-boot-rockchip-spi.bin`` for SPI Nor.
|
||||||
|
|
||||||
|
Write u-boot to eMMC or SPI Nor from a Linux system on the laptop
|
||||||
|
-----------------------------------------------------------------
|
||||||
|
|
||||||
|
Copy ``u-boot-rockchip.bin`` and ``u-boot-rockchip-spi.bin`` to the laptop.
|
||||||
|
|
||||||
|
eMMC
|
||||||
|
~~~~
|
||||||
|
|
||||||
|
.. prompt:: bash
|
||||||
|
|
||||||
|
dd if=u-boot-rockchip.bin of=/dev/mmcblk0 bs=512 seek=64
|
||||||
|
|
||||||
|
SPI Nor
|
||||||
|
~~~~~~~
|
||||||
|
|
||||||
|
.. prompt:: bash
|
||||||
|
|
||||||
|
dd if=u-boot-rockchip-spi.bin of=/dev/mtdblock0
|
||||||
|
|
||||||
|
``upgrade_tool`` allows to flash the on-board SPI Nor via the USB TypeC interface
|
||||||
|
with help of the Rockchip loader binary.
|
||||||
|
|
||||||
|
To enter the USB flashing mode, connect the laptop and your HOST PC with a USB-C
|
||||||
|
cable, reset the laptop with ``Loader Key`` pressed.
|
||||||
|
On your PC, check with ``lsusb -d 2207:350b``).
|
||||||
|
|
||||||
|
To flash U-Boot on the SPI Nor with ``upgrade_tool``:
|
||||||
|
|
||||||
|
.. prompt:: bash
|
||||||
|
|
||||||
|
upgrade_tool db rk3588/MiniLoaderAll.bin
|
||||||
|
upgrade_tool ssd // Input 5 for SPINOR download mode
|
||||||
|
upgrade_tool wl 0 u-boot-rockchip-spi.bin
|
||||||
|
upgrade_tool rd
|
9
doc/board/coolpi/index.rst
Normal file
9
doc/board/coolpi/index.rst
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
.. SPDX-License-Identifier: GPL-2.0+
|
||||||
|
|
||||||
|
Cool Pi
|
||||||
|
=================
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
genbook_cm5_rk3588
|
|
@ -23,6 +23,7 @@ Board-specific doc
|
||||||
bsh/index
|
bsh/index
|
||||||
cloos/index
|
cloos/index
|
||||||
congatec/index
|
congatec/index
|
||||||
|
coolpi/index
|
||||||
coreboot/index
|
coreboot/index
|
||||||
emcraft/index
|
emcraft/index
|
||||||
emulation/index
|
emulation/index
|
||||||
|
|
|
@ -148,6 +148,7 @@ List of mainline supported Rockchip boards:
|
||||||
- Xunlong Orange Pi 5 Plus (orangepi-5-plus-rk3588)
|
- Xunlong Orange Pi 5 Plus (orangepi-5-plus-rk3588)
|
||||||
- Yanyi Tech CoolPi 4 Model B (coolpi-4b-rk3588s)
|
- Yanyi Tech CoolPi 4 Model B (coolpi-4b-rk3588s)
|
||||||
- Yanyi Tech CoolPi CM5 EVB (coolpi-cm5-evb-rk3588)
|
- Yanyi Tech CoolPi CM5 EVB (coolpi-cm5-evb-rk3588)
|
||||||
|
- Yanyi Tech CoolPi CM5 GenBook (coolpi-cm5-genbook-rk3588)
|
||||||
|
|
||||||
* rv1108
|
* rv1108
|
||||||
- Rockchip Evb-rv1108 (evb-rv1108)
|
- Rockchip Evb-rv1108 (evb-rv1108)
|
||||||
|
|
19
include/configs/genbook-cm5-rk3588.h
Normal file
19
include/configs/genbook-cm5-rk3588.h
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
||||||
|
|
||||||
|
#ifndef __GENBOOK_CM5_RK3588_H
|
||||||
|
#define __GENBOOK_CM5_RK3588_H
|
||||||
|
|
||||||
|
#define ROCKCHIP_DEVICE_SETTINGS \
|
||||||
|
"stdout=serial,vidconsole\0" \
|
||||||
|
"stderr=serial,vidconsole\0"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* As a laptop, there is no sdmmc, and we want to
|
||||||
|
* set usb the highest boot priority for third-part
|
||||||
|
* os installation.
|
||||||
|
*/
|
||||||
|
#define BOOT_TARGETS "usb mmc0"
|
||||||
|
|
||||||
|
#include <configs/rk3588_common.h>
|
||||||
|
|
||||||
|
#endif /* __GENBOOK_CM5_RK3588_H */
|
Loading…
Add table
Reference in a new issue