From: Paul Walmsley <paul@pwsan.com>
To: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/6] ARM: OMAP AM33xx: PRM/CM support for 3.6
Date: Mon, 21 May 2012 12:41:53 -0600 [thread overview]
Message-ID: <20120521184053.22565.90037.stgit@dusk> (raw)
Hi
This series implements low-level PRM/CM support for the AM33xx series
of chips. This support is a prerequisite for the kernel to reset,
enable, and disable on-chip IP blocks.
This series applies against Tony's devel-soc branch at commit
8a7289f52543cc89de73e174946edaa21a2d049d ("ARM: OMAP2+: am33xx:
Make am33xx as a separate class") plus the "ARM: OMAP2+: am33xx:
Add AM335XEVM machine support" patch from Afzal. Currently they
are compile-tested only.
These patches are also available from git://git.pwsan.com/linux-2.6
in the branch 'am33xx_prcm_devel_3.6'.
- Paul
---
am33xx_prcm_devel_3.6
text data bss dec hex filename
6559798 722684 5587872 12870354 c462d2 vmlinux.omap2plus_defconfig.orig
6562162 729652 5587872 12879686 c48746 vmlinux.omap2plus_defconfig
Vaibhav Hiremath (6):
ARM: OMAP2+: control: Add AM33XX control reg & sec clkctrl offset
ARM: OMAP AM33xx: voltagedomain: Add voltage domain data
ARM: OMAP AM33xx: PRM: add PRM support
ARM: OMAP AM33xx: CM: Introduce AM33xx CM APIs and register level details
ARM: OMAP AM33xx: powerdomains: add AM335x support
ARM: OMAP AM33xx: clockdomains: Add clockdomain data and respective operations
arch/arm/mach-omap2/Makefile | 7
arch/arm/mach-omap2/clockdomain.h | 2
arch/arm/mach-omap2/clockdomain33xx.c | 74 +++
arch/arm/mach-omap2/clockdomains33xx_data.c | 196 +++++++
arch/arm/mach-omap2/cm-regbits-33xx.h | 687 +++++++++++++++++++++++++
arch/arm/mach-omap2/cm33xx.c | 313 +++++++++++
arch/arm/mach-omap2/cm33xx.h | 420 +++++++++++++++
arch/arm/mach-omap2/control.h | 39 +
arch/arm/mach-omap2/io.c | 5
arch/arm/mach-omap2/powerdomain.h | 23 +
arch/arm/mach-omap2/powerdomain33xx.c | 229 ++++++++
arch/arm/mach-omap2/powerdomains33xx_data.c | 185 +++++++
arch/arm/mach-omap2/prm-regbits-33xx.h | 357 +++++++++++++
arch/arm/mach-omap2/prm33xx.c | 134 +++++
arch/arm/mach-omap2/prm33xx.h | 129 +++++
arch/arm/mach-omap2/voltage.h | 1
arch/arm/mach-omap2/voltagedomains33xx_data.c | 43 ++
17 files changed, 2824 insertions(+), 20 deletions(-)
create mode 100644 arch/arm/mach-omap2/clockdomain33xx.c
create mode 100644 arch/arm/mach-omap2/clockdomains33xx_data.c
create mode 100644 arch/arm/mach-omap2/cm-regbits-33xx.h
create mode 100644 arch/arm/mach-omap2/cm33xx.c
create mode 100644 arch/arm/mach-omap2/cm33xx.h
create mode 100644 arch/arm/mach-omap2/powerdomain33xx.c
create mode 100644 arch/arm/mach-omap2/powerdomains33xx_data.c
create mode 100644 arch/arm/mach-omap2/prm-regbits-33xx.h
create mode 100644 arch/arm/mach-omap2/prm33xx.c
create mode 100644 arch/arm/mach-omap2/prm33xx.h
create mode 100644 arch/arm/mach-omap2/voltagedomains33xx_data.c
WARNING: multiple messages have this Message-ID (diff)
From: paul@pwsan.com (Paul Walmsley)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/6] ARM: OMAP AM33xx: PRM/CM support for 3.6
Date: Mon, 21 May 2012 12:41:53 -0600 [thread overview]
Message-ID: <20120521184053.22565.90037.stgit@dusk> (raw)
Hi
This series implements low-level PRM/CM support for the AM33xx series
of chips. This support is a prerequisite for the kernel to reset,
enable, and disable on-chip IP blocks.
This series applies against Tony's devel-soc branch at commit
8a7289f52543cc89de73e174946edaa21a2d049d ("ARM: OMAP2+: am33xx:
Make am33xx as a separate class") plus the "ARM: OMAP2+: am33xx:
Add AM335XEVM machine support" patch from Afzal. Currently they
are compile-tested only.
These patches are also available from git://git.pwsan.com/linux-2.6
in the branch 'am33xx_prcm_devel_3.6'.
- Paul
---
am33xx_prcm_devel_3.6
text data bss dec hex filename
6559798 722684 5587872 12870354 c462d2 vmlinux.omap2plus_defconfig.orig
6562162 729652 5587872 12879686 c48746 vmlinux.omap2plus_defconfig
Vaibhav Hiremath (6):
ARM: OMAP2+: control: Add AM33XX control reg & sec clkctrl offset
ARM: OMAP AM33xx: voltagedomain: Add voltage domain data
ARM: OMAP AM33xx: PRM: add PRM support
ARM: OMAP AM33xx: CM: Introduce AM33xx CM APIs and register level details
ARM: OMAP AM33xx: powerdomains: add AM335x support
ARM: OMAP AM33xx: clockdomains: Add clockdomain data and respective operations
arch/arm/mach-omap2/Makefile | 7
arch/arm/mach-omap2/clockdomain.h | 2
arch/arm/mach-omap2/clockdomain33xx.c | 74 +++
arch/arm/mach-omap2/clockdomains33xx_data.c | 196 +++++++
arch/arm/mach-omap2/cm-regbits-33xx.h | 687 +++++++++++++++++++++++++
arch/arm/mach-omap2/cm33xx.c | 313 +++++++++++
arch/arm/mach-omap2/cm33xx.h | 420 +++++++++++++++
arch/arm/mach-omap2/control.h | 39 +
arch/arm/mach-omap2/io.c | 5
arch/arm/mach-omap2/powerdomain.h | 23 +
arch/arm/mach-omap2/powerdomain33xx.c | 229 ++++++++
arch/arm/mach-omap2/powerdomains33xx_data.c | 185 +++++++
arch/arm/mach-omap2/prm-regbits-33xx.h | 357 +++++++++++++
arch/arm/mach-omap2/prm33xx.c | 134 +++++
arch/arm/mach-omap2/prm33xx.h | 129 +++++
arch/arm/mach-omap2/voltage.h | 1
arch/arm/mach-omap2/voltagedomains33xx_data.c | 43 ++
17 files changed, 2824 insertions(+), 20 deletions(-)
create mode 100644 arch/arm/mach-omap2/clockdomain33xx.c
create mode 100644 arch/arm/mach-omap2/clockdomains33xx_data.c
create mode 100644 arch/arm/mach-omap2/cm-regbits-33xx.h
create mode 100644 arch/arm/mach-omap2/cm33xx.c
create mode 100644 arch/arm/mach-omap2/cm33xx.h
create mode 100644 arch/arm/mach-omap2/powerdomain33xx.c
create mode 100644 arch/arm/mach-omap2/powerdomains33xx_data.c
create mode 100644 arch/arm/mach-omap2/prm-regbits-33xx.h
create mode 100644 arch/arm/mach-omap2/prm33xx.c
create mode 100644 arch/arm/mach-omap2/prm33xx.h
create mode 100644 arch/arm/mach-omap2/voltagedomains33xx_data.c
next reply other threads:[~2012-05-21 18:45 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-21 18:41 Paul Walmsley [this message]
2012-05-21 18:41 ` [PATCH 0/6] ARM: OMAP AM33xx: PRM/CM support for 3.6 Paul Walmsley
2012-05-21 18:41 ` [PATCH 1/6] ARM: OMAP2+: control: Add AM33XX control reg & sec clkctrl offset Paul Walmsley
2012-05-21 18:41 ` Paul Walmsley
2012-05-21 18:41 ` [PATCH 2/6] ARM: OMAP AM33xx: voltagedomain: Add voltage domain data Paul Walmsley
2012-05-21 18:41 ` Paul Walmsley
2012-06-11 1:20 ` Paul Walmsley
2012-06-11 1:20 ` Paul Walmsley
2012-06-11 9:19 ` Vaibhav Hiremath
2012-06-11 9:19 ` Vaibhav Hiremath
2012-06-11 16:10 ` Paul Walmsley
2012-06-11 16:10 ` Paul Walmsley
2012-06-11 17:16 ` Vaibhav Hiremath
2012-06-11 17:16 ` Vaibhav Hiremath
2012-05-21 18:41 ` [PATCH 3/6] ARM: OMAP AM33xx: PRM: add PRM support Paul Walmsley
2012-05-21 18:41 ` Paul Walmsley
2012-05-21 18:42 ` [PATCH 4/6] ARM: OMAP AM33xx: CM: Introduce AM33xx CM APIs and register level details Paul Walmsley
2012-05-21 18:42 ` Paul Walmsley
2012-05-21 18:42 ` [PATCH 5/6] ARM: OMAP AM33xx: powerdomains: add AM335x support Paul Walmsley
2012-05-21 18:42 ` Paul Walmsley
2012-05-21 18:42 ` [PATCH 6/6] ARM: OMAP AM33xx: clockdomains: Add clockdomain data and respective operations Paul Walmsley
2012-05-21 18:42 ` 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=20120521184053.22565.90037.stgit@dusk \
--to=paul@pwsan.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.