* Add NVMe and XHCI USB driver fix for Raspberry Pi Add patch which fixes NVMe read reliability and allows to compile the XHCI USB driver (for Compute Module 4). * Enable Broadcom XHCI driver for Compute Module 4 The BCM2711 has two USB 2.0 IPs: A Broadcom XHCI USB 2.0 controller and a Synopsys DWC2 USB 2.0 Host/Device controller. When USB boot is used the former is active. Make sure U-Boot has the driver built-in for that IP.
33 lines
1.0 KiB
Diff
33 lines
1.0 KiB
Diff
From 6fc60c237cedf06cb5a1db087e2408a528870e3f Mon Sep 17 00:00:00 2001
|
|
Message-Id: <6fc60c237cedf06cb5a1db087e2408a528870e3f.1633447374.git.stefan@agner.ch>
|
|
In-Reply-To: <d7ec084799b394cc02395829dc97019c8834e944.1633447374.git.stefan@agner.ch>
|
|
References: <d7ec084799b394cc02395829dc97019c8834e944.1633447374.git.stefan@agner.ch>
|
|
From: Stefan Agner <stefan@agner.ch>
|
|
Date: Tue, 5 Oct 2021 17:07:22 +0200
|
|
Subject: [PATCH 9/9] drivers: usb: host: Include header file needed for
|
|
dev_err
|
|
|
|
dev_err seems to be moved to different header file. Include
|
|
dm/device_compat.h file to compile properly.
|
|
|
|
Signed-off-by: Stefan Agner <stefan@agner.ch>
|
|
---
|
|
drivers/usb/host/xhci-brcm.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/drivers/usb/host/xhci-brcm.c b/drivers/usb/host/xhci-brcm.c
|
|
index 27c4bbfcba..ee3b55242e 100644
|
|
--- a/drivers/usb/host/xhci-brcm.c
|
|
+++ b/drivers/usb/host/xhci-brcm.c
|
|
@@ -5,6 +5,7 @@
|
|
|
|
#include <common.h>
|
|
#include <dm.h>
|
|
+#include <dm/device_compat.h>
|
|
#include <fdtdec.h>
|
|
#include <usb.h>
|
|
#include <asm/io.h>
|
|
--
|
|
2.33.0
|
|
|