mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
nand: increase chip_delay in mv kirkwood nand driver
The new SAMSUNG NAND Flash K9F1G08U0D require a bigger chip_delay. The Data Transfer from Cell to Register is >= 35us. Other Vendors and older chips normally use >= 25us. To have enough margin 40us is selected. Signed-off-by: Stefan Bigler <stefan.bigler@keymile.com> Signed-off-by: Holger Brunck <holger.brunck@keymile.com> cc: Prafulla Wadaskar <prafulla@marvell.com> cc: Stefan Roese <sr@denx.de> Signed-off-by: Scott Wood <scottwood@freescale.com>
This commit is contained in:
parent
7b8ffea2ac
commit
156800905a
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ int board_nand_init(struct nand_chip *nand)
|
|||
nand->options = NAND_COPYBACK | NAND_CACHEPRG | NAND_NO_PADDING;
|
||||
nand->ecc.mode = NAND_ECC_SOFT;
|
||||
nand->cmd_ctrl = kw_nand_hwcontrol;
|
||||
nand->chip_delay = 30;
|
||||
nand->chip_delay = 40;
|
||||
nand->select_chip = kw_nand_select_chip;
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue