[PATCH 1/2] phy: ti: ti-pipe3: allow configuring ACSPCIe TX/RX mode
David Oberhollenzer
david.oberhollenzer at sigma-star.at
Tue Aug 4 04:18:48 PDT 2026
Besides power control, the PHY control logic in the OMAP PCIe PHY
subsystem has a configurable reference clock selection. It can
either use the ljcb_clkp/ljcb_clkn pin as inputs, recovering the
clock from the bus (RX mode), or generate the reference clock
internally, driving the bus pins as outputs (TX mode).
This patch adds a device tree setting to the PIPE3 PHY, allowing
the syscon node, register offset and RX/TX mode setting to be
attached and set up correctly.
Signed-off-by: David Oberhollenzer <david.oberhollenzer at sigma-star.at>
---
drivers/phy/ti/phy-ti-pipe3.c | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/drivers/phy/ti/phy-ti-pipe3.c b/drivers/phy/ti/phy-ti-pipe3.c
index b5543b5c674c..801a6239328e 100644
--- a/drivers/phy/ti/phy-ti-pipe3.c
+++ b/drivers/phy/ti/phy-ti-pipe3.c
@@ -115,6 +115,9 @@
#define MEM_CDR_LOS_SOURCE_MASK GENMASK(10, 9)
#define MEM_CDR_LOS_SOURCE_SHIFT 9
+#define PCIE_TX_RX_CTRL_MASK GENMASK(17, 16)
+#define PCIE_TX_RX_CTRL_SHIFT 16
+
/*
* This is an Empirical value that works, need to confirm the actual
* value required for the PIPE3PHY_PLL_CONFIGURATION2.PLL_IDLE status
@@ -785,6 +788,24 @@ static int ti_pipe3_get_pll_base(struct ti_pipe3 *phy)
return PTR_ERR_OR_ZERO(phy->pll_ctrl_base);
}
+static int ti_pipe3_acspcie_tx_rx_mode(struct ti_pipe3 *phy)
+{
+ struct device_node *np = phy->dev->of_node;
+ struct regmap *regmap;
+ unsigned int args[2];
+
+ regmap = syscon_regmap_lookup_by_phandle_args(np,
+ "syscon-acspcie-tx-rx",
+ 2, args);
+ if (IS_ERR(regmap)) {
+ dev_warn(phy->dev, "can't get syscon-acspcie-tx-rx\n");
+ return -EINVAL;
+ }
+
+ return regmap_update_bits(regmap, args[0], PCIE_TX_RX_CTRL_MASK,
+ args[1] << PCIE_TX_RX_CTRL_SHIFT);
+}
+
static int ti_pipe3_probe(struct platform_device *pdev)
{
struct ti_pipe3 *phy;
@@ -807,6 +828,12 @@ static int ti_pipe3_probe(struct platform_device *pdev)
phy->dpll_map = data->dpll_map;
phy->settings = data->settings;
+ if (phy->mode == PIPE3_MODE_PCIE) {
+ ret = ti_pipe3_acspcie_tx_rx_mode(phy);
+ if (ret)
+ dev_warn(dev, "failed to set ACSPCIe TX/RX mode\n");
+ }
+
ret = ti_pipe3_get_pll_base(phy);
if (ret)
return ret;
--
2.55.0
More information about the linux-phy
mailing list