From: Tony Lindgren <tony@atomide.com>
To: Sukumar Ghorai <s-ghorai@ti.com>
Cc: linux-omap@vger.kernel.org, linux-mtd@lists.infradead.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v4 0/8] nand support on omap3 boards
Date: Mon, 2 Aug 2010 15:52:48 +0300 [thread overview]
Message-ID: <20100802125248.GK12293@atomide.com> (raw)
In-Reply-To: <1278685671-12036-1-git-send-email-s-ghorai@ti.com>
* Sukumar Ghorai <s-ghorai@ti.com> [100709 17:21]:
> The following set of patches applies on top of for-next branch.
> And these are the patches required to enable nand (nor and onenand for sdp
> only) for different platform.
Will add this series into omap-for-linus too.
Regards,
Tony
> v4: patch rebase on latest code base; depend on
> http://www.mail-archive.com/linux-omap@vger.kernel.org/msg31950.html
>
> v3: http://www.mail-archive.com/linux-omap@vger.kernel.org/msg30735.html
> patch rebase on latest nand patch and depend on -
> http://www.mail-archive.com/linux-omap@vger.kernel.org/msg30305.html
>
> v2: http://www.mail-archive.com/linux-omap@vger.kernel.org/msg26479.html
> rework to use full nand in partition table of ZOOM2/3;
> ZOOM1(LDP)support added.
>
> v1: http://www.mail-archive.com/linux-omap@vger.kernel.org/msg22205.html
>
> Sukumar Ghorai (5):
> omap3 flash: rename board-sdp-flash.c to be use by other boards
> omap3: add support for NAND on zoom2 board
> omap3: add support for NAND on zoom3 board
> omap-3630-sdp : Add support for Flash
> omap3: add support for NAND on LDP board
>
> arch/arm/mach-omap2/Makefile | 6 +-
> arch/arm/mach-omap2/board-3430sdp.c | 16 +++-
> arch/arm/mach-omap2/board-3630sdp.c | 120 +++++++++++++++++++++++++
> arch/arm/mach-omap2/board-ldp.c | 35 +++++++
> arch/arm/mach-omap2/board-sdp-flash.c | 88 ++++++++-----------
> arch/arm/mach-omap2/board-zoom2.c | 43 +++++++++
> arch/arm/mach-omap2/board-zoom3.c | 43 +++++++++
> arch/arm/mach-omap2/include/mach/board-sdp.h | 9 ++-
> arch/arm/mach-omap2/include/mach/board-zoom.h | 6 ++
> 9 files changed, 311 insertions(+), 55 deletions(-)
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
WARNING: multiple messages have this Message-ID (diff)
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 0/8] nand support on omap3 boards
Date: Mon, 2 Aug 2010 15:52:48 +0300 [thread overview]
Message-ID: <20100802125248.GK12293@atomide.com> (raw)
In-Reply-To: <1278685671-12036-1-git-send-email-s-ghorai@ti.com>
* Sukumar Ghorai <s-ghorai@ti.com> [100709 17:21]:
> The following set of patches applies on top of for-next branch.
> And these are the patches required to enable nand (nor and onenand for sdp
> only) for different platform.
Will add this series into omap-for-linus too.
Regards,
Tony
> v4: patch rebase on latest code base; depend on
> http://www.mail-archive.com/linux-omap at vger.kernel.org/msg31950.html
>
> v3: http://www.mail-archive.com/linux-omap at vger.kernel.org/msg30735.html
> patch rebase on latest nand patch and depend on -
> http://www.mail-archive.com/linux-omap at vger.kernel.org/msg30305.html
>
> v2: http://www.mail-archive.com/linux-omap at vger.kernel.org/msg26479.html
> rework to use full nand in partition table of ZOOM2/3;
> ZOOM1(LDP)support added.
>
> v1: http://www.mail-archive.com/linux-omap at vger.kernel.org/msg22205.html
>
> Sukumar Ghorai (5):
> omap3 flash: rename board-sdp-flash.c to be use by other boards
> omap3: add support for NAND on zoom2 board
> omap3: add support for NAND on zoom3 board
> omap-3630-sdp : Add support for Flash
> omap3: add support for NAND on LDP board
>
> arch/arm/mach-omap2/Makefile | 6 +-
> arch/arm/mach-omap2/board-3430sdp.c | 16 +++-
> arch/arm/mach-omap2/board-3630sdp.c | 120 +++++++++++++++++++++++++
> arch/arm/mach-omap2/board-ldp.c | 35 +++++++
> arch/arm/mach-omap2/board-sdp-flash.c | 88 ++++++++-----------
> arch/arm/mach-omap2/board-zoom2.c | 43 +++++++++
> arch/arm/mach-omap2/board-zoom3.c | 43 +++++++++
> arch/arm/mach-omap2/include/mach/board-sdp.h | 9 ++-
> arch/arm/mach-omap2/include/mach/board-zoom.h | 6 ++
> 9 files changed, 311 insertions(+), 55 deletions(-)
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2010-08-02 12:52 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-09 14:27 [PATCH v4 0/8] nand support on omap3 boards Sukumar Ghorai
2010-07-09 14:27 ` Sukumar Ghorai
2010-07-09 14:27 ` [PATCH v4 1/5] omap3 flash: rename board-sdp-flash.c to be use by other boards Sukumar Ghorai
2010-07-09 14:27 ` Sukumar Ghorai
2010-07-09 14:27 ` [PATCH v4 2/5] omap3: add support for NAND on zoom2 board Sukumar Ghorai
2010-07-09 14:27 ` Sukumar Ghorai
2010-07-09 14:27 ` Sukumar Ghorai
2010-07-09 14:27 ` [PATCH v4 3/5] omap3: add support for NAND on zoom3 board Sukumar Ghorai
2010-07-09 14:27 ` Sukumar Ghorai
2010-07-09 14:27 ` Sukumar Ghorai
2010-07-09 14:27 ` [PATCH v4 4/5] omap-3630-sdp : Add support for Flash Sukumar Ghorai
2010-07-09 14:27 ` Sukumar Ghorai
2010-07-09 14:27 ` [PATCH v4 5/5] omap3: add support for NAND on LDP board Sukumar Ghorai
2010-07-09 14:27 ` Sukumar Ghorai
2010-07-09 14:27 ` Sukumar Ghorai
2010-08-02 12:52 ` Tony Lindgren [this message]
2010-08-02 12:52 ` [PATCH v4 0/8] nand support on omap3 boards 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=20100802125248.GK12293@atomide.com \
--to=tony@atomide.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-mtd@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=s-ghorai@ti.com \
/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.