From: Paul Walmsley <paul@pwsan.com>
To: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/7] OMAP: hwmod: consolidate duplicate data across OMAP2xxx/3xxx files
Date: Sat, 02 Jul 2011 02:44:44 -0600 [thread overview]
Message-ID: <20110702084348.582.65635.stgit@dusk> (raw)
Hello,
This series combines some duplicate omap_hwmod data across the OMAP2420,
OMAP2430, and OMAP3 data files. The intention here is to reduce the amount
of kernel source code in arch/arm/mach-omap2/, although there is also a small
kernel size reduction.
Further cleanup and reorganization is forthcoming in later series; this is
simply the first round.
Boot-tested on OMAP4430 ES2 PandaBoard and OMAP3530 BeagleBoard.
- Paul
---
Paul Walmsley (7):
omap_hwmod: use a null structure record to terminate omap_hwmod_addr_space arrays
omap_hwmod: share identical omap_hwmod_addr_space arrays
omap_hwmod: use a terminator record with omap_hwmod_mpu_irqs arrays
omap_hwmod: share identical omap_hwmod_mpu_irqs arrays
omap_hwmod: use a terminator record with omap_hwmod_dma_info arrays
omap_hwmod: share identical omap_hwmod_dma_info arrays
omap_hwmod: share identical omap_hwmod_class, omap_hwmod_class_sysconfig arrays
arch/arm/mach-omap2/Makefile | 16
arch/arm/mach-omap2/omap_hwmod.c | 101 ++
arch/arm/mach-omap2/omap_hwmod_2420_data.c | 832 ++----------------
arch/arm/mach-omap2/omap_hwmod_2430_data.c | 910 +++-----------------
.../omap_hwmod_2xxx_3xxx_interconnect_data.c | 173 ++++
.../mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c | 322 +++++++
.../mach-omap2/omap_hwmod_2xxx_interconnect_data.c | 130 +++
arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c | 150 +++
arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 654 +++-----------
arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 357 ++++----
arch/arm/mach-omap2/omap_hwmod_common_data.c | 20
arch/arm/mach-omap2/omap_hwmod_common_data.h | 93 ++
arch/arm/plat-omap/include/plat/omap_hwmod.h | 18
13 files changed, 1508 insertions(+), 2268 deletions(-)
create mode 100644 arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_interconnect_data.c
create mode 100644 arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c
create mode 100644 arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c
create mode 100644 arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_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/7] OMAP: hwmod: consolidate duplicate data across OMAP2xxx/3xxx files
Date: Sat, 02 Jul 2011 02:44:44 -0600 [thread overview]
Message-ID: <20110702084348.582.65635.stgit@dusk> (raw)
Hello,
This series combines some duplicate omap_hwmod data across the OMAP2420,
OMAP2430, and OMAP3 data files. The intention here is to reduce the amount
of kernel source code in arch/arm/mach-omap2/, although there is also a small
kernel size reduction.
Further cleanup and reorganization is forthcoming in later series; this is
simply the first round.
Boot-tested on OMAP4430 ES2 PandaBoard and OMAP3530 BeagleBoard.
- Paul
---
Paul Walmsley (7):
omap_hwmod: use a null structure record to terminate omap_hwmod_addr_space arrays
omap_hwmod: share identical omap_hwmod_addr_space arrays
omap_hwmod: use a terminator record with omap_hwmod_mpu_irqs arrays
omap_hwmod: share identical omap_hwmod_mpu_irqs arrays
omap_hwmod: use a terminator record with omap_hwmod_dma_info arrays
omap_hwmod: share identical omap_hwmod_dma_info arrays
omap_hwmod: share identical omap_hwmod_class, omap_hwmod_class_sysconfig arrays
arch/arm/mach-omap2/Makefile | 16
arch/arm/mach-omap2/omap_hwmod.c | 101 ++
arch/arm/mach-omap2/omap_hwmod_2420_data.c | 832 ++----------------
arch/arm/mach-omap2/omap_hwmod_2430_data.c | 910 +++-----------------
.../omap_hwmod_2xxx_3xxx_interconnect_data.c | 173 ++++
.../mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c | 322 +++++++
.../mach-omap2/omap_hwmod_2xxx_interconnect_data.c | 130 +++
arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c | 150 +++
arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 654 +++-----------
arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 357 ++++----
arch/arm/mach-omap2/omap_hwmod_common_data.c | 20
arch/arm/mach-omap2/omap_hwmod_common_data.h | 93 ++
arch/arm/plat-omap/include/plat/omap_hwmod.h | 18
13 files changed, 1508 insertions(+), 2268 deletions(-)
create mode 100644 arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_interconnect_data.c
create mode 100644 arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c
create mode 100644 arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c
create mode 100644 arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c
next reply other threads:[~2011-07-02 8:45 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-02 8:44 Paul Walmsley [this message]
2011-07-02 8:44 ` [PATCH 0/7] OMAP: hwmod: consolidate duplicate data across OMAP2xxx/3xxx files Paul Walmsley
2011-07-02 8:44 ` [PATCH 2/7] omap_hwmod: share identical omap_hwmod_addr_space arrays Paul Walmsley
2011-07-02 8:44 ` Paul Walmsley
2011-07-02 8:44 ` [PATCH 4/7] omap_hwmod: share identical omap_hwmod_mpu_irqs arrays Paul Walmsley
2011-07-02 8:44 ` Paul Walmsley
2011-07-02 8:44 ` [PATCH 5/7] omap_hwmod: use a terminator record with omap_hwmod_dma_info arrays Paul Walmsley
2011-07-02 8:44 ` Paul Walmsley
2011-07-02 8:44 ` [PATCH 6/7] omap_hwmod: share identical " Paul Walmsley
2011-07-02 8:44 ` Paul Walmsley
2011-07-02 8:45 ` [PATCH 7/7] omap_hwmod: share identical omap_hwmod_class, omap_hwmod_class_sysconfig arrays Paul Walmsley
2011-07-02 8:45 ` 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=20110702084348.582.65635.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.