mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
cddd459140
Add patches for linux-5.4. The patches are from NXP LSDK-20.04 release which was tagged LSDK-20.04-V5.4. https://source.codeaurora.org/external/qoriq/qoriq-components/linux/ For boards LS1021A-IOT, and Traverse-LS1043 which are not involved in LSDK, port the dts patches from 4.14. The patches are sorted into the following categories: 301-arch-xxxx 302-dts-xxxx 303-core-xxxx 701-net-xxxx 801-audio-xxxx 802-can-xxxx 803-clock-xxxx 804-crypto-xxxx 805-display-xxxx 806-dma-xxxx 807-gpio-xxxx 808-i2c-xxxx 809-jailhouse-xxxx 810-keys-xxxx 811-kvm-xxxx 812-pcie-xxxx 813-pm-xxxx 814-qe-xxxx 815-sata-xxxx 816-sdhc-xxxx 817-spi-xxxx 818-thermal-xxxx 819-uart-xxxx 820-usb-xxxx 821-vfio-xxxx Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
54 lines
1.6 KiB
Diff
54 lines
1.6 KiB
Diff
From d783144d6738af1d2ef3a91ef3cb2ef8529bb041 Mon Sep 17 00:00:00 2001
|
|
From: Florinel Iordache <florinel.iordache@nxp.com>
|
|
Date: Mon, 5 Nov 2018 17:04:05 +0200
|
|
Subject: [PATCH] arm64: dts: Added endianness information to dts serdes node
|
|
|
|
This change is required to specify that serdes HW peripheral is little-endian.
|
|
|
|
Signed-off-by: Florinel Iordache <florinel.iordache@nxp.com>
|
|
---
|
|
arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi | 3 ++-
|
|
arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi | 3 ++-
|
|
arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi | 3 ++-
|
|
3 files changed, 6 insertions(+), 3 deletions(-)
|
|
|
|
--- a/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
|
|
+++ b/arch/arm64/boot/dts/freescale/fsl-ls1088a.dtsi
|
|
@@ -184,8 +184,9 @@
|
|
};
|
|
|
|
serdes1: serdes@1ea0000 {
|
|
- reg = <0x0 0x1ea0000 0 0x00002000>;
|
|
compatible = "fsl,serdes-10g";
|
|
+ reg = <0x0 0x1ea0000 0 0x00002000>;
|
|
+ little-endian;
|
|
};
|
|
|
|
tmu: tmu@1f80000 {
|
|
--- a/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi
|
|
+++ b/arch/arm64/boot/dts/freescale/fsl-ls208xa.dtsi
|
|
@@ -834,8 +834,9 @@
|
|
};
|
|
|
|
serdes1: serdes@1ea0000 {
|
|
- reg = <0x0 0x1ea0000 0 0x00002000>;
|
|
compatible = "fsl,serdes-10g";
|
|
+ reg = <0x0 0x1ea0000 0 0x00002000>;
|
|
+ little-endian;
|
|
};
|
|
|
|
ccn@4000000 {
|
|
--- a/arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi
|
|
+++ b/arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi
|
|
@@ -581,8 +581,9 @@
|
|
};
|
|
|
|
serdes1: serdes@1ea0000 {
|
|
- reg = <0x0 0x1ea0000 0 0x00002000>;
|
|
compatible = "fsl,serdes-28g";
|
|
+ reg = <0x0 0x1ea0000 0 0x00002000>;
|
|
+ little-endian;
|
|
};
|
|
|
|
i2c0: i2c@2000000 {
|