[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1395346112-13350-1-git-send-email-ivan.khoronzhuk@ti.com>
Date: Thu, 20 Mar 2014 22:08:32 +0200
From: Ivan Khoronzhuk <ivan.khoronzhuk@...com>
To: <dwmw2@...radead.org>, <computersforpeace@...il.com>,
<galak@...eaurora.org>, <santosh.shilimkar@...com>
CC: <robh+dt@...nel.org>, <pawel.moll@....com>, <mark.rutland@....com>,
<ijc+devicetree@...lion.org.uk>, <rob@...dley.net>,
<linux@....linux.org.uk>, <grygorii.strashko@...com>,
<devicetree@...r.kernel.org>, <linux-kernel@...r.kernel.org>,
<linux-arm-kernel@...ts.infradead.org>,
<linux-mtd@...ts.infradead.org>, <m-karicheri2@...com>,
Warner Losh <imp@...imp.com>,
Ivan Khoronzhuk <ivan.khoronzhuk@...com>
Subject: [PATCH v2] mtd: davinci-nand: disable subpage write for keystone-nand
From: Murali Karicheri <m-karicheri2@...com>
Sub page write doesn't work because of hw issue in controller found on
Keystone SOCs. AEMIF controller is also used on DaVinci SOCs which
don't seems to have any issue. So add "ti,keysone-nand" compatible
to nand driver in order to set NAND_NO_SUBPAGE_WRITE option.
Cc: Brian Norris <computersforpeace@...il.com>
Cc: Warner Losh <imp@...imp.com>
Cc: Santosh Shilimkar <santosh.shilimkar@...com>
Signed-off-by: Murali Karicheri <m-karicheri2@...com>
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@...com>
---
This patch is a result of discussion on patch v1:
https://lkml.org/lkml/2014/3/20/461
drivers/mtd/nand/davinci_nand.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/mtd/nand/davinci_nand.c b/drivers/mtd/nand/davinci_nand.c
index 4615d79..b922c8e 100644
--- a/drivers/mtd/nand/davinci_nand.c
+++ b/drivers/mtd/nand/davinci_nand.c
@@ -523,6 +523,7 @@ static struct nand_ecclayout hwecc4_2048 = {
#if defined(CONFIG_OF)
static const struct of_device_id davinci_nand_of_match[] = {
{.compatible = "ti,davinci-nand", },
+ {.compatible = "ti,keystone-nand", },
{},
};
MODULE_DEVICE_TABLE(of, davinci_nand_of_match);
@@ -581,6 +582,11 @@ static struct davinci_nand_pdata
of_property_read_bool(pdev->dev.of_node,
"ti,davinci-nand-use-bbt"))
pdata->bbt_options = NAND_BBT_USE_FLASH;
+
+ if (of_device_is_compatible(pdev->dev.of_node,
+ "ti,keystone-nand")) {
+ pdata->options |= NAND_NO_SUBPAGE_WRITE;
+ }
}
return dev_get_platdata(&pdev->dev);
--
1.8.3.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists