PCI: exynos: Correct generic PHY usage
authorMarek Szyprowski <m.szyprowski@samsung.com>
Tue, 28 Jun 2022 22:04:09 +0000 (00:04 +0200)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 1 Aug 2022 20:25:16 +0000 (15:25 -0500)
The proper initialization for generic PHYs is to call first phy_init(),
then phy_power_on().

While touching this, remove the phy_reset() call. It is just a left-over
from the obsoleted Exynos5440 support and the current exynos-pcie PHY
driver doesn't even support this function. It is also rarely used by other
drivers.

Link: https://lore.kernel.org/r/20220628220409.26545-2-m.szyprowski@samsung.com
Reported-by: Bjorn Helgaas <helgaas@kernel.org>
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Chanho Park <chanho61.park@samsung.com>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
drivers/pci/controller/dwc/pci-exynos.c

index 2ede426..3786946 100644 (file)
@@ -258,9 +258,8 @@ static int exynos_pcie_host_init(struct dw_pcie_rp *pp)
 
        exynos_pcie_assert_core_reset(ep);
 
-       phy_reset(ep->phy);
-       phy_power_on(ep->phy);
        phy_init(ep->phy);
+       phy_power_on(ep->phy);
 
        exynos_pcie_deassert_core_reset(ep);
        exynos_pcie_enable_irq_pulse(ep);