From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 00/17] omap updates for 2.6.34 merge window, part 1
Date: Wed, 10 Feb 2010 19:35:25 -0800 [thread overview]
Message-ID: <20100211033310.1624.80025.stgit@baageli.muru.com> (raw)
Hi all,
Over the next few days I'll be posting total of 66 omap patches
for review. Here's part 1.
Regards,
Tony
---
Felipe Balbi (4):
omap1: mailbox: kill compile warning
omap2/3/4: mailbox: kill compile warning in mailbox.c
omap2/3/4: gpmc: kill compile warning
omap2/3/4: gpmc: avoid section definitions on headers
Hiroshi DOYU (3):
omap iommu: cleanup iommu page address mask and definitions
omap: iommu: fix incorrect address for supersection 1st entry
omap iommu: fix incorrect address for largepage 1st entry
Janusz Krzysztofik (4):
omap: McBSP: Use macros for all register read/write operations
omap: McBSP: Modify macros/functions API for easy cache access
omap: McBSP: Introduce caching in register write operations
omap: McBSP: Use cache when modifying individual register bits
Ladislav Michl (2):
omap: convert boards to use physmap-flash
MTD: remove no longer used OMAP flash map
Vimal Singh (3):
omap2/3/4: Introducing 'gpmc-nand.c' for GPMC specific NAND init
omap3: SDP: Introducing 'board-sdp-flash.c' for flash init
omap3: Add support for flash on 3430SDP board
vikram pandita (1):
omap2/3/4: serial: fix coding style indentaion
arch/arm/mach-omap1/Makefile | 2
arch/arm/mach-omap1/board-fsample.c | 9 -
arch/arm/mach-omap1/board-h2.c | 9 -
arch/arm/mach-omap1/board-h3.c | 9 -
arch/arm/mach-omap1/board-innovator.c | 9 -
arch/arm/mach-omap1/board-osk.c | 9 -
arch/arm/mach-omap1/board-palmte.c | 9 -
arch/arm/mach-omap1/board-palmtt.c | 9 -
arch/arm/mach-omap1/board-palmz71.c | 10 -
arch/arm/mach-omap1/board-perseus2.c | 9 -
arch/arm/mach-omap1/board-sx1.c | 11 -
arch/arm/mach-omap1/board-voiceblue.c | 9 -
arch/arm/mach-omap1/devices.c | 2
arch/arm/mach-omap1/flash.c | 33 ++
arch/arm/mach-omap1/mailbox.c | 9 -
arch/arm/mach-omap1/mcbsp.c | 16 +
arch/arm/mach-omap2/Makefile | 6
arch/arm/mach-omap2/board-2430sdp.c | 7
arch/arm/mach-omap2/board-3430sdp.c | 111 ++++++++
arch/arm/mach-omap2/board-h4.c | 7
arch/arm/mach-omap2/board-sdp-flash.c | 272 +++++++++++++++++++
arch/arm/mach-omap2/gpmc-nand.c | 139 ++++++++++
arch/arm/mach-omap2/gpmc.c | 6
arch/arm/mach-omap2/include/mach/board-sdp.h | 21 +
arch/arm/mach-omap2/mailbox.c | 2
arch/arm/mach-omap2/mcbsp.c | 20 +
arch/arm/mach-omap2/serial.c | 19 +
arch/arm/plat-omap/include/plat/flash.h | 16 +
arch/arm/plat-omap/include/plat/gpmc.h | 4
arch/arm/plat-omap/include/plat/mcbsp.h | 3
arch/arm/plat-omap/include/plat/nand.h | 10 +
arch/arm/plat-omap/iommu.c | 6
arch/arm/plat-omap/iopgtable.h | 50 +++-
arch/arm/plat-omap/mcbsp.c | 366 +++++++++++++-------------
drivers/mtd/maps/Kconfig | 9 -
drivers/mtd/maps/Makefile | 1
drivers/mtd/maps/omap_nor.c | 188 -------------
drivers/mtd/nand/omap2.c | 35 --
38 files changed, 962 insertions(+), 500 deletions(-)
create mode 100644 arch/arm/mach-omap1/flash.c
create mode 100644 arch/arm/mach-omap2/board-sdp-flash.c
create mode 100644 arch/arm/mach-omap2/gpmc-nand.c
create mode 100644 arch/arm/mach-omap2/include/mach/board-sdp.h
create mode 100644 arch/arm/plat-omap/include/plat/flash.h
--
Signature
next reply other threads:[~2010-02-11 3:35 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-11 3:35 Tony Lindgren [this message]
2010-02-11 3:35 ` [PATCH 01/17] omap: convert boards to use physmap-flash Tony Lindgren
2010-02-11 3:35 ` [PATCH 02/17] MTD: remove no longer used OMAP flash map Tony Lindgren
2010-02-11 3:35 ` [PATCH 03/17] omap iommu: cleanup iommu page address mask and definitions Tony Lindgren
2010-02-11 3:35 ` [PATCH 04/17] omap: iommu: fix incorrect address for supersection 1st entry Tony Lindgren
2010-02-11 3:35 ` [PATCH 05/17] omap iommu: fix incorrect address for largepage " Tony Lindgren
2010-02-11 3:35 ` [PATCH 06/17] omap: McBSP: Use macros for all register read/write operations Tony Lindgren
2010-02-11 3:35 ` [PATCH 07/17] omap: McBSP: Modify macros/functions API for easy cache access Tony Lindgren
2010-02-11 3:35 ` [PATCH 08/17] omap: McBSP: Introduce caching in register write operations Tony Lindgren
2010-02-11 3:36 ` [PATCH 09/17] omap: McBSP: Use cache when modifying individual register bits Tony Lindgren
2010-02-11 3:36 ` [PATCH 10/17] omap1: mailbox: kill compile warning Tony Lindgren
2010-02-11 3:36 ` [PATCH 11/17] omap2/3/4: mailbox: kill compile warning in mailbox.c Tony Lindgren
2010-02-11 3:36 ` [PATCH 12/17] omap2/3/4: gpmc: kill compile warning Tony Lindgren
2010-02-11 3:36 ` [PATCH 13/17] omap2/3/4: gpmc: avoid section definitions on headers Tony Lindgren
2010-02-11 3:45 ` [PATCH 14/17] omap2/3/4: serial: fix coding style indentaion Tony Lindgren
2010-02-11 3:45 ` [PATCH 15/17] omap2/3/4: Introducing 'gpmc-nand.c' for GPMC specific NAND init Tony Lindgren
2010-02-11 3:46 ` [PATCH 16/17] omap3: SDP: Introducing 'board-sdp-flash.c' for flash init Tony Lindgren
2010-02-11 3:46 ` [PATCH 17/17] omap3: Add support for flash on 3430SDP board Tony Lindgren
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=20100211033310.1624.80025.stgit@baageli.muru.com \
--to=tony@atomide.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).