linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Mike Turquette <mturquette@ti.com>
To: linux@arm.linux.org.uk
Cc: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	khilman@ti.com, tony@atomide.com, b-cousson@ti.com,
	rnayak@ti.com, jeremy.kerr@canonical.com, paul@pwsan.com,
	broonie@opensource.wolfsonmicro.com, tglx@linutronix.de,
	linus.walleij@stericsson.com, amit.kucheria@linaro.org,
	dsaxena@linaro.org, patches@linaro.org,
	linaro-dev@lists.linaro.org, grant.likely@secretlab.ca,
	sboyd@quicinc.com, shawn.guo@freescale.com, skannan@quicinc.com,
	magnus.damm@gmail.com, arnd.bergmann@linaro.org,
	eric.miao@linaro.org, richard.zhao@linaro.org,
	mturquette@linaro.org, mturquette@ti.com, andrew@lunn.ch
Subject: [PATCH 0/7] RFC: convert OMAP to common struct clk
Date: Tue, 13 Dec 2011 20:11:51 -0800	[thread overview]
Message-ID: <1323835918-2371-1-git-send-email-mturquette@ti.com> (raw)

This patch series is an RFC for converting OMAP to the common struct
clk.  These patches are based on v4 of the common struct clk series:
https://lkml.org/lkml/2011/12/13/451

OMAP's old struct clk has been renamed to struct clk_hw_omap, but left
essentially the same.  This series only targets OMAP4 and was only
tested on a 4430 Panda.

The next step is to figure out:
 * what are the various clk types we want to support in separate
   structures
 * where does the "clk driver" code live (still in mach-omap2?)
 * kill off plat-omap/clock.* completely?  I vote yes.

These patches can also be found at,
http://git.linaro.org/gitweb?p=people/mturquette/linux.git;a=shortlog;h=refs/heads/v3.2-rc5-clkv4-omap

The same series merged with Kevin's PM branch (to get CPUfreq working)
can be found at,
http://git.linaro.org/gitweb?p=people/mturquette/linux.git;a=shortlog;h=refs/heads/v3.2-rc5-clkv4-omap-pm

This series will be followed up shortly with another set of patches for
"testing" the clk rate change notifiers, parent propagation of rate
changes and debugfs re-parenting.

Mike Turquette (7):
  OMAP: Kconfig: select GENERIC_CLK
  HACK: omap4: clk: convert to common struct clk
  HACK: omap: convert 44xx data to common struct clk
  omap: hwmod: convert to use common struct clk
  omap: panda: use clk_prepare in ehci init
  omap: dss: use clk_prepare in dss reset
  HACK: comment WARN_ON in _clkdm_clk_hwmod_disable

 arch/arm/mach-omap2/Kconfig             |    1 +
 arch/arm/mach-omap2/board-omap4panda.c  |    1 +
 arch/arm/mach-omap2/clkt_clksel.c       |  195 +-
 arch/arm/mach-omap2/clkt_dpll.c         |   54 +-
 arch/arm/mach-omap2/clock.c             |  363 +--
 arch/arm/mach-omap2/clock.h             |   59 +-
 arch/arm/mach-omap2/clock44xx_data.c    | 4615 ++++++++++++++++++-------------
 arch/arm/mach-omap2/clockdomain.c       |    2 +-
 arch/arm/mach-omap2/display.c           |    4 +-
 arch/arm/mach-omap2/dpll3xxx.c          |  228 +-
 arch/arm/mach-omap2/dpll44xx.c          |   62 +-
 arch/arm/mach-omap2/omap_hwmod.c        |   54 +-
 arch/arm/plat-omap/clock.c              |  315 +--
 arch/arm/plat-omap/include/plat/clock.h |   96 +-
 14 files changed, 3415 insertions(+), 2634 deletions(-)

-- 
1.7.5.4


             reply	other threads:[~2011-12-14  4:15 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-14  4:11 Mike Turquette [this message]
2011-12-14  4:11 ` [PATCH 1/7] OMAP: Kconfig: select GENERIC_CLK Mike Turquette
2011-12-14  4:11 ` [PATCH 2/7] HACK: omap4: clk: convert to common struct clk Mike Turquette
     [not found] ` <1323835918-2371-1-git-send-email-mturquette-l0cyMroinI0@public.gmane.org>
2011-12-14  4:11   ` [PATCH 3/7] HACK: omap: convert 44xx data " Mike Turquette
2011-12-14  4:27     ` Paul Walmsley
2011-12-14  4:44       ` Turquette, Mike
2011-12-14  5:29         ` Paul Walmsley
2011-12-14  4:11 ` [PATCH 4/7] omap: hwmod: convert to use " Mike Turquette
2011-12-14  4:11 ` [PATCH 5/7] omap: panda: use clk_prepare in ehci init Mike Turquette
2011-12-14  4:11 ` [PATCH 6/7] omap: dss: use clk_prepare in dss reset Mike Turquette
2011-12-14  4:11 ` [PATCH 7/7] HACK: comment WARN_ON in _clkdm_clk_hwmod_disable 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=1323835918-2371-1-git-send-email-mturquette@ti.com \
    --to=mturquette@ti.com \
    --cc=amit.kucheria@linaro.org \
    --cc=andrew@lunn.ch \
    --cc=arnd.bergmann@linaro.org \
    --cc=b-cousson@ti.com \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=dsaxena@linaro.org \
    --cc=eric.miao@linaro.org \
    --cc=grant.likely@secretlab.ca \
    --cc=jeremy.kerr@canonical.com \
    --cc=khilman@ti.com \
    --cc=linaro-dev@lists.linaro.org \
    --cc=linus.walleij@stericsson.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=magnus.damm@gmail.com \
    --cc=mturquette@linaro.org \
    --cc=patches@linaro.org \
    --cc=paul@pwsan.com \
    --cc=richard.zhao@linaro.org \
    --cc=rnayak@ti.com \
    --cc=sboyd@quicinc.com \
    --cc=shawn.guo@freescale.com \
    --cc=skannan@quicinc.com \
    --cc=tglx@linutronix.de \
    --cc=tony@atomide.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 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).