Hi
I have successfully developed SD driver on zedboard.
Is SDIO supported on zedboard? I am testing AR6K3 wireless driver.
While developing SDIO driver, when i receive SDIO Interrupt (Register: 0x30. Bit: 8), It will not be cleared and My LISR is striking again and again. Can any one inform me how to clear this bit.
My code to clear this bit is like
******** Start of LISR **********
Write(base + 0x38, Read(base + 0x38) & ~(1<<8));
Write(base + 0x34, 0xFFFFFEFF & ~(1 << 8));
...
...
...
Write(base + 0x38, Read(base + 0x38) |(1<<8));
************ End of LISR ******************
Regards