Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ff3206b2 authored by Matthieu CASTET's avatar Matthieu CASTET Committed by Artem Bityutskiy
Browse files

mtd: nand: onfi need to be probed in 8 bits mode



- NAND_CMD_READID want an address that it is not scaled on x16 device (it is always 0x20)
- NAND_CMD_PARAM want 8 bits data

Signed-off-by: default avatarMatthieu CASTET <matthieu.castet@parrot.com>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
parent 64b37b2a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2857,6 +2857,8 @@ static int nand_flash_detect_onfi(struct mtd_info *mtd, struct nand_chip *chip,
	int i;
	int val;

	/* ONFI need to be probed in 8 bits mode */
	WARN_ON(chip->options & NAND_BUSWIDTH_16);
	/* Try ONFI for unknown chip or LP */
	chip->cmdfunc(mtd, NAND_CMD_READID, 0x20, -1);
	if (chip->read_byte(mtd) != 'O' || chip->read_byte(mtd) != 'N' ||