Adds latest 6.6 patches from the Raspberry Pi repository. These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.6.y/ With the following command: git format-patch -N v6.6.83..HEAD (HEAD -> 08d4e8f52256bd422d8a1f876411603f627d0a82) Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
44 lines
1.3 KiB
Diff
44 lines
1.3 KiB
Diff
From 602be52637ecca0b247cf832c8a4ec345844d325 Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Tue, 7 Jan 2025 12:09:48 +0000
|
|
Subject: [PATCH] dts: bcm2712: PL011 UARTs are actually r1p5
|
|
|
|
The ARM PL011 UART instances in BCM2712 are r1p5 spec, which means they
|
|
have 32-entry FIFOs. The correct periphid value for this is 0x00341011.
|
|
Thanks to N Buchwitz for pointing this out.
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
arch/arm64/boot/dts/broadcom/bcm2712.dtsi | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
--- a/arch/arm64/boot/dts/broadcom/bcm2712.dtsi
|
|
+++ b/arch/arm64/boot/dts/broadcom/bcm2712.dtsi
|
|
@@ -190,7 +190,7 @@
|
|
clocks = <&clk_uart>,
|
|
<&clk_vpu>;
|
|
clock-names = "uartclk", "apb_pclk";
|
|
- arm,primecell-periphid = <0x00241011>;
|
|
+ arm,primecell-periphid = <0x00341011>;
|
|
status = "disabled";
|
|
};
|
|
|
|
@@ -201,7 +201,7 @@
|
|
clocks = <&clk_uart>,
|
|
<&clk_vpu>;
|
|
clock-names = "uartclk", "apb_pclk";
|
|
- arm,primecell-periphid = <0x00241011>;
|
|
+ arm,primecell-periphid = <0x00341011>;
|
|
status = "disabled";
|
|
};
|
|
|
|
@@ -212,7 +212,7 @@
|
|
clocks = <&clk_uart>,
|
|
<&clk_vpu>;
|
|
clock-names = "uartclk", "apb_pclk";
|
|
- arm,primecell-periphid = <0x00241011>;
|
|
+ arm,primecell-periphid = <0x00341011>;
|
|
status = "disabled";
|
|
};
|
|
|