linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] clk: mediatek: New clocks support and fixes
@ 2015-09-22  9:53 James Liao
  2015-09-30 14:47 ` Daniel Kurtz
  0 siblings, 1 reply; 9+ messages in thread
From: James Liao @ 2015-09-22  9:53 UTC (permalink / raw)
  To: Matthias Brugger, Stephen Boyd, Mike Turquette
  Cc: Yingjoe Chen, Pi-Cheng Chen, linux-mediatek, linux-kernel, linux-clk

This is a collection of new Mediatek clocks support and fixes. These
patches come from Joe [1], Pi-cheng [2] and me [3], including clock
support for subsystems, CPU, GPT and some minor fixes.

[1] https://patchwork.kernel.org/patch/6777041/
[2] https://patchwork.kernel.org/patch/7174721/
[3] https://lkml.org/lkml/2015/8/10/194

----------------------------------------------------------------

The following changes since commit 1f93e4a96c9109378204c147b3eec0d0e8100fde:

  Linux 4.3-rc2 (2015-09-20 14:32:34 -0700)

are available in the git repository at:

  https://github.com/jamesjjliao/linux.git v4.3-rc2-clk

for you to fetch changes up to 74219612bb7e25e64409171acada05d9949228f2:

  arm64: dts: mt8173: Add subsystem clock controller device nodes (2015-07-09 12:58:14 +0800)

----------------------------------------------------------------

James Liao (9):
  clk: mediatek: Removed unused dpi_ck clock from MT8173
  clk: mediatek: Remove unused code from MT8173.
  clk: mediatek: Add __initdata and __init for data and functions
  clk: mediatek: Add fixed clocks support for Mediatek SoC.
  clk: mediatek: Fix rate and dependency of MT8173 clocks
  dt-bindings: ARM: Mediatek: Document devicetree bindings for clock
    controllers
  clk: mediatek: Add subsystem clocks of MT8173
  clk: mediatek: Add USB clock support in MT8173 APMIXEDSYS
  arm64: dts: mt8173: Add subsystem clock controller device nodes

Joe.C (1):
  clk: mediatek: add 13mhz clock for MT8173

pi-cheng.chen (1):
  clk: mediatek: Export CPU mux clocks for CPU frequency control

 .../bindings/arm/mediatek/mediatek,imgsys.txt      |   22 ++
 .../bindings/arm/mediatek/mediatek,mmsys.txt       |   22 ++
 .../bindings/arm/mediatek/mediatek,vdecsys.txt     |   22 ++
 .../bindings/arm/mediatek/mediatek,vencltsys.txt   |   22 ++
 .../bindings/arm/mediatek/mediatek,vencsys.txt     |   22 ++
 arch/arm64/boot/dts/mediatek/mt8173.dtsi           |   37 ++
 drivers/clk/mediatek/Makefile                      |    2 +-
 drivers/clk/mediatek/clk-apmixed.c                 |  107 ++++++
 drivers/clk/mediatek/clk-cpumux.c                  |  127 +++++++
 drivers/clk/mediatek/clk-cpumux.h                  |   22 ++
 drivers/clk/mediatek/clk-gate.c                    |    2 +-
 drivers/clk/mediatek/clk-mt8173.c                  |  370 +++++++++++++++++++-
 drivers/clk/mediatek/clk-mtk.c                     |   36 +-
 drivers/clk/mediatek/clk-mtk.h                     |   24 +-
 drivers/clk/mediatek/clk-pll.c                     |    7 +-
 include/dt-bindings/clock/mt8173-clk.h             |  106 +++++-
 16 files changed, 916 insertions(+), 34 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,imgsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,mmsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vdecsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vencltsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vencsys.txt
 create mode 100644 drivers/clk/mediatek/clk-apmixed.c
 create mode 100644 drivers/clk/mediatek/clk-cpumux.c
 create mode 100644 drivers/clk/mediatek/clk-cpumux.h



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

* Re: [GIT PULL] clk: mediatek: New clocks support and fixes
  2015-09-22  9:53 [GIT PULL] clk: mediatek: New clocks support and fixes James Liao
@ 2015-09-30 14:47 ` Daniel Kurtz
  2015-10-01 19:29   ` Stephen Boyd
  0 siblings, 1 reply; 9+ messages in thread
From: Daniel Kurtz @ 2015-09-30 14:47 UTC (permalink / raw)
  To: James Liao
  Cc: Matthias Brugger, Stephen Boyd, Mike Turquette, Yingjoe Chen,
	Pi-Cheng Chen, linux-mediatek, linux-kernel, linux-clk

Hi Mike,

On Tue, Sep 22, 2015 at 5:53 PM, James Liao <jamesjj.liao@mediatek.com> wrote:
> This is a collection of new Mediatek clocks support and fixes. These
> patches come from Joe [1], Pi-cheng [2] and me [3], including clock
> support for subsystems, CPU, GPT and some minor fixes.
>
> [1] https://patchwork.kernel.org/patch/6777041/
> [2] https://patchwork.kernel.org/patch/7174721/
> [3] https://lkml.org/lkml/2015/8/10/194
>
> ----------------------------------------------------------------
>
> The following changes since commit 1f93e4a96c9109378204c147b3eec0d0e8100fde:
>
>   Linux 4.3-rc2 (2015-09-20 14:32:34 -0700)
>
> are available in the git repository at:
>
>   https://github.com/jamesjjliao/linux.git v4.3-rc2-clk
>
> for you to fetch changes up to 74219612bb7e25e64409171acada05d9949228f2:
>
>   arm64: dts: mt8173: Add subsystem clock controller device nodes (2015-07-09 12:58:14 +0800)
>

Will this be pulled for 4.3, or is it now destined for 4.4?
(sorry if you are receiving a duplicate email, the previous had HTML
and was rejected by the lists)

-Dan

> ----------------------------------------------------------------
>
> James Liao (9):
>   clk: mediatek: Removed unused dpi_ck clock from MT8173
>   clk: mediatek: Remove unused code from MT8173.
>   clk: mediatek: Add __initdata and __init for data and functions
>   clk: mediatek: Add fixed clocks support for Mediatek SoC.
>   clk: mediatek: Fix rate and dependency of MT8173 clocks
>   dt-bindings: ARM: Mediatek: Document devicetree bindings for clock
>     controllers
>   clk: mediatek: Add subsystem clocks of MT8173
>   clk: mediatek: Add USB clock support in MT8173 APMIXEDSYS
>   arm64: dts: mt8173: Add subsystem clock controller device nodes
>
> Joe.C (1):
>   clk: mediatek: add 13mhz clock for MT8173
>
> pi-cheng.chen (1):
>   clk: mediatek: Export CPU mux clocks for CPU frequency control
>
>  .../bindings/arm/mediatek/mediatek,imgsys.txt      |   22 ++
>  .../bindings/arm/mediatek/mediatek,mmsys.txt       |   22 ++
>  .../bindings/arm/mediatek/mediatek,vdecsys.txt     |   22 ++
>  .../bindings/arm/mediatek/mediatek,vencltsys.txt   |   22 ++
>  .../bindings/arm/mediatek/mediatek,vencsys.txt     |   22 ++
>  arch/arm64/boot/dts/mediatek/mt8173.dtsi           |   37 ++
>  drivers/clk/mediatek/Makefile                      |    2 +-
>  drivers/clk/mediatek/clk-apmixed.c                 |  107 ++++++
>  drivers/clk/mediatek/clk-cpumux.c                  |  127 +++++++
>  drivers/clk/mediatek/clk-cpumux.h                  |   22 ++
>  drivers/clk/mediatek/clk-gate.c                    |    2 +-
>  drivers/clk/mediatek/clk-mt8173.c                  |  370 +++++++++++++++++++-
>  drivers/clk/mediatek/clk-mtk.c                     |   36 +-
>  drivers/clk/mediatek/clk-mtk.h                     |   24 +-
>  drivers/clk/mediatek/clk-pll.c                     |    7 +-
>  include/dt-bindings/clock/mt8173-clk.h             |  106 +++++-
>  16 files changed, 916 insertions(+), 34 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,imgsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,mmsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vdecsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vencltsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vencsys.txt
>  create mode 100644 drivers/clk/mediatek/clk-apmixed.c
>  create mode 100644 drivers/clk/mediatek/clk-cpumux.c
>  create mode 100644 drivers/clk/mediatek/clk-cpumux.h
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

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

* Re: [GIT PULL] clk: mediatek: New clocks support and fixes
  2015-09-30 14:47 ` Daniel Kurtz
