* RaspberryPi: Update kernel 5.15.61 - 1.20220830 * Add Yellow to the Raspberry Pi kernel update script * Bump Yellow to kernel 5.15.61 - 1.20220830 Also drop the work around for the LED polarity as the new firmware has been fixed. * Explicitly select no kernel module compression Home Assistant OS uses a compressed rootfs already, no compression for kernel modules necessary. * Bump buildroot * buildroot d7e4c223e5...5468d36a26 (1): > package/rpi-firmware: bump version to 1.20220830
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
From 1acd279eca810707856e5038438f52d694a62170 Mon Sep 17 00:00:00 2001
|
|
Message-Id: <1acd279eca810707856e5038438f52d694a62170.1662565903.git.stefan@agner.ch>
|
|
In-Reply-To: <b28a8f5b591841f88f19cbf9850d713a602d912e.1662565903.git.stefan@agner.ch>
|
|
References: <b28a8f5b591841f88f19cbf9850d713a602d912e.1662565903.git.stefan@agner.ch>
|
|
From: Stefan Agner <stefan@agner.ch>
|
|
Date: Fri, 7 Jan 2022 17:10:00 +0100
|
|
Subject: [PATCH] ARM: dts: bcm2711: yellow: enable USB host mode by default
|
|
|
|
The DWC2 controller is disable by default. Enable it since Home
|
|
Assistant Yellow has a USB hub and USB ports connected to it.
|
|
|
|
Signed-off-by: Stefan Agner <stefan@agner.ch>
|
|
---
|
|
arch/arm/boot/dts/bcm2711-rpi-cm4-ha-yellow.dts | 9 +++++++++
|
|
1 file changed, 9 insertions(+)
|
|
|
|
diff --git a/arch/arm/boot/dts/bcm2711-rpi-cm4-ha-yellow.dts b/arch/arm/boot/dts/bcm2711-rpi-cm4-ha-yellow.dts
|
|
index f78428ea64f3..711a09441ad0 100644
|
|
--- a/arch/arm/boot/dts/bcm2711-rpi-cm4-ha-yellow.dts
|
|
+++ b/arch/arm/boot/dts/bcm2711-rpi-cm4-ha-yellow.dts
|
|
@@ -599,6 +599,15 @@ &sdhost {
|
|
status = "disabled";
|
|
};
|
|
|
|
+&usb {
|
|
+ compatible = "brcm,bcm2835-usb";
|
|
+ dr_mode = "host";
|
|
+ g-np-tx-fifo-size = <32>;
|
|
+ g-rx-fifo-size = <558>;
|
|
+ g-tx-fifo-size = <512 512 512 512 512 256 256>;
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
&phy1 {
|
|
led-modes = <0x00 0x08>; /* link/activity link */
|
|
};
|
|
--
|
|
2.37.3
|
|
|