[PATCH v3 05/15] mtd: nand: pxa3xx: Support command buffer #3
Brian Norris
computersforpeace at gmail.com
Sat Aug 10 16:53:13 EDT 2013
On Sat, Aug 10, 2013 at 04:34:55PM -0300, Ezequiel Garcia wrote:
> Some newer controllers support a fourth command buffer. This additional
> command buffer allows to set an arbitrary length count, using the
> NDCB3.NDLENCNT field, to perform non-standard length operations
> such as the ONFI parameter page read.
>
> In controllers without this register, the operation has no effect.
>
> Signed-off-by: Ezequiel Garcia <ezequiel.garcia at free-electrons.com>
> Tested-by: Daniel Mack <zonque at gmail.com>
> ---
> drivers/mtd/nand/pxa3xx_nand.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/mtd/nand/pxa3xx_nand.c b/drivers/mtd/nand/pxa3xx_nand.c
> index 3a3e042..83a7187 100644
> --- a/drivers/mtd/nand/pxa3xx_nand.c
> +++ b/drivers/mtd/nand/pxa3xx_nand.c
> @@ -197,6 +197,7 @@ struct pxa3xx_nand_info {
> uint32_t ndcb0;
> uint32_t ndcb1;
> uint32_t ndcb2;
> + uint32_t ndcb3;
> };
>
> static bool use_dma = 1;
> @@ -496,6 +497,10 @@ static irqreturn_t pxa3xx_nand_irq(int irq, void *devid)
> nand_writel(info, NDCB0, info->ndcb0);
> nand_writel(info, NDCB0, info->ndcb1);
> nand_writel(info, NDCB0, info->ndcb2);
> +
> + /* NDCB3 register is available in NFCv2 (Armada 370/XP SoC) */
> + if (info->variant == PXA3XX_NAND_VARIANT_ARMADA370)
> + nand_writel(info, NDCB0, info->ndcb3);
Pardon my unfamiliarity with your hardware, but why do you have the
following three register definitions if you're only using NDCB0?
#define NDCB0 (0x48) /* Command Buffer0 */
#define NDCB1 (0x4C) /* Command Buffer1 */
#define NDCB2 (0x50) /* Command Buffer2 */
> }
>
> /* clear NDSR to let the controller exit the IRQ */
> @@ -554,6 +559,7 @@ static int prepare_command_pool(struct pxa3xx_nand_info *info, int command,
> default:
> info->ndcb1 = 0;
> info->ndcb2 = 0;
> + info->ndcb3 = 0;
> break;
> }
>
Brian
More information about the linux-mtd
mailing list