@ 2015-10-01 19:29   ` Stephen Boyd
  2015-10-02  1:29     ` Eddie Huang
  0 siblings, 1 reply; 9+ messages in thread
From: Stephen Boyd @ 2015-10-01 19:29 UTC (permalink / raw)
  To: Daniel Kurtz
  Cc: James Liao, Matthias Brugger, Mike Turquette, Yingjoe Chen,
	Pi-Cheng Chen, linux-mediatek, linux-kernel, linux-clk

On 09/30, Daniel Kurtz wrote:
> Hi Mike,
> 
> On Tue, Sep 22, 2015 at 5:53 PM, James Liao <jamesjj.liao@mediatek.com> wrote:
> > This is a collection of new Mediatek clocks support and fixes. These
> > patches come from Joe [1], Pi-cheng [2] and me [3], including clock
> > support for subsystems, CPU, GPT and some minor fixes.
> >
> > [1] https://patchwork.kernel.org/patch/6777041/
> > [2] https://patchwork.kernel.org/patch/7174721/
> > [3] https://lkml.org/lkml/2015/8/10/194
> >
> > ----------------------------------------------------------------
> >
> > The following changes since commit 1f93e4a96c9109378204c147b3eec0d0e8100fde:
> >
> >   Linux 4.3-rc2 (2015-09-20 14:32:34 -0700)
> >
> > are available in the git repository at:
> >
> >   https://github.com/jamesjjliao/linux.git v4.3-rc2-clk
> >
> > for you to fetch changes up to 74219612bb7e25e64409171acada05d9949228f2:
> >
> >   arm64: dts: mt8173: Add subsystem clock controller device nodes (2015-07-09 12:58:14 +0800)
> >
> 
> Will this be pulled for 4.3, or is it now destined for 4.4?
> (sorry if you are receiving a duplicate email, the previous had HTML
> and was rejected by the lists)

