From: afzal@ti.com (Afzal Mohammed)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 00/11] ARM: OMAP2+: AM43x PRCM basic support
Date: Thu, 26 Sep 2013 16:00:12 +0530 [thread overview]
Message-ID: <52440CB4.7010705@ti.com> (raw)
In-Reply-To: <cover.1380179370.git.afzal@ti.com>
Hi,
It seems,
"[PATCH v4 02/11] ARM: OMAP2+: hwmod: AM335x/AM43x: move common data"
is held on LAKML for moderator approval due to big size.
I will wait for some time to see if moderator approves, if not, will
ping him (believe it is David Woodhouse), but not sure how to get it
into omap list though.
Changes are also available
@git://gitorious.org/x0148406-public/linux-kernel.git tags/am43x-prcm-v4
Regards
Afzal
On Thursday 26 September 2013 02:58 PM, Afzal Mohammed wrote:
> Hi Paul, Benoit, Tony,
>
> This series adds PRCM support (except clock tree) for AM43x SoC's.
> Current version is based on Rajendra's comments and discussions, please
> consider this for inclusion in the coming merge window.
>
> Major changes compared to v2 (v3 was only an rfc for current approach):
> 1. omap_hwmod_33xx_43xx_interconnect_data.c has the common interconnect
> ocp's structs shared between AM335x and AM43x
> 2. omap_hwmod_33xx_43xx_ipblock_data.c has the common hwmod structs
> shared between AM335x and AM43x
> 3. Instances where clock domain or clock topology has changed in the few
> cases, have separate structures for AM335x and AM43x
> 4. To handle scenarios where register offsets are different, they are
> dynamically init-ed in omap_hwmod_33xx_43xx_ipblock_data.c
> 5. Register offsets for hwmod's that are present either in AM335x or
> AM43x are updated statically in omap_hwmod_33xx_data.c or
> omap_hwmod_43xx_data.c as that was cleaner.
>
> Major changes compared to rfc v3:
> 1. All register offsets properly taken care for AM43x (with rfc v3, a
> couple of issues was detected while testing on pre-silicon)
> 2. There were two patches for common hwmod data movement (one for
> interconnect and other for ip block data), both were combined to have
> a cleaner series that is bisectable.
> 3. Cleaner seperation of common data
>
> This series has been boot tested on pre-silicon platform with the help
> of Tero's DT clock tree conversion series. This series has been tested
> on AM335x-EVM too.
>
> The change that re-introduces SW_SLEEP for OMAP4 has been left out from
> this series as it is the only potential change that affect other
> platforms. It will be taken care seperately.
>
> Additional details:
> AM43x reuses most of the IP's from AM335x, as that is the case, much of
> the AM335x hwmod data is reused. As AM43x PRCM register layout differs
> from AM335x and is similar to OMAP4, power domain, clock domain & hwmod
> operations are reused from OMAP4. Currently there is no public TRM
> available for AM43x.
>
> Changes based on: v3.12-rc2
>
> Regards
> Afzal
>
> Afzal Mohammed (7):
> ARM: OMAP2+: hwmod: AM335x/AM43x: move common data
> ARM: OMAP2+: hwmod: AM335x: runtime register update
> ARM: OMAP2+: hwmod: AM335x: remove static register offs
> ARM: OMAP2+: PRCM: AM43x definitions
> ARM: OMAP2+: hwmod: AM43x support
> ARM: OMAP2+: hwmod: AM43x operations
> ARM: OMAP2+: AM43x: PRCM kbuild
>
> Ambresh K (3):
> ARM: OMAP2+: PM: AM43x powerdomain data
> ARM: OMAP2+: CM: AM43x clockdomain data
> ARM: OMAP2+: AM43x PRCM init
>
> Ankur Kishore (1):
> ARM: OMAP2+: CM: cm_inst offset s16->u16
>
> arch/arm/mach-omap2/Makefile | 9 +-
> arch/arm/mach-omap2/clockdomain.h | 4 +-
> arch/arm/mach-omap2/clockdomains43xx_data.c | 196 ++
> arch/arm/mach-omap2/cm33xx.c | 16 +-
> arch/arm/mach-omap2/cm33xx.h | 12 +-
> arch/arm/mach-omap2/cminst44xx.c | 29 +-
> arch/arm/mach-omap2/cminst44xx.h | 26 +-
> arch/arm/mach-omap2/io.c | 6 +
> arch/arm/mach-omap2/omap_hwmod.c | 8 +
> arch/arm/mach-omap2/omap_hwmod.h | 1 +
> .../mach-omap2/omap_hwmod_33xx_43xx_common_data.h | 163 ++
> .../omap_hwmod_33xx_43xx_interconnect_data.c | 643 +++++++
> .../mach-omap2/omap_hwmod_33xx_43xx_ipblock_data.c | 1456 +++++++++++++++
> arch/arm/mach-omap2/omap_hwmod_33xx_data.c | 1966 +-------------------
> arch/arm/mach-omap2/omap_hwmod_43xx_data.c | 622 +++++++
> arch/arm/mach-omap2/powerdomain.h | 1 +
> arch/arm/mach-omap2/powerdomains43xx_data.c | 142 ++
> arch/arm/mach-omap2/prcm43xx.h | 141 ++
> 18 files changed, 3438 insertions(+), 2003 deletions(-)
> create mode 100644 arch/arm/mach-omap2/clockdomains43xx_data.c
> create mode 100644 arch/arm/mach-omap2/omap_hwmod_33xx_43xx_common_data.h
> create mode 100644 arch/arm/mach-omap2/omap_hwmod_33xx_43xx_interconnect_data.c
> create mode 100644 arch/arm/mach-omap2/omap_hwmod_33xx_43xx_ipblock_data.c
> create mode 100644 arch/arm/mach-omap2/omap_hwmod_43xx_data.c
> create mode 100644 arch/arm/mach-omap2/powerdomains43xx_data.c
> create mode 100644 arch/arm/mach-omap2/prcm43xx.h
>
prev parent reply other threads:[~2013-09-26 10:30 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-26 9:28 [PATCH v4 00/11] ARM: OMAP2+: AM43x PRCM basic support Afzal Mohammed
2013-09-26 9:32 ` [PATCH v4 01/11] ARM: OMAP2+: CM: cm_inst offset s16->u16 Afzal Mohammed
2013-09-30 3:23 ` Paul Walmsley
2013-09-30 8:50 ` Afzal Mohammed
2013-09-26 9:32 ` [PATCH v4 03/11] ARM: OMAP2+: hwmod: AM335x: runtime register update Afzal Mohammed
2013-09-26 9:32 ` [PATCH v4 04/11] ARM: OMAP2+: hwmod: AM335x: remove static register offs Afzal Mohammed
2013-09-26 9:32 ` [PATCH v4 05/11] ARM: OMAP2+: PRCM: AM43x definitions Afzal Mohammed
2013-09-26 9:33 ` [PATCH v4 06/11] ARM: OMAP2+: PM: AM43x powerdomain data Afzal Mohammed
2013-09-30 10:27 ` Paul Walmsley
2013-09-30 12:14 ` Afzal Mohammed
2013-09-26 9:33 ` [PATCH v4 07/11] ARM: OMAP2+: CM: AM43x clockdomain data Afzal Mohammed
2013-09-30 9:31 ` Paul Walmsley
2013-09-30 10:16 ` Paul Walmsley
2013-09-30 11:05 ` Afzal Mohammed
2013-09-30 11:09 ` Paul Walmsley
2013-09-30 11:38 ` Afzal Mohammed
2013-09-26 9:33 ` [PATCH v4 08/11] ARM: OMAP2+: hwmod: AM43x support Afzal Mohammed
2013-09-26 9:33 ` [PATCH v4 09/11] ARM: OMAP2+: hwmod: AM43x operations Afzal Mohammed
2013-09-26 9:33 ` [PATCH v4 10/11] ARM: OMAP2+: AM43x: PRCM kbuild Afzal Mohammed
2013-09-26 9:33 ` [PATCH v4 11/11] ARM: OMAP2+: AM43x PRCM init Afzal Mohammed
2013-09-26 10:30 ` Afzal Mohammed [this message]
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=52440CB4.7010705@ti.com \
--to=afzal@ti.com \
--cc=linux-arm-kernel@lists.infradead.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;
as well as URLs for NNTP newsgroup(s).