From owner-freebsd-bugs@FreeBSD.ORG Thu Apr 28 18:20:11 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 44106106566B for ; Thu, 28 Apr 2011 18:20:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 32D658FC13 for ; Thu, 28 Apr 2011 18:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p3SIKBSt070776 for ; Thu, 28 Apr 2011 18:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p3SIKBmn070775; Thu, 28 Apr 2011 18:20:11 GMT (envelope-from gnats) Date: Thu, 28 Apr 2011 18:20:11 GMT Message-Id: <201104281820.p3SIKBmn070775@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: John Baldwin Cc: Subject: Re: kern/124128: [puc] puc driver doesn't support VScom PCIex-800H 8-port serial cards X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Baldwin List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Apr 2011 18:20:11 -0000 The following reply was made to PR kern/124128; it has been noted by GNATS. From: John Baldwin To: bug-followup@FreeBSD.org, maxim.frolov.07@gmail.com Cc: Subject: Re: kern/124128: [puc] puc driver doesn't support VScom PCIex-800H 8-port serial cards Date: Thu, 28 Apr 2011 14:16:03 -0400 Can you verify that this patch applied to an unmodified pucdata.c allows your card to work? Index: pucdata.c =================================================================== --- pucdata.c (revision 221161) +++ pucdata.c (working copy) @@ -735,6 +735,17 @@ const struct puc_cfg puc_pci_devices[] = { PUC_PORT_2S, 0x10, 0, 8, }, + { 0x14d2, 0xa007, 0xffff, 0, + "Titan VScom PCIex-800H", + DEFAULT_RCLK * 8, + PUC_PORT_4S, 0x10, 0, 8, + }, + { 0x14d2, 0xa008, 0xffff, 0, + "Titan VScom PCIex-800H", + DEFAULT_RCLK * 8, + PUC_PORT_4S, 0x10, 0, 8, + }, + { 0x14d2, 0xe020, 0xffff, 0, "Titan VScom PCI-200HV2", DEFAULT_RCLK * 8, -- John Baldwin