This won't make v4.3. I see that there's a third pull request
now, with slightly different contents. Why?

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

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

* Re: [GIT PULL] clk: mediatek: New clocks support and fixes
  2015-10-01 19:29   ` Stephen Boyd
@ 2015-10-02  1:29     ` Eddie Huang
  2015-10-02 18:11       ` Stephen Boyd
  0 siblings, 1 reply; 9+ messages in thread
From: Eddie Huang @ 2015-10-02  1:29 UTC (permalink / raw)
  To: Stephen Boyd
  Cc: Daniel Kurtz, James Liao, Mike Turquette, linux-kernel,
	linux-mediatek, Matthias Brugger, Yingjoe Chen, Pi-Cheng Chen,
	linux-clk

On Thu, 2015-10-01 at 12:29 -0700, Stephen Boyd wrote:
> On 09/30, Daniel Kurtz wrote:
> > Hi Mike,
> > 
> > On Tue, Sep 22, 2015 at 5:53 PM, James Liao <jamesjj.liao@mediatek.com> wrote:
> > > This is a collection of new Mediatek clocks support and fixes. These
> > > patches come from Joe [1], Pi-cheng [2] and me [3], including clock
> > > support for subsystems, CPU, GPT and some minor fixes.
> > >
> > > [1] https://patchwork.kernel.org/patch/6777041/
> > > [2] https://patchwork.kernel.org/patch/7174721/
> > > [3] https://lkml.org/lkml/2015/8/10/194
> > >
> > > ----------------------------------------------------------------
> > >
> > > The following changes since commit 1f93e4a96c9109378204c147b3eec0d0e8100fde:
> > >
> > >   Linux 4.3-rc2 (2015-09-20 14:32:34 -0700)
> > >
> > > are available in the git repository at:
> > >
> > >   https://github.com/jamesjjliao/linux.git v4.3-rc2-clk
> > >
> > > for you to fetch changes up to 74219612bb7e25e64409171acada05d9949228f2:
> > >
> > >   arm64: dts: mt8173: Add subsystem clock controller device nodes (2015-07-09 12:58:14 +0800)
> > >
> > 
> > Will this be pulled for 4.3, or is it now destined for 4.4?
> > (sorry if you are receiving a duplicate email, the previous had HTML
> > and was rejected by the lists)
> 
> This won't make v4.3. I see that there's a third pull request
> now, with slightly different contents. Why?
> 

Sorry not explain in pull request mail. Third pull request remove two
patches:

1. arm64: dts: mt8173: Add subsystem clock controller device nodes
   I think this should pull by Matthias, so I suggest James remove this
patch.

2. clk: mediatek: Export CPU mux clocks for CPU frequency control
   Mike said this patch is ok before
(http://lists.infradead.org/pipermail/linux-arm-kernel/2015-August/364886.html) 
But he told Pi-cheng recently he is working on coordinate clock rate, he
suggest Pi-cheng change this patch, other patches are ok. So James
remove this patch.

Eddie
Thanks



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

* Re: [GIT PULL] clk: mediatek: New clocks support and fixes
  2015-10-02  1:29     ` Eddie Huang
