9
0
Fork 0

nand: mxs: Check for up to 4 NAND chips

Since i.MX6 has only one R/B actual pin, if there are several R/B
signals (from different NAND chips) they must be connected to this
pin.

Signed-off-by: Dmitry Lavnikevich <d.lavnikevich@sam-solutions.com>
Signed-off-by: Grigory Milev <g.milev@sam-solutions.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Dmitry Lavnikevich 2014-03-10 14:39:52 +03:00 committed by Sascha Hauer
parent 95147b1d95
commit c15680099e
1 changed files with 9 additions and 2 deletions

View File

@ -33,6 +33,7 @@
#include <dma/apbh-dma.h>
#include <stmp-device.h>
#include <asm/mmu.h>
#include <mach/generic.h>
#define MX28_BLOCK_SFTRST (1 << 31)
#define MX28_BLOCK_CLKGATE (1 << 30)
@ -427,7 +428,13 @@ static int mxs_nand_device_ready(struct mtd_info *mtd)
if (nand_info->version > GPMI_VERSION_TYPE_MX23) {
tmp = readl(gpmi_regs + GPMI_STAT);
tmp >>= (GPMI_STAT_READY_BUSY_OFFSET + nand_info->cur_chip);
/* i.MX6 has only one R/B actual pin, so if there are several
R/B signals they must be all connected to this pin */
if (cpu_is_mx6())
tmp >>= GPMI_STAT_READY_BUSY_OFFSET;
else
tmp >>= (GPMI_STAT_READY_BUSY_OFFSET +
nand_info->cur_chip);
} else {
tmp = readl(gpmi_regs + GPMI_DEBUG);
tmp >>= (GPMI_DEBUG_READY0_OFFSET + nand_info->cur_chip);
@ -1304,7 +1311,7 @@ static int mxs_nand_probe(struct device_d *dev)
nand->ecc.strength = 8;
/* first scan to find the device and get the page size */
err = nand_scan_ident(mtd, 1, NULL);
err = nand_scan_ident(mtd, 4, NULL);
if (err)
goto err2;