All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Walmsley <paul@pwsan.com>
To: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Cc: Hemant Pedanekar <hemantp@ti.com>
Subject: [RFC PATCH 0/5] Rework of the TI81xx PRCM support
Date: Tue, 04 Oct 2011 03:31:11 -0600	[thread overview]
Message-ID: <20111004092947.9657.16166.stgit@dusk> (raw)

This is a rework of the TI81xx PRCM, powerdomain, and clockdomain code and
data.  Compile-tested only.

- Paul

---

Hemant Pedanekar (3):
      ARM: OMAP: TI81XX: prcm: Add module and register offsets
      ARM: OMAP: TI81xx: add powerdomain data
      ARM: OMAP: TI81xx: add clockdomain data

Paul Walmsley (2):
      ARM: OMAP: TI81xx: add powerdomain code
      ARM: OMAP: TI81xx: add clockdomain control code


 arch/arm/mach-omap2/Makefile                |    7 +
 arch/arm/mach-omap2/clockdomain.h           |    3 
 arch/arm/mach-omap2/clockdomain81xx.c       |   77 +++++++++
 arch/arm/mach-omap2/clockdomains81xx_data.c |  223 +++++++++++++++++++++++++++
 arch/arm/mach-omap2/io.c                    |    2 
 arch/arm/mach-omap2/powerdomain.h           |    2 
 arch/arm/mach-omap2/powerdomain81xx.c       |   81 ++++++++++
 arch/arm/mach-omap2/powerdomain81xx_data.c  |   91 +++++++++++
 arch/arm/mach-omap2/prcm-regbits-81xx.h     |   23 +++
 arch/arm/mach-omap2/prcm814x.h              |   62 ++++++++
 arch/arm/mach-omap2/prcm816x.h              |  186 +++++++++++++++++++++++
 arch/arm/mach-omap2/prcm81xx.c              |  184 ++++++++++++++++++++++
 arch/arm/mach-omap2/prcm81xx.h              |  212 ++++++++++++++++++++++++++
 13 files changed, 1153 insertions(+), 0 deletions(-)
 create mode 100644 arch/arm/mach-omap2/clockdomain81xx.c
 create mode 100644 arch/arm/mach-omap2/clockdomains81xx_data.c
 create mode 100644 arch/arm/mach-omap2/powerdomain81xx.c
 create mode 100644 arch/arm/mach-omap2/powerdomain81xx_data.c
 create mode 100644 arch/arm/mach-omap2/prcm-regbits-81xx.h
 create mode 100644 arch/arm/mach-omap2/prcm814x.h
 create mode 100644 arch/arm/mach-omap2/prcm816x.h
 create mode 100644 arch/arm/mach-omap2/prcm81xx.c
 create mode 100644 arch/arm/mach-omap2/prcm81xx.h

-- 
Signature

WARNING: multiple messages have this Message-ID (diff)
From: paul@pwsan.com (Paul Walmsley)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH 0/5] Rework of the TI81xx PRCM support
Date: Tue, 04 Oct 2011 03:31:11 -0600	[thread overview]
Message-ID: <20111004092947.9657.16166.stgit@dusk> (raw)

This is a rework of the TI81xx PRCM, powerdomain, and clockdomain code and
data.  Compile-tested only.

- Paul

---

Hemant Pedanekar (3):
      ARM: OMAP: TI81XX: prcm: Add module and register offsets
      ARM: OMAP: TI81xx: add powerdomain data
      ARM: OMAP: TI81xx: add clockdomain data

Paul Walmsley (2):
      ARM: OMAP: TI81xx: add powerdomain code
      ARM: OMAP: TI81xx: add clockdomain control code


 arch/arm/mach-omap2/Makefile                |    7 +
 arch/arm/mach-omap2/clockdomain.h           |    3 
 arch/arm/mach-omap2/clockdomain81xx.c       |   77 +++++++++
 arch/arm/mach-omap2/clockdomains81xx_data.c |  223 +++++++++++++++++++++++++++
 arch/arm/mach-omap2/io.c                    |    2 
 arch/arm/mach-omap2/powerdomain.h           |    2 
 arch/arm/mach-omap2/powerdomain81xx.c       |   81 ++++++++++
 arch/arm/mach-omap2/powerdomain81xx_data.c  |   91 +++++++++++
 arch/arm/mach-omap2/prcm-regbits-81xx.h     |   23 +++
 arch/arm/mach-omap2/prcm814x.h              |   62 ++++++++
 arch/arm/mach-omap2/prcm816x.h              |  186 +++++++++++++++++++++++
 arch/arm/mach-omap2/prcm81xx.c              |  184 ++++++++++++++++++++++
 arch/arm/mach-omap2/prcm81xx.h              |  212 ++++++++++++++++++++++++++
 13 files changed, 1153 insertions(+), 0 deletions(-)
 create mode 100644 arch/arm/mach-omap2/clockdomain81xx.c
 create mode 100644 arch/arm/mach-omap2/clockdomains81xx_data.c
 create mode 100644 arch/arm/mach-omap2/powerdomain81xx.c
 create mode 100644 arch/arm/mach-omap2/powerdomain81xx_data.c
 create mode 100644 arch/arm/mach-omap2/prcm-regbits-81xx.h
 create mode 100644 arch/arm/mach-omap2/prcm814x.h
 create mode 100644 arch/arm/mach-omap2/prcm816x.h
 create mode 100644 arch/arm/mach-omap2/prcm81xx.c
 create mode 100644 arch/arm/mach-omap2/prcm81xx.h

-- 
Signature

             reply	other threads:[~2011-10-04  9:31 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-04  9:31 Paul Walmsley [this message]
2011-10-04  9:31 ` [RFC PATCH 0/5] Rework of the TI81xx PRCM support Paul Walmsley
2011-10-04  9:31 ` [RFC PATCH 1/5] ARM: OMAP: TI81XX: prcm: Add module and register offsets Paul Walmsley
2011-10-04  9:31   ` Paul Walmsley
2011-10-04  9:31 ` [RFC PATCH 2/5] ARM: OMAP: TI81xx: add powerdomain code Paul Walmsley
2011-10-04  9:31   ` Paul Walmsley
2011-10-04  9:31 ` [RFC PATCH 3/5] ARM: OMAP: TI81xx: add powerdomain data Paul Walmsley
2011-10-04  9:31   ` Paul Walmsley
2011-10-04  9:31 ` [RFC PATCH 4/5] ARM: OMAP: TI81xx: add clockdomain control code Paul Walmsley
2011-10-04  9:31   ` Paul Walmsley
2011-10-04  9:31 ` [RFC PATCH 5/5] ARM: OMAP: TI81xx: add clockdomain data Paul Walmsley
2011-10-04  9:31   ` Paul Walmsley

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=20111004092947.9657.16166.stgit@dusk \
    --to=paul@pwsan.com \
    --cc=hemantp@ti.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --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 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.