@ 2015-10-02 18:11       ` Stephen Boyd
  0 siblings, 0 replies; 9+ messages in thread
From: Stephen Boyd @ 2015-10-02 18:11 UTC (permalink / raw)
  To: Eddie Huang
  Cc: Daniel Kurtz, James Liao, Mike Turquette, linux-kernel,
	linux-mediatek, Matthias Brugger, Yingjoe Chen, Pi-Cheng Chen,
	linux-clk

On 10/02, Eddie Huang wrote:
> On Thu, 2015-10-01 at 12:29 -0700, Stephen Boyd wrote:
> > On 09/30, Daniel Kurtz wrote:
> > > Hi Mike,
> > > 
> > > On Tue, Sep 22, 2015 at 5:53 PM, James Liao <jamesjj.liao@mediatek.com> wrote:
> > > > This is a collection of new Mediatek clocks support and fixes. These
> > > > patches come from Joe [1], Pi-cheng [2] and me [3], including clock
> > > > support for subsystems, CPU, GPT and some minor fixes.
> > > >
> > > > [1] https://patchwork.kernel.org/patch/6777041/
> > > > [2] https://patchwork.kernel.org/patch/7174721/
> > > > [3] https://lkml.org/lkml/2015/8/10/194
> > > >
> > > > ----------------------------------------------------------------
> > > >
> > > > The following changes since commit 1f93e4a96c9109378204c147b3eec0d0e8100fde:
> > > >
> > > >   Linux 4.3-rc2 (2015-09-20 14:32:34 -0700)
> > > >
> > > > are available in the git repository at:
> > > >
> > > >   https://github.com/jamesjjliao/linux.git v4.3-rc2-clk
> > > >
> > > > for you to fetch changes up to 74219612bb7e25e64409171acada05d9949228f2:
> > > >
> > > >   arm64: dts: mt8173: Add subsystem clock controller device nodes (2015-07-09 12:58:14 +0800)
> > > >
> > > 
> > > Will this be pulled for 4.3, or is it now destined for 4.4?
> > > (sorry if you are receiving a duplicate email, the previous had HTML
> > > and was rejected by the lists)
> > 
> > This won't make v4.3. I see that there's a third pull request
> > now, with slightly different contents. Why?
> > 
> 
> Sorry not explain in pull request mail. Third pull request remove two
> patches:
> 
> 1. arm64: dts: mt8173: Add subsystem clock controller device nodes
>    I think this should pull by Matthias, so I suggest James remove this
> patch.
> 
> 2. clk: mediatek: Export CPU mux clocks for CPU frequency control
>    Mike said this patch is ok before
> (http://lists.infradead.org/pipermail/linux-arm-kernel/2015-August/364886.html) 
> But he told Pi-cheng recently he is working on coordinate clock rate, he
> suggest Pi-cheng change this patch, other patches are ok. So James
> remove this patch.
> Thanks

Ok. Thanks!

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

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

* Re: [GIT PULL] clk: mediatek: New clocks support and fixes
  2015-10-01  5:44 James Liao
@ 2015-10-02 18:47 ` Stephen Boyd
  0 siblings, 0 replies; 9+ messages in thread
From: Stephen Boyd @ 2015-10-02 18:47 UTC (permalink / raw)
  To: James Liao
  Cc: Matthias Brugger, Mike Turquette, Yingjoe Chen, linux-mediatek,
	Pi-Cheng Chen, linux-kernel, linux-clk

