forked from u-boot/u-boot
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rockchip: add FriendlyElec NanoPi R6C
Signed-off-by: Marty Jones <[email protected]>
- Loading branch information
Showing
9 changed files
with
182 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT) | ||
/* | ||
* Copyright (c) 2023 | ||
*/ | ||
|
||
#include "rk3588-u-boot.dtsi" | ||
|
||
/ { | ||
aliases { | ||
mmc0 = &sdmmc; | ||
}; | ||
|
||
chosen { | ||
u-boot,spl-boot-order = &sdmmc, &sdhci; | ||
}; | ||
}; | ||
|
||
&sdmmc { | ||
bus-width = <4>; | ||
u-boot,dm-spl; | ||
status = "okay"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT) | ||
|
||
/dts-v1/; | ||
|
||
#include "rk3588.dtsi" | ||
|
||
/ { | ||
model = "FriendlyElec NanoPi R6C"; | ||
compatible = "friendlyelec,nanopi-r6c", "rockchip,rk3588"; | ||
|
||
aliases { | ||
mmc0 = &sdhci; | ||
mmc1 = &sdmmc; | ||
serial2 = &uart2; | ||
}; | ||
|
||
chosen { | ||
stdout-path = "serial2:1500000n8"; | ||
}; | ||
|
||
vcc5v0_sys: vcc5v0-sys-regulator { | ||
compatible = "regulator-fixed"; | ||
regulator-name = "vcc5v0_sys"; | ||
regulator-always-on; | ||
regulator-boot-on; | ||
regulator-min-microvolt = <5000000>; | ||
regulator-max-microvolt = <5000000>; | ||
}; | ||
}; | ||
|
||
&sdhci { | ||
bus-width = <8>; | ||
no-sdio; | ||
no-sd; | ||
non-removable; | ||
max-frequency = <200000000>; | ||
mmc-hs400-1_8v; | ||
mmc-hs400-enhanced-strobe; | ||
status = "okay"; | ||
}; | ||
|
||
&uart2 { | ||
pinctrl-0 = <&uart2m0_xfer>; | ||
status = "okay"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
if TARGET_NANOPI_R6C_RK3588 | ||
|
||
config SYS_BOARD | ||
default "nanopi-r6c-rk3588" | ||
|
||
config SYS_VENDOR | ||
default "friendlyelec" | ||
|
||
config SYS_CONFIG_NAME | ||
default "nanopi-r6c-rk3588" | ||
|
||
config BOARD_SPECIFIC_OPTIONS # dummy | ||
def_bool y | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# SPDX-License-Identifier: GPL-2.0+ | ||
# | ||
|
||
obj-y += nanopi-r6c-rk3588.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
/* | ||
* | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
CONFIG_ARM=y | ||
CONFIG_SKIP_LOWLEVEL_INIT=y | ||
CONFIG_COUNTER_FREQUENCY=24000000 | ||
CONFIG_ARCH_ROCKCHIP=y | ||
CONFIG_TEXT_BASE=0x00a00000 | ||
CONFIG_SPL_LIBCOMMON_SUPPORT=y | ||
CONFIG_SPL_LIBGENERIC_SUPPORT=y | ||
CONFIG_NR_DRAM_BANKS=2 | ||
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y | ||
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0xc00000 | ||
CONFIG_DEFAULT_DEVICE_TREE="rk3588-nanopi-r6c" | ||
CONFIG_DM_RESET=y | ||
CONFIG_ROCKCHIP_RK3588=y | ||
CONFIG_SPL_ROCKCHIP_BACK_TO_BROM=y | ||
CONFIG_SPL_ROCKCHIP_COMMON_BOARD=y | ||
CONFIG_SPL_MMC=y | ||
CONFIG_SPL_SERIAL=y | ||
CONFIG_SPL_STACK_R_ADDR=0x600000 | ||
CONFIG_TARGET_NANOPI_R6C_RK3588=y | ||
CONFIG_SPL_STACK=0x400000 | ||
CONFIG_DEBUG_UART_BASE=0xFEB50000 | ||
CONFIG_DEBUG_UART_CLOCK=24000000 | ||
CONFIG_SYS_LOAD_ADDR=0xc00800 | ||
CONFIG_DEBUG_UART=y | ||
CONFIG_FIT=y | ||
CONFIG_FIT_VERBOSE=y | ||
CONFIG_SPL_LOAD_FIT=y | ||
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3588-nanopi-r6c.dtb" | ||
# CONFIG_DISPLAY_CPUINFO is not set | ||
CONFIG_DISPLAY_BOARDINFO_LATE=y | ||
CONFIG_SPL_MAX_SIZE=0x20000 | ||
CONFIG_SPL_PAD_TO=0x7f8000 | ||
CONFIG_SPL_HAS_BSS_LINKER_SECTION=y | ||
CONFIG_SPL_BSS_START_ADDR=0x4000000 | ||
CONFIG_SPL_BSS_MAX_SIZE=0x4000 | ||
# CONFIG_SPL_RAW_IMAGE_SUPPORT is not set | ||
# CONFIG_SPL_SHARES_INIT_SP_ADDR is not set | ||
CONFIG_SPL_STACK_R=y | ||
CONFIG_SPL_ATF=y | ||
CONFIG_CMD_GPT=y | ||
CONFIG_CMD_MMC=y | ||
# CONFIG_CMD_SETEXPR is not set | ||
# CONFIG_SPL_DOS_PARTITION is not set | ||
CONFIG_SPL_OF_CONTROL=y | ||
CONFIG_OF_LIVE=y | ||
CONFIG_NET_RANDOM_ETHADDR=y | ||
CONFIG_SPL_REGMAP=y | ||
CONFIG_SPL_SYSCON=y | ||
CONFIG_SPL_CLK=y | ||
CONFIG_ROCKCHIP_GPIO=y | ||
CONFIG_SYS_I2C_ROCKCHIP=y | ||
CONFIG_MISC=y | ||
CONFIG_SUPPORT_EMMC_RPMB=y | ||
CONFIG_MMC_DW=y | ||
CONFIG_MMC_DW_ROCKCHIP=y | ||
CONFIG_MMC_SDHCI=y | ||
CONFIG_MMC_SDHCI_SDMA=y | ||
CONFIG_MMC_SDHCI_ROCKCHIP=y | ||
CONFIG_ETH_DESIGNWARE=y | ||
CONFIG_GMAC_ROCKCHIP=y | ||
CONFIG_REGULATOR_PWM=y | ||
CONFIG_PWM_ROCKCHIP=y | ||
CONFIG_SPL_RAM=y | ||
CONFIG_BAUDRATE=1500000 | ||
CONFIG_DEBUG_UART_SHIFT=2 | ||
CONFIG_DEBUG_UART_ANNOUNCE=y | ||
CONFIG_SYSRESET=y | ||
# CONFIG_BINMAN_FDT is not set | ||
CONFIG_ERRNO_STR=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* SPDX-License-Identifier: GPL-2.0+ */ | ||
/* | ||
* Copyright (c) 2023 | ||
*/ | ||
|
||
#ifndef __NANOPI_R6C_RK3588_H | ||
#define __NANOPI_R6C_RK3588_H | ||
|
||
#define ROCKCHIP_DEVICE_SETTINGS \ | ||
"stdout=serial,vidconsole\0" \ | ||
"stderr=serial,vidconsole\0" | ||
|
||
#include <configs/rk3588_common.h> | ||
|
||
#endif /* __NANOPI_R6C_RK3588_H */ |