public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: linux-arm-kernel@lists.arm.linux.org.uk
Cc: linux-omap@vger.kernel.org, Tony Lindgren <tony@atomide.com>
Subject: git-pull request for omap2-clock branch
Date: Tue, 19 Aug 2008 11:39:51 +0300	[thread overview]
Message-ID: <1219135201-10282-1-git-send-email-tony@atomide.com> (raw)
In-Reply-To: <20080818163429.GF16455@flint.arm.linux.org.uk>

* Russell King - ARM Linux <linux@arm.linux.org.uk> [080818 19:34]:
> On Wed, Jul 16, 2008 at 06:19:05PM +0300, Tony Lindgren wrote:
> > This patch series contains power domain and clock domain specific patches
> > for omap posted to linux-arm-kernel list during 2.6.25-rc5.
> >
> > I'm reposting the series to a wider audience as Russell King suspected that
> > other archs may be interested in reviewing these too, or at least some
> > parts of the code.
>
> Okay, I'll merge this set of 10 patches now.  Could you update them for
> the new include layout please, and send me a pull request for them.

Great! Following is the pull request for you, I'll also send the
refreshed patches as a reply to this thread for reference.

Thanks,

Tony

The following changes since commit 1fca25427482387689fa27594c992a961d98768f:
  Linus Torvalds (1):
        Merge branch 'release' of git://git.kernel.org/.../aegl/linux-2.6

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git omap2-clock

Högander Jouni (1):
      ARM: OMAP2: Clock: Combine 34xx l3_icks and l4_icks

Paul Walmsley (9):
      ARM: OMAP2: Powerdomain: Add base OMAP2/3 powerdomain code
      ARM: OMAP2: Powerdomain: Add OMAP2/3 common powerdomains
      ARM: OMAP2: Powerdomain: Add OMAP2 powerdomains
      ARM: OMAP: Powerdomain: Add OMAP3 powerdomains
      ARM: OMAP2: Clockdomain: Add base OMAP2/3 clockdomain code
      ARM: OMAP2: Clockdomain: Connect clockdomain code to powerdomain code
      ARM: OMAP2: Clockdomain: Encode OMAP2/3 clockdomains
      ARM: OMAP2: Clockdomain: Associate clocks with clockdomains
      ARM: OMAP2: Clockdomain: Integrate OMAP3 clocks with clockdomain code

 arch/arm/mach-omap2/Makefile                  |    3 +-
 arch/arm/mach-omap2/clock.c                   |   46 +-
 arch/arm/mach-omap2/clock.h                   |    1 +
 arch/arm/mach-omap2/clock24xx.h               |  238 +++++--
 arch/arm/mach-omap2/clock34xx.c               |   31 +-
 arch/arm/mach-omap2/clock34xx.h               |  248 +++++--
 arch/arm/mach-omap2/clockdomain.c             |  607 ++++++++++++++
 arch/arm/mach-omap2/clockdomains.h            |  305 +++++++
 arch/arm/mach-omap2/cm-regbits-24xx.h         |   24 +-
 arch/arm/mach-omap2/cm-regbits-34xx.h         |   42 +-
 arch/arm/mach-omap2/io.c                      |    9 +
 arch/arm/mach-omap2/powerdomain.c             | 1045 +++++++++++++++++++++++++
 arch/arm/mach-omap2/powerdomains.h            |  187 +++++
 arch/arm/mach-omap2/powerdomains24xx.h        |  200 +++++
 arch/arm/mach-omap2/powerdomains34xx.h        |  327 ++++++++
 arch/arm/mach-omap2/prcm-common.h             |    3 +-
 arch/arm/mach-omap2/prm-regbits-24xx.h        |   12 +-
 arch/arm/mach-omap2/prm-regbits-34xx.h        |   11 +-
 arch/arm/mach-omap2/prm.h                     |    3 +-
 arch/arm/plat-omap/Kconfig                    |   24 +
 arch/arm/plat-omap/include/mach/clock.h       |    3 +
 arch/arm/plat-omap/include/mach/clockdomain.h |  106 +++
 arch/arm/plat-omap/include/mach/powerdomain.h |  155 ++++
 23 files changed, 3483 insertions(+), 147 deletions(-)
 create mode 100644 arch/arm/mach-omap2/clockdomain.c
 create mode 100644 arch/arm/mach-omap2/clockdomains.h
 create mode 100644 arch/arm/mach-omap2/powerdomain.c
 create mode 100644 arch/arm/mach-omap2/powerdomains.h
 create mode 100644 arch/arm/mach-omap2/powerdomains24xx.h
 create mode 100644 arch/arm/mach-omap2/powerdomains34xx.h
 create mode 100644 arch/arm/plat-omap/include/mach/clockdomain.h
 create mode 100644 arch/arm/plat-omap/include/mach/powerdomain.h


