From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.lixom.net (lixom.net [66.141.50.11]) by ozlabs.org (Postfix) with ESMTP id 787F6DDE40 for ; Fri, 17 Aug 2007 15:05:04 +1000 (EST) Date: Thu, 16 Aug 2007 23:09:02 -0500 From: Olof Johansson To: akpm@linux-foundation.org Subject: [PATCH] serial: Add pci ids for PA Semi PWRficient onchip uarts Message-ID: <20070817040902.GB8294@lixom.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linuxppc-dev@ozlabs.org, linux-kernel@vger.kernel.org, Alan Cox List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Add PCI IDs for the onchip UARTs on PA Semi PWRficient. Signed-off-by: Olof Johansson Index: linux-2.6/drivers/serial/8250_pci.c =================================================================== --- linux-2.6.orig/drivers/serial/8250_pci.c +++ linux-2.6/drivers/serial/8250_pci.c @@ -984,6 +984,7 @@ enum pci_board_num_t { pbn_exar_XR17C152, pbn_exar_XR17C154, pbn_exar_XR17C158, + pbn_pasemi_1682M, }; /* @@ -1511,6 +1512,14 @@ static struct pciserial_board pci_boards .base_baud = 921600, .uart_offset = 0x200, }, + /* + * PA Semi PWRficient PA6T-1682M on-chip UART + */ + [pbn_pasemi_1682M] = { + .flags = FL_BASE0, + .num_ports = 1, + .base_baud = 8333333, + }, }; /* @@ -2402,6 +2411,13 @@ static struct pci_device_id serial_pci_t PCI_SUBVENDOR_ID_PERLE, PCI_SUBDEVICE_ID_PCI_RAS8, 0, 0, pbn_b2_8_921600 }, /* + * PA Semi PA6T-1682M on-chip UART + */ + { PCI_VENDOR_ID_PASEMI, 0xa004, + PCI_ANY_ID, PCI_ANY_ID, 0, 0, + pbn_pasemi_1682M }, + + /* * These entries match devices with class COMMUNICATION_SERIAL, * COMMUNICATION_MODEM or COMMUNICATION_MULTISERIAL */