On 10/01, James Liao wrote:
> This is a collection of new Mediatek clocks support and fixes. These
> patches come from Joe [1] and me [2], including clock
> support for subsystems, GPT and some minor fixes.
> 
> [1] https://patchwork.kernel.org/patch/6777041/
> [2] https://lkml.org/lkml/2015/8/10/194
> 
> ----------------------------------------------------------------
> 
> The following changes since commit 9ffecb10283508260936b96022d4ee43a7798b4c:
> 
>   Linux 4.3-rc3 (2015-09-27 07:50:08 -0400)
> 
> are available in the git repository at:
> 
>   https://github.com/jamesjjliao/linux.git v4.3-rc3-clk
> 
> for you to fetch changes up to cdb2bab78aff97101da767b9643fbd692af4623b:
> 
>   clk: mediatek: Add USB clock support in MT8173 APMIXEDSYS (2015-05-20 15:59:21 +0800)

Thanks. Pulled!

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

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

* [GIT PULL] clk: mediatek: New clocks support and fixes
@ 2015-10-01  5:44 James Liao
  2015-10-02 18:47 ` Stephen Boyd
  0 siblings, 1 reply; 9+ messages in thread
From: James Liao @ 2015-10-01  5:44 UTC (permalink / raw)
  To: Matthias Brugger, Stephen Boyd, Mike Turquette
  Cc: Yingjoe Chen, linux-mediatek, Pi-Cheng Chen, linux-kernel, linux-clk

This is a collection of new Mediatek clocks support and fixes. These
patches come from Joe [1] and me [2], including clock
support for subsystems, GPT and some minor fixes.

[1] https://patchwork.kernel.org/patch/6777041/
[2] https://lkml.org/lkml/2015/8/10/194

----------------------------------------------------------------

The following changes since commit 9ffecb10283508260936b96022d4ee43a7798b4c:

  Linux 4.3-rc3 (2015-09-27 07:50:08 -0400)

are available in the git repository at:

  https://github.com/jamesjjliao/linux.git v4.3-rc3-clk

for you to fetch changes up to cdb2bab78aff97101da767b9643fbd692af4623b:

  clk: mediatek: Add USB clock support in MT8173 APMIXEDSYS (2015-05-20 15:59:21 +0800)

----------------------------------------------------------------

James Liao (8):
  clk: mediatek: Removed unused dpi_ck clock from MT8173
  clk: mediatek: Remove unused code from MT8173.
  clk: mediatek: Add __initdata and __init for data and functions
  clk: mediatek: Add fixed clocks support for Mediatek SoC.
  clk: mediatek: Fix rate and dependency of MT8173 clocks
  dt-bindings: ARM: Mediatek: Document devicetree bindings for clock
    controllers
  clk: mediatek: Add subsystem clocks of MT8173
  clk: mediatek: Add USB clock support in MT8173 APMIXEDSYS

Joe.C (1):
  clk: mediatek: add 13mhz clock for MT8173

 .../bindings/arm/mediatek/mediatek,imgsys.txt      |   22 ++
 .../bindings/arm/mediatek/mediatek,mmsys.txt       |   22 ++
 .../bindings/arm/mediatek/mediatek,vdecsys.txt     |   22 ++
 .../bindings/arm/mediatek/mediatek,vencltsys.txt   |   22 ++
 .../bindings/arm/mediatek/mediatek,vencsys.txt     |   22 ++
 drivers/clk/mediatek/Makefile                      |    2 +-
 drivers/clk/mediatek/clk-apmixed.c                 |  107 ++++++
 drivers/clk/mediatek/clk-gate.c                    |    2 +-
 drivers/clk/mediatek/clk-mt8173.c                  |  347 +++++++++++++++++++-
 drivers/clk/mediatek/clk-mtk.c                     |   36 +-
 drivers/clk/mediatek/clk-mtk.h                     |   24 +-
 drivers/clk/mediatek/clk-pll.c                     |    7 +-
 include/dt-bindings/clock/mt8173-clk.h             |  104 +++++-
 13 files changed, 705 insertions(+), 34 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,imgsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,mmsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vdecsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vencltsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vencsys.txt
 create mode 100644 drivers/clk/mediatek/clk-apmixed.c



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

* Re: [GIT PULL] clk: mediatek: New clocks support and fixes
  2015-08-19  4:00 James Liao
@ 2015-08-25 19:10 ` Michael Turquette
  0 siblings, 0 replies; 9+ messages in thread
