From: Mike Turquette <mturquette@linaro.org>
To: Peter De Schrijver <pdeschrijver@nvidia.com>
Cc: "mark.rutland@arm.com" <mark.rutland@arm.com>,
Prashant Gaikwad <pgaikwad@nvidia.com>,
"pawel.moll@arm.com" <pawel.moll@arm.com>,
"swarren@wwwdotorg.org" <swarren@wwwdotorg.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"rob.herring@calxeda.com" <rob.herring@calxeda.com>,
"thierry.reding@gmail.com" <thierry.reding@gmail.com>,
"linux-tegra@vger.kernel.org" <linux-tegra@vger.kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: Re: pull request for Tegra clock rework and Tegra124 clock support
Date: Tue, 22 Oct 2013 03:19:04 -0700 [thread overview]
Message-ID: <20131022101904.7554.73999@quantum> (raw)
In-Reply-To: <20131021135638.GA10943@tbergstrom-lnx.Nvidia.com>
Quoting Peter De Schrijver (2013-10-21 06:56:38)
> Hi Mike,
>
> This pull request contains both the tegra clock rework patches
> ([PATCH v6 00/15] Introduce common infra for tegra clocks)
> and the patches to support Tegra124 ([PATCH v4 0/7] Tegra124 clock support)
>
> The following changes since commit d031acfc0b8376209e5b429513766e7028e40e1d:
>
> clk: tegra114: Rename gr_2d/gr_3d to gr2d/gr3d (2013-10-16 19:49:25 +0300)
>
> are available in the git repository at:
> git://nv-tegra.nvidia.com/user/pdeschrijver/linux.git tegra-clk-tegra124-0
Thanks for the pull request Peter. I've taken into clk-next. Next time
can you generate a signed tag? Due to the increased volume of ccf
patches I'm happy to start taking pull requests more regularly (after
requisite review on the list).
Regards,
Mike
>
> Joseph Lo (2):
> clk: tegra124: add wait_for_reset and disable_clock for tegra_cpu_car_ops
> clk: tegra124: add suspend/resume function for tegra_cpu_car_ops
>
> Peter De Schrijver (20):
> ARM: tegra30: add missing CLK IDs
> clk: tegra: simplify periph clock data
> clk: tegra: common periph_clk_enb_refcnt and clks
> clk: tegra: Add TEGRA_PERIPH_NO_DIV flag
> clk: tegra: move some PLLC and PLLXC init to clk-pll.c
> clk: tegra: move fields to tegra_clk_pll_params
> clk: tegra: add header for common tegra clock IDs
> clk: tegra: add common infra for DT clocks
> clk: tegra: add clkdev registration infra
> clk: tegra: move audio clk to common file
> clk: tegra: move periph clocks to common file
> clk: tegra: move PMC, fixed clocks to common files
> clk: tegra: introduce common gen4 super clock
> clk: tegra: move tegra30 to common infra
> clk: tegra: move tegra20 to common infra
> clk: tegra: Add support for PLLSS
> clk: tegra: Add periph regs bank X
> clk: tegra124: Add common clk IDs to clk-id.h
> clk: tegra124: Add new peripheral clocks
> clk: tegra124: Add support for Tegra124 clocks
>
> .../bindings/clock/nvidia,tegra124-car.txt | 59 +
> drivers/clk/tegra/Makefile | 7 +-
> drivers/clk/tegra/clk-id.h | 233 +++
> drivers/clk/tegra/clk-periph-gate.c | 8 +-
> drivers/clk/tegra/clk-periph.c | 18 +-
> drivers/clk/tegra/clk-pll.c | 356 ++++--
> drivers/clk/tegra/clk-tegra-audio.c | 215 +++
> drivers/clk/tegra/clk-tegra-fixed.c | 111 ++
> drivers/clk/tegra/clk-tegra-periph.c | 644 ++++++++
> drivers/clk/tegra/clk-tegra-pmc.c | 131 ++
> drivers/clk/tegra/clk-tegra-super-gen4.c | 149 ++
> drivers/clk/tegra/clk-tegra114.c | 1540 +++++---------------
> drivers/clk/tegra/clk-tegra124.c | 1430 ++++++++++++++++++
> drivers/clk/tegra/clk-tegra20.c | 811 ++++-------
> drivers/clk/tegra/clk-tegra30.c | 1492 ++++++-------------
> drivers/clk/tegra/clk.c | 166 +++
> drivers/clk/tegra/clk.h | 104 +-
> include/dt-bindings/clock/tegra124-car.h | 340 +++++
> include/dt-bindings/clock/tegra30-car.h | 10 +-
> 19 files changed, 4940 insertions(+), 2884 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/clock/nvidia,tegra124-car.txt
> create mode 100644 drivers/clk/tegra/clk-id.h
> create mode 100644 drivers/clk/tegra/clk-tegra-audio.c
> create mode 100644 drivers/clk/tegra/clk-tegra-fixed.c
> create mode 100644 drivers/clk/tegra/clk-tegra-periph.c
> create mode 100644 drivers/clk/tegra/clk-tegra-pmc.c
> create mode 100644 drivers/clk/tegra/clk-tegra-super-gen4.c
> create mode 100644 drivers/clk/tegra/clk-tegra124.c
> create mode 100644 include/dt-bindings/clock/tegra124-car.h
WARNING: multiple messages have this Message-ID (diff)
From: mturquette@linaro.org (Mike Turquette)
To: linux-arm-kernel@lists.infradead.org
Subject: pull request for Tegra clock rework and Tegra124 clock support
Date: Tue, 22 Oct 2013 03:19:04 -0700 [thread overview]
Message-ID: <20131022101904.7554.73999@quantum> (raw)
In-Reply-To: <20131021135638.GA10943@tbergstrom-lnx.Nvidia.com>
Quoting Peter De Schrijver (2013-10-21 06:56:38)
> Hi Mike,
>
> This pull request contains both the tegra clock rework patches
> ([PATCH v6 00/15] Introduce common infra for tegra clocks)
> and the patches to support Tegra124 ([PATCH v4 0/7] Tegra124 clock support)
>
> The following changes since commit d031acfc0b8376209e5b429513766e7028e40e1d:
>
> clk: tegra114: Rename gr_2d/gr_3d to gr2d/gr3d (2013-10-16 19:49:25 +0300)
>
> are available in the git repository at:
> git://nv-tegra.nvidia.com/user/pdeschrijver/linux.git tegra-clk-tegra124-0
Thanks for the pull request Peter. I've taken into clk-next. Next time
can you generate a signed tag? Due to the increased volume of ccf
patches I'm happy to start taking pull requests more regularly (after
requisite review on the list).
Regards,
Mike
>
> Joseph Lo (2):
> clk: tegra124: add wait_for_reset and disable_clock for tegra_cpu_car_ops
> clk: tegra124: add suspend/resume function for tegra_cpu_car_ops
>
> Peter De Schrijver (20):
> ARM: tegra30: add missing CLK IDs
> clk: tegra: simplify periph clock data
> clk: tegra: common periph_clk_enb_refcnt and clks
> clk: tegra: Add TEGRA_PERIPH_NO_DIV flag
> clk: tegra: move some PLLC and PLLXC init to clk-pll.c
> clk: tegra: move fields to tegra_clk_pll_params
> clk: tegra: add header for common tegra clock IDs
> clk: tegra: add common infra for DT clocks
> clk: tegra: add clkdev registration infra
> clk: tegra: move audio clk to common file
> clk: tegra: move periph clocks to common file
> clk: tegra: move PMC, fixed clocks to common files
> clk: tegra: introduce common gen4 super clock
> clk: tegra: move tegra30 to common infra
> clk: tegra: move tegra20 to common infra
> clk: tegra: Add support for PLLSS
> clk: tegra: Add periph regs bank X
> clk: tegra124: Add common clk IDs to clk-id.h
> clk: tegra124: Add new peripheral clocks
> clk: tegra124: Add support for Tegra124 clocks
>
> .../bindings/clock/nvidia,tegra124-car.txt | 59 +
> drivers/clk/tegra/Makefile | 7 +-
> drivers/clk/tegra/clk-id.h | 233 +++
> drivers/clk/tegra/clk-periph-gate.c | 8 +-
> drivers/clk/tegra/clk-periph.c | 18 +-
> drivers/clk/tegra/clk-pll.c | 356 ++++--
> drivers/clk/tegra/clk-tegra-audio.c | 215 +++
> drivers/clk/tegra/clk-tegra-fixed.c | 111 ++
> drivers/clk/tegra/clk-tegra-periph.c | 644 ++++++++
> drivers/clk/tegra/clk-tegra-pmc.c | 131 ++
> drivers/clk/tegra/clk-tegra-super-gen4.c | 149 ++
> drivers/clk/tegra/clk-tegra114.c | 1540 +++++---------------
> drivers/clk/tegra/clk-tegra124.c | 1430 ++++++++++++++++++
> drivers/clk/tegra/clk-tegra20.c | 811 ++++-------
> drivers/clk/tegra/clk-tegra30.c | 1492 ++++++-------------
> drivers/clk/tegra/clk.c | 166 +++
> drivers/clk/tegra/clk.h | 104 +-
> include/dt-bindings/clock/tegra124-car.h | 340 +++++
> include/dt-bindings/clock/tegra30-car.h | 10 +-
> 19 files changed, 4940 insertions(+), 2884 deletions(-)
> create mode 100644 Documentation/devicetree/bindings/clock/nvidia,tegra124-car.txt
> create mode 100644 drivers/clk/tegra/clk-id.h
> create mode 100644 drivers/clk/tegra/clk-tegra-audio.c
> create mode 100644 drivers/clk/tegra/clk-tegra-fixed.c
> create mode 100644 drivers/clk/tegra/clk-tegra-periph.c
> create mode 100644 drivers/clk/tegra/clk-tegra-pmc.c
> create mode 100644 drivers/clk/tegra/clk-tegra-super-gen4.c
> create mode 100644 drivers/clk/tegra/clk-tegra124.c
> create mode 100644 include/dt-bindings/clock/tegra124-car.h
next prev parent reply other threads:[~2013-10-22 10:19 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-21 13:56 pull request for Tegra clock rework and Tegra124 clock support Peter De Schrijver
2013-10-21 13:56 ` Peter De Schrijver
2013-10-21 13:56 ` Peter De Schrijver
[not found] ` <20131021135638.GA10943-Rysk9IDjsxmJz7etNGeUX8VPkgjIgRvpAL8bYrjMMd8@public.gmane.org>
2013-10-21 19:57 ` Stephen Warren
2013-10-21 19:57 ` Stephen Warren
2013-10-21 19:57 ` Stephen Warren
2013-10-22 10:19 ` Mike Turquette [this message]
2013-10-22 10:19 ` Mike Turquette
2013-10-23 8:46 ` Peter De Schrijver
2013-10-23 8:46 ` Peter De Schrijver
[not found] ` <20131023084631.GG22111-Rysk9IDjsxmJz7etNGeUX8VPkgjIgRvpAL8bYrjMMd8@public.gmane.org>
2013-10-30 0:47 ` Peter De Schrijver
2013-10-30 0:47 ` Peter De Schrijver
2013-10-30 0:47 ` Peter De Schrijver
2013-10-31 18:52 ` Mike Turquette
2013-10-31 18:52 ` 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=20131022101904.7554.73999@quantum \
--to=mturquette@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=pawel.moll@arm.com \
--cc=pdeschrijver@nvidia.com \
--cc=pgaikwad@nvidia.com \
--cc=rob.herring@calxeda.com \
--cc=swarren@wwwdotorg.org \
--cc=thierry.reding@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.