* [PATCH] mtd: nand: lpc32xx_mlc: drop custom write_page callback
@ 2013-12-17 5:10 Brian Norris
2013-12-17 12:30 ` Roland Stigge
0 siblings, 1 reply; 3+ messages in thread
From: Brian Norris @ 2013-12-17 5:10 UTC (permalink / raw)
To: linux-mtd; +Cc: Roland Stigge, Brian Norris
This driver doesn't need its own custom chip->write_page callback; the
only "custom" requirement is that this driver does not support subpage
writes, which we can avoid using the NAND_NO_SUBPAGE_WRITE flag. With
NAND_NO_SUBPAGE_WRITE, the default routine (nand_write_page()) should
perform the equivalent operations.
Compile-tested only.
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Cc: Roland Stigge <stigge@antcom.de>
---
drivers/mtd/nand/lpc32xx_mlc.c | 16 +---------------
1 file changed, 1 insertion(+), 15 deletions(-)
diff --git a/drivers/mtd/nand/lpc32xx_mlc.c b/drivers/mtd/nand/lpc32xx_mlc.c
index 327d96c03505..48be85039a89 100644
--- a/drivers/mtd/nand/lpc32xx_mlc.c
+++ b/drivers/mtd/nand/lpc32xx_mlc.c
@@ -539,20 +539,6 @@ static int lpc32xx_write_page_lowlevel(struct mtd_info *mtd,
return 0;
}
-static int lpc32xx_write_page(struct mtd_info *mtd, struct nand_chip *chip,
- uint32_t offset, int data_len, const uint8_t *buf,
- int oob_required, int page, int cached, int raw)
-{
- int res;
-
- chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
- res = lpc32xx_write_page_lowlevel(mtd, chip, buf, oob_required);
- chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
- lpc32xx_waitfunc(mtd, chip);
-
- return res;
-}
-
static int lpc32xx_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
int page)
{
@@ -732,9 +718,9 @@ static int lpc32xx_nand_probe(struct platform_device *pdev)
nand_chip->ecc.write_oob = lpc32xx_write_oob;
nand_chip->ecc.read_oob = lpc32xx_read_oob;
nand_chip->ecc.strength = 4;
- nand_chip->write_page = lpc32xx_write_page;
nand_chip->waitfunc = lpc32xx_waitfunc;
+ nand_chip->options = NAND_NO_SUBPAGE_WRITE;
nand_chip->bbt_options = NAND_BBT_USE_FLASH | NAND_BBT_NO_OOB;
nand_chip->bbt_td = &lpc32xx_nand_bbt;
nand_chip->bbt_md = &lpc32xx_nand_bbt_mirror;
--
1.8.3.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] mtd: nand: lpc32xx_mlc: drop custom write_page callback
2013-12-17 5:10 [PATCH] mtd: nand: lpc32xx_mlc: drop custom write_page callback Brian Norris
@ 2013-12-17 12:30 ` Roland Stigge
2013-12-18 7:34 ` Brian Norris
0 siblings, 1 reply; 3+ messages in thread
From: Roland Stigge @ 2013-12-17 12:30 UTC (permalink / raw)
To: Brian Norris; +Cc: linux-mtd
On 12/17/2013 06:10 AM, Brian Norris wrote:
> This driver doesn't need its own custom chip->write_page callback; the
> only "custom" requirement is that this driver does not support subpage
> writes, which we can avoid using the NAND_NO_SUBPAGE_WRITE flag. With
> NAND_NO_SUBPAGE_WRITE, the default routine (nand_write_page()) should
> perform the equivalent operations.
>
> Compile-tested only.
>
> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
> Cc: Roland Stigge <stigge@antcom.de>
> ---
> drivers/mtd/nand/lpc32xx_mlc.c | 16 +---------------
> 1 file changed, 1 insertion(+), 15 deletions(-)
>
> diff --git a/drivers/mtd/nand/lpc32xx_mlc.c b/drivers/mtd/nand/lpc32xx_mlc.c
> index 327d96c03505..48be85039a89 100644
> --- a/drivers/mtd/nand/lpc32xx_mlc.c
> +++ b/drivers/mtd/nand/lpc32xx_mlc.c
> @@ -539,20 +539,6 @@ static int lpc32xx_write_page_lowlevel(struct mtd_info *mtd,
> return 0;
> }
>
> -static int lpc32xx_write_page(struct mtd_info *mtd, struct nand_chip *chip,
> - uint32_t offset, int data_len, const uint8_t *buf,
> - int oob_required, int page, int cached, int raw)
> -{
> - int res;
> -
> - chip->cmdfunc(mtd, NAND_CMD_SEQIN, 0x00, page);
> - res = lpc32xx_write_page_lowlevel(mtd, chip, buf, oob_required);
> - chip->cmdfunc(mtd, NAND_CMD_PAGEPROG, -1, -1);
> - lpc32xx_waitfunc(mtd, chip);
> -
> - return res;
> -}
> -
> static int lpc32xx_read_oob(struct mtd_info *mtd, struct nand_chip *chip,
> int page)
> {
> @@ -732,9 +718,9 @@ static int lpc32xx_nand_probe(struct platform_device *pdev)
> nand_chip->ecc.write_oob = lpc32xx_write_oob;
> nand_chip->ecc.read_oob = lpc32xx_read_oob;
> nand_chip->ecc.strength = 4;
> - nand_chip->write_page = lpc32xx_write_page;
> nand_chip->waitfunc = lpc32xx_waitfunc;
>
> + nand_chip->options = NAND_NO_SUBPAGE_WRITE;
> nand_chip->bbt_options = NAND_BBT_USE_FLASH | NAND_BBT_NO_OOB;
> nand_chip->bbt_td = &lpc32xx_nand_bbt;
> nand_chip->bbt_md = &lpc32xx_nand_bbt_mirror;
>
Thanks!
Acked-by: Roland Stigge <stigge@antcom.de>
Tested-by: Roland Stigge <stigge@antcom.de>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mtd: nand: lpc32xx_mlc: drop custom write_page callback
2013-12-17 12:30 ` Roland Stigge
@ 2013-12-18 7:34 ` Brian Norris
0 siblings, 0 replies; 3+ messages in thread
From: Brian Norris @ 2013-12-18 7:34 UTC (permalink / raw)
To: Roland Stigge; +Cc: linux-mtd
On Tue, Dec 17, 2013 at 01:30:51PM +0100, Roland Stigge wrote:
> Acked-by: Roland Stigge <stigge@antcom.de>
> Tested-by: Roland Stigge <stigge@antcom.de>
Great, pushed to l2-mtd.git.
Brian
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-12-18 7:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-17 5:10 [PATCH] mtd: nand: lpc32xx_mlc: drop custom write_page callback Brian Norris
2013-12-17 12:30 ` Roland Stigge
2013-12-18 7:34 ` Brian Norris
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).