From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yadi Hu Subject: RESEND:i2c-eg20t: fix race between i2c init and interrupt enable Date: Wed, 7 Sep 2016 17:25:36 +0800 Message-ID: <1473240337-5694-1-git-send-email-yadi.hu@windriver.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from mail.windriver.com ([147.11.1.11]:58665 "EHLO mail.windriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751088AbcIGJ1Z (ORCPT ); Wed, 7 Sep 2016 05:27:25 -0400 Sender: linux-i2c-owner@vger.kernel.org List-Id: linux-i2c@vger.kernel.org To: yadi.hu@windriver.com, wsa@the-dreams.de, jdelvare@suse.de Cc: linux-i2c@vger.kernel.org the eg20t driver call request_irq() function before the pch_base_address, base address of i2c controller's register, isassigned an effective value. it is one possible scenario that an interrupt which isn't inside eg20t arrives immediately after request_irq() is executed when i2c controller shares an interrupt number with others. since the interrupt handler pch_i2c_handler() has already active as shared action, it will be called and read its own register to determine if this interrupt is from itself. At that moment, since base address of i2c registers is not remapped in kernel space yet,so the INT handler will access an illegal address and then a error occurs. Bad IO access at port 0x18 (return inl(port)) Call Trace: [] warn_slowpath_common+0x73/0xa0 [] ? bad_io_access+0x45/0x50 [] ? bad_io_access+0x45/0x50 [] warn_slowpath_fmt+0x34/0x40 [] bad_io_access+0x45/0x50 [] ioread32+0x22/0x40 [] pch_i2c_handler+0x3b/0x120 [] handle_irq_event_percpu+0x64/0x330 [] handle_irq_event+0x3b/0x60 [] ? unmask_irq+0x30/0x30 [] handle_fasteoi_irq+0x50/0xe0 [] ? do_IRQ+0x48/0xc0 [] ? smp_apic_timer_interrupt+0x7f/0x17a [] ? common_interrupt+0x29/0x30 [] ? mwait_idle+0x8b/0x2c0 [] ? cpu_idle+0x9e/0xc0 [] ? rest_init+0x6c/0x74 [] ? start_kernel+0x311/0x318 [] ? repair_env_string+0x51/0x51 [] ? i386_start_kernel+0x78/0x7d ---[ end trace eb3a1028f468a140 ]--- i2c_eg20t 0000:05:0c.2: pch_i2c_handler :I2C-3 mode(0) is not supported after testing last patch, replacing request_irq() location is not a good idea,it might produce a little time windows ,in which the interrupts occurring inside will be omitted. the new patch adds a check point on interrupt handler in case field 'pch_base_address' has not been initialed. Yadi Hu (1) i2c-eg20t: fix race between i2c init and interrupt enable drivers/i2c/busses/i2c-eg20t.c | 5 +++++ 1 file changed, 5 insertions(+)