From owner-freebsd-current@FreeBSD.ORG Tue Dec 9 04:19:10 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EC6516A4CE for ; Tue, 9 Dec 2003 04:19:10 -0800 (PST) Received: from mail.dada.it (mail2.dada.it [195.110.100.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 0244743D29 for ; Tue, 9 Dec 2003 04:19:06 -0800 (PST) (envelope-from mad@madpilot.net) Received: (qmail 14811 invoked from network); 9 Dec 2003 12:19:00 -0000 Received: from unknown (HELO madpilot.net) (195.110.114.197) by mail.dada.it with SMTP; 9 Dec 2003 12:19:00 -0000 Received: (qmail 26028 invoked from network); 9 Dec 2003 12:19:01 -0000 Received: from wedge.madpilot.net (192.168.13.11) by 0 with SMTP; 9 Dec 2003 12:19:01 -0000 Received: from wedge.madpilot.net (localhost.madpilot.net [127.0.0.1]) by wedge.madpilot.net (8.12.10/8.12.10) with ESMTP id hB9CJ0TC004713 for ; Tue, 9 Dec 2003 13:19:01 +0100 (CET) (envelope-from mad@wedge.madpilot.net) Received: (from mad@localhost) by wedge.madpilot.net (8.12.10/8.12.10/Submit) id hB9CJ0Yv004712 for freebsd-current@freebsd.org; Tue, 9 Dec 2003 13:19:00 +0100 (CET) (envelope-from mad) Date: Tue, 9 Dec 2003 13:19:00 +0100 From: Guido Falsi To: freebsd-current@freebsd.org Message-ID: <20031209121900.GA4691@wedge.madpilot.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-RC Subject: added Moxa multiserial board PCI id to puc(4) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 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: Tue, 09 Dec 2003 12:19:10 -0000 Hello! I bought a CP-104UL Multiserial board from Moxa(it's the universal PCI versione of the 104H, needed for a DELL server) and added the device ids to pucdata.c. it seems yto work from here. Here is the diff: mad@wedge:~ [0]> diff -ruN pucdata.c.orig pucdata.c --- pucdata.c.orig Tue Dec 9 13:15:34 2003 +++ pucdata.c Tue Dec 9 13:14:28 2003 @@ -1015,6 +1015,19 @@ }, }, + /* Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232 */ + { "Moxa Technologies, Smartio CP-104UL/PCI", + NULL, + { 0x1393, 0x1041, 0, 0 }, + { 0xffff, 0xffff, 0, 0, }, + { + { PUC_PORT_TYPE_COM, 0x18, 0x00, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x18, 0x08, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x18, 0x10, COM_FREQ * 8 }, + { PUC_PORT_TYPE_COM, 0x18, 0x18, COM_FREQ * 8 }, + }, + }, + /* Moxa Technologies Co., Ltd. PCI I/O Card 4S RS232/422/485 */ { "Moxa Technologies, Industio CP-114", NULL, Thank you again for the good work. Hope someone will give this a chance to get in the repository :) -- Guido Falsi