Message ID | 1568933351-8584-4-git-send-email-sam.shih@mediatek.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add mt7629 and fix mt7628 pwm | expand |
On Fri, Sep 20, 2019 at 06:49:03AM +0800, Sam Shih wrote: > We can use fixed-clock to repair mt7628 pwm during configure from > userspace. The SoC is legacy MIPS and has no complex clock tree. > Due to we can get clock frequency for period calculation from DT > fixed-clock, so we can remove has-clock property, and directly > use devm_clk_get and clk_get_rate. > > Signed-off-by: Ryder Lee <ryder.lee@mediatek.com> > Signed-off-by: Sam Shih <sam.shih@mediatek.com> > Acked-by: Uwe Kleine-Kö <u.kleine-koenig@pengutronix.de> > --- > Changes since v9: > Added an Acked-by tag Argh, my name was croped and ended up in this state in 5c50982af47ffe36df3e31bc9e11be5a067ddd18. Thierry, any chance to repair that? Something like git filter-branch --msg-filter 'sed "s/Kleine-Kö /Kleine-König /"' linus/master.. Thanks Uwe
On Wed, Sep 25, 2019 at 08:30:03AM +0200, Uwe Kleine-König wrote: > On Fri, Sep 20, 2019 at 06:49:03AM +0800, Sam Shih wrote: > > We can use fixed-clock to repair mt7628 pwm during configure from > > userspace. The SoC is legacy MIPS and has no complex clock tree. > > Due to we can get clock frequency for period calculation from DT > > fixed-clock, so we can remove has-clock property, and directly > > use devm_clk_get and clk_get_rate. > > > > Signed-off-by: Ryder Lee <ryder.lee@mediatek.com> > > Signed-off-by: Sam Shih <sam.shih@mediatek.com> > > Acked-by: Uwe Kleine-Kö <u.kleine-koenig@pengutronix.de> > > --- > > Changes since v9: > > Added an Acked-by tag > > Argh, my name was croped and ended up in this state in > 5c50982af47ffe36df3e31bc9e11be5a067ddd18. Thierry, any chance to repair > that? Something > like > > git filter-branch --msg-filter 'sed "s/Kleine-Kö /Kleine-König /"' linus/master.. Done, though I ended up doing it manually. I don't trust my git filter-branch skills. =) Thierry
diff --git a/drivers/pwm/pwm-mediatek.c b/drivers/pwm/pwm-mediatek.c index ebd62629e3fe..07e843aeddb1 100644 --- a/drivers/pwm/pwm-mediatek.c +++ b/drivers/pwm/pwm-mediatek.c @@ -57,7 +57,6 @@ static const char * const mtk_pwm_clk_name[MTK_CLK_MAX] = { struct mtk_pwm_platform_data { unsigned int fallback_npwms; bool pwm45_fixup; - bool has_clks; }; /** @@ -87,9 +86,6 @@ static int mtk_pwm_clk_enable(struct pwm_chip *chip, struct pwm_device *pwm) struct mtk_pwm_chip *pc = to_mtk_pwm_chip(chip); int ret; - if (!pc->soc->has_clks) - return 0; - ret = clk_prepare_enable(pc->clks[MTK_CLK_TOP]); if (ret < 0) return ret; @@ -116,9 +112,6 @@ static void mtk_pwm_clk_disable(struct pwm_chip *chip, struct pwm_device *pwm) { struct mtk_pwm_chip *pc = to_mtk_pwm_chip(chip); - if (!pc->soc->has_clks) - return; - clk_disable_unprepare(pc->clks[MTK_CLK_PWM1 + pwm->hwpwm]); clk_disable_unprepare(pc->clks[MTK_CLK_MAIN]); clk_disable_unprepare(pc->clks[MTK_CLK_TOP]); @@ -262,11 +255,13 @@ static int mtk_pwm_probe(struct platform_device *pdev) npwms = MTK_CLK_MAX - 2; } - for (i = 0; i < npwms + 2 && pc->soc->has_clks; i++) { - pc->clks[i] = devm_clk_get(&pdev->dev, mtk_pwm_clk_name[i]); + for (i = 0; i < npwms + 2 ; i++) { + pc->clks[i] = devm_clk_get(&pdev->dev, + mtk_pwm_clk_name[i]); if (IS_ERR(pc->clks[i])) { dev_err(&pdev->dev, "clock: %s fail: %ld\n", - mtk_pwm_clk_name[i], PTR_ERR(pc->clks[i])); + mtk_pwm_clk_name[i], + PTR_ERR(pc->clks[i])); return PTR_ERR(pc->clks[i]); } } @@ -297,25 +292,21 @@ static int mtk_pwm_remove(struct platform_device *pdev) static const struct mtk_pwm_platform_data mt2712_pwm_data = { .fallback_npwms = 8, .pwm45_fixup = false, - .has_clks = true, }; static const struct mtk_pwm_platform_data mt7622_pwm_data = { .fallback_npwms = 6, .pwm45_fixup = false, - .has_clks = true, }; static const struct mtk_pwm_platform_data mt7623_pwm_data = { .fallback_npwms = 5, .pwm45_fixup = true, - .has_clks = true, }; static const struct mtk_pwm_platform_data mt7628_pwm_data = { .fallback_npwms = 4, .pwm45_fixup = true, - .has_clks = false, }; static const struct of_device_id mtk_pwm_of_match[] = {