linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* FW: [PATCH v5] 8250_pci: add -ENODEV code for Intel EG20T PCH
@ 2011-06-08 11:26 Clark, Joel
  2011-06-08 16:26 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Clark, Joel @ 2011-06-08 11:26 UTC (permalink / raw)
  To: Cox, Alan, gregkh, linux-kernel, linux-serial
  Cc: Wang, Qi, Wang, Yong Y, Clark, Joel, Ewe, Kok Howg,
	toshiharu-linux, 'Tomoya MORINAGA',
	Liu, Bing Wei, Skarpness, Mark

> On Wednesday, June 01, 2011 7:31 PM, Tomoya MORINAGA [mailto:tomoya-linux@dsn.okisemi.com] wrote:
>
> Intel EG20T PCH has UART device which is compatible with 8250.
> Currently, with general configuration, the PCH UART driver is not loaded but
> 8250 standard driver is loaded.
> Therefore, in case of using PCH UART driver, need to disable 8250 pci function.
> However, this procedure is not best solution.
> This patch, in 8250_pci, if the device is the PCH or the family IOH,
> '-ENODEV' is returned.
> As a result, disabling 8250-pci processing becomes unnecessary.
>
> Signed-off-by: Tomoya MORINAGA <tomoya-linux@dsn.okisemi.com>
> ---
> V5: Rename own_init again.
>     return_ENODEV() to pci_eg20t_init()
>
> V4: Rename own_init to return_ENODEV
>     Add #if defined ~ #endif
>
> V3: add own init() and set the init() to quirk table.
>
> V2: Delete #ifdef CONFIG_SERIAL_PCH_UART ~ #endif
>     Use quirk table structure
> ---
>  drivers/tty/serial/8250_pci.c |   59 +++++++++++++++++++++++++++++++++++++++++
>  1 files changed, 59 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/tty/serial/8250_pci.c b/drivers/tty/serial/8250_pci.c
> index 738cec9..2b40fbf 100644
> --- a/drivers/tty/serial/8250_pci.c
> +++ b/drivers/tty/serial/8250_pci.c
> @@ -988,6 +988,15 @@ static int skip_tx_en_setup(struct serial_private *priv,
>  	return pci_default_setup(priv, board, port, idx);
>  }
>  
> +static int pci_eg20t_init(struct pci_dev *dev)
> +{
> +#if defined(CONFIG_SERIAL_PCH_UART) || defined(CONFIG_SERIAL_PCH_UART_MODULE)
> +	return -ENODEV;
> +#else
> +	return 0;
> +#endif
> +}
> +
>  /* This should be in linux/pci_ids.h */
>  #define PCI_VENDOR_ID_SBSMODULARIO	0x124B
>  #define PCI_SUBVENDOR_ID_SBSMODULARIO	0x124B
> @@ -1430,6 +1439,56 @@ static struct pci_serial_quirk pci_serial_quirks[] __refdata = {
>  		.init		= pci_oxsemi_tornado_init,
>  		.setup		= pci_default_setup,
>  	},
> +	{
> +		.vendor         = PCI_VENDOR_ID_INTEL,
> +		.device         = 0x8811,
> +		.init		= pci_eg20t_init,
> +	},
> +	{
> +		.vendor         = PCI_VENDOR_ID_INTEL,
> +		.device         = 0x8812,
> +		.init		= pci_eg20t_init,
> +	},
> +	{
> +		.vendor         = PCI_VENDOR_ID_INTEL,
> +		.device         = 0x8813,
> +		.init		= pci_eg20t_init,
> +	},
> +	{
> +		.vendor         = PCI_VENDOR_ID_INTEL,
> +		.device         = 0x8814,
> +		.init		= pci_eg20t_init,
> +	},
> +	{
> +		.vendor         = 0x10DB,
> +		.device         = 0x8027,
> +		.init		= pci_eg20t_init,
> +	},
> +	{
> +		.vendor         = 0x10DB,
> +		.device         = 0x8028,
> +		.init		= pci_eg20t_init,
> +	},
> +	{
> +		.vendor         = 0x10DB,
> +		.device         = 0x8029,
> +		.init		= pci_eg20t_init,
> +	},
> +	{
> +		.vendor         = 0x10DB,
> +		.device         = 0x800C,
> +		.init		= pci_eg20t_init,
> +	},
> +	{
> +		.vendor         = 0x10DB,
> +		.device         = 0x800D,
> +		.init		= pci_eg20t_init,
> +	},
> +	{
> +		.vendor         = 0x10DB,
> +		.device         = 0x800D,
> +		.init		= pci_eg20t_init,
> +	},
>  	/*
>  	 * Default "match everything" terminator entry
>  	 */
>
> -- 
> 1.7.4


