From owner-freebsd-current@FreeBSD.ORG Mon Dec 22 14:19:27 2008 Return-Path: Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F6B71065670 for ; Mon, 22 Dec 2008 14:19:27 +0000 (UTC) (envelope-from des@des.no) Received: from tim.des.no (tim.des.no [194.63.250.121]) by mx1.freebsd.org (Postfix) with ESMTP id 41BA08FC12 for ; Mon, 22 Dec 2008 14:19:27 +0000 (UTC) (envelope-from des@des.no) Received: from ds4.des.no (des.no [84.49.246.2]) by smtp.des.no (Postfix) with ESMTP id 1AC986D43F; Mon, 22 Dec 2008 14:19:26 +0000 (UTC) Received: by ds4.des.no (Postfix, from userid 1001) id 0600E84460; Mon, 22 Dec 2008 15:19:26 +0100 (CET) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: Boris Samorodov References: <46336768@bb.ipt.ru> Date: Mon, 22 Dec 2008 15:19:25 +0100 In-Reply-To: <46336768@bb.ipt.ru> (Boris Samorodov's message of "Mon, 15 Dec 2008 20:26:23 +0300") Message-ID: <86lju8i976.fsf@ds4.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Cc: freebsd-current@FreeBSD.org Subject: Re: Oxford OX16PCI958 multiport card X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Dec 2008 14:19:27 -0000 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Boris Samorodov writes: > here is one more 8-port card which doesn't work by default > at -current: > ----- > none0@pci0:0:10:0: class=3D0x070200 card=3D0x06711415 chip=3D0x95381= 415 rev=3D0x01 hdr=3D0x00 > vendor =3D 'Oxford Semiconductor Ltd' > class =3D simple comms > subclass =3D multiport serial > ----- Try the attached patch. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=OX16PCI958.diff Index: sys/dev/puc/pucdata.c =================================================================== --- sys/dev/puc/pucdata.c (revision 186394) +++ sys/dev/puc/pucdata.c (working copy) @@ -626,6 +626,12 @@ PUC_PORT_4S, 0x10, 0, 8, }, + { 0x1415, 0x9538, 0xffff, 0, + "Oxford Semiconductor OX16PCI958 UARTs", + DEFAULT_RCLK, + PUC_PORT_8S, 0x10, 0, 8, + }, + { 0x1415, 0x9521, 0xffff, 0, "Oxford Semiconductor OX16PCI952 UARTs", DEFAULT_RCLK, --=-=-=--