mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
Blackfin: nand: drain the write buffer before returning
The current Blackfin nand write function fills up the write buffer but returns before it has had a chance to drain. On faster systems, this isn't a problem as the operation finishes before the ECC registers are read, but on slower systems the ECC may be incomplete when the core tries to read it. So wait for the buffer to drain once we're done writing to it. Signed-off-by: Andrew Caldwell <Andrew.Caldwell@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
01f03bda5b
commit
c941b77adc
1 changed files with 6 additions and 1 deletions
|
@ -75,7 +75,7 @@ static void bfin_nfc_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
|
||||||
int bfin_nfc_devready(struct mtd_info *mtd)
|
int bfin_nfc_devready(struct mtd_info *mtd)
|
||||||
{
|
{
|
||||||
pr_stamp();
|
pr_stamp();
|
||||||
return (bfin_read_NFC_STAT() & NBUSY ? 1 : 0);
|
return (bfin_read_NFC_STAT() & NBUSY) ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -132,6 +132,11 @@ static void bfin_nfc_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len
|
||||||
|
|
||||||
bfin_write_NFC_DATA_WR(buf[i]);
|
bfin_write_NFC_DATA_WR(buf[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Wait for the buffer to drain before we return */
|
||||||
|
while (!(bfin_read_NFC_STAT() & WB_EMPTY))
|
||||||
|
if (ctrlc())
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue