public inbox for linux-tegra@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/12] Introduce common infra for tegra clocks
@ 2013-09-23 14:24 Peter De Schrijver
  2013-09-23 14:24 ` [PATCH v2 01/12] clk: tegra: simplify periph clock data Peter De Schrijver
                   ` (7 more replies)
  0 siblings, 8 replies; 15+ messages in thread
From: Peter De Schrijver @ 2013-09-23 14:24 UTC (permalink / raw)
  To: Peter De Schrijver
  Cc: Mike Turquette, Stephen Warren, Prashant Gaikwad, Thierry Reding,
	Joseph Lo, Paul Walmsley, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA

This patchset introduces common infrastructure for clocks which exist in
several Tegra SoCs. We also move Tegra114 to this new infrastructure.
Tegra20 and Tegra30 will be moved later in separate patchsets.

Changes since v1:
+ move common clks allocation to patch 2
+ adapt also Tegra20 and Tegra30 to the changes in patch 2

Boottested on dalmore, beaverboard and seaboard.

Peter De Schrijver (12):
  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: add header for common tegra clock IDs
  clk: tegra: add common infra for DT clocks
  clk: tegra: move audio clk to common file
  clk: tegra: move periph clocks to common file
  clk: tegra: move PMC clocks to common file
  clk: tegra: move fixed clocks to common file
  clk: tegra: introduce common tegra_osc_clk_init
  clk: tegra: introduce common gen4 super clock

 drivers/clk/tegra/Makefile               |    7 +-
 drivers/clk/tegra/clk-id.h               |  197 ++++
 drivers/clk/tegra/clk-periph.c           |    9 +-
 drivers/clk/tegra/clk-pll.c              |   95 ++-
 drivers/clk/tegra/clk-tegra-audio.c      |  260 +++++
 drivers/clk/tegra/clk-tegra-fixed.c      |   62 ++
 drivers/clk/tegra/clk-tegra-osc.c        |   81 ++
 drivers/clk/tegra/clk-tegra-periph.c     |  596 ++++++++++++
 drivers/clk/tegra/clk-tegra-pmc.c        |  131 +++
 drivers/clk/tegra/clk-tegra-super-gen4.c |  220 +++++
 drivers/clk/tegra/clk-tegra114.c         | 1547 +++++-------------------------
 drivers/clk/tegra/clk-tegra20.c          |   43 +-
 drivers/clk/tegra/clk-tegra30.c          |   47 +-
 drivers/clk/tegra/clk.c                  |  149 +++
 drivers/clk/tegra/clk.h                  |   48 +-
 15 files changed, 2095 insertions(+), 1397 deletions(-)
 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-osc.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

-- 
1.7.7.rc0.72.g4b5ea.dirty

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2013-10-03  9:16 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-23 14:24 [PATCH v2 00/12] Introduce common infra for tegra clocks Peter De Schrijver
2013-09-23 14:24 ` [PATCH v2 01/12] clk: tegra: simplify periph clock data Peter De Schrijver
2013-09-23 14:24 ` [PATCH v2 02/12] clk: tegra: common periph_clk_enb_refcnt and clks Peter De Schrijver
2013-09-23 14:24 ` [PATCH v2 03/12] clk: tegra: Add TEGRA_PERIPH_NO_DIV flag Peter De Schrijver
2013-09-23 14:24 ` [PATCH v2 05/12] clk: tegra: add header for common tegra clock IDs Peter De Schrijver
2013-09-23 14:24 ` [PATCH v2 06/12] clk: tegra: add common infra for DT clocks Peter De Schrijver
2013-09-23 14:24 ` [PATCH v2 07/12] clk: tegra: move audio clk to common file Peter De Schrijver
2013-09-23 14:25 ` [PATCH v2 08/12] clk: tegra: move periph clocks " Peter De Schrijver
     [not found] ` <1379946381-20125-1-git-send-email-pdeschrijver-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2013-09-23 14:24   ` [PATCH v2 04/12] clk: tegra: move some PLLC and PLLXC init to clk-pll.c Peter De Schrijver
2013-09-23 14:25   ` [PATCH v2 09/12] clk: tegra: move PMC clocks to common file Peter De Schrijver
2013-09-23 14:25   ` [PATCH v2 10/12] clk: tegra: move fixed " Peter De Schrijver
2013-09-23 14:25   ` [PATCH v2 11/12] clk: tegra: introduce common tegra_osc_clk_init Peter De Schrijver
2013-09-23 14:25   ` [PATCH v2 12/12] clk: tegra: introduce common gen4 super clock Peter De Schrijver
2013-10-01 17:39   ` [PATCH v2 00/12] Introduce common infra for tegra clocks Stephen Warren
     [not found]     ` <524B08BD.2020902-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2013-10-03  9:16       ` Peter De Schrijver

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox