]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
mtd: denali: support NAND_CMD_RNDOUT command
authorMasahiro Yamada <yamada.m@jp.panasonic.com>
Fri, 3 Oct 2014 11:03:04 +0000 (20:03 +0900)
committerScott Wood <scottwood@freescale.com>
Thu, 9 Oct 2014 22:33:26 +0000 (17:33 -0500)
The function nand_flash_detect_ext_param_page() requires
NAND_CMD_RNDOUT command supported.  It is necessary to detect some
types of ONFi-compliant devices.  Without it, the error message
"unsupported command received 0x5" is shown.

Let's support this command on the Denali NAND controller driver.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Chin Liang See <clsee@altera.com>
drivers/mtd/nand/denali.c

index d9abc7e1d6f55154bfc16950f27b925bd72ea528..308b7845f122e49b47ba46bc178824a746a9abfd 100644 (file)
@@ -1072,6 +1072,13 @@ static void denali_cmdfunc(struct mtd_info *mtd, unsigned int cmd, int col,
                if (cmd == NAND_CMD_PARAM)
                        udelay(50);
                break;
+       case NAND_CMD_RNDOUT:
+               addr = MODE_11 | BANK(denali->flash_bank);
+               index_addr(denali, addr | 0, cmd);
+               index_addr(denali, addr | 1, col & 0xFF);
+               index_addr(denali, addr | 1, col >> 8);
+               index_addr(denali, addr | 0, NAND_CMD_RNDOUTSTART);
+               break;
        case NAND_CMD_READ0:
        case NAND_CMD_SEQIN:
                denali->page = page;