[PATCH v1 2/5] mtd: atmel_nand: Support variable RB_EDGE interrupts
Rob Herring
robh at kernel.org
Wed Jan 13 17:19:24 PST 2016
On Wed, Jan 13, 2016 at 05:34:14PM +0100, Romain Izard wrote:
> The NFC controller used to accelerate the NAND transfers on SAMA5 chips
> can use either RB_EDGE0 or RB_EDGE3 as its ready/busy interrupt bit.
>
> Use the controller's compatible string to select the correct bit.
>
> Signed-off-by: Romain Izard <romain.izard.pro at gmail.com>
> Reviewed-by: Wenyou Yang <Wenyou.yang at atmel.com>
> ---
> .../devicetree/bindings/mtd/atmel-nand.txt | 2 +-
> drivers/mtd/nand/atmel_nand.c | 39 +++++++++++++++++-----
> drivers/mtd/nand/atmel_nand_nfc.h | 5 ++-
> 3 files changed, 36 insertions(+), 10 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/mtd/atmel-nand.txt b/Documentation/devicetree/bindings/mtd/atmel-nand.txt
> index 7d4c8eb775a5..89b0db9801b0 100644
> --- a/Documentation/devicetree/bindings/mtd/atmel-nand.txt
> +++ b/Documentation/devicetree/bindings/mtd/atmel-nand.txt
> @@ -34,7 +34,7 @@ Optional properties:
> - nand-on-flash-bbt: boolean to enable on flash bbt option if not present false
> - Nand Flash Controller(NFC) is a slave driver under Atmel nand flash
> - Required properties:
> - - compatible : "atmel,sama5d3-nfc".
> + - compatible : "atmel,sama5d3-nfc" or "atmel,sama5d4-nfc".
> - reg : should specify the address and size used for NFC command registers,
> NFC registers and NFC Sram. NFC Sram address and size can be absent
> if don't want to use it.
For the binding:
Acked-by: Rob Herring <robh at kernel.org>
[...]
> @@ -2352,6 +2360,12 @@ static int atmel_nand_nfc_probe(struct platform_device *pdev)
> }
> }
>
> + priv = of_match_device(atmel_nand_nfc_match, &pdev->dev)->data;
Use of_device_get_match_data
> + if (NULL == priv)
> + return -ENODEV;
> +
> + nfc->rb_edge = priv->rb_edge;
> +
> nfc_writel(nfc->hsmc_regs, IDR, 0xffffffff);
> nfc_readl(nfc->hsmc_regs, SR); /* clear the NFC_SR */
>
More information about the linux-mtd
mailing list