mirror of
https://github.com/samueldr/wip-pinebook-pro.git
synced 2024-11-23 11:29:43 +01:00
u-boot: whatever -> v2020.07
+ forward port the patches
This commit is contained in:
parent
6e60bd2f8a
commit
4669b71789
10 changed files with 103 additions and 215 deletions
|
@ -1,25 +0,0 @@
|
||||||
From a737fd023f4f98d7789e9aafbe938acb78e4c191 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Samuel Dionne-Riel <samuel@dionne-riel.com>
|
|
||||||
Date: Mon, 6 Jan 2020 20:16:27 -0500
|
|
||||||
Subject: [PATCH] HACK: Add changing LEDs signal at boot on pinebook pro
|
|
||||||
|
|
||||||
---
|
|
||||||
include/configs/pinebook_pro_rk3399.h | 2 ++
|
|
||||||
1 file changed, 2 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/include/configs/pinebook_pro_rk3399.h b/include/configs/pinebook_pro_rk3399.h
|
|
||||||
index f383becbf8..749713c025 100644
|
|
||||||
--- a/include/configs/pinebook_pro_rk3399.h
|
|
||||||
+++ b/include/configs/pinebook_pro_rk3399.h
|
|
||||||
@@ -9,6 +9,8 @@
|
|
||||||
#define __PINEBOOKPRO_RK3399_H
|
|
||||||
|
|
||||||
#define ROCKCHIP_DEVICE_SETTINGS \
|
|
||||||
+ "beep_boop=led work on; led standby on; sleep 0.1; led work off; sleep 0.1; led work on; sleep 0.1; led standby off; sleep 0.1; led standby on\0" \
|
|
||||||
+ "bootcmd=run beep_boop; run distro_bootcmd\0" \
|
|
||||||
"stdin=serial,usbkbd\0" \
|
|
||||||
"stdout=serial,vidconsole\0" \
|
|
||||||
"stderr=serial,vidconsole\0"
|
|
||||||
--
|
|
||||||
2.23.0
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
From 1a01021c9361c4e017cb5b032300f5555c393710 Mon Sep 17 00:00:00 2001
|
From f62ba28ac93ebc759d9774cbffe7ce6ae22a51c0 Mon Sep 17 00:00:00 2001
|
||||||
From: dhivael <dhivael.git@eno.space>
|
From: dhivael <dhivael.git@eno.space>
|
||||||
Date: Sat, 11 Jan 2020 15:04:46 +0100
|
Date: Sat, 11 Jan 2020 15:04:46 +0100
|
||||||
Subject: [PATCH 3/6] rk3399: light pinebook power and standby leds during
|
Subject: [PATCH 1/5] rk3399: light pinebook power and standby leds during
|
||||||
early boot
|
early boot
|
||||||
|
|
||||||
this is a hack, but it works for now.
|
this is a hack, but it works for now.
|
||||||
|
@ -10,19 +10,19 @@ this is a hack, but it works for now.
|
||||||
1 file changed, 11 insertions(+), 1 deletion(-)
|
1 file changed, 11 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/arch/arm/mach-rockchip/rk3399/rk3399.c b/arch/arm/mach-rockchip/rk3399/rk3399.c
|
diff --git a/arch/arm/mach-rockchip/rk3399/rk3399.c b/arch/arm/mach-rockchip/rk3399/rk3399.c
|
||||||
index 863024d0710..cf37129d557 100644
|
index 4fda93b1527..e24b39486d0 100644
|
||||||
--- a/arch/arm/mach-rockchip/rk3399/rk3399.c
|
--- a/arch/arm/mach-rockchip/rk3399/rk3399.c
|
||||||
+++ b/arch/arm/mach-rockchip/rk3399/rk3399.c
|
+++ b/arch/arm/mach-rockchip/rk3399/rk3399.c
|
||||||
@@ -15,6 +15,8 @@
|
@@ -19,6 +19,8 @@
|
||||||
#include <asm/arch-rockchip/grf_rk3399.h>
|
|
||||||
#include <asm/arch-rockchip/hardware.h>
|
#include <asm/arch-rockchip/hardware.h>
|
||||||
|
#include <linux/bitops.h>
|
||||||
#include <power/regulator.h>
|
#include <power/regulator.h>
|
||||||
+#include <dt-bindings/gpio/gpio.h>
|
+#include <dt-bindings/gpio/gpio.h>
|
||||||
+#include <dt-bindings/pinctrl/rockchip.h>
|
+#include <dt-bindings/pinctrl/rockchip.h>
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
@@ -115,8 +117,8 @@ void board_debug_uart_init(void)
|
@@ -119,8 +121,8 @@ void board_debug_uart_init(void)
|
||||||
struct rk3399_grf_regs * const grf = (void *)GRF_BASE;
|
struct rk3399_grf_regs * const grf = (void *)GRF_BASE;
|
||||||
#ifdef CONFIG_TARGET_CHROMEBOOK_BOB
|
#ifdef CONFIG_TARGET_CHROMEBOOK_BOB
|
||||||
struct rk3399_pmugrf_regs * const pmugrf = (void *)PMUGRF_BASE;
|
struct rk3399_pmugrf_regs * const pmugrf = (void *)PMUGRF_BASE;
|
||||||
|
@ -32,7 +32,7 @@ index 863024d0710..cf37129d557 100644
|
||||||
|
|
||||||
#if defined(CONFIG_DEBUG_UART_BASE) && (CONFIG_DEBUG_UART_BASE == 0xff180000)
|
#if defined(CONFIG_DEBUG_UART_BASE) && (CONFIG_DEBUG_UART_BASE == 0xff180000)
|
||||||
/* Enable early UART0 on the RK3399 */
|
/* Enable early UART0 on the RK3399 */
|
||||||
@@ -149,6 +151,14 @@ void board_debug_uart_init(void)
|
@@ -153,6 +155,14 @@ void board_debug_uart_init(void)
|
||||||
spl_gpio_set_pull(&pmugrf->gpio0_p, GPIO(BANK_B, 4), GPIO_PULL_NORMAL);
|
spl_gpio_set_pull(&pmugrf->gpio0_p, GPIO(BANK_B, 4), GPIO_PULL_NORMAL);
|
||||||
#endif /* CONFIG_TARGET_CHROMEBOOK_BOB */
|
#endif /* CONFIG_TARGET_CHROMEBOOK_BOB */
|
||||||
|
|
||||||
|
@ -48,5 +48,5 @@ index 863024d0710..cf37129d557 100644
|
||||||
rk_clrsetreg(&grf->gpio4c_iomux,
|
rk_clrsetreg(&grf->gpio4c_iomux,
|
||||||
GRF_GPIO4C3_SEL_MASK,
|
GRF_GPIO4C3_SEL_MASK,
|
||||||
--
|
--
|
||||||
2.23.1
|
2.25.3
|
||||||
|
|
|
@ -1,46 +0,0 @@
|
||||||
From 2778aa7cb70946c4729ed6ae13dea5bd1cc688dc Mon Sep 17 00:00:00 2001
|
|
||||||
From: dhivael <dhivael.git@eno.space>
|
|
||||||
Date: Sat, 11 Jan 2020 15:02:44 +0100
|
|
||||||
Subject: [PATCH 1/6] rk3399: pinebook: fix sdcard boot from emmc
|
|
||||||
|
|
||||||
booting from emmc does not set all DT properties required for the sd
|
|
||||||
slot to function properly. this is a copy of the linux DT configuration
|
|
||||||
for the slot now.
|
|
||||||
---
|
|
||||||
arch/arm/dts/rk3399-pinebook-pro.dts | 12 +++++++++++-
|
|
||||||
1 file changed, 11 insertions(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/arch/arm/dts/rk3399-pinebook-pro.dts b/arch/arm/dts/rk3399-pinebook-pro.dts
|
|
||||||
index 85ce0206d74..1234f715c1e 100644
|
|
||||||
--- a/arch/arm/dts/rk3399-pinebook-pro.dts
|
|
||||||
+++ b/arch/arm/dts/rk3399-pinebook-pro.dts
|
|
||||||
@@ -65,6 +65,8 @@
|
|
||||||
clock-names = "ext_clock";
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&wifi_enable_h>;
|
|
||||||
+ power-off-delay-us = <500000>;
|
|
||||||
+ post-power-on-delay-ms = <100>;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* On the module itself this is one of these (depending
|
|
||||||
@@ -503,8 +505,16 @@
|
|
||||||
|
|
||||||
&sdmmc {
|
|
||||||
bus-width = <4>;
|
|
||||||
- status = "okay";
|
|
||||||
+ cap-mmc-highspeed;
|
|
||||||
+ cap-sd-highspeed;
|
|
||||||
+ cd-gpios = <&gpio0 RK_PA7 GPIO_ACTIVE_LOW>;
|
|
||||||
+ disable-wp;
|
|
||||||
+ sd-uhs-sdr104;
|
|
||||||
max-frequency = <20000000>;
|
|
||||||
+ vqmmc-supply = <&vcc_sdio>;
|
|
||||||
+ pinctrl-names = "default";
|
|
||||||
+ pinctrl-0 = <&sdmmc_clk &sdmmc_cmd &sdmmc_bus4>;
|
|
||||||
+ status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sdhci {
|
|
||||||
--
|
|
||||||
2.23.1
|
|
||||||
|
|
25
u-boot/0002-reduce-pinebook_pro-bootdelay-to-1.patch
Normal file
25
u-boot/0002-reduce-pinebook_pro-bootdelay-to-1.patch
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
From f44bd5bb5fefea8404489c3e14f8537300fa3fb6 Mon Sep 17 00:00:00 2001
|
||||||
|
From: dhivael <dhivael.git@eno.space>
|
||||||
|
Date: Sat, 11 Jan 2020 15:12:34 +0100
|
||||||
|
Subject: [PATCH 2/5] reduce pinebook_pro bootdelay to 1
|
||||||
|
|
||||||
|
---
|
||||||
|
configs/pinebook-pro-rk3399_defconfig | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/configs/pinebook-pro-rk3399_defconfig b/configs/pinebook-pro-rk3399_defconfig
|
||||||
|
index 18b2d74253b..297cc5f17a5 100644
|
||||||
|
--- a/configs/pinebook-pro-rk3399_defconfig
|
||||||
|
+++ b/configs/pinebook-pro-rk3399_defconfig
|
||||||
|
@@ -10,7 +10,7 @@ CONFIG_DEBUG_UART_CLOCK=24000000
|
||||||
|
CONFIG_SPL_SPI_FLASH_SUPPORT=y
|
||||||
|
CONFIG_SPL_SPI_SUPPORT=y
|
||||||
|
CONFIG_DEBUG_UART=y
|
||||||
|
-CONFIG_BOOTDELAY=3
|
||||||
|
+CONFIG_BOOTDELAY=1
|
||||||
|
CONFIG_DEFAULT_FDT_FILE="rockchip/rk3399-pinebook-pro.dtb"
|
||||||
|
CONFIG_MISC_INIT_R=y
|
||||||
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
||||||
|
--
|
||||||
|
2.25.3
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
From 30c7d9054de2b43dfac742b968586707964f4b96 Mon Sep 17 00:00:00 2001
|
From dd52b971005271d615e63f4f946a0ee9331925bc Mon Sep 17 00:00:00 2001
|
||||||
From: dhivael <dhivael.git@eno.space>
|
From: dhivael <dhivael.git@eno.space>
|
||||||
Date: Sat, 11 Jan 2020 15:04:04 +0100
|
Date: Sat, 11 Jan 2020 15:04:04 +0100
|
||||||
Subject: [PATCH 2/6] rockchip: move mmc1 before mmc0 in default boot order
|
Subject: [PATCH 3/5] rockchip: move mmc1 before mmc0 in default boot order
|
||||||
|
|
||||||
on pinebooks mmc1 is the external card, which should take boot priority
|
on pinebooks mmc1 is the external card, which should take boot priority
|
||||||
over the internal emmc even if the emmc is bootable.
|
over the internal emmc even if the emmc is bootable.
|
||||||
|
@ -10,10 +10,10 @@ over the internal emmc even if the emmc is bootable.
|
||||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h
|
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h
|
||||||
index 68e1105a4b1..906c22ed0fb 100644
|
index 0b9e24d1db4..6610f95b7b9 100644
|
||||||
--- a/include/configs/rockchip-common.h
|
--- a/include/configs/rockchip-common.h
|
||||||
+++ b/include/configs/rockchip-common.h
|
+++ b/include/configs/rockchip-common.h
|
||||||
@@ -14,8 +14,8 @@
|
@@ -17,8 +17,8 @@
|
||||||
/* First try to boot from SD (index 0), then eMMC (index 1) */
|
/* First try to boot from SD (index 0), then eMMC (index 1) */
|
||||||
#if CONFIG_IS_ENABLED(CMD_MMC)
|
#if CONFIG_IS_ENABLED(CMD_MMC)
|
||||||
#define BOOT_TARGET_MMC(func) \
|
#define BOOT_TARGET_MMC(func) \
|
||||||
|
@ -25,5 +25,5 @@ index 68e1105a4b1..906c22ed0fb 100644
|
||||||
#define BOOT_TARGET_MMC(func)
|
#define BOOT_TARGET_MMC(func)
|
||||||
#endif
|
#endif
|
||||||
--
|
--
|
||||||
2.23.1
|
2.25.3
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
From b3e8d27cca05508cddeda534956f13e88f2428cd Mon Sep 17 00:00:00 2001
|
|
||||||
From: dhivael <dhivael.git@eno.space>
|
|
||||||
Date: Sat, 11 Jan 2020 15:12:34 +0100
|
|
||||||
Subject: [PATCH 4/6] reduce pinebook_pro bootdelay to 1
|
|
||||||
|
|
||||||
---
|
|
||||||
configs/pinebook_pro-rk3399_defconfig | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/configs/pinebook_pro-rk3399_defconfig b/configs/pinebook_pro-rk3399_defconfig
|
|
||||||
index 28577256e70..a11a10243c5 100644
|
|
||||||
--- a/configs/pinebook_pro-rk3399_defconfig
|
|
||||||
+++ b/configs/pinebook_pro-rk3399_defconfig
|
|
||||||
@@ -36,7 +36,7 @@ CONFIG_DEFAULT_DEVICE_TREE="rk3399-pinebook-pro"
|
|
||||||
CONFIG_OF_SPL_REMOVE_PROPS="pinctrl-0 pinctrl-names clock-names interrupt-parent assigned-clocks assigned-clock-rates assigned-clock-parents"
|
|
||||||
CONFIG_ROCKCHIP_GPIO=y
|
|
||||||
CONFIG_SYS_I2C_ROCKCHIP=y
|
|
||||||
-CONFIG_BOOTDELAY=3
|
|
||||||
+CONFIG_BOOTDELAY=1
|
|
||||||
CONFIG_LED=y
|
|
||||||
CONFIG_LED_GPIO=y
|
|
||||||
CONFIG_MISC=y
|
|
||||||
--
|
|
||||||
2.23.1
|
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
From 908d441fefc2203affe1bb0d79f75f611888fc1f Mon Sep 17 00:00:00 2001
|
From 4b11a4444983c997addc5c581da1ec287f27fa47 Mon Sep 17 00:00:00 2001
|
||||||
From: dhivael <dhivael.git@eno.space>
|
From: dhivael <dhivael.git@eno.space>
|
||||||
Date: Sat, 11 Jan 2020 15:04:04 +0100
|
Date: Sat, 11 Jan 2020 15:04:04 +0100
|
||||||
Subject: [PATCH 6/6] rockchip: move usb0 after mmc1 in default boot order
|
Subject: [PATCH 4/5] rockchip: move usb0 after mmc1 in default boot order
|
||||||
|
|
||||||
now that we support booting from USB we should prefer USB boot over eMMC
|
now that we support booting from USB we should prefer USB boot over eMMC
|
||||||
boot. we still try to boot from SD cards first.
|
boot. we still try to boot from SD cards first.
|
||||||
---
|
---
|
||||||
include/configs/rockchip-common.h | 10 +++++-----
|
include/configs/rockchip-common.h | 15 ++++++++-------
|
||||||
1 file changed, 5 insertions(+), 5 deletions(-)
|
1 file changed, 8 insertions(+), 7 deletions(-)
|
||||||
|
|
||||||
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h
|
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h
|
||||||
index 906c22ed0fb..90e06e120f8 100644
|
index 6610f95b7b9..d743ebe83e6 100644
|
||||||
--- a/include/configs/rockchip-common.h
|
--- a/include/configs/rockchip-common.h
|
||||||
+++ b/include/configs/rockchip-common.h
|
+++ b/include/configs/rockchip-common.h
|
||||||
@@ -13,11 +13,10 @@
|
@@ -16,11 +16,10 @@
|
||||||
|
|
||||||
/* First try to boot from SD (index 0), then eMMC (index 1) */
|
/* First try to boot from SD (index 0), then eMMC (index 1) */
|
||||||
#if CONFIG_IS_ENABLED(CMD_MMC)
|
#if CONFIG_IS_ENABLED(CMD_MMC)
|
||||||
|
@ -27,10 +27,21 @@ index 906c22ed0fb..90e06e120f8 100644
|
||||||
+ #define BOOT_TARGET_MMC(func, idx)
|
+ #define BOOT_TARGET_MMC(func, idx)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if CONFIG_IS_ENABLED(CMD_USB)
|
#if CONFIG_IS_ENABLED(CMD_NVME)
|
||||||
@@ -39,8 +38,9 @@
|
@@ -55,16 +54,18 @@
|
||||||
#endif
|
|
||||||
|
|
||||||
|
#ifdef CONFIG_ROCKCHIP_RK3399
|
||||||
|
#define BOOT_TARGET_DEVICES(func) \
|
||||||
|
- BOOT_TARGET_MMC(func) \
|
||||||
|
- BOOT_TARGET_NVME(func) \
|
||||||
|
+ BOOT_TARGET_MMC(func, 1) \
|
||||||
|
BOOT_TARGET_USB(func) \
|
||||||
|
+ BOOT_TARGET_NVME(func) \
|
||||||
|
+ BOOT_TARGET_MMC(func, 0) \
|
||||||
|
BOOT_TARGET_PXE(func) \
|
||||||
|
BOOT_TARGET_DHCP(func) \
|
||||||
|
BOOT_TARGET_SF(func)
|
||||||
|
#else
|
||||||
#define BOOT_TARGET_DEVICES(func) \
|
#define BOOT_TARGET_DEVICES(func) \
|
||||||
- BOOT_TARGET_MMC(func) \
|
- BOOT_TARGET_MMC(func) \
|
||||||
+ BOOT_TARGET_MMC(func, 1) \
|
+ BOOT_TARGET_MMC(func, 1) \
|
||||||
|
@ -38,7 +49,7 @@ index 906c22ed0fb..90e06e120f8 100644
|
||||||
+ BOOT_TARGET_MMC(func, 0) \
|
+ BOOT_TARGET_MMC(func, 0) \
|
||||||
BOOT_TARGET_PXE(func) \
|
BOOT_TARGET_PXE(func) \
|
||||||
BOOT_TARGET_DHCP(func)
|
BOOT_TARGET_DHCP(func)
|
||||||
|
#endif
|
||||||
--
|
--
|
||||||
2.23.1
|
2.25.3
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
From 70ea0ddc9cea88ef06a685a09b2d407db60bceae Mon Sep 17 00:00:00 2001
|
||||||
|
From: Samuel Dionne-Riel <samuel@dionne-riel.com>
|
||||||
|
Date: Mon, 6 Jan 2020 20:16:27 -0500
|
||||||
|
Subject: [PATCH 5/5] HACK: Add changing LEDs signal at boot on pinebook pro
|
||||||
|
|
||||||
|
---
|
||||||
|
include/configs/pinebook-pro-rk3399.h | 2 ++
|
||||||
|
1 file changed, 2 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/include/configs/pinebook-pro-rk3399.h b/include/configs/pinebook-pro-rk3399.h
|
||||||
|
index d478b19917d..3c7ca9e7600 100644
|
||||||
|
--- a/include/configs/pinebook-pro-rk3399.h
|
||||||
|
+++ b/include/configs/pinebook-pro-rk3399.h
|
||||||
|
@@ -8,6 +8,8 @@
|
||||||
|
#define __PINEBOOK_PRO_RK3399_H
|
||||||
|
|
||||||
|
#define ROCKCHIP_DEVICE_SETTINGS \
|
||||||
|
+ "beep_boop=led green:power on; led red:standby on; sleep 0.1; led green:power off; sleep 0.1; led green:power on; sleep 0.1; led red:standby off; sleep 0.1; led red:standby on\0" \
|
||||||
|
+ "bootcmd=run beep_boop; run distro_bootcmd\0" \
|
||||||
|
"stdin=serial,usbkbd\0" \
|
||||||
|
"stdout=serial,vidconsole\0" \
|
||||||
|
"stderr=serial,vidconsole\0"
|
||||||
|
--
|
||||||
|
2.25.3
|
||||||
|
|
|
@ -1,76 +0,0 @@
|
||||||
From fd41e9330cf1635fa3bf4dabdfac42ee1bba963c Mon Sep 17 00:00:00 2001
|
|
||||||
From: Emmanuel Vadot <manu@freebsd.org>
|
|
||||||
Date: Tue, 31 Dec 2019 22:13:03 +0100
|
|
||||||
Subject: [PATCH 5/6] PBP: Add regulator needed for usb
|
|
||||||
|
|
||||||
The schematics indicate that the vcc3v3_s0 voltage is controlled by
|
|
||||||
the LDO2 of the RK808 but this isn't true.
|
|
||||||
It's controller by a gpio (named lcdvcc_en).
|
|
||||||
Remove the name from the RK808 regulator and add a regulator-fixed
|
|
||||||
controller by this gpio.
|
|
||||||
|
|
||||||
Signed-off-by: Emmanuel Vadot <manu@freebsd.org>
|
|
||||||
---
|
|
||||||
arch/arm/dts/rk3399-pinebook-pro.dts | 21 +++++++++++++++++++--
|
|
||||||
1 file changed, 19 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/arch/arm/dts/rk3399-pinebook-pro.dts b/arch/arm/dts/rk3399-pinebook-pro.dts
|
|
||||||
index 1234f715c1e..f334f9e8ef2 100644
|
|
||||||
--- a/arch/arm/dts/rk3399-pinebook-pro.dts
|
|
||||||
+++ b/arch/arm/dts/rk3399-pinebook-pro.dts
|
|
||||||
@@ -125,6 +125,16 @@
|
|
||||||
regulator-always-on;
|
|
||||||
};
|
|
||||||
|
|
||||||
+ vcc3v3_s0: vcc3v3-s0-regulator {
|
|
||||||
+ compatible = "regulator-fixed";
|
|
||||||
+ enable-active-high;
|
|
||||||
+ gpio = <&gpio1 RK_PC6 GPIO_ACTIVE_HIGH>;
|
|
||||||
+ pinctrl-names = "default";
|
|
||||||
+ pinctrl-0 = <&lcdvcc_en>;
|
|
||||||
+ regulator-name = "vcc3v3_s0";
|
|
||||||
+ regulator-always-on;
|
|
||||||
+ };
|
|
||||||
+
|
|
||||||
vcc_sys: vcc-sys {
|
|
||||||
compatible = "regulator-fixed";
|
|
||||||
regulator-name = "vcc_sys";
|
|
||||||
@@ -347,8 +357,8 @@
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
- vcc3v3_s0: SWITCH_REG2 {
|
|
||||||
- regulator-name = "vcc3v3_s0";
|
|
||||||
+ unused: SWITCH_REG2 {
|
|
||||||
+ regulator-name = "SWITCH_REG2";
|
|
||||||
regulator-always-on;
|
|
||||||
regulator-boot-on;
|
|
||||||
regulator-state-mem {
|
|
||||||
@@ -484,6 +494,11 @@
|
|
||||||
host_usb3_drv: host-usb3-drv {
|
|
||||||
rockchip,pins = <1 RK_PB5 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
||||||
};
|
|
||||||
+
|
|
||||||
+ /* Shared between LCD and usb */
|
|
||||||
+ lcdvcc_en: lcdvcc-en {
|
|
||||||
+ rockchip,pins = <1 RK_PC6 RK_FUNC_GPIO &pcfg_pull_none>;
|
|
||||||
+ };
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
@@ -581,10 +596,12 @@
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb_host1_ehci {
|
|
||||||
+ phy-supply = <&vcc3v3_s0>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb_host1_ohci {
|
|
||||||
+ phy-supply = <&vcc3v3_s0>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
--
|
|
||||||
2.23.1
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ let
|
||||||
});
|
});
|
||||||
in
|
in
|
||||||
(buildUBoot {
|
(buildUBoot {
|
||||||
defconfig = "pinebook_pro-rk3399_defconfig";
|
defconfig = "pinebook-pro-rk3399_defconfig";
|
||||||
extraMeta.platforms = ["aarch64-linux"];
|
extraMeta.platforms = ["aarch64-linux"];
|
||||||
BL31 = "${atf}/bl31.elf";
|
BL31 = "${atf}/bl31.elf";
|
||||||
filesToInstall = [
|
filesToInstall = [
|
||||||
|
@ -36,32 +36,31 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
extraPatches = [
|
extraPatches = [
|
||||||
(pw "1194523" "07l19km7vq4xrrc3llcwxwh6k1cx5lj5vmmzml1ji8abqphwfin6")
|
# Dhivael patchset
|
||||||
(pw "1194524" "071rval4r683d1wxh75nbf22qs554spq8rk0499z6zac0x8q1qvc")
|
# ----------------
|
||||||
(pw "1194525" "0biiwimjp25abxqazqbpxx2wh90zgy3k786h484x9wsdvnv4yjl6")
|
#
|
||||||
(pw "1203678" "0l3l88cc9xkxkraql82pfgpx6nqn4dj7cvfaagh5pzfwkxyw0n3p")
|
# Origin: https://git.eno.space/pbp-uboot.git/
|
||||||
|
# Forward ported to 2020.07
|
||||||
|
|
||||||
# Patches from this fork:
|
./0001-rk3399-light-pinebook-power-and-standby-leds-during-.patch
|
||||||
# https://git.eno.space/pbp-uboot.git
|
./0002-reduce-pinebook_pro-bootdelay-to-1.patch
|
||||||
./0001-rk3399-pinebook-fix-sdcard-boot-from-emmc.patch
|
|
||||||
./0003-rk3399-light-pinebook-power-and-standby-leds-during-.patch
|
|
||||||
./0004-reduce-pinebook_pro-bootdelay-to-1.patch
|
|
||||||
./0005-PBP-Add-regulator-needed-for-usb.patch
|
|
||||||
|
|
||||||
# My own patch
|
# samueldr's patchset
|
||||||
./0001-HACK-Add-changing-LEDs-signal-at-boot-on-pinebook-pr.patch
|
# -------------------
|
||||||
|
|
||||||
|
./0005-HACK-Add-changing-LEDs-signal-at-boot-on-pinebook-pr.patch
|
||||||
] ++ lib.optionals (externalFirst) [
|
] ++ lib.optionals (externalFirst) [
|
||||||
# Patches from this fork:
|
# Origin: https://git.eno.space/pbp-uboot.git/
|
||||||
# https://git.eno.space/pbp-uboot.git
|
# Forward ported to 2020.07
|
||||||
./0002-rockchip-move-mmc1-before-mmc0-in-default-boot-order.patch
|
./0003-rockchip-move-mmc1-before-mmc0-in-default-boot-order.patch
|
||||||
./0006-rockchip-move-usb0-after-mmc1-in-default-boot-order.patch
|
./0004-rockchip-move-usb0-after-mmc1-in-default-boot-order.patch
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
.overrideAttrs(oldAttrs: {
|
.overrideAttrs(oldAttrs: {
|
||||||
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [
|
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [
|
||||||
python
|
python
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = oldAttrs.postPatch + ''
|
postPatch = oldAttrs.postPatch + ''
|
||||||
patchShebangs arch/arm/mach-rockchip/
|
patchShebangs arch/arm/mach-rockchip/
|
||||||
'';
|
'';
|
||||||
|
@ -70,7 +69,7 @@ in
|
||||||
domain = "gitlab.denx.de";
|
domain = "gitlab.denx.de";
|
||||||
owner = "u-boot";
|
owner = "u-boot";
|
||||||
repo = "u-boot";
|
repo = "u-boot";
|
||||||
sha256 = "1fb8135gq8md2gr9sng1q2s1wj74xhy7by16dafzp4263b6vbwyv";
|
sha256 = "11154cxycw81dnmxfl10n2mgyass18jhjpwygqp7w1vjk9hgi4lw";
|
||||||
rev = "3ff1ff3ff76c15efe0451309af084ee6c096c583";
|
rev = "v2020.07";
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue