mbox

[GIT,PULL] qcom clock changes for 3.17

Message ID 20140721212635.GA19933@codeaurora.org
State New
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-clocks-for-3.17

Message

Stephen Boyd July 21, 2014, 9:26 p.m. UTC
Hi Mike,

The following changes since commit a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee:

  Linux 3.16-rc2 (2014-06-21 19:02:54 -1000)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-clocks-for-3.17

for you to fetch changes up to e216ce60a9e05ab399d098f05cd86fd95c9da8d5:

  clk: qcom: Add support for APQ8064 multimedia clocks (2014-07-15 16:39:03 -0700)

----------------------------------------------------------------
qcom clock changes for 3.17

These patches add support for a handful of Qualcomm's SoC clock
controllers: APQ8084 gcc and mmcc, IPQ8064 gcc, and APQ8064.
There's also a small collection of bug fixes that aren't critical
-rc worthy regressions because the consumer drivers aren't present
or using the buggy clocks and one optimization for HDMI.

----------------------------------------------------------------
Georgi Djakov (4):
      clk: qcom: Add APQ8084 Global Clock Controller documentation
      clk: qcom: Add APQ8084 Global Clock Controller support
      clk: qcom: Add APQ8084 clocks for SATA, PCIe and UFS
      clk: qcom: Add APQ8084 Multimedia Clock Controller (MMCC) support

Kumar Gala (1):
      clk: qcom: Add support for IPQ8064's global clock controller (GCC)

Srinivas Kandagatla (1):
      clk: qcom: add clocks necessary for apq8064 sdcc

Stephen Boyd (7):
      clk: qcom: Fully support apq8064 global clock control
      clk: qcom: Support bypass RCG configuration
      clk: qcom: Fix MN frequency tables, parent map, and jpegd
      clk: qcom: Fix PLL rate configurations
      clk: qcom: mdp_lut_clk is a child of mdp_src
      clk: qcom: pll: Add support for configuring SR PLLs
      clk: qcom: Add support for APQ8064 multimedia clocks

 .../devicetree/bindings/clock/qcom,gcc.txt         |    2 +
 .../devicetree/bindings/clock/qcom,mmcc.txt        |    2 +
 drivers/clk/qcom/Kconfig                           |   25 +
 drivers/clk/qcom/Makefile                          |    3 +
 drivers/clk/qcom/clk-pll.c                         |   15 +-
 drivers/clk/qcom/clk-pll.h                         |    2 +
 drivers/clk/qcom/clk-rcg.c                         |   51 +-
 drivers/clk/qcom/clk-rcg.h                         |    1 +
 drivers/clk/qcom/common.c                          |   39 +-
 drivers/clk/qcom/common.h                          |    6 +
 drivers/clk/qcom/gcc-apq8084.c                     | 3611 ++++++++++++++++++++
 drivers/clk/qcom/gcc-ipq806x.c                     | 2424 +++++++++++++
 drivers/clk/qcom/gcc-msm8960.c                     |  583 +++-
 drivers/clk/qcom/mmcc-apq8084.c                    | 3352 ++++++++++++++++++
 drivers/clk/qcom/mmcc-msm8960.c                    |  526 ++-
 drivers/clk/qcom/mmcc-msm8974.c                    |   10 +-
 include/dt-bindings/clock/qcom,gcc-apq8084.h       |  351 ++
 include/dt-bindings/clock/qcom,gcc-ipq806x.h       |  293 ++
 include/dt-bindings/clock/qcom,gcc-msm8960.h       |   11 +
 include/dt-bindings/clock/qcom,mmcc-apq8084.h      |  183 +
 include/dt-bindings/clock/qcom,mmcc-msm8960.h      |    8 +
 include/dt-bindings/reset/qcom,gcc-apq8084.h       |  109 +
 include/dt-bindings/reset/qcom,gcc-ipq806x.h       |  132 +
 include/dt-bindings/reset/qcom,gcc-msm8960.h       |   16 +
 include/dt-bindings/reset/qcom,mmcc-apq8084.h      |   64 +
 include/dt-bindings/reset/qcom,mmcc-msm8960.h      |    8 +
 26 files changed, 11747 insertions(+), 80 deletions(-)
 create mode 100644 drivers/clk/qcom/gcc-apq8084.c
 create mode 100644 drivers/clk/qcom/gcc-ipq806x.c
 create mode 100644 drivers/clk/qcom/mmcc-apq8084.c
 create mode 100644 include/dt-bindings/clock/qcom,gcc-apq8084.h
 create mode 100644 include/dt-bindings/clock/qcom,gcc-ipq806x.h
 create mode 100644 include/dt-bindings/clock/qcom,mmcc-apq8084.h
 create mode 100644 include/dt-bindings/reset/qcom,gcc-apq8084.h
 create mode 100644 include/dt-bindings/reset/qcom,gcc-ipq806x.h
 create mode 100644 include/dt-bindings/reset/qcom,mmcc-apq8084.h

