63e2807916
- switch sources to official repo https://source.denx.de/u-boot - use tag v2021.07 - extract patches from pine64-org - enable DMA transfers from eMMC and mSD (u-boot from Megi) [ci:skip-build] already built successfully in CI
47 lines
1.5 KiB
Diff
47 lines
1.5 KiB
Diff
From 29867a32db349667947c32f966faf22a0f2b0369 Mon Sep 17 00:00:00 2001
|
|
From: Samuel Holland <samuel@sholland.org>
|
|
Date: Sat, 30 May 2020 03:39:45 -0500
|
|
Subject: [PATCH 14/29] configs: Enable USB3 on Allwinner H6 boards
|
|
|
|
Pine H64 and Orange Pi 3 both provide a USB3 type A port.
|
|
Enable it in U-Boot.
|
|
|
|
Signed-off-by: Samuel Holland <samuel@sholland.org>
|
|
---
|
|
configs/orangepi_3_defconfig | 5 +++++
|
|
configs/pine_h64_defconfig | 5 +++++
|
|
2 files changed, 10 insertions(+)
|
|
|
|
diff --git a/configs/orangepi_3_defconfig b/configs/orangepi_3_defconfig
|
|
index 82b9815205..eb25bd9f50 100644
|
|
--- a/configs/orangepi_3_defconfig
|
|
+++ b/configs/orangepi_3_defconfig
|
|
@@ -8,5 +8,10 @@ CONFIG_MMC_SUNXI_SLOT_EXTRA=2
|
|
CONFIG_BLUETOOTH_DT_DEVICE_FIXUP="brcm,bcm4345c5"
|
|
CONFIG_DEFAULT_DEVICE_TREE="sun50i-h6-orangepi-3"
|
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
|
+CONFIG_PHY_SUN50I_USB3=y
|
|
+CONFIG_USB_XHCI_HCD=y
|
|
+CONFIG_USB_XHCI_DWC3=y
|
|
CONFIG_USB_EHCI_HCD=y
|
|
CONFIG_USB_OHCI_HCD=y
|
|
+CONFIG_USB_DWC3=y
|
|
+# CONFIG_USB_DWC3_GADGET is not set
|
|
diff --git a/configs/pine_h64_defconfig b/configs/pine_h64_defconfig
|
|
index 2fa66f3834..0095fb222e 100644
|
|
--- a/configs/pine_h64_defconfig
|
|
+++ b/configs/pine_h64_defconfig
|
|
@@ -12,5 +12,10 @@ CONFIG_SPL_SPI_SUNXI=y
|
|
CONFIG_DEFAULT_DEVICE_TREE="sun50i-h6-pine-h64"
|
|
# CONFIG_SYS_MALLOC_CLEAR_ON_INIT is not set
|
|
CONFIG_SUN8I_EMAC=y
|
|
+CONFIG_PHY_SUN50I_USB3=y
|
|
+CONFIG_USB_XHCI_HCD=y
|
|
+CONFIG_USB_XHCI_DWC3=y
|
|
CONFIG_USB_EHCI_HCD=y
|
|
CONFIG_USB_OHCI_HCD=y
|
|
+CONFIG_USB_DWC3=y
|
|
+# CONFIG_USB_DWC3_GADGET is not set
|
|
--
|
|
2.31.1
|
|
|