Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754918Ab3JVU0c (ORCPT ); Tue, 22 Oct 2013 16:26:32 -0400 Received: from mga02.intel.com ([134.134.136.20]:25864 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754676Ab3JVU03 (ORCPT ); Tue, 22 Oct 2013 16:26:29 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.93,550,1378882800"; d="scan'208";a="415376088" Message-ID: <5266E070.2060408@linux.intel.com> Date: Tue, 22 Oct 2013 13:30:40 -0700 From: David Cohen User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20131005 Icedove/17.0.9 MIME-Version: 1.0 To: Alexander Shiyan CC: gregkh@linuxfoundation.org, jslaby@suse.cz, ning.li@intel.com, ivan.gorinov@intel.com, linux-kernel@vger.kernel.org, linux-serial@vger.kernel.org Subject: Re: [PATCH 2/2] mrst_max3110: fix SPI UART interrupt parameters References: <1382470930-13807-1-git-send-email-david.a.cohen@linux.intel.com> <1382470930-13807-2-git-send-email-david.a.cohen@linux.intel.com> <1382471160.205404749@f402.i.mail.ru> In-Reply-To: <1382471160.205404749@f402.i.mail.ru> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1634 Lines: 47 On 10/22/2013 12:46 PM, Alexander Shiyan wrote: >> The change in the max3110 driver makes the IRQ handling threaded, now >> the handler is called only once per received character. Without that >> change, we had many (more than 100) interrupts per one received >> character. >> >> Unfortunately, SFI interface does not support IRQ polarity and >> triggering modes, so we have to keep the hacks as hard-coded device >> names and IRQ numbers until we switch to ACPI. >> >> Edge-triggered IRQ still supported to keep old platforms working. >> Use platform data to pass the irq mode argument. >> >> Signed-off-by: Ivan Gorinov >> Signed-off-by: Li Ning >> Signed-off-by: David Cohen > ... >> +++ b/include/linux/serial_max3110.h >> @@ -0,0 +1,16 @@ >> +#ifndef _LINUX_SERIAL_MAX3110_H >> +#define _LINUX_SERIAL_MAX3110_H >> + >> +/** >> + * struct plat_max3110 - MAX3110 SPI UART platform data >> + * @irq_edge_trigger: if IRQ is edge triggered >> + * >> + * You should use this structure in your machine description to specify >> + * how the MAX3110 is connected. >> + * >> + */ >> +struct plat_max3110 { >> + int irq_edge_triggered; >> +}; >> + >> +#endif >> -- > > Is just resource->flags for IRQ can be reused for handle such case? I believe your suggestion makes perfect sense. I'll rework it. Br, David Cohen -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/