All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] clk: ti: cleanups for 4.12 merge window
@ 2017-03-17 12:53 Tero Kristo
  2017-04-04 16:14 ` Tony Lindgren
  0 siblings, 1 reply; 4+ messages in thread
From: Tero Kristo @ 2017-03-17 12:53 UTC (permalink / raw)
  To: Stephen Boyd, Michael Turquette; +Cc: linux-clk, linux-omap, tony

Hi Stephen/Mike,

This is basically the TI clock driver cleanup series v2 posted last 
week, sending a pull request now as there hasn't been any additional 
comments.

-Tero

==================================================================

The following changes since commit c1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201:

   Linux 4.11-rc1 (2017-03-05 12:59:56 -0800)

are available in the git repository at:

   https://github.com/t-kristo/linux-pm.git for-4.12-ti-clk-cleanups

for you to fetch changes up to 6c0afb503937a12a8d20a805fcf263e31afa9871:

   clk: ti: convert to use proper register definition for all accesses 
(2017-03-08 13:06:15 +0200)

----------------------------------------------------------------
Tero Kristo (15):
       clk: ti: remove un-used definitions from public clk_hw_omap struct
       clk: ti: add support for automatic clock alias generation
       clk: ti: add API for creating aliases automatically for simple 
clock types
       clk: ti: use automatic clock alias generation framework
       clk: ti: add clkdm_lookup to the exported functions
       clk: ti: move omap2_init_clk_clkdm under TI clock driver
       clk: ti: enforce const types on string arrays
       clk: ti: omap4: cleanup unnecessary clock aliases
       clk: ti: drop unnecessary MEMMAP_ADDRESSING flag
       clk: ti: mux: convert TI mux clock to use its internal data 
representation
       clk: ti: divider: convert TI divider clock to use its own data 
representation
       clk: ti: divider: add driver internal API for parsing divider data
       clk: ti: gate: export gate_clk_ops locally
       clk: ti: dpll44xx: fix clksel register initialization
       clk: ti: convert to use proper register definition for all accesses

  arch/arm/mach-omap2/clkt2xxx_dpllcore.c |   3 +-
  arch/arm/mach-omap2/clock.c             |  35 +-----
  arch/arm/mach-omap2/clock.h             |   2 +
  arch/arm/mach-omap2/cm.h                |   5 +-
  arch/arm/mach-omap2/cm2xxx.c            |   9 +-
  arch/arm/mach-omap2/cm3xxx.c            |  10 +-
  arch/arm/mach-omap2/cm_common.c         |   2 +-
  drivers/clk/ti/apll.c                   |  50 ++++-----
  drivers/clk/ti/autoidle.c               |  18 +--
  drivers/clk/ti/clk-3xxx.c               |  55 +++++-----
  drivers/clk/ti/clk-44xx.c               | 188 
+-------------------------------
  drivers/clk/ti/clk-dra7-atl.c           |  11 +-
  drivers/clk/ti/clk.c                    | 157 +++++++++++++++++++++-----
  drivers/clk/ti/clkt_dflt.c              |  61 ++++-------
  drivers/clk/ti/clkt_dpll.c              |   6 +-
  drivers/clk/ti/clkt_iclk.c              |  29 +++--
  drivers/clk/ti/clock.h                  |  41 ++++++-
  drivers/clk/ti/clockdomain.c            |  38 +++++--
  drivers/clk/ti/composite.c              |  18 ++-
  drivers/clk/ti/divider.c                | 111 +++++++++++--------
  drivers/clk/ti/dpll.c                   |  59 +++++-----
  drivers/clk/ti/dpll3xxx.c               |  38 +++----
  drivers/clk/ti/dpll44xx.c               |  14 +--
  drivers/clk/ti/fixed-factor.c           |   1 +
  drivers/clk/ti/gate.c                   |  44 ++++----
  drivers/clk/ti/interface.c              |  25 ++---
  drivers/clk/ti/mux.c                    |  59 +++++-----
  include/linux/clk/ti.h                  |  55 +++++-----
  28 files changed, 543 insertions(+), 601 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] clk: ti: cleanups for 4.12 merge window
  2017-03-17 12:53 [GIT PULL] clk: ti: cleanups for 4.12 merge window Tero Kristo
@ 2017-04-04 16:14 ` Tony Lindgren
  2017-04-05  1:26   ` Stephen Boyd
  0 siblings, 1 reply; 4+ messages in thread
From: Tony Lindgren @ 2017-04-04 16:14 UTC (permalink / raw)
  To: Tero Kristo; +Cc: Stephen Boyd, Michael Turquette, linux-clk, linux-omap

* Tero Kristo <t-kristo@ti.com> [170317 05:55]:
> Hi Stephen/Mike,
> 
> This is basically the TI clock driver cleanup series v2 posted last week,
> sending a pull request now as there hasn't been any additional comments.
> 
> -Tero
> 
> ==================================================================
> 
> The following changes since commit c1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201:
> 
>   Linux 4.11-rc1 (2017-03-05 12:59:56 -0800)
> 
> are available in the git repository at:
> 
>   https://github.com/t-kristo/linux-pm.git for-4.12-ti-clk-cleanups
> 
> for you to fetch changes up to 6c0afb503937a12a8d20a805fcf263e31afa9871:
> 
>   clk: ti: convert to use proper register definition for all accesses
> (2017-03-08 13:06:15 +0200)

Any news on getting this merged?

Regards,

Tony

> ----------------------------------------------------------------
> Tero Kristo (15):
>       clk: ti: remove un-used definitions from public clk_hw_omap struct
>       clk: ti: add support for automatic clock alias generation
>       clk: ti: add API for creating aliases automatically for simple clock
> types
>       clk: ti: use automatic clock alias generation framework
>       clk: ti: add clkdm_lookup to the exported functions
>       clk: ti: move omap2_init_clk_clkdm under TI clock driver
>       clk: ti: enforce const types on string arrays
>       clk: ti: omap4: cleanup unnecessary clock aliases
>       clk: ti: drop unnecessary MEMMAP_ADDRESSING flag
>       clk: ti: mux: convert TI mux clock to use its internal data
> representation
>       clk: ti: divider: convert TI divider clock to use its own data
> representation
>       clk: ti: divider: add driver internal API for parsing divider data
>       clk: ti: gate: export gate_clk_ops locally
>       clk: ti: dpll44xx: fix clksel register initialization
>       clk: ti: convert to use proper register definition for all accesses
> 
>  arch/arm/mach-omap2/clkt2xxx_dpllcore.c |   3 +-
>  arch/arm/mach-omap2/clock.c             |  35 +-----
>  arch/arm/mach-omap2/clock.h             |   2 +
>  arch/arm/mach-omap2/cm.h                |   5 +-
>  arch/arm/mach-omap2/cm2xxx.c            |   9 +-
>  arch/arm/mach-omap2/cm3xxx.c            |  10 +-
>  arch/arm/mach-omap2/cm_common.c         |   2 +-
>  drivers/clk/ti/apll.c                   |  50 ++++-----
>  drivers/clk/ti/autoidle.c               |  18 +--
>  drivers/clk/ti/clk-3xxx.c               |  55 +++++-----
>  drivers/clk/ti/clk-44xx.c               | 188
> +-------------------------------
>  drivers/clk/ti/clk-dra7-atl.c           |  11 +-
>  drivers/clk/ti/clk.c                    | 157 +++++++++++++++++++++-----
>  drivers/clk/ti/clkt_dflt.c              |  61 ++++-------
>  drivers/clk/ti/clkt_dpll.c              |   6 +-
>  drivers/clk/ti/clkt_iclk.c              |  29 +++--
>  drivers/clk/ti/clock.h                  |  41 ++++++-
>  drivers/clk/ti/clockdomain.c            |  38 +++++--
>  drivers/clk/ti/composite.c              |  18 ++-
>  drivers/clk/ti/divider.c                | 111 +++++++++++--------
>  drivers/clk/ti/dpll.c                   |  59 +++++-----
>  drivers/clk/ti/dpll3xxx.c               |  38 +++----
>  drivers/clk/ti/dpll44xx.c               |  14 +--
>  drivers/clk/ti/fixed-factor.c           |   1 +
>  drivers/clk/ti/gate.c                   |  44 ++++----
>  drivers/clk/ti/interface.c              |  25 ++---
>  drivers/clk/ti/mux.c                    |  59 +++++-----
>  include/linux/clk/ti.h                  |  55 +++++-----
>  28 files changed, 543 insertions(+), 601 deletions(-)
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] clk: ti: cleanups for 4.12 merge window
  2017-04-04 16:14 ` Tony Lindgren
