From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750895AbdKSE0X (ORCPT ); Sat, 18 Nov 2017 23:26:23 -0500 Received: from smtp-fw-6001.amazon.com ([52.95.48.154]:58416 "EHLO smtp-fw-6001.amazon.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750776AbdKSE0T (ORCPT ); Sat, 18 Nov 2017 23:26:19 -0500 X-IronPort-AV: E=Sophos;i="5.44,419,1505779200"; d="scan'208";a="319713292" Date: Sat, 18 Nov 2017 20:26:07 -0800 From: Matt Wilson To: Greg Kroah-Hartman CC: Jiri Slaby , , , Anthony Liguori , Subject: Re: [PATCH v2] serial: 8250_pci: Add Amazon PCI serial device ID Message-ID: <20171119042607.GA26232@ued668862963453.ant.amazon.com> References: <20171113083111.GB22719@kroah.com> <1510601491-31803-1-git-send-email-msw@linux.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <1510601491-31803-1-git-send-email-msw@linux.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Nov 13, 2017 at 11:31:31AM -0800, Matt Wilson wrote: > From: Matt Wilson > > 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 > --- > 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Wilson Subject: Re: [PATCH v2] serial: 8250_pci: Add Amazon PCI serial device ID Date: Sat, 18 Nov 2017 20:26:07 -0800 Message-ID: <20171119042607.GA26232@ued668862963453.ant.amazon.com> References: <20171113083111.GB22719@kroah.com> <1510601491-31803-1-git-send-email-msw@linux.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Return-path: Content-Disposition: inline In-Reply-To: <1510601491-31803-1-git-send-email-msw@linux.com> Sender: stable-owner@vger.kernel.org To: Greg Kroah-Hartman Cc: Jiri Slaby , linux-serial@vger.kernel.org, linux-kernel@vger.kernel.org, Anthony Liguori , stable@vger.kernel.org List-Id: linux-serial@vger.kernel.org On Mon, Nov 13, 2017 at 11:31:31AM -0800, Matt Wilson wrote: > From: Matt Wilson > > 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 > --- > 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