From: Michael Turquette @ 2015-08-25 19:10 UTC (permalink / raw)
  To: James Liao, Matthias Brugger, Stephen Boyd
  Cc: Yingjoe Chen, linux-mediatek, linux-kernel, linux-clk, Pi-Cheng Chen

Quoting James Liao (2015-08-18 21:00:26)
> This is a collection of new Mediatek clocks support and fixes. These
> patches come from Joe [1], Pi-cheng [2] and me [3], including clock
> support for subsystems, CPU, GPT and some minor fixes.
> 
> [1] https://patchwork.kernel.org/patch/6777041/
> [2] https://patchwork.kernel.org/patch/7023951/
> [3] https://lkml.org/lkml/2015/8/10/194

Hi James,

This came in after -rc7. We typically don't take PRs after -rc6 (though
there are always exceptions). It will be applied towards 4.4 as soon as
the merge window closes and -rc1 drops.

One other small nitpick, I see that many of the mediatek clk patches do
not Cc linux-clk@vger.kernel.org. It would be great to include that list
in future patch submissions.

Thanks,
Mike

> 
> ----------------------------------------------------------------
> 
> The following changes since commit bc0195aad0daa2ad5b0d76cce22b167bc3435590:
> 
>   Linux 4.2-rc2 (2015-07-12 15:10:30 -0700)
> 
> are available in the git repository at:
> 
>   https://github.com/jamesjjliao/linux.git v4.2-rc2-clk
> 
> for you to fetch changes up to f4f5326e99f951c8dfed9c3f4d027a3246cb7a8b:
> 
>   clk: mediatek: Add USB clock support in MT8173 APMIXEDSYS (2015-05-20 15:59:21 +0800)
> 
> ----------------------------------------------------------------
> 
> James Liao (8):
>   clk: mediatek: Removed unused dpi_ck clock from MT8173
>   clk: mediatek: Remove unused code from MT8173.
>   clk: mediatek: Add __initdata and __init for data and functions
>   clk: mediatek: Add fixed clocks support for Mediatek SoC.
>   clk: mediatek: Fix rate and dependency of MT8173 clocks
>   dt-bindings: ARM: Mediatek: Document devicetree bindings for clock
>     controllers
>   clk: mediatek: Add subsystem clocks of MT8173
>   clk: mediatek: Add USB clock support in MT8173 APMIXEDSYS
> 
> Joe.C (1):
>   clk: mediatek: add 13mhz clock for MT8173
> 
> pi-cheng.chen (1):
>   clk: mediatek: Export CPU mux clocks for CPU frequency control
> 
>  .../bindings/arm/mediatek/mediatek,imgsys.txt      |   22 ++
>  .../bindings/arm/mediatek/mediatek,mmsys.txt       |   22 ++
>  .../bindings/arm/mediatek/mediatek,vdecsys.txt     |   22 ++
>  .../bindings/arm/mediatek/mediatek,vencltsys.txt   |   22 ++
>  .../bindings/arm/mediatek/mediatek,vencsys.txt     |   22 ++
>  drivers/clk/mediatek/Makefile                      |    2 +-
>  drivers/clk/mediatek/clk-apmixed.c                 |  107 ++++++
>  drivers/clk/mediatek/clk-cpumux.c                  |  127 +++++++
>  drivers/clk/mediatek/clk-cpumux.h                  |   22 ++
>  drivers/clk/mediatek/clk-gate.c                    |    2 +-
>  drivers/clk/mediatek/clk-mt8173.c                  |  370 +++++++++++++++++++-
>  drivers/clk/mediatek/clk-mtk.c                     |   36 +-
>  drivers/clk/mediatek/clk-mtk.h                     |   24 +-
>  drivers/clk/mediatek/clk-pll.c                     |    7 +-
>  include/dt-bindings/clock/mt8173-clk.h             |  106 +++++-
>  15 files changed, 879 insertions(+), 34 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,imgsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,mmsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vdecsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vencltsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vencsys.txt
>  create mode 100644 drivers/clk/mediatek/clk-apmixed.c
>  create mode 100644 drivers/clk/mediatek/clk-cpumux.c
>  create mode 100644 drivers/clk/mediatek/clk-cpumux.h
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

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