Comments

Mike Turquette July 25, 2014, 11:14 p.m. UTC | #1
Quoting Stephen Boyd (2014-07-21 14:26:35)
> Hi Mike,
> 
> The following changes since commit a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee:
> 
>   Linux 3.16-rc2 (2014-06-21 19:02:54 -1000)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-clocks-for-3.17

Pulled. I wasn't expecting to get a PR for the qcom bits. Nice!

Regards,
Mike

> 
> for you to fetch changes up to e216ce60a9e05ab399d098f05cd86fd95c9da8d5:
> 
>   clk: qcom: Add support for APQ8064 multimedia clocks (2014-07-15 16:39:03 -0700)
> 
> ----------------------------------------------------------------
> qcom clock changes for 3.17
> 
> These patches add support for a handful of Qualcomm's SoC clock
> controllers: APQ8084 gcc and mmcc, IPQ8064 gcc, and APQ8064.
> There's also a small collection of bug fixes that aren't critical
> -rc worthy regressions because the consumer drivers aren't present
> or using the buggy clocks and one optimization for HDMI.
> 
> ----------------------------------------------------------------
> Georgi Djakov (4):
>       clk: qcom: Add APQ8084 Global Clock Controller documentation
>       clk: qcom: Add APQ8084 Global Clock Controller support
>       clk: qcom: Add APQ8084 clocks for SATA, PCIe and UFS
>       clk: qcom: Add APQ8084 Multimedia Clock Controller (MMCC) support
> 
> Kumar Gala (1):
>       clk: qcom: Add support for IPQ8064's global clock controller (GCC)
> 
> Srinivas Kandagatla (1):
>       clk: qcom: add clocks necessary for apq8064 sdcc
> 
> Stephen Boyd (7):
>       clk: qcom: Fully support apq8064 global clock control
>       clk: qcom: Support bypass RCG configuration
>       clk: qcom: Fix MN frequency tables, parent map, and jpegd
>       clk: qcom: Fix PLL rate configurations
>       clk: qcom: mdp_lut_clk is a child of mdp_src
>       clk: qcom: pll: Add support for configuring SR PLLs
>       clk: qcom: Add support for APQ8064 multimedia clocks
> 
>  .../devicetree/bindings/clock/qcom,gcc.txt         |    2 +
>  .../devicetree/bindings/clock/qcom,mmcc.txt        |    2 +
>  drivers/clk/qcom/Kconfig                           |   25 +
>  drivers/clk/qcom/Makefile                          |    3 +
>  drivers/clk/qcom/clk-pll.c                         |   15 +-
>  drivers/clk/qcom/clk-pll.h                         |    2 +
>  drivers/clk/qcom/clk-rcg.c                         |   51 +-
>  drivers/clk/qcom/clk-rcg.h                         |    1 +
>  drivers/clk/qcom/common.c                          |   39 +-
>  drivers/clk/qcom/common.h                          |    6 +
>  drivers/clk/qcom/gcc-apq8084.c                     | 3611 ++++++++++++++++++++
>  drivers/clk/qcom/gcc-ipq806x.c                     | 2424 +++++++++++++
>  drivers/clk/qcom/gcc-msm8960.c                     |  583 +++-
>  drivers/clk/qcom/mmcc-apq8084.c                    | 3352 ++++++++++++++++++
>  drivers/clk/qcom/mmcc-msm8960.c                    |  526 ++-
>  drivers/clk/qcom/mmcc-msm8974.c                    |   10 +-
>  include/dt-bindings/clock/qcom,gcc-apq8084.h       |  351 ++
>  include/dt-bindings/clock/qcom,gcc-ipq806x.h       |  293 ++
>  include/dt-bindings/clock/qcom,gcc-msm8960.h       |   11 +
>  include/dt-bindings/clock/qcom,mmcc-apq8084.h      |  183 +
>  include/dt-bindings/clock/qcom,mmcc-msm8960.h      |    8 +
>  include/dt-bindings/reset/qcom,gcc-apq8084.h       |  109 +
>  include/dt-bindings/reset/qcom,gcc-ipq806x.h       |  132 +
>  include/dt-bindings/reset/qcom,gcc-msm8960.h       |   16 +
>  include/dt-bindings/reset/qcom,mmcc-apq8084.h      |   64 +
>  include/dt-bindings/reset/qcom,mmcc-msm8960.h      |    8 +
>  26 files changed, 11747 insertions(+), 80 deletions(-)
>  create mode 100644 drivers/clk/qcom/gcc-apq8084.c
>  create mode 100644 drivers/clk/qcom/gcc-ipq806x.c
>  create mode 100644 drivers/clk/qcom/mmcc-apq8084.c
>  create mode 100644 include/dt-bindings/clock/qcom,gcc-apq8084.h
>  create mode 100644 include/dt-bindings/clock/qcom,gcc-ipq806x.h
>  create mode 100644 include/dt-bindings/clock/qcom,mmcc-apq8084.h
>  create mode 100644 include/dt-bindings/reset/qcom,gcc-apq8084.h
>  create mode 100644 include/dt-bindings/reset/qcom,gcc-ipq806x.h
>  create mode 100644 include/dt-bindings/reset/qcom,mmcc-apq8084.h
> -- 
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
> hosted by The Linux Foundation
Kumar Gala July 28, 2014, 3:33 p.m. UTC | #2
On Jul 21, 2014, at 4:26 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:

