lkml.org 
[lkml]   [2014]   [May]   [5]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v3 02/20] usb: ehci-orion: Add the optional PHY support
    Date
    This commit allows to use the PHY provided through the device tree. It
    will be useful for the Armada 375 SoCs. if no PHY is provided then the
    behavior of the driver is unchanged.

    Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
    ---
    drivers/usb/host/ehci-orion.c | 25 +++++++++++++++++++++++--
    1 file changed, 23 insertions(+), 2 deletions(-)

    diff --git a/drivers/usb/host/ehci-orion.c b/drivers/usb/host/ehci-orion.c
    index d6c19c37c76b..f6d9eb2e33cd 100644
    --- a/drivers/usb/host/ehci-orion.c
    +++ b/drivers/usb/host/ehci-orion.c
    @@ -15,6 +15,7 @@
    #include <linux/clk.h>
    #include <linux/platform_data/usb-ehci-orion.h>
    #include <linux/of.h>
    +#include <linux/phy/phy.h>
    #include <linux/of_device.h>
    #include <linux/of_irq.h>
    #include <linux/usb.h>
    @@ -46,6 +47,7 @@

    struct orion_ehci_hcd {
    struct clk *clk;
    + struct phy *phy;
    };

    static const char hcd_name[] = "ehci-orion";
    @@ -224,6 +226,18 @@ static int ehci_orion_drv_probe(struct platform_device *pdev)
    if (!IS_ERR(priv->clk))
    clk_prepare_enable(priv->clk);

    +
    + priv->phy = devm_phy_get(&pdev->dev, "usb");
    + if (!IS_ERR(priv->phy)) {
    + err = phy_init(priv->phy);
    + if (err)
    + goto err2;
    +
    + err = phy_power_on(priv->phy);
    + if (err)
    + goto err3;
    + }
    +
    /*
    * (Re-)program MBUS remapping windows if we are asked to.
    */
    @@ -253,14 +267,18 @@ static int ehci_orion_drv_probe(struct platform_device *pdev)

    err = usb_add_hcd(hcd, irq, IRQF_SHARED);
    if (err)
    - goto err2;
    + goto err4;

    device_wakeup_enable(hcd->self.controller);
    return 0;

    -err2:
    +err4:
    usb_put_hcd(hcd);

    +err3:
    + phy_exit(priv->phy);
    +
    +err2:
    if (!IS_ERR(priv->clk))
    clk_disable_unprepare(priv->clk);
    err1:
    @@ -278,6 +296,9 @@ static int ehci_orion_drv_remove(struct platform_device *pdev)
    usb_remove_hcd(hcd);
    usb_put_hcd(hcd);

    + if (!IS_ERR(priv->phy))
    + phy_exit(priv->phy);
    +
    if (!IS_ERR(priv->clk))
    clk_disable_unprepare(priv->clk);

    --
    1.8.1.2


    \
     
     \ /
      Last update: 2014-05-06 02:21    [W:4.120 / U:0.292 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site