2014-07-21 21:26:38

by Stephen Boyd

[permalink] [raw]
Subject: [GIT PULL] qcom clock changes for 3.17

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
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation


2014-07-28 15:33:52

by Kumar Gala

[permalink] [raw]
Subject: Re: [GIT PULL] qcom clock changes for 3.17


On Jul 21, 2014, at 4:26 PM, Stephen Boyd <[email protected]> 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 [email protected]
> More majordomo info at http://vger.kernel.org/majordomo-info.html

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

2014-07-28 17:57:07

by Stephen Boyd

[permalink] [raw]
Subject: Re: [GIT PULL] qcom clock changes for 3.17

On 07/28, Kumar Gala wrote:
>
> On Jul 21, 2014, at 4:26 PM, Stephen Boyd <[email protected]> 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.

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

2014-07-28 21:14:08

by Mike Turquette

[permalink] [raw]
Subject: Re: [GIT PULL] qcom clock changes for 3.17

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 <[email protected]> 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