@ 2017-04-05  1:26   ` Stephen Boyd
  2017-04-05 13:41     ` Tony Lindgren
  0 siblings, 1 reply; 4+ messages in thread
From: Stephen Boyd @ 2017-04-05  1:26 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: Tero Kristo, Michael Turquette, linux-clk, linux-omap

On 04/04, Tony Lindgren wrote:
> * Tero Kristo <t-kristo@ti.com> [170317 05:55]:
> > Hi Stephen/Mike,
> > 
> > This is basically the TI clock driver cleanup series v2 posted last week,
> > sending a pull request now as there hasn't been any additional comments.
> > 
> > -Tero
> > 
> > ==================================================================
> > 
> > The following changes since commit c1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201:
> > 
> >   Linux 4.11-rc1 (2017-03-05 12:59:56 -0800)
> > 
> > are available in the git repository at:
> > 
> >   https://github.com/t-kristo/linux-pm.git for-4.12-ti-clk-cleanups
> > 
> > for you to fetch changes up to 6c0afb503937a12a8d20a805fcf263e31afa9871:
> > 
> >   clk: ti: convert to use proper register definition for all accesses
> > (2017-03-08 13:06:15 +0200)
> 
> Any news on getting this merged?
> 

Pulled into clk-next. Sorry for the slowness, I've been pulled
into some other work recently and also took a spring break
vacation last week so I'm just getting back to clk stuff.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] clk: ti: cleanups for 4.12 merge window
  2017-04-05  1:26   ` Stephen Boyd
@ 2017-04-05 13:41     ` Tony Lindgren
  0 siblings, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2017-04-05 13:41 UTC (permalink / raw)
  To: Stephen Boyd; +Cc: Tero Kristo, Michael Turquette, linux-clk, linux-omap

