diff options
author | Enrico Jorns <ejo@pengutronix.de> | 2015-09-18 10:02:41 +0200 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-09-29 20:31:55 +0200 |
commit | 9c07d094bbfe3d09e4c3e01a81cd1399bd23b268 (patch) | |
tree | 94a3972a33185416ab837b49594c85d2b05ceeb4 /drivers/mtd/nand/denali.c | |
parent | jffs2: remove unneeded kfree (diff) | |
download | linux-9c07d094bbfe3d09e4c3e01a81cd1399bd23b268.tar.xz linux-9c07d094bbfe3d09e4c3e01a81cd1399bd23b268.zip |
mtd: nand: denali: pass col argument to READID operation
A read id operation followed by 0x00 reads the device ID while
a read id operation followed by 0x20 reads the possible ONFI identifier.
As the READID function did not propagate the second id parameter but had
a hard-coded call for 0x90 0x00, reading the ONFI identifier was not
possible and thus chips werde not detected (tested with
MT29F8G08ABABAWP)
Signed-off-by: Enrico Jorns <ejo@pengutronix.de>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/nand/denali.c')
-rw-r--r-- | drivers/mtd/nand/denali.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c index 870c7fc0f759..7b6186ffe3ac 100644 --- a/drivers/mtd/nand/denali.c +++ b/drivers/mtd/nand/denali.c @@ -1304,7 +1304,7 @@ static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col, */ addr = MODE_11 | BANK(denali->flash_bank); index_addr(denali, addr | 0, 0x90); - index_addr(denali, addr | 1, 0); + index_addr(denali, addr | 1, col); for (i = 0; i < 8; i++) { index_addr_read_data(denali, addr | 2, &id); write_byte_to_buf(denali, id); |