> Hi Mike,
> 
> The following changes since commit a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee:
> 
>  Linux 3.16-rc2 (2014-06-21 19:02:54 -1000)
> 
> are available in the git repository at:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-clocks-for-3.17
> 
> for you to fetch changes up to e216ce60a9e05ab399d098f05cd86fd95c9da8d5:
> 
>  clk: qcom: Add support for APQ8064 multimedia clocks (2014-07-15 16:39:03 -0700)

Mike,

Any update on this pull request?

- k

> 
> ----------------------------------------------------------------
> qcom clock changes for 3.17
> 
> These patches add support for a handful of Qualcomm's SoC clock
> controllers: APQ8084 gcc and mmcc, IPQ8064 gcc, and APQ8064.
> There's also a small collection of bug fixes that aren't critical
> -rc worthy regressions because the consumer drivers aren't present
> or using the buggy clocks and one optimization for HDMI.
> 
> ----------------------------------------------------------------
> Georgi Djakov (4):
>      clk: qcom: Add APQ8084 Global Clock Controller documentation
>      clk: qcom: Add APQ8084 Global Clock Controller support
>      clk: qcom: Add APQ8084 clocks for SATA, PCIe and UFS
>      clk: qcom: Add APQ8084 Multimedia Clock Controller (MMCC) support
> 
> Kumar Gala (1):
>      clk: qcom: Add support for IPQ8064's global clock controller (GCC)
> 
> Srinivas Kandagatla (1):
>      clk: qcom: add clocks necessary for apq8064 sdcc
> 
> Stephen Boyd (7):
>      clk: qcom: Fully support apq8064 global clock control
>      clk: qcom: Support bypass RCG configuration
>      clk: qcom: Fix MN frequency tables, parent map, and jpegd
>      clk: qcom: Fix PLL rate configurations
>      clk: qcom: mdp_lut_clk is a child of mdp_src
>      clk: qcom: pll: Add support for configuring SR PLLs
>      clk: qcom: Add support for APQ8064 multimedia clocks
> 
> .../devicetree/bindings/clock/qcom,gcc.txt         |    2 +
> .../devicetree/bindings/clock/qcom,mmcc.txt        |    2 +
> drivers/clk/qcom/Kconfig                           |   25 +
> drivers/clk/qcom/Makefile                          |    3 +
> drivers/clk/qcom/clk-pll.c                         |   15 +-
> drivers/clk/qcom/clk-pll.h                         |    2 +
> drivers/clk/qcom/clk-rcg.c                         |   51 +-
> drivers/clk/qcom/clk-rcg.h                         |    1 +
> drivers/clk/qcom/common.c                          |   39 +-
> drivers/clk/qcom/common.h                          |    6 +
> drivers/clk/qcom/gcc-apq8084.c                     | 3611 ++++++++++++++++++++
> drivers/clk/qcom/gcc-ipq806x.c                     | 2424 +++++++++++++
> drivers/clk/qcom/gcc-msm8960.c                     |  583 +++-
> drivers/clk/qcom/mmcc-apq8084.c                    | 3352 ++++++++++++++++++
> drivers/clk/qcom/mmcc-msm8960.c                    |  526 ++-
> drivers/clk/qcom/mmcc-msm8974.c                    |   10 +-
> include/dt-bindings/clock/qcom,gcc-apq8084.h       |  351 ++
> include/dt-bindings/clock/qcom,gcc-ipq806x.h       |  293 ++
> include/dt-bindings/clock/qcom,gcc-msm8960.h       |   11 +
> include/dt-bindings/clock/qcom,mmcc-apq8084.h      |  183 +
> include/dt-bindings/clock/qcom,mmcc-msm8960.h      |    8 +
> include/dt-bindings/reset/qcom,gcc-apq8084.h       |  109 +
> include/dt-bindings/reset/qcom,gcc-ipq806x.h       |  132 +
> include/dt-bindings/reset/qcom,gcc-msm8960.h       |   16 +
> include/dt-bindings/reset/qcom,mmcc-apq8084.h      |   64 +
> include/dt-bindings/reset/qcom,mmcc-msm8960.h      |    8 +
> 26 files changed, 11747 insertions(+), 80 deletions(-)
> create mode 100644 drivers/clk/qcom/gcc-apq8084.c
> create mode 100644 drivers/clk/qcom/gcc-ipq806x.c
> create mode 100644 drivers/clk/qcom/mmcc-apq8084.c
> create mode 100644 include/dt-bindings/clock/qcom,gcc-apq8084.h
> create mode 100644 include/dt-bindings/clock/qcom,gcc-ipq806x.h
> create mode 100644 include/dt-bindings/clock/qcom,mmcc-apq8084.h
> create mode 100644 include/dt-bindings/reset/qcom,gcc-apq8084.h
> create mode 100644 include/dt-bindings/reset/qcom,gcc-ipq806x.h
> create mode 100644 include/dt-bindings/reset/qcom,mmcc-apq8084.h
> -- 
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
> hosted by The Linux Foundation
> --
> To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
Stephen Boyd July 28, 2014, 5:57 p.m. UTC | #3
On 07/28, Kumar Gala wrote:
> 
> On Jul 21, 2014, at 4:26 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:
> 
> > Hi Mike,
> > 
> > The following changes since commit a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee:
> > 
> >  Linux 3.16-rc2 (2014-06-21 19:02:54 -1000)
> > 
> > are available in the git repository at:
> > 
> >  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-clocks-for-3.17
> > 
> > for you to fetch changes up to e216ce60a9e05ab399d098f05cd86fd95c9da8d5:
> > 
> >  clk: qcom: Add support for APQ8064 multimedia clocks (2014-07-15 16:39:03 -0700)
> 
> Mike,
> 
> Any update on this pull request?
> 

I think Mike picked it up already but I don't see it pushed out
to clk-next so far.
Mike Turquette July 28, 2014, 9:13 p.m. UTC | #4
Quoting Stephen Boyd (2014-07-28 10:57:02)
> On 07/28, Kumar Gala wrote:
> > 
> > On Jul 21, 2014, at 4:26 PM, Stephen Boyd <sboyd@codeaurora.org> wrote:
> > 
> > > Hi Mike,
> > > 
> > > The following changes since commit a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee:
> > > 
> > >  Linux 3.16-rc2 (2014-06-21 19:02:54 -1000)
> > > 
> > > are available in the git repository at:
> > > 
> > >  git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git tags/qcom-clocks-for-3.17
> > > 
> > > for you to fetch changes up to e216ce60a9e05ab399d098f05cd86fd95c9da8d5:
> > > 
> > >  clk: qcom: Add support for APQ8064 multimedia clocks (2014-07-15 16:39:03 -0700)
> > 
> > Mike,
> > 
> > Any update on this pull request?
> > 
> 
> I think Mike picked it up already but I don't see it pushed out
> to clk-next so far.

Stephen is correct. I'll push out the latest commits later today.

Regards,
Mike

> 
> -- 
> Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
> hosted by The Linux Foundation