--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2008-08-19  8:40 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-07-16 15:19 [PATCH 0/0] Power domain and clock domain patches for omap Tony Lindgren
2008-07-16 15:19 ` [PATCH 01/10] ARM: OMAP2: Powerdomain: Add base OMAP2/3 powerdomain code Tony Lindgren
2008-07-16 15:19   ` [PATCH 02/10] ARM: OMAP2: Powerdomain: Add OMAP2/3 common powerdomains Tony Lindgren
2008-07-16 15:19     ` [PATCH 03/10] ARM: OMAP2: Powerdomain: Add OMAP2 powerdomains Tony Lindgren
2008-07-16 15:19       ` [PATCH 04/10] ARM: OMAP: Powerdomain: Add OMAP3 powerdomains Tony Lindgren
2008-07-16 15:19         ` [PATCH 05/10] ARM: OMAP2: Clockdomain: Add base OMAP2/3 clockdomain code Tony Lindgren
2008-07-16 15:19           ` [PATCH 06/10] ARM: OMAP2: Clockdomain: Connect clockdomain code to powerdomain code Tony Lindgren
2008-07-16 15:19             ` [PATCH 07/10] ARM: OMAP2: Clockdomain: Encode OMAP2/3 clockdomains Tony Lindgren
2008-07-16 15:19               ` [PATCH 08/10] ARM: OMAP2: Clockdomain: Associate clocks with clockdomains Tony Lindgren
2008-07-16 15:19                 ` [PATCH 09/10] ARM: OMAP2: Clockdomain: Integrate OMAP3 clocks with clockdomain code Tony Lindgren
2008-07-16 15:19                   ` [PATCH 10/10] ARM: OMAP2: Clock: Combine 34xx l3_icks and l4_icks Tony Lindgren
2008-07-21 22:29 ` [PATCH 0/0] Power domain and clock domain patches for omap Russell King - ARM Linux
2008-07-25  0:53   ` David Brownell
2008-08-18 16:34 ` Russell King - ARM Linux
2008-08-19  8:39   ` Tony Lindgren [this message]
2008-08-19  8:39     ` [PATCH 01/10] ARM: OMAP2: Powerdomain: Add base OMAP2/3 powerdomain code Tony Lindgren
2008-08-19  8:39       ` [PATCH 02/10] ARM: OMAP2: Powerdomain: Add OMAP2/3 common powerdomains Tony Lindgren
2008-08-19  8:39         ` [PATCH 03/10] ARM: OMAP2: Powerdomain: Add OMAP2 powerdomains Tony Lindgren
2008-08-19  8:39           ` [PATCH 04/10] ARM: OMAP: Powerdomain: Add OMAP3 powerdomains Tony Lindgren
2008-08-19  8:39             ` [PATCH 05/10] ARM: OMAP2: Clockdomain: Add base OMAP2/3 clockdomain code Tony Lindgren
2008-08-19  8:39               ` [PATCH 06/10] ARM: OMAP2: Clockdomain: Connect clockdomain code to powerdomain code Tony Lindgren
2008-08-19  8:39                 ` [PATCH 07/10] ARM: OMAP2: Clockdomain: Encode OMAP2/3 clockdomains Tony Lindgren
2008-08-19  8:39                   ` [PATCH 08/10] ARM: OMAP2: Clockdomain: Associate clocks with clockdomains Tony Lindgren
2008-08-19  8:40                     ` [PATCH 09/10] ARM: OMAP2: Clockdomain: Integrate OMAP3 clocks with clockdomain code Tony Lindgren
2008-08-19  8:40                       ` [PATCH 10/10] ARM: OMAP2: Clock: Combine 34xx l3_icks and l4_icks Tony Lindgren
2008-08-19  9:11     ` git-pull request for omap2-clock branch Russell King - ARM Linux
2008-08-19 21:46 ` [PATCH 0/0] Power domain and clock domain patches for omap Dmitry Baryshkov
2008-08-20  6:38   ` Paul Walmsley
2008-08-20  8:20     ` Dmitry Baryshkov

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=1219135201-10282-1-git-send-email-tony@atomide.com \
    --to=tony@atomide.com \
    --cc=linux-arm-kernel@lists.arm.linux.org.uk \
    --cc=linux-omap@vger.kernel.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