Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1230015 > unrolled thread

[GIT PULL] clk: mediatek: New clocks support and fixes

Started byJames Liao <jamesjj.liao@mediatek.com>
First post2015-09-22 12:00 +0200
Last post2015-10-02 20:20 +0200
Articles 5 — 4 participants

Back to article view | Back to linux.kernel


Contents

  [GIT PULL] clk: mediatek: New clocks support and fixes James Liao <jamesjj.liao@mediatek.com> - 2015-09-22 12:00 +0200
    Re: [GIT PULL] clk: mediatek: New clocks support and fixes Daniel Kurtz <djkurtz@chromium.org> - 2015-09-30 16:50 +0200
      Re: [GIT PULL] clk: mediatek: New clocks support and fixes Stephen Boyd <sboyd@codeaurora.org> - 2015-10-01 21:30 +0200
        Re: [GIT PULL] clk: mediatek: New clocks support and fixes Eddie Huang <eddie.huang@mediatek.com> - 2015-10-02 03:40 +0200
          Re: [GIT PULL] clk: mediatek: New clocks support and fixes Stephen Boyd <sboyd@codeaurora.org> - 2015-10-02 20:20 +0200

#1230015 — [GIT PULL] clk: mediatek: New clocks support and fixes

FromJames Liao <jamesjj.liao@mediatek.com>
Date2015-09-22 12:00 +0200
Subject[GIT PULL] clk: mediatek: New clocks support and fixes
Message-ID<qbswG-1Ms-11@gated-at.bofh.it>
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


--
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/

[toc] | [next] | [standalone]


#1236415

FromDaniel Kurtz <djkurtz@chromium.org>
Date2015-09-30 16:50 +0200
Message-ID<qeqRH-7Z1-9@gated-at.bofh.it>
In reply to#1230015
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/
--
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/

[toc] | [prev] | [next] | [standalone]


#1237677

FromStephen Boyd <sboyd@codeaurora.org>
Date2015-10-01 21:30 +0200
Message-ID<qeRIe-5ti-11@gated-at.bofh.it>
In reply to#1236415
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
--
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/

[toc] | [prev] | [next] | [standalone]


#1237875

FromEddie Huang <eddie.huang@mediatek.com>
Date2015-10-02 03:40 +0200
Message-ID<qeXuh-5r2-5@gated-at.bofh.it>
In reply to#1237677
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


--
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/

[toc] | [prev] | [next] | [standalone]


#1238506

FromStephen Boyd <sboyd@codeaurora.org>
Date2015-10-02 20:20 +0200
Message-ID<qfd63-2L2-29@gated-at.bofh.it>
In reply to#1237875
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
--
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/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web