From: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
To: linux-mtd@lists.infradead.org
Cc: Lior Amsalem <alior@marvell.com>,
Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
Jason Cooper <jason@lakedaemon.net>,
Artem Bityutskiy <dedekind1@gmail.com>,
Daniel Mack <zonque@gmail.com>,
Gregory Clement <gregory.clement@free-electrons.com>,
Brian Norris <computersforpeace@gmail.com>,
David Woodhouse <dwmw2@infradead.org>, Willy Tarreau <w@1wt.eu>
Subject: Re: [PATCH v2 00/14] pxa3xx-nand patches to support mvebu builds
Date: Sat, 10 Aug 2013 09:12:09 -0300 [thread overview]
Message-ID: <20130810121208.GA3080@localhost> (raw)
In-Reply-To: <1375878679-18098-1-git-send-email-ezequiel.garcia@free-electrons.com>
Brian, Artem:
On Wed, Aug 07, 2013 at 09:31:05AM -0300, Ezequiel Garcia wrote:
> Hello everyone!
>
> This patchset is part of the work I'm doing to enable the pxa3xx-nand
> driver to support the NAND controller in Armada 370/XP. While this is
> work in progress, here's a subset of patches I consider good enough
> for mainline.
>
> Since pxa3xx has a mach-specific DMA API, I'm including a few patches to
> ifdef such pxa-specific code in non PXA/MMP platforms.
> This is only an ugly workaround and should be removed once the specific
> DMA API is replaced by dmaengine.
>
> Daniel Mack is already working on that, so it's expected this removal
> will happen soon.
>
> Other than that, the rest of the patchset is just assorted cleanups
> and minor fixes.
>
> This patchset is based in Artem's l2-mtd master branch.
>
> If at all possible and if no regressions are reported I'd like to see
> this queued for v3.12.
>
> Changes from v1:
>
> * Use __maybe_unused instead of inline keyword for a symbol
> that's maybe unused. Suggested by Brian Norris.
>
> * As Daniel Mack reported, the PXA nand controller (NFCv1)
> lacks an NDBC3 register and it's access is undefined.
> This means we need a way to distinguish between the two
> controllers (NFCv1 and NFCv2).
>
> We introduce a new 'marvell,armada370-nand' compatible
> string to distinguish the newer controller (NFCv2).
>
> Ezequiel Garcia (14):
> mtd: nand: pxa3xx: Introduce 'marvell,armada370-nand' compatible
> string
> mtd: nand: pxa3xx: Handle ECC and DMA enable/disable properly
> mtd: nand: pxa3xx: Allow to set/clear the 'spare enable' field
> mtd: nand: pxa3xx: Support command buffer #3
> mtd: nand: pxa3xx: Use 'length override' in ONFI paramater page read
> mtd: nand: pxa3xx: Add a local loop variable
> mtd: nand: pxa3xx: Remove hardcoded mtd name
> mtd: nand: pxa3xx: Remove uneeded internal cmdset
> mtd: nand: pxa3xx: Move cached registers to info structure
> mtd: nand: pxa3xx: Make dma code dependent on dma capable platforms
> mtd: nand: pxa3xx: Add __maybe_unused keyword to enable_int()
> mtd: nand: pxa3xx: Allow devices with no dma resources
> mtd: nand: pxa3xx: Increase data buffer size
> mtd: nand: Allow to build pxa3xx_nand on Orion platforms
>
> drivers/mtd/nand/Kconfig | 2 +-
> drivers/mtd/nand/pxa3xx_nand.c | 269 ++++++++++++++++----------
> include/linux/platform_data/mtd-nand-pxa3xx.h | 13 --
> 3 files changed, 171 insertions(+), 113 deletions(-)
>
Is there anything to review on this series?
Otherwise, I'd like this to be queued for v3.12 -if at all possible.
Thanks!
--
Ezequiel García, Free Electrons
Embedded Linux, Kernel and Android Engineering
http://free-electrons.com
next prev parent reply other threads:[~2013-08-10 12:12 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-07 12:31 [PATCH v2 00/14] pxa3xx-nand patches to support mvebu builds Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 01/14] mtd: nand: pxa3xx: Introduce 'marvell, armada370-nand' compatible string Ezequiel Garcia
2013-08-08 7:58 ` Brian Norris
2013-08-08 7:58 ` [PATCH v2 01/14] mtd: nand: pxa3xx: Introduce 'marvell,armada370-nand' " Brian Norris
2013-08-10 18:28 ` Brian Norris
2013-08-10 18:28 ` Brian Norris
2013-08-10 18:41 ` Ezequiel Garcia
2013-08-10 18:41 ` Ezequiel Garcia
2013-08-10 20:33 ` Brian Norris
2013-08-10 20:33 ` Brian Norris
2013-08-07 12:31 ` [PATCH v2 02/14] mtd: nand: pxa3xx: Handle ECC and DMA enable/disable properly Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 03/14] mtd: nand: pxa3xx: Allow to set/clear the 'spare enable' field Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 04/14] mtd: nand: pxa3xx: Support command buffer #3 Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 05/14] mtd: nand: pxa3xx: Use 'length override' in ONFI paramater page read Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 06/14] mtd: nand: pxa3xx: Add a local loop variable Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 07/14] mtd: nand: pxa3xx: Remove hardcoded mtd name Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 08/14] mtd: nand: pxa3xx: Remove uneeded internal cmdset Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 09/14] mtd: nand: pxa3xx: Move cached registers to info structure Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 10/14] mtd: nand: pxa3xx: Make dma code dependent on dma capable platforms Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 11/14] mtd: nand: pxa3xx: Add __maybe_unused keyword to enable_int() Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 12/14] mtd: nand: pxa3xx: Allow devices with no dma resources Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 13/14] mtd: nand: pxa3xx: Increase data buffer size Ezequiel Garcia
2013-08-07 12:31 ` [PATCH v2 14/14] mtd: nand: Allow to build pxa3xx_nand on Orion platforms Ezequiel Garcia
2013-08-07 12:45 ` [PATCH v2 00/14] pxa3xx-nand patches to support mvebu builds Daniel Mack
2013-08-07 13:02 ` Ezequiel Garcia
2013-08-10 12:12 ` Ezequiel Garcia [this message]
2013-08-10 17:30 ` Brian Norris
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=20130810121208.GA3080@localhost \
--to=ezequiel.garcia@free-electrons.com \
--cc=alior@marvell.com \
--cc=computersforpeace@gmail.com \
--cc=dedekind1@gmail.com \
--cc=dwmw2@infradead.org \
--cc=gregory.clement@free-electrons.com \
--cc=jason@lakedaemon.net \
--cc=linux-mtd@lists.infradead.org \
--cc=thomas.petazzoni@free-electrons.com \
--cc=w@1wt.eu \
--cc=zonque@gmail.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.