Re: [PATCH 2/2] clk: Add support for AST2600 SoC

2019-09-06 Thread Stephen Boyd
Quoting Joel Stanley (2019-08-18 19:03:54) > On Fri, 16 Aug 2019 at 17:14, Stephen Boyd wrote: > > > > Quoting Joel Stanley (2019-08-16 08:58:06) > > > +static const char * const vclk_parent_names[] = { > > > > Can you use the new way of specifying clk parents instead of just using > > strings? >

Re: [PATCH 2/2] clk: Add support for AST2600 SoC

2019-08-18 Thread Joel Stanley
On Fri, 16 Aug 2019 at 17:14, Stephen Boyd wrote: > > Quoting Joel Stanley (2019-08-16 08:58:06) > > diff --git a/drivers/clk/clk-ast2600.c b/drivers/clk/clk-ast2600.c > > new file mode 100644 > > index ..083d5299238c > > --- /dev/null > > +++ b/drivers/clk/clk-ast2600.c > > @@ -0,0

Re: [PATCH 2/2] clk: Add support for AST2600 SoC

2019-08-16 Thread Stephen Boyd
Quoting Joel Stanley (2019-08-16 08:58:06) > diff --git a/drivers/clk/clk-ast2600.c b/drivers/clk/clk-ast2600.c > new file mode 100644 > index ..083d5299238c > --- /dev/null > +++ b/drivers/clk/clk-ast2600.c > @@ -0,0 +1,701 @@ > +// SPDX-License-Identifier: GPL-2.0-or-later > +//

[PATCH 2/2] clk: Add support for AST2600 SoC

2019-08-16 Thread Joel Stanley
The ast2600 is a new BMC SoC from ASPEED. It contains many more clocks than the previous iterations, so support is broken out into it's own driver. Signed-off-by: Joel Stanley --- drivers/clk/Makefile | 1 + drivers/clk/clk-ast2600.c | 701