Commit 5c29e864 authored by AngeloGioacchino Del Regno's avatar AngeloGioacchino Del Regno Committed by Greg Kroah-Hartman

usb: musb: mediatek: Use clk_bulk API to simplify clock operations

This driver uses three clocks and there's no special handling, they're
either enabled or disabled sequentially: migrate to the clk_bulk API
to simplify clock handling.

This patch brings no functional changes.
Signed-off-by: default avatarAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Link: https://lore.kernel.org/r/20220404145558.93340-1-angelogioacchino.delregno@collabora.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ab3a560a
...@@ -36,6 +36,8 @@ ...@@ -36,6 +36,8 @@
#define DMA_INTR_STATUS_MSK GENMASK(7, 0) #define DMA_INTR_STATUS_MSK GENMASK(7, 0)
#define DMA_INTR_UNMASK_SET_MSK GENMASK(31, 24) #define DMA_INTR_UNMASK_SET_MSK GENMASK(31, 24)
#define MTK_MUSB_CLKS_NUM 3
struct mtk_glue { struct mtk_glue {
struct device *dev; struct device *dev;
struct musb *musb; struct musb *musb;
...@@ -44,9 +46,7 @@ struct mtk_glue { ...@@ -44,9 +46,7 @@ struct mtk_glue {
struct phy *phy; struct phy *phy;
struct usb_phy *xceiv; struct usb_phy *xceiv;
enum phy_mode phy_mode; enum phy_mode phy_mode;
struct clk *main; struct clk_bulk_data clks[MTK_MUSB_CLKS_NUM];
struct clk *mcu;
struct clk *univpll;
enum usb_role role; enum usb_role role;
struct usb_role_switch *role_sw; struct usb_role_switch *role_sw;
}; };
...@@ -55,64 +55,11 @@ static int mtk_musb_clks_get(struct mtk_glue *glue) ...@@ -55,64 +55,11 @@ static int mtk_musb_clks_get(struct mtk_glue *glue)
{ {
struct device *dev = glue->dev; struct device *dev = glue->dev;
glue->main = devm_clk_get(dev, "main"); glue->clks[0].id = "main";
if (IS_ERR(glue->main)) { glue->clks[1].id = "mcu";
dev_err(dev, "fail to get main clock\n"); glue->clks[2].id = "univpll";
return PTR_ERR(glue->main);
}
glue->mcu = devm_clk_get(dev, "mcu");
if (IS_ERR(glue->mcu)) {
dev_err(dev, "fail to get mcu clock\n");
return PTR_ERR(glue->mcu);
}
glue->univpll = devm_clk_get(dev, "univpll");
if (IS_ERR(glue->univpll)) {
dev_err(dev, "fail to get univpll clock\n");
return PTR_ERR(glue->univpll);
}
return 0;
}
static int mtk_musb_clks_enable(struct mtk_glue *glue) return devm_clk_bulk_get(dev, MTK_MUSB_CLKS_NUM, glue->clks);
{
int ret;
ret = clk_prepare_enable(glue->main);
if (ret) {
dev_err(glue->dev, "failed to enable main clock\n");
goto err_main_clk;
}
ret = clk_prepare_enable(glue->mcu);
if (ret) {
dev_err(glue->dev, "failed to enable mcu clock\n");
goto err_mcu_clk;
}
ret = clk_prepare_enable(glue->univpll);
if (ret) {
dev_err(glue->dev, "failed to enable univpll clock\n");
goto err_univpll_clk;
}
return 0;
err_univpll_clk:
clk_disable_unprepare(glue->mcu);
err_mcu_clk:
clk_disable_unprepare(glue->main);
err_main_clk:
return ret;
}
static void mtk_musb_clks_disable(struct mtk_glue *glue)
{
clk_disable_unprepare(glue->univpll);
clk_disable_unprepare(glue->mcu);
clk_disable_unprepare(glue->main);
} }
static int mtk_otg_switch_set(struct mtk_glue *glue, enum usb_role role) static int mtk_otg_switch_set(struct mtk_glue *glue, enum usb_role role)
...@@ -390,7 +337,7 @@ static int mtk_musb_exit(struct musb *musb) ...@@ -390,7 +337,7 @@ static int mtk_musb_exit(struct musb *musb)
mtk_otg_switch_exit(glue); mtk_otg_switch_exit(glue);
phy_power_off(glue->phy); phy_power_off(glue->phy);
phy_exit(glue->phy); phy_exit(glue->phy);
mtk_musb_clks_disable(glue); clk_bulk_disable_unprepare(MTK_MUSB_CLKS_NUM, glue->clks);
pm_runtime_put_sync(dev); pm_runtime_put_sync(dev);
pm_runtime_disable(dev); pm_runtime_disable(dev);
...@@ -528,7 +475,7 @@ static int mtk_musb_probe(struct platform_device *pdev) ...@@ -528,7 +475,7 @@ static int mtk_musb_probe(struct platform_device *pdev)
pm_runtime_enable(dev); pm_runtime_enable(dev);
pm_runtime_get_sync(dev); pm_runtime_get_sync(dev);
ret = mtk_musb_clks_enable(glue); ret = clk_bulk_prepare_enable(MTK_MUSB_CLKS_NUM, glue->clks);
if (ret) if (ret)
goto err_enable_clk; goto err_enable_clk;
...@@ -551,7 +498,7 @@ static int mtk_musb_probe(struct platform_device *pdev) ...@@ -551,7 +498,7 @@ static int mtk_musb_probe(struct platform_device *pdev)
return 0; return 0;
err_device_register: err_device_register:
mtk_musb_clks_disable(glue); clk_bulk_disable_unprepare(MTK_MUSB_CLKS_NUM, glue->clks);
err_enable_clk: err_enable_clk:
pm_runtime_put_sync(dev); pm_runtime_put_sync(dev);
pm_runtime_disable(dev); pm_runtime_disable(dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment