This file contains hidden or 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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/arm64 6.15.0-rc6 Kernel Configuration | |
# | |
CONFIG_CC_VERSION_TEXT="aarch64-unknown-linux-gnu-gcc (Gentoo Hardened 14.2.1_p20250301 p8) 14.2.1 20250301" | |
CONFIG_CC_IS_GCC=y | |
CONFIG_GCC_VERSION=140201 | |
CONFIG_CLANG_VERSION=0 | |
CONFIG_AS_IS_GNU=y | |
CONFIG_AS_VERSION=24400 |
This file contains hidden or 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
diff --git a/drivers/firmware/raspberrypi.c b/drivers/firmware/raspberrypi.c | |
index 7ecde6921a0a..9ca5c2cd5408 100644 | |
--- a/drivers/firmware/raspberrypi.c | |
+++ b/drivers/firmware/raspberrypi.c | |
@@ -58,7 +58,7 @@ rpi_firmware_transaction(struct rpi_firmware *fw, u32 chan, u32 data) | |
reinit_completion(&fw->c); | |
ret = mbox_send_message(fw->chan, &message); | |
if (ret >= 0) { | |
- if (wait_for_completion_timeout(&fw->c, HZ)) { | |
+ if (wait_for_completion_timeout(&fw->c, 5 * HZ)) { |
This file contains hidden or 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
From cd7885dcfcae16cf8208cfe375c9901ba44586a5 Mon Sep 17 00:00:00 2001 | |
From: Stefan Wahren <[email protected]> | |
Date: Sun, 27 Apr 2025 11:22:01 +0200 | |
Subject: [PATCH] usb: dwc2: Add counter to debugfs | |
Signed-off-by: Stefan Wahren <[email protected]> | |
--- | |
drivers/usb/dwc2/core.h | 24 +++++++++++++++++++++ | |
drivers/usb/dwc2/core_intr.c | 42 +++++++++++++++++++++++++++++------- | |
drivers/usb/dwc2/debugfs.c | 39 +++++++++++++++++++++++++++++++++ |
This file contains hidden or 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
--- regdump.clk_gtng 2024-10-10 17:53:18.000000000 +0200 | |
+++ regdump.no_clk_gtng 2024-10-10 17:49:50.000000000 +0200 | |
@@ -5,7 +5,7 @@ | |
GRSTCTL = 0x80000000 | |
GINTSTS = 0x04000029 | |
GINTMSK = 0xf3000806 | |
-GRXSTSR = 0xd741e004 | |
+GRXSTSR = 0xd741f004 | |
GRXFSIZ = 0x00000306 | |
GNPTXFSIZ = 0x01000306 |
This file contains hidden or 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
From 5d570120d9e78f87a74b8fc94310911dc6c65a25 Mon Sep 17 00:00:00 2001 | |
From: Stefan Wahren <[email protected]> | |
Date: Sun, 20 Oct 2024 22:01:18 +0200 | |
Subject: [PATCH] usb: add quirk for Microchip USB 2.0 hub | |
The commit d483f034f032 ("usb: dwc2: Skip clock gating on Broadcom | |
SoCs") revealed an issue on Raspberry Pi 3 B Plus. In case there is | |
nothing connected to the board via USB during boot, the onboard | |
Ethernet Microchip LAN7800 doesn't get enumerated. |
This file contains hidden or 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
From 5b1e5b66ec4f1e53d0abe6ca44e6f79499bfd855 Mon Sep 17 00:00:00 2001 | |
From: Stefan Wahren <[email protected]> | |
Date: Sun, 8 Sep 2024 19:08:30 +0200 | |
Subject: [PATCH] HACK: firmware: raspberrypi: Prevent suspend to idle | |
This ugly hack prevents suspend to idle on all Raspberry Pi | |
boards. This might be a temporary solutions for distributions | |
which needs to enable suspend to idle in general, but prevent | |
it for the Raspberry Pi which doesn't support it yet. |
This file contains hidden or 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
From 32ab471ccc5d2219e7fb8dac05f807dd832ff47b Mon Sep 17 00:00:00 2001 | |
From: Stefan Wahren <[email protected]> | |
Date: Mon, 21 Jun 2021 12:30:30 +0200 | |
Subject: [PATCH] net: mdio: Provide an useful error when of_phy_connect fails | |
Signed-off-by: Stefan Wahren <[email protected]> | |
--- | |
drivers/net/mdio/of_mdio.c | 8 +++++++- | |
1 file changed, 7 insertions(+), 1 deletion(-) |
This file contains hidden or 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
From d6daaa717685d7ce11d271ddb3a7ba3ddd5c03d3 Mon Sep 17 00:00:00 2001 | |
From: Stefan Wahren <[email protected]> | |
Date: Sun, 6 Dec 2020 21:57:21 +0100 | |
Subject: [PATCH] staging: bcm2835-camera: add more scene modes | |
The MMAL interfaces support a lot of exposure modes, so add the relevant | |
scene modes. | |
Signed-off-by: Stefan Wahren <[email protected]> | |
--- |
This file contains hidden or 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
diff --git a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts | |
index 21b20e3..8047c22 100644 | |
--- a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts | |
+++ b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts | |
@@ -174,6 +174,7 @@ | |
&emmc2 { | |
vqmmc-supply = <&sd_io_1v8_reg>; | |
broken-cd; | |
+ mmc-ddr-3_3v; | |
status = "okay"; |
This file contains hidden or 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
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index c47a94c..9230a64 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -95,8 +95,8 @@ set(PACKAGE_VERSION "${PROJECT_VERSION}") | |
set(VERSION "${PROJECT_VERSION}") | |
configure_file(${CMAKE_CURRENT_LIST_DIR}/mbus/config.h.in ${CMAKE_CURRENT_LIST_DIR}/config.h @ONLY) | |
-add_library( | |
- ${PROJECT_NAME} |
NewerOlder