aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Marek Szyprowski <m.szyprowski@samsung.com> 2019-07-22 19:32:23 +0200
committerGravatar Kishon Vijay Abraham I <kishon@ti.com> 2019-08-23 09:40:57 +0530
commitbbae18f0fc621df81d05d614eff31f90495516d3 (patch)
tree391df2abcb1edfcef54393ded3ba0288b368f729
parentphy: marvell: phy-mvebu-a3700-comphy: Add of_node_put() before return (diff)
downloadlinux-bbae18f0fc621df81d05d614eff31f90495516d3.tar.gz
linux-bbae18f0fc621df81d05d614eff31f90495516d3.tar.bz2
linux-bbae18f0fc621df81d05d614eff31f90495516d3.zip
phy: core: document phy_calibrate()
Commit 36914111e682 ("drivers: phy: add calibrate method") added support for generic phy_calibrate() method, but it didn't explain in detail when such method is supposed to be called. Add some more documentation directly to the phy.h to make it clean that it is intended to be called after every host controller reset. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
-rw-r--r--drivers/phy/phy-core.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/phy/phy-core.c b/drivers/phy/phy-core.c
index e3880c4a15f2..b04f4fe85ac2 100644
--- a/drivers/phy/phy-core.c
+++ b/drivers/phy/phy-core.c
@@ -394,6 +394,16 @@ int phy_reset(struct phy *phy)
}
EXPORT_SYMBOL_GPL(phy_reset);
+/**
+ * phy_calibrate() - Tunes the phy hw parameters for current configuration
+ * @phy: the phy returned by phy_get()
+ *
+ * Used to calibrate phy hardware, typically by adjusting some parameters in
+ * runtime, which are otherwise lost after host controller reset and cannot
+ * be applied in phy_init() or phy_power_on().
+ *
+ * Returns: 0 if successful, an negative error code otherwise
+ */
int phy_calibrate(struct phy *phy)
{
int ret;