Searched +full:axg +full:- +full:mipi +full:- +full:pcie +full:- +full:analog +full:- +full:phy (Results 1 – 4 of 4) sorted by relevance
1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)3 ---4 $id: "http://devicetree.org/schemas/phy/amlogic,meson-axg-mipi-pcie-analog.yaml#"5 $schema: "http://devicetree.org/meta-schemas/core.yaml#"7 title: Amlogic AXG shared MIPI/PCIE analog PHY10 - Remi Pommarel <repk@triplefau.lt>14 const: amlogic,axg-mipi-pcie-analog-phy19 "#phy-cells":23 - compatible24 - reg[all …]
1 # SPDX-License-Identifier: GPL-2.0-only3 # Phy drivers for Amlogic platforms6 tristate "Meson8, Meson8b, Meson8m2 and GXBB USB2 PHY driver"19 tristate "Meson GXL and GXM USB2 PHY drivers"31 tristate "Meson G12A USB2 PHY driver"42 tristate "Meson G12A USB3+PCIE Combo PHY driver"48 Enable this to support the Meson USB3 + PCIE Combo PHY found53 tristate "Meson AXG PCIE PHY driver"59 Enable this to support the Meson MIPI + PCIE PHY found60 in Meson AXG SoCs.[all …]
1 // SPDX-License-Identifier: GPL-2.03 * Amlogic AXG MIPI + PCIE analog PHY driver8 #include <linux/phy/phy.h>11 #include <dt-bindings/phy/phy.h>34 #define HHI_MIPI_CNTL2_CH_EN(n) BIT(15 - (n))38 struct phy *phy; member50 static int phy_axg_mipi_pcie_analog_power_on(struct phy *phy) in phy_axg_mipi_pcie_analog_power_on() argument52 struct phy_axg_mipi_pcie_analog_priv *priv = phy_get_drvdata(phy); in phy_axg_mipi_pcie_analog_power_on()54 /* MIPI not supported yet */ in phy_axg_mipi_pcie_analog_power_on()55 if (priv->mode != PHY_TYPE_PCIE) in phy_axg_mipi_pcie_analog_power_on()[all …]
1 # SPDX-License-Identifier: GPL-2.0-only2 obj-$(CONFIG_PHY_MESON8B_USB2) += phy-meson8b-usb2.o3 obj-$(CONFIG_PHY_MESON_GXL_USB2) += phy-meson-gxl-usb2.o4 obj-$(CONFIG_PHY_MESON_G12A_USB2) += phy-meson-g12a-usb2.o5 obj-$(CONFIG_PHY_MESON_G12A_USB3_PCIE) += phy-meson-g12a-usb3-pcie.o6 obj-$(CONFIG_PHY_MESON_AXG_PCIE) += phy-meson-axg-pcie.o7 obj-$(CONFIG_PHY_MESON_AXG_MIPI_PCIE_ANALOG) += phy-meson-axg-mipi-pcie-analog.o