• D
    i2c: core: Disable client irq on reboot/shutdown · 1c30d8cf
    Dmitry Torokhov 提交于
    stable inclusion
    from linux-4.19.198
    commit 7c0bb53d48244b10782deea07d57e0a4c0fb4262
    
    --------------------------------
    
    [ Upstream commit b64210f2 ]
    
    If an i2c client receives an interrupt during reboot or shutdown it may
    be too late to service it by making an i2c transaction on the bus
    because the i2c controller has already been shutdown. This can lead to
    system hangs if the i2c controller tries to make a transfer that is
    doomed to fail because the access to the i2c pins is already shut down,
    or an iommu translation has been torn down so i2c controller register
    access doesn't work.
    
    Let's simply disable the irq if there isn't a shutdown callback for an
    i2c client when there is an irq associated with the device. This will
    make sure that irqs don't come in later than the time that we can handle
    it. We don't do this if the i2c client device already has a shutdown
    callback because presumably they're doing the right thing and quieting
    the device so irqs don't come in after the shutdown callback returns.
    Reported-by: Nkernel test robot <lkp@intel.com>
    [swboyd@chromium.org: Dropped newline, added commit text, added
    interrupt.h for robot build error]
    Signed-off-by: NStephen Boyd <swboyd@chromium.org>
    Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
    Signed-off-by: NWolfram Sang <wsa@kernel.org>
    Signed-off-by: NSasha Levin <sashal@kernel.org>
    Signed-off-by: NYang Yingliang <yangyingliang@huawei.com>
    1c30d8cf
i2c-core-base.c 63.2 KB