* Stephen Boyd <sboyd@codeaurora.org> [170404 18:29]:
> On 04/04, Tony Lindgren wrote:
> > * Tero Kristo <t-kristo@ti.com> [170317 05:55]:
> > > Hi Stephen/Mike,
> > > 
> > > This is basically the TI clock driver cleanup series v2 posted last week,
> > > sending a pull request now as there hasn't been any additional comments.
> > > 
> > > -Tero
> > > 
> > > ==================================================================
> > > 
> > > The following changes since commit c1ae3cfa0e89fa1a7ecc4c99031f5e9ae99d9201:
> > > 
> > >   Linux 4.11-rc1 (2017-03-05 12:59:56 -0800)
> > > 
> > > are available in the git repository at:
> > > 
> > >   https://github.com/t-kristo/linux-pm.git for-4.12-ti-clk-cleanups
> > > 
> > > for you to fetch changes up to 6c0afb503937a12a8d20a805fcf263e31afa9871:
> > > 
> > >   clk: ti: convert to use proper register definition for all accesses
> > > (2017-03-08 13:06:15 +0200)
> > 
> > Any news on getting this merged?
> > 
> 
> Pulled into clk-next. Sorry for the slowness, I've been pulled
> into some other work recently and also took a spring break
> vacation last week so I'm just getting back to clk stuff.

OK thanks no problem, was just wondering.

Regards,

Tony

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-04-05 13:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-17 12:53 [GIT PULL] clk: ti: cleanups for 4.12 merge window Tero Kristo
2017-04-04 16:14 ` Tony Lindgren
2017-04-05  1:26   ` Stephen Boyd
2017-04-05 13:41     ` Tony Lindgren

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.