All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Port Tegra to generic clk framework
@ 2012-06-28 10:37 ` Prashant Gaikwad
  0 siblings, 0 replies; 57+ messages in thread
From: Prashant Gaikwad @ 2012-06-28 10:37 UTC (permalink / raw)
  To: swarren-3lzwWm7+Weoh9ZMKESR00Q, mturquette-l0cyMroinI0
  Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, linux-lFZ/pmaqli7XmaaqVzeoHQ,
	ccross-z5hGa2qSFaRBDgjK7y7TUQ, olof-nZhT3qVonbNeoWH0uzbU5w,
	Prashant Gaikwad

This patch set ports Tegra clock code to generic clock framework.

Depends on
[PATCH v3 0/9] Add clk_prepare/clk_unprepare series
[PATCH] ARM: tegra: Remove second instance of uart clk
[PATCH] dma: tegra: add clk_prepare/clk_unprepare
[PATCH] ARM: tegra: dma: rename driver name for clock to "tegra-apbdma"

Tested on Ventana and Cardhu

Prashant Gaikwad (6):
  ARM: tegra30: Separate out clk ops and clk data
  ARM: tegra20: Separate out clk ops and clk data
  ARM: tegra: Rename tegra20 clock file
  ARM: tegra: Add clk_tegra structure and helper functions
  ARM: tegra: Port tegra to generic clock framework
  ARM: tegra: Remove duplicate code

 arch/arm/Kconfig                          |    1 +
 arch/arm/mach-tegra/Makefile              |    4 +-
 arch/arm/mach-tegra/clock.c               |  570 +-------
 arch/arm/mach-tegra/clock.h               |   40 +-
 arch/arm/mach-tegra/common.c              |    1 -
 arch/arm/mach-tegra/include/mach/clk.h    |    3 +
 arch/arm/mach-tegra/tegra20_clocks.c      | 1498 +++++++++++++++++
 arch/arm/mach-tegra/tegra20_clocks.h      |   41 +
 arch/arm/mach-tegra/tegra20_clocks_data.c | 1127 +++++++++++++
 arch/arm/mach-tegra/tegra2_clocks.c       | 2464 ----------------------------
 arch/arm/mach-tegra/tegra30_clocks.c      | 2474 +++++++++--------------------
 arch/arm/mach-tegra/tegra30_clocks.h      |   53 +
 arch/arm/mach-tegra/tegra30_clocks_data.c | 1374 ++++++++++++++++
 13 files changed, 4935 insertions(+), 4715 deletions(-)
 create mode 100644 arch/arm/mach-tegra/tegra20_clocks.c
 create mode 100644 arch/arm/mach-tegra/tegra20_clocks.h
 create mode 100644 arch/arm/mach-tegra/tegra20_clocks_data.c
 delete mode 100644 arch/arm/mach-tegra/tegra2_clocks.c
 create mode 100644 arch/arm/mach-tegra/tegra30_clocks.h
 create mode 100644 arch/arm/mach-tegra/tegra30_clocks_data.c

-- 
1.7.4.1

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

end of thread, other threads:[~2012-07-03 11:29 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-28 10:37 [PATCH 0/6] Port Tegra to generic clk framework Prashant Gaikwad
2012-06-28 10:37 ` Prashant Gaikwad
2012-06-28 10:37 ` Prashant Gaikwad
2012-06-28 10:37 ` [PATCH 1/6] ARM: tegra30: Separate out clk ops and clk data Prashant Gaikwad
2012-06-28 10:37   ` Prashant Gaikwad
2012-06-28 10:37   ` Prashant Gaikwad
2012-06-28 10:37 ` [PATCH 3/6] ARM: tegra: Rename tegra20 clock file Prashant Gaikwad
2012-06-28 10:37   ` Prashant Gaikwad
2012-06-28 10:37   ` Prashant Gaikwad
2012-06-28 10:37 ` [PATCH 4/6] ARM: tegra: Add clk_tegra structure and helper functions Prashant Gaikwad
2012-06-28 10:37   ` Prashant Gaikwad
2012-06-28 10:37   ` Prashant Gaikwad
     [not found]   ` <1340879846-12900-5-git-send-email-pgaikwad-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-06-28 18:28     ` Mike Turquette
2012-06-28 18:28       ` Mike Turquette
2012-06-28 18:28       ` Mike Turquette
     [not found]       ` <20120628182759.GA28424-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2012-06-29  8:34         ` Prashant Gaikwad
2012-06-29  8:34           ` Prashant Gaikwad
2012-06-29  8:34           ` Prashant Gaikwad
     [not found]           ` <4FED688E.9090408-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-07-03  0:09             ` Turquette, Mike
2012-07-03  0:09               ` Turquette, Mike
2012-07-03  0:09               ` Turquette, Mike
     [not found]               ` <CAJOA=zMt-HWKrgQ-pD-wH0s_Nao5sJA13+ESJSBkHQ_3OBurtg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-07-03  1:31                 ` Stephen Warren
2012-07-03  1:31                   ` Stephen Warren
2012-07-03  1:31                   ` Stephen Warren
2012-07-03  1:49                   ` Turquette, Mike
2012-07-03  1:49                     ` Turquette, Mike
2012-07-03  1:49                     ` Turquette, Mike
2012-06-28 10:37 ` [PATCH 5/6] ARM: tegra: Port tegra to generic clock framework Prashant Gaikwad
2012-06-28 10:37   ` Prashant Gaikwad
2012-06-28 10:37   ` Prashant Gaikwad
     [not found]   ` <1340879846-12900-6-git-send-email-pgaikwad-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-06-28 17:29     ` Prashant G
2012-06-28 17:29       ` Prashant G
2012-06-28 17:29       ` Prashant G
     [not found] ` <1340879846-12900-1-git-send-email-pgaikwad-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-06-28 10:37   ` [PATCH 2/6] ARM: tegra20: Separate out clk ops and clk data Prashant Gaikwad
2012-06-28 10:37     ` Prashant Gaikwad
2012-06-28 10:37     ` Prashant Gaikwad
     [not found]     ` <1340879846-12900-3-git-send-email-pgaikwad-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2012-06-28 17:37       ` Stephen Warren
2012-06-28 17:37         ` Stephen Warren
2012-06-28 17:37         ` Stephen Warren
2012-06-29  2:06         ` Prashant G
2012-06-29  2:06           ` Prashant G
2012-06-29  2:06           ` Prashant G
2012-06-28 10:37   ` [PATCH 6/6] ARM: tegra: Remove duplicate code Prashant Gaikwad
2012-06-28 10:37     ` Prashant Gaikwad
2012-06-28 10:37     ` Prashant Gaikwad
2012-06-28 17:39   ` [PATCH 0/6] Port Tegra to generic clk framework Stephen Warren
2012-06-28 17:39     ` Stephen Warren
2012-06-28 17:39     ` Stephen Warren
2012-06-29 17:24   ` Stephen Warren
2012-06-29 17:24     ` Stephen Warren
2012-06-29 17:24     ` Stephen Warren
     [not found]     ` <4FEDE4B6.4010405-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2012-07-02 18:12       ` Stephen Warren
2012-07-02 18:12         ` Stephen Warren
2012-07-02 18:12         ` Stephen Warren
     [not found]         ` <4FF1E488.9070806-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2012-07-03 11:29           ` Prashant Gaikwad
2012-07-03 11:29             ` Prashant Gaikwad
2012-07-03 11:29             ` Prashant Gaikwad

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.