diff options
author | Daniel Golle <daniel@makrotopia.org> | 2022-09-11 02:31:21 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2022-09-11 02:49:28 +0100 |
commit | a9dda40fe21be2890fd864c6b70810c2042ddb7f (patch) | |
tree | e2a580b5521e2b7ef6ea947fc40029aaca8ef0d5 /target/linux/oxnas/patches-5.15/320-oxnas-phy-pcie.patch | |
parent | ef59da866982b4891f64d01c15967877c2898e26 (diff) | |
download | upstream-a9dda40fe21be2890fd864c6b70810c2042ddb7f.tar.gz upstream-a9dda40fe21be2890fd864c6b70810c2042ddb7f.tar.bz2 upstream-a9dda40fe21be2890fd864c6b70810c2042ddb7f.zip |
oxnas: add testing support for Linux 5.15
Rebase patches and port SATA driver to work with Linux > 5.13.
Tested on Shuttle KD-20.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'target/linux/oxnas/patches-5.15/320-oxnas-phy-pcie.patch')
-rw-r--r-- | target/linux/oxnas/patches-5.15/320-oxnas-phy-pcie.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/target/linux/oxnas/patches-5.15/320-oxnas-phy-pcie.patch b/target/linux/oxnas/patches-5.15/320-oxnas-phy-pcie.patch new file mode 100644 index 0000000000..7ee4daf0c5 --- /dev/null +++ b/target/linux/oxnas/patches-5.15/320-oxnas-phy-pcie.patch @@ -0,0 +1,44 @@ +--- a/arch/arm/boot/dts/ox820.dtsi ++++ b/arch/arm/boot/dts/ox820.dtsi +@@ -247,6 +247,15 @@ + }; + }; + ++ pcie_phy: pcie-phy@a00000 { ++ compatible = "oxsemi,ox820-pcie-phy"; ++ reg = <0xa00000 0x10>; ++ #phy-cells = <0>; ++ resets = <&reset RESET_PCIEPHY>; ++ reset-names = "phy"; ++ status = "disabled"; ++ }; ++ + sys: sys-ctrl@e00000 { + compatible = "oxsemi,ox820-sys-ctrl", "syscon", "simple-mfd"; + reg = <0xe00000 0x200000>; +--- a/drivers/phy/Kconfig ++++ b/drivers/phy/Kconfig +@@ -35,6 +35,13 @@ config PHY_LPC18XX_USB_OTG + This driver is need for USB0 support on LPC18xx/43xx and takes + care of enabling and clock setup. + ++config PHY_OXNAS ++ tristate "Oxford Semi. OX820 PCI-E PHY support" ++ depends on HAS_IOMEM && OF && (ARM || COMPILE_TEST) ++ select GENERIC_PHY ++ help ++ This option enables support for OXNAS OX820 SoC PCIE PHY. ++ + config PHY_PISTACHIO_USB + tristate "IMG Pistachio USB2.0 PHY driver" + depends on MIPS || COMPILE_TEST +--- a/drivers/phy/Makefile ++++ b/drivers/phy/Makefile +@@ -7,6 +7,7 @@ obj-$(CONFIG_GENERIC_PHY) += phy-core.o + obj-$(CONFIG_GENERIC_PHY_MIPI_DPHY) += phy-core-mipi-dphy.o + obj-$(CONFIG_PHY_CAN_TRANSCEIVER) += phy-can-transceiver.o + obj-$(CONFIG_PHY_LPC18XX_USB_OTG) += phy-lpc18xx-usb-otg.o ++obj-$(CONFIG_PHY_OXNAS) += phy-oxnas-pcie.o + obj-$(CONFIG_PHY_XGENE) += phy-xgene.o + obj-$(CONFIG_PHY_PISTACHIO_USB) += phy-pistachio-usb.o + obj-$(CONFIG_USB_LGM_PHY) += phy-lgm-usb.o |