Skip to content

Commit

Permalink
stmmac: dwmac-sti: move clk_prepare_enable out of init and add error …
Browse files Browse the repository at this point in the history
…handling

Add clock error handling to probe and in the process move clock enabling
out of sti_dwmac_init() to make this easier.

Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Acked-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Tested-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Joachim Eastwood authored and David S. Miller committed Nov 7, 2016
1 parent 06a6e82 commit b89cbfb
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,6 @@ static int sti_dwmac_init(struct platform_device *pdev, void *priv)
u32 reg = dwmac->ctrl_reg;
u32 val;

clk_prepare_enable(dwmac->clk);

if (dwmac->gmac_en)
regmap_update_bits(regmap, reg, EN_MASK, EN);

Expand Down Expand Up @@ -348,11 +346,23 @@ static int sti_dwmac_probe(struct platform_device *pdev)
plat_dat->bsp_priv = dwmac;
plat_dat->fix_mac_speed = data->fix_retime_src;

ret = sti_dwmac_init(pdev, plat_dat->bsp_priv);
ret = clk_prepare_enable(dwmac->clk);
if (ret)
return ret;

return stmmac_dvr_probe(&pdev->dev, plat_dat, &stmmac_res);
ret = sti_dwmac_init(pdev, plat_dat->bsp_priv);
if (ret)
goto disable_clk;

ret = stmmac_dvr_probe(&pdev->dev, plat_dat, &stmmac_res);
if (ret)
goto disable_clk;

return 0;

disable_clk:
clk_disable_unprepare(dwmac->clk);
return ret;
}

static int sti_dwmac_remove(struct platform_device *pdev)
Expand Down Expand Up @@ -381,6 +391,7 @@ static int sti_dwmac_resume(struct device *dev)
struct sti_dwmac *dwmac = get_stmmac_bsp_priv(dev);
struct platform_device *pdev = to_platform_device(dev);

clk_prepare_enable(dwmac->clk);
sti_dwmac_init(pdev, dwmac);

return stmmac_resume(dev);
Expand Down

0 comments on commit b89cbfb

Please sign in to comment.