ar71xx: ar934x_nfc: increase DMA retry count
SVN-Revision: 33453
This commit is contained in:
parent
b7cb43f6a6
commit
3bdf0bc36f
1 changed files with 2 additions and 1 deletions
|
@ -131,6 +131,7 @@
|
||||||
#define AR934X_NFC_DEV_READY_TIMEOUT 25 /* msecs */
|
#define AR934X_NFC_DEV_READY_TIMEOUT 25 /* msecs */
|
||||||
#define AR934X_NFC_DMA_READY_TIMEOUT 25 /* msecs */
|
#define AR934X_NFC_DMA_READY_TIMEOUT 25 /* msecs */
|
||||||
#define AR934X_NFC_DONE_TIMEOUT 1000
|
#define AR934X_NFC_DONE_TIMEOUT 1000
|
||||||
|
#define AR934X_NFC_DMA_RETRIES 20
|
||||||
|
|
||||||
#define AR934X_NFC_USE_IRQ true
|
#define AR934X_NFC_USE_IRQ true
|
||||||
#define AR934X_NFC_IRQ_MASK AR934X_NFC_INT_DEV_RDY(0)
|
#define AR934X_NFC_IRQ_MASK AR934X_NFC_INT_DEV_RDY(0)
|
||||||
|
@ -465,7 +466,7 @@ retry:
|
||||||
(write) ? "write" : "read", page_addr);
|
(write) ? "write" : "read", page_addr);
|
||||||
|
|
||||||
ar934x_nfc_restart(nfc);
|
ar934x_nfc_restart(nfc);
|
||||||
if (retries++ < 5)
|
if (retries++ < AR934X_NFC_DMA_RETRIES)
|
||||||
goto retry;
|
goto retry;
|
||||||
|
|
||||||
dev_err(nfc->parent, "%s operation failed on page %d\n",
|
dev_err(nfc->parent, "%s operation failed on page %d\n",
|
||||||
|
|
Loading…
Reference in a new issue