linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: mturquette@linaro.org (Mike Turquette)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] qcom clock changes for 3.17
Date: Fri, 25 Jul 2014 16:14:59 -0700	[thread overview]
Message-ID: <20140725231459.4791.13056@quantum> (raw)
In-Reply-To: <20140721212635.GA19933@codeaurora.org>

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

  reply	other threads:[~2014-07-25 23:14 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-21 21:26 [GIT PULL] qcom clock changes for 3.17 Stephen Boyd
2014-07-25 23:14 ` Mike Turquette [this message]
2014-07-28 15:33 ` Kumar Gala
2014-07-28 17:57   ` Stephen Boyd
2014-07-28 21:13     ` Mike Turquette

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140725231459.4791.13056@quantum \
    --to=mturquette@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).