All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] serial: 8250_pci: Add Amazon PCI serial device ID
@ 2017-11-12 22:14 Matt Wilson
  2017-11-13  8:31 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 6+ messages in thread
From: Matt Wilson @ 2017-11-12 22:14 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Jiri Slaby, linux-serial, linux-kernel, Anthony Liguori,
	Matt Wilson, stable

From: Matt Wilson <msw@amazon.com>

Cc: stable@vger.kernel.org
Signed-off-by: Matt Wilson <msw@amazon.com>
---
 drivers/tty/serial/8250/8250_pci.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
index 0c101a7..d4e7be8 100644
--- a/drivers/tty/serial/8250/8250_pci.c
+++ b/drivers/tty/serial/8250/8250_pci.c
@@ -5137,6 +5137,9 @@ static const struct pci_device_id serial_pci_tbl[] = {
 	{ PCI_DEVICE(0x1601, 0x0800), .driver_data = pbn_b0_4_1250000 },
 	{ PCI_DEVICE(0x1601, 0xa801), .driver_data = pbn_b0_4_1250000 },
 
+	/* Amazon PCI serial device */
+	{ PCI_DEVICE(0x1d0f, 0x8250), .driver_data = pbn_b0_1_115200 },
+
 	/*
 	 * These entries match devices with class COMMUNICATION_SERIAL,
 	 * COMMUNICATION_MODEM or COMMUNICATION_MULTISERIAL
-- 
2.7.4

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

* Re: [PATCH] serial: 8250_pci: Add Amazon PCI serial device ID
  2017-11-12 22:14 [PATCH] serial: 8250_pci: Add Amazon PCI serial device ID Matt Wilson
@ 2017-11-13  8:31 ` Greg Kroah-Hartman
  2017-11-13 19:31   ` [PATCH v2] " Matt Wilson
  0 siblings, 1 reply; 6+ messages in thread
From: Greg Kroah-Hartman @ 2017-11-13  8:31 UTC (permalink / raw)
  To: Matt Wilson
  Cc: Jiri Slaby, linux-serial, linux-kernel, Anthony Liguori,
	Matt Wilson, stable

On Sun, Nov 12, 2017 at 02:14:06PM -0800, Matt Wilson wrote:
> From: Matt Wilson <msw@amazon.com>
> 
> Cc: stable@vger.kernel.org
> Signed-off-by: Matt Wilson <msw@amazon.com>
> ---

I can't take patches without any changelog text at all :(

Please resend with a bit more descriptions of what this hardware is, and
why we need a table entry for it.

thanks,

greg k-h

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

* [PATCH v2] serial: 8250_pci: Add Amazon PCI serial device ID
  2017-11-13  8:31 ` Greg Kroah-Hartman
@ 2017-11-13 19:31   ` Matt Wilson
  2017-11-19  4:26       ` Matt Wilson
  0 siblings, 1 reply; 6+ messages in thread
From: Matt Wilson @ 2017-11-13 19:31 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Jiri Slaby, linux-serial, linux-kernel, Anthony Liguori,
	Matt Wilson, stable

From: Matt Wilson <msw@amazon.com>

This device will be used in future Amazon EC2 instances as the primary
serial port (i.e., data sent to this port will be available via the
GetConsoleOuput [1] EC2 API).

[1] http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetConsoleOutput.html

Cc: stable@vger.kernel.org
Signed-off-by: Matt Wilson <msw@amazon.com>
---
 drivers/tty/serial/8250/8250_pci.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
index 0c101a7..d4e7be8 100644
--- a/drivers/tty/serial/8250/8250_pci.c
+++ b/drivers/tty/serial/8250/8250_pci.c
@@ -5137,6 +5137,9 @@ static const struct pci_device_id serial_pci_tbl[] = {
 	{ PCI_DEVICE(0x1601, 0x0800), .driver_data = pbn_b0_4_1250000 },
 	{ PCI_DEVICE(0x1601, 0xa801), .driver_data = pbn_b0_4_1250000 },
 
+	/* Amazon PCI serial device */
+	{ PCI_DEVICE(0x1d0f, 0x8250), .driver_data = pbn_b0_1_115200 },
+
 	/*
 	 * These entries match devices with class COMMUNICATION_SERIAL,
 	 * COMMUNICATION_MODEM or COMMUNICATION_MULTISERIAL
-- 
2.7.4

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

* Re: [PATCH v2] serial: 8250_pci: Add Amazon PCI serial device ID
  2017-11-13 19:31   ` [PATCH v2] " Matt Wilson
@ 2017-11-19  4:26       ` Matt Wilson
  0 siblings, 0 replies; 6+ messages in thread
From: Matt Wilson @ 2017-11-19  4:26 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Jiri Slaby, linux-serial, linux-kernel, Anthony Liguori, stable

On Mon, Nov 13, 2017 at 11:31:31AM -0800, Matt Wilson wrote:
> From: Matt Wilson <msw@amazon.com>
> 
> This device will be used in future Amazon EC2 instances as the primary
> serial port (i.e., data sent to this port will be available via the
> GetConsoleOuput [1] EC2 API).

Ping?

--msw

> [1] http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetConsoleOutput.html
> 
> Cc: stable@vger.kernel.org
> Signed-off-by: Matt Wilson <msw@amazon.com>
> ---
>  drivers/tty/serial/8250/8250_pci.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
> index 0c101a7..d4e7be8 100644
> --- a/drivers/tty/serial/8250/8250_pci.c
> +++ b/drivers/tty/serial/8250/8250_pci.c
> @@ -5137,6 +5137,9 @@ static const struct pci_device_id serial_pci_tbl[] = {
>  	{ PCI_DEVICE(0x1601, 0x0800), .driver_data = pbn_b0_4_1250000 },
>  	{ PCI_DEVICE(0x1601, 0xa801), .driver_data = pbn_b0_4_1250000 },
>  
> +	/* Amazon PCI serial device */
> +	{ PCI_DEVICE(0x1d0f, 0x8250), .driver_data = pbn_b0_1_115200 },
> +
>  	/*
>  	 * These entries match devices with class COMMUNICATION_SERIAL,
>  	 * COMMUNICATION_MODEM or COMMUNICATION_MULTISERIAL

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

* Re: [PATCH v2] serial: 8250_pci: Add Amazon PCI serial device ID
@ 2017-11-19  4:26       ` Matt Wilson
  0 siblings, 0 replies; 6+ messages in thread
From: Matt Wilson @ 2017-11-19  4:26 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Jiri Slaby, linux-serial, linux-kernel, Anthony Liguori, stable

On Mon, Nov 13, 2017 at 11:31:31AM -0800, Matt Wilson wrote:
> From: Matt Wilson <msw@amazon.com>
> 
> This device will be used in future Amazon EC2 instances as the primary
> serial port (i.e., data sent to this port will be available via the
> GetConsoleOuput [1] EC2 API).

Ping?

--msw

> [1] http://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_GetConsoleOutput.html
> 
> Cc: stable@vger.kernel.org
> Signed-off-by: Matt Wilson <msw@amazon.com>
> ---
>  drivers/tty/serial/8250/8250_pci.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
> index 0c101a7..d4e7be8 100644
> --- a/drivers/tty/serial/8250/8250_pci.c
> +++ b/drivers/tty/serial/8250/8250_pci.c
> @@ -5137,6 +5137,9 @@ static const struct pci_device_id serial_pci_tbl[] = {
>  	{ PCI_DEVICE(0x1601, 0x0800), .driver_data = pbn_b0_4_1250000 },
>  	{ PCI_DEVICE(0x1601, 0xa801), .driver_data = pbn_b0_4_1250000 },
>  
> +	/* Amazon PCI serial device */
> +	{ PCI_DEVICE(0x1d0f, 0x8250), .driver_data = pbn_b0_1_115200 },
> +
>  	/*
>  	 * These entries match devices with class COMMUNICATION_SERIAL,
>  	 * COMMUNICATION_MODEM or COMMUNICATION_MULTISERIAL

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

* Re: [PATCH v2] serial: 8250_pci: Add Amazon PCI serial device ID
  2017-11-19  4:26       ` Matt Wilson
  (?)
@ 2017-11-19  8:41       ` Greg Kroah-Hartman
  -1 siblings, 0 replies; 6+ messages in thread
From: Greg Kroah-Hartman @ 2017-11-19  8:41 UTC (permalink / raw)
  To: Matt Wilson
  Cc: Jiri Slaby, linux-serial, linux-kernel, Anthony Liguori, stable

On Sat, Nov 18, 2017 at 08:26:07PM -0800, Matt Wilson wrote:
> On Mon, Nov 13, 2017 at 11:31:31AM -0800, Matt Wilson wrote:
> > From: Matt Wilson <msw@amazon.com>
> > 
> > This device will be used in future Amazon EC2 instances as the primary
> > serial port (i.e., data sent to this port will be available via the
> > GetConsoleOuput [1] EC2 API).
> 
> Ping?

Middle of the merge window, can't do anything until 4.15-rc1 is out,
please be patient...

greg k-h

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

end of thread, other threads:[~2017-11-19  8:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-12 22:14 [PATCH] serial: 8250_pci: Add Amazon PCI serial device ID Matt Wilson
2017-11-13  8:31 ` Greg Kroah-Hartman
2017-11-13 19:31   ` [PATCH v2] " Matt Wilson
2017-11-19  4:26     ` Matt Wilson
2017-11-19  4:26       ` Matt Wilson
2017-11-19  8:41       ` Greg Kroah-Hartman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.