We would like to add this fix as soon as it is acceptable.  Will this version of this patch be accepted and applied?

regards
Joel Clark
MeeGo IVI 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: FW: [PATCH v5] 8250_pci: add -ENODEV code for Intel EG20T PCH
  2011-06-08 11:26 FW: [PATCH v5] 8250_pci: add -ENODEV code for Intel EG20T PCH Clark, Joel
@ 2011-06-08 16:26 ` Greg KH
  2011-06-08 23:57   ` Tomoya MORINAGA
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2011-06-08 16:26 UTC (permalink / raw)
  To: Clark, Joel
  Cc: Cox, Alan, linux-kernel, linux-serial, Wang, Qi, Wang, Yong Y,
	Ewe, Kok Howg, toshiharu-linux, 'Tomoya MORINAGA',
	Liu, Bing Wei, Skarpness, Mark

On Wed, Jun 08, 2011 at 05:26:42AM -0600, Clark, Joel wrote:
> We would like to add this fix as soon as it is acceptable.

Add it to what?

> Will this version of this patch be accepted and applied?

It's already in linux-next and will be sent to Linus in a few days for
inclusion in the final 3.0 release.

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: FW: [PATCH v5] 8250_pci: add -ENODEV code for Intel EG20T PCH
  2011-06-08 16:26 ` Greg KH
@ 2011-06-08 23:57   ` Tomoya MORINAGA
  2011-06-09  0:04     ` Clark, Joel
  0 siblings, 1 reply; 4+ messages in thread
From: Tomoya MORINAGA @ 2011-06-08 23:57 UTC (permalink / raw)
  To: Greg KH
  Cc: Clark, Joel, Cox, Alan, linux-kernel, linux-serial, Wang, Qi,
	Wang, Yong Y, Ewe, Kok Howg, toshiharu-linux, Liu, Bing Wei,
	Skarpness, Mark

Hi Greg,

(2011/06/09 1:26), Greg KH wrote:
 >> We would like to add this fix as soon as it is acceptable.
 >Add it to what?
I think Joel means MeeGo team want to add this patch.


Hi Joel,
As Greg saying, This patch have already accepted and applied by Greg.

-- 
tomoya
OKI SEMICONDUCTOR CO., LTD.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: FW: [PATCH v5] 8250_pci: add -ENODEV code for Intel EG20T PCH
  2011-06-08 23:57   ` Tomoya MORINAGA
@ 2011-06-09  0:04     ` Clark, Joel
  0 siblings, 0 replies; 4+ messages in thread
From: Clark, Joel @ 2011-06-09  0:04 UTC (permalink / raw)
  To: Tomoya MORINAGA, Greg KH
  Cc: Cox, Alan, linux-kernel, linux-serial, Wang, Qi, Wang, Yong Y,
	Ewe, Kok Howg, toshiharu-linux, Liu, Bing Wei, Skarpness, Mark


> From: Sent: Wednesday, June 08, 2011 4:57 PM, Tomoya MORINAGA [mailto:tomoya-linux@dsn.okisemi.com]
> 
> I think Joel means MeeGo team want to add this patch.
> 
> Hi Joel,
> As Greg saying, This patch have already accepted and applied by Greg.

Yes, thanks we will add it now
Joel

> 
> -- 
> tomoya
> OKI SEMICONDUCTOR CO., LTD.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-06-09  0:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-08 11:26 FW: [PATCH v5] 8250_pci: add -ENODEV code for Intel EG20T PCH Clark, Joel
2011-06-08 16:26 ` Greg KH
2011-06-08 23:57   ` Tomoya MORINAGA
2011-06-09  0:04     ` Clark, Joel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).