| From | Mukesh Ojha <> | | Subject | [PATCH 08/35] arm64: dts: qcom: sdm670: Fix PDC reg size to single APSS DRV region | | Date | Sat, 11 Apr 2026 00:10:45 +0530 |
| |
The PDC reg size was 0x30000, covering three DRV regions. Linux only needs the APSS DRV region which is a single 0x10000 window. Reduce the size to 0x10000 to describe only the region actually used.
Signed-off-by: Mukesh Ojha <mukesh.ojha@oss.qualcomm.com> --- arch/arm64/boot/dts/qcom/sdm670.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sdm670.dtsi b/arch/arm64/boot/dts/qcom/sdm670.dtsi index 746e9deba526..e4dd1fff7444 100644 --- a/arch/arm64/boot/dts/qcom/sdm670.dtsi +++ b/arch/arm64/boot/dts/qcom/sdm670.dtsi @@ -1607,7 +1607,7 @@ usb_1_dwc3: usb@a600000 { pdc: interrupt-controller@b220000 { compatible = "qcom,sdm670-pdc", "qcom,pdc"; - reg = <0 0x0b220000 0 0x30000>; + reg = <0 0x0b220000 0 0x10000>; qcom,pdc-ranges = <0 480 40>, <41 521 7>, <49 529 4>, <54 534 24>, <79 559 15>, <94 609 15>, <115 630 7>; -- 2.53.0
|