• Ulf Hansson's avatar
    mmc: core: Fixup processing of SDIO IRQs during system suspend/resume · 51133850
    Ulf Hansson authored
    System suspend/resume of SDIO cards, with SDIO IRQs enabled and when using
    MMC_CAP2_SDIO_IRQ_NOTHREAD is unfortunate still suffering from a fragile
    behaviour. Some problems have been taken care of so far, but more issues
    remains.
    
    For example, calling the ->ack_sdio_irq() callback to let host drivers
    re-enable the SDIO IRQs is a bad idea, unless the IRQ have been consumed,
    which may not be the case during system suspend/resume. This may lead to
    that a host driver re-signals the same SDIO IRQ over and over again,
    causing a storm of IRQs and gives a ping-pong effect towards the
    sdio_irq_work().
    
    Moreover, calling the ->enable_sdio_irq() callback at system resume to
    re-enable already enabled SDIO IRQs for the host, causes the runtime PM
    count for some host drivers to become in-balanced. This then leads to the
    host to remain runtime resumed, no matter if it's needed or not.
    
    To fix these problems, let's check if process_sdio_pending_irqs() actually
    consumed the SDIO IRQ, before we continue to ack the IRQ by invoking the
    ->ack_sdio_irq() callback.
    
    Additionally, there should be no need to re-enable SDIO IRQs as the host
    driver already knows if they were enabled at system suspend, thus also
    whether it needs to re-enable them at system resume. For this reason, drop
    the call to ->enable_sdio_irq() during system resume.
    
    In regards to these changes there is yet another issue, which is when there
    is an SDIO IRQ being signaled by the host driver, but after the SDIO card
    has been system suspended. Currently these IRQs are just thrown away, while
    we should at least make sure to try to consume them when the SDIO card has
    been system resumed. Fix this by queueing a sdio_irq_work() after we system
    resumed the SDIO card.
    Tested-by: default avatarMatthias Kaehlcke <mka@chromium.org>
    Reviewed-by: default avatarMatthias Kaehlcke <mka@chromium.org>
    Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
    Reviewed-by: default avatarDouglas Anderson <dianders@chromium.org>
    Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
    51133850
sdio_irq.c 8.74 KB