mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 11:24:42 +00:00
mtd: nand: raw: denali: Wait for reset completion status
Fixed delay 200us is not working in certain platforms. Change to poll for reset completion status to have more reliable reset process. Controller will set the rst_comp bit in intr_status register after controller has completed its reset and initialization process. Tested-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Radu Bacrau <radu.bacrau@intel.com> Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
3e57f879ee
commit
94e8b328a7
3 changed files with 17 additions and 1 deletions
|
@ -1220,6 +1220,17 @@ static int denali_multidev_fixup(struct denali_nand_info *denali)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int denali_wait_reset_complete(struct denali_nand_info *denali)
|
||||
{
|
||||
u32 irq_status;
|
||||
|
||||
irq_status = denali_wait_for_irq(denali, INTR__RST_COMP);
|
||||
if (!(irq_status & INTR__RST_COMP))
|
||||
return -EIO;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int denali_init(struct denali_nand_info *denali)
|
||||
{
|
||||
struct nand_chip *chip = &denali->nand;
|
||||
|
|
|
@ -321,6 +321,7 @@ struct denali_nand_info {
|
|||
#define DENALI_CAP_DMA_64BIT BIT(1)
|
||||
|
||||
int denali_calc_ecc_bytes(int step_size, int strength);
|
||||
int denali_wait_reset_complete(struct denali_nand_info *denali);
|
||||
int denali_init(struct denali_nand_info *denali);
|
||||
|
||||
#endif /* __DENALI_H__ */
|
||||
|
|
|
@ -157,7 +157,11 @@ static int denali_dt_probe(struct udevice *dev)
|
|||
* kicked (bootstrap process). The driver must wait until it is
|
||||
* finished. Otherwise, it will result in unpredictable behavior.
|
||||
*/
|
||||
udelay(200);
|
||||
ret = denali_wait_reset_complete(denali);
|
||||
if (ret) {
|
||||
dev_err(denali->dev, "reset not completed.\n");
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
||||
return denali_init(denali);
|
||||
|
|
Loading…
Add table
Reference in a new issue