mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
538a1d740c
The patches were generated from the RPi repo with the following command: git format-patch v6.6.58..rpi-6.6.y Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
35 lines
1.3 KiB
Diff
35 lines
1.3 KiB
Diff
From cc63d552b9aab92fb581dfb08267d5af697f477b Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Wed, 18 Sep 2024 16:45:24 +0100
|
|
Subject: [PATCH 1267/1350] dts: rp1: Disable DMA usage for UART0
|
|
|
|
Some recent DMA changes have led to data loss in UART0 on Pi 5. It also
|
|
seems that even prior to these changes there was a problem with aborted
|
|
transfers.
|
|
|
|
As this is the only RP1 UART configured for DMA, it is better to remove
|
|
the DMA usage until it is shown to be reliable.
|
|
|
|
Link: https://github.com/raspberrypi/linux/issues/6365
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
arch/arm64/boot/dts/broadcom/rp1.dtsi | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
--- a/arch/arm64/boot/dts/broadcom/rp1.dtsi
|
|
+++ b/arch/arm64/boot/dts/broadcom/rp1.dtsi
|
|
@@ -55,9 +55,9 @@
|
|
interrupts = <RP1_INT_UART0 IRQ_TYPE_LEVEL_HIGH>;
|
|
clocks = <&rp1_clocks RP1_CLK_UART &rp1_clocks RP1_PLL_SYS_PRI_PH>;
|
|
clock-names = "uartclk", "apb_pclk";
|
|
- dmas = <&rp1_dma RP1_DMA_UART0_TX>,
|
|
- <&rp1_dma RP1_DMA_UART0_RX>;
|
|
- dma-names = "tx", "rx";
|
|
+ // dmas = <&rp1_dma RP1_DMA_UART0_TX>,
|
|
+ // <&rp1_dma RP1_DMA_UART0_RX>;
|
|
+ // dma-names = "tx", "rx";
|
|
pinctrl-names = "default";
|
|
arm,primecell-periphid = <0x00541011>;
|
|
uart-has-rtscts;
|