* [GIT PULL] clk: mediatek: New clocks support and fixes
@ 2015-08-19  4:00 James Liao
  2015-08-25 19:10 ` Michael Turquette
  0 siblings, 1 reply; 9+ messages in thread
From: James Liao @ 2015-08-19  4:00 UTC (permalink / raw)
  To: Matthias Brugger, Stephen Boyd, Mike Turquette
  Cc: Yingjoe Chen, linux-mediatek, linux-kernel, linux-clk, Pi-Cheng Chen

This is a collection of new Mediatek clocks support and fixes. These
patches come from Joe [1], Pi-cheng [2] and me [3], including clock
support for subsystems, CPU, GPT and some minor fixes.

[1] https://patchwork.kernel.org/patch/6777041/
[2] https://patchwork.kernel.org/patch/7023951/
[3] https://lkml.org/lkml/2015/8/10/194

----------------------------------------------------------------

The following changes since commit bc0195aad0daa2ad5b0d76cce22b167bc3435590:

  Linux 4.2-rc2 (2015-07-12 15:10:30 -0700)

are available in the git repository at:

  https://github.com/jamesjjliao/linux.git v4.2-rc2-clk

for you to fetch changes up to f4f5326e99f951c8dfed9c3f4d027a3246cb7a8b:

  clk: mediatek: Add USB clock support in MT8173 APMIXEDSYS (2015-05-20 15:59:21 +0800)

----------------------------------------------------------------

James Liao (8):
  clk: mediatek: Removed unused dpi_ck clock from MT8173
  clk: mediatek: Remove unused code from MT8173.
  clk: mediatek: Add __initdata and __init for data and functions
  clk: mediatek: Add fixed clocks support for Mediatek SoC.
  clk: mediatek: Fix rate and dependency of MT8173 clocks
  dt-bindings: ARM: Mediatek: Document devicetree bindings for clock
    controllers
  clk: mediatek: Add subsystem clocks of MT8173
  clk: mediatek: Add USB clock support in MT8173 APMIXEDSYS

Joe.C (1):
  clk: mediatek: add 13mhz clock for MT8173

pi-cheng.chen (1):
  clk: mediatek: Export CPU mux clocks for CPU frequency control

 .../bindings/arm/mediatek/mediatek,imgsys.txt      |   22 ++
 .../bindings/arm/mediatek/mediatek,mmsys.txt       |   22 ++
 .../bindings/arm/mediatek/mediatek,vdecsys.txt     |   22 ++
 .../bindings/arm/mediatek/mediatek,vencltsys.txt   |   22 ++
 .../bindings/arm/mediatek/mediatek,vencsys.txt     |   22 ++
 drivers/clk/mediatek/Makefile                      |    2 +-
 drivers/clk/mediatek/clk-apmixed.c                 |  107 ++++++
 drivers/clk/mediatek/clk-cpumux.c                  |  127 +++++++
 drivers/clk/mediatek/clk-cpumux.h                  |   22 ++
 drivers/clk/mediatek/clk-gate.c                    |    2 +-
 drivers/clk/mediatek/clk-mt8173.c                  |  370 +++++++++++++++++++-
 drivers/clk/mediatek/clk-mtk.c                     |   36 +-
 drivers/clk/mediatek/clk-mtk.h                     |   24 +-
 drivers/clk/mediatek/clk-pll.c                     |    7 +-
 include/dt-bindings/clock/mt8173-clk.h             |  106 +++++-
 15 files changed, 879 insertions(+), 34 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,imgsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,mmsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vdecsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vencltsys.txt
 create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,vencsys.txt
 create mode 100644 drivers/clk/mediatek/clk-apmixed.c
 create mode 100644 drivers/clk/mediatek/clk-cpumux.c
 create mode 100644 drivers/clk/mediatek/clk-cpumux.h



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

end of thread, other threads:[~2015-10-02 18:47 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-22  9:53 [GIT PULL] clk: mediatek: New clocks support and fixes James Liao
2015-09-30 14:47 ` Daniel Kurtz
2015-10-01 19:29   ` Stephen Boyd
2015-10-02  1:29     ` Eddie Huang
2015-10-02 18:11       ` Stephen Boyd
  -- strict thread matches above, loose matches on Subject: below --
2015-10-01  5:44 James Liao
2015-10-02 18:47 ` Stephen Boyd
2015-08-19  4:00 James Liao
2015-08-25 19:10 ` Michael Turquette

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).