Search code examples
linuxwifidriverdeviceinterrupt

In SDIO interface how interrupts are registered


I want to know about SDIO interface. I googled about it but didn't get any convencing link for the same. I want to know about interrupt registeration in SDIO interface.


Solution

  • Did you look at drivers/mmc/core sdio_irq.c ?
    Check sdio_claim_irq function which launches sdio_irq_thread thread.
    When there is an interrupt this thread calls the registered interrupt handler.