[PATCH 25/31] clk: mediatek: add CLK_XTAL support for clock driver

Weijie Gao weijie.gao at mediatek.com
Mon Aug 8 05:10:38 CEST 2022


On Thu, 2022-08-04 at 07:57 -0600, Simon Glass wrote:
> Hi Weijie,
> 
> On Wed, 3 Aug 2022 at 21:40, Weijie Gao <weijie.gao at mediatek.com>
> wrote:
> > 
> > This add CLK_XTAL macro and flag to mediatek clock driver common
> > part,
> > to make thi SoC that has clock directlly connect to XTAL working.
> > 
> > Signed-off-by: Weijie Gao <weijie.gao at mediatek.com>
> > ---
> >  drivers/clk/mediatek/clk-mtk.c | 3 +++
> >  drivers/clk/mediatek/clk-mtk.h | 3 ++-
> >  2 files changed, 5 insertions(+), 1 deletion(-)
> > 
> > diff --git a/drivers/clk/mediatek/clk-mtk.c
> > b/drivers/clk/mediatek/clk-mtk.c
> > index be3846c85b..5a4650d137 100644
> > --- a/drivers/clk/mediatek/clk-mtk.c
> > +++ b/drivers/clk/mediatek/clk-mtk.c
> > @@ -296,6 +296,7 @@ static ulong
> > mtk_topckgen_get_factor_rate(struct clk
> >  *clk, u32 off)
> >                 rate = mtk_clk_find_parent_rate(clk, fdiv->parent,
> > NULL);
> >                 break;
> > 
> > +       case CLK_PARENT_XTAL:
> >         default:
> >                 rate = priv->tree->xtal_rate;
> >         }
> > @@ -314,6 +315,8 @@ static ulong
> > mtk_infrasys_get_factor_rate(struct clk
> >  *clk, u32 off)
> >                 rate = mtk_clk_find_parent_rate(clk, fdiv->parent,
> >                                                 priv->parent);
> >                 break;
> > +       case CLK_PARENT_XTAL:
> > +               rate = priv->tree->xtal_rate;
> 
> Please document the fall-through here, if it is not a bug.

This is indeed a bug. I'll fix it.

> 
> >         default:
> >                 rate = mtk_clk_find_parent_rate(clk, fdiv->parent,
> > NULL);
> >         }
> > diff --git a/drivers/clk/mediatek/clk-mtk.h
> > b/drivers/clk/mediatek/clk-mtk.h
> > index 8536275671..211356697b 100644
> > --- a/drivers/clk/mediatek/clk-mtk.h
> > +++ b/drivers/clk/mediatek/clk-mtk.h
> > @@ -26,7 +26,8 @@
> >  #define CLK_PARENT_APMIXED             BIT(4)
> >  #define CLK_PARENT_TOPCKGEN            BIT(5)
> >  #define CLK_PARENT_INFRASYS            BIT(6)
> > -#define CLK_PARENT_MASK                        GENMASK(6, 4)
> > +#define CLK_PARENT_XTAL                        BIT(7)
> > +#define CLK_PARENT_MASK                        GENMASK(7, 4)
> > 
> >  #define ETHSYS_HIFSYS_RST_CTRL_OFS     0x34
> > 
> > --
> > 2.17.1
> > 
> 
> REgards,
> Simon


More information about the U-Boot mailing list