From owner-freebsd-bugs@FreeBSD.ORG Sat Aug 21 20:21:49 2004 Return-Path: Delivered-To: freebsd-bugs@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5669316A4CE; Sat, 21 Aug 2004 20:21:49 +0000 (GMT) Received: from sasl.smtp.pobox.com (puzzle.sasl.smtp.pobox.com [207.8.226.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4FCA43D3F; Sat, 21 Aug 2004 20:21:48 +0000 (GMT) (envelope-from b.candler@pobox.com) Received: from localhost.localdomain (localhost [127.0.0.1]) by puzzle.pobox.com (Postfix) with ESMTP id 9DA04139035; Sat, 21 Aug 2004 16:20:01 -0400 (EDT) Received: from billdog.local.linnet.org (dsl-212-74-113-65.access.uk.tiscali.com [212.74.113.65]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by puzzle.pobox.com (Postfix) with ESMTP id EB982138FC2; Sat, 21 Aug 2004 16:20:00 -0400 (EDT) Received: from brian by billdog.local.linnet.org with local (Exim 4.31) id 1BycN0-0000Jw-FJ; Sat, 21 Aug 2004 21:21:46 +0100 Date: Sat, 21 Aug 2004 21:21:46 +0100 From: Brian Candler To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-bugs@FreeBSD.org Message-ID: <20040821202146.GA1077@uk.tiscali.com> References: <200408160840.i7G8eXVp043855@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408160840.i7G8eXVp043855@freefall.freebsd.org> User-Agent: Mutt/1.4.1i cc: sanpei@freebsd.org cc: rwatson@freebsd.org Subject: Re: kern/70523: umct sending/receiving wrong characters X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Aug 2004 20:21:49 -0000 This device worked correctly under Linux, and I have now made a patch [attached below] so that it works under FreeBSD too. Looking at linux-2.4.27/drivers/usb/serial/mct_u232.[ch], you'll see that there are two different ways of calculating the baud rate divider, depending on which type of device you have. FreeBSD only implemented one of these, and unfortunately I had the other sort of device. I wasn't sure if there was an easy way to access the 'uaa' structure in the middle of umct_calc_baud, so instead I added an extra structure member to 'sc' to flag which divider constants to use. If there's a way of doing this without having to store this extra state then please do so. I notice a new entry USB_PRODUCT_BELKIN_F5U409 has recently been added to umct.c (but is not in the Linux driver); someone needs to check which way it works. Aside: Something else the Linux driver does is to send commands 11 and 12 (constants MCT_U232_SET_UNKNOWN1_REQUEST and MCT_U232_SET_UNKNOWN2_REQUEST) after setting the baud rate. The comment says: /* Mimic the MCT-supplied Windows driver (version 1.21P.0104), which always sends two extra USB 'device request' messages after the 'baud rate change' message. The actual functionality of the request codes in these messages is not fully understood but these particular codes are never seen in any operation besides a baud rate change. Both of these messages send a single byte of data whose value is always zero. The second of these two extra messages is required in order for data to be properly written to an RS-232 device which does not assert the 'CTS' signal. */ I tried making the FreeBSD driver do this too, but on my hardware it just gave timeouts: /kernel: ucom0: ubsa_request: TIMEOUT So I guess it's not needed for the device I have, and I've taken it out. (That debug message should have said "umct_request", and the patch below also fixes that) Regards, Brian Candler. --- sys/dev/usb/umct.c.orig Tue Apr 13 04:39:16 2004 +++ sys/dev/usb/umct.c Sat Aug 21 21:17:07 2004 @@ -81,6 +81,7 @@ uint8_t sc_msr; uint8_t sc_lcr; uint8_t sc_mcr; + uint8_t sc_divider_type; #if __FreeBSD_version >= 500000 void *sc_swicookie; #endif @@ -193,6 +194,10 @@ sc->sc_intr_number = -1; sc->sc_intr_pipe = NULL; + if (uaa->product == USB_PRODUCT_MCT_SITECOM_USB232 || + uaa->product == USB_PRODUCT_BELKIN_F5U109) + sc->sc_divider_type = 1; + err = usbd_set_config_index(dev, UMCT_CONFIG_INDEX, 1); if (err) { printf("%s: failed to set configuration: %s\n", @@ -328,7 +333,7 @@ err = usbd_do_request(sc->sc_ucom.sc_udev, &req, oval); if (err) - printf("%s: ubsa_request: %s\n", + printf("%s: umct_request: %s\n", USBDEVNAME(sc->sc_ucom.sc_dev), usbd_errstr(err)); return (err); } @@ -418,22 +423,34 @@ } Static int -umct_calc_baud(u_int baud) +umct_calc_baud(struct umct_softc *sc, u_int baud) { - switch(baud) { - case B300: return (0x1); - case B600: return (0x2); - case B1200: return (0x3); - case B2400: return (0x4); - case B4800: return (0x6); - case B9600: return (0x8); - case B19200: return (0x9); - case B38400: return (0xa); - case B57600: return (0xb); - case 115200: return (0xc); - case B0: - default: - break; + if (sc->sc_divider_type == 1) { + switch(baud) { + case B300: return (0x1); + case B600: return (0x2); + case B1200: return (0x3); + case B2400: return (0x4); + case B4800: return (0x6); + case B9600: return (0x8); + case B19200: return (0x9); + case B38400: return (0xa); + case B57600: return (0xb); + case 115200: return (0xc); + } + } else { + switch(baud) { + case B300: return 115200/300; + case B600: return 115200/600; + case B1200: return 115200/1200; + case B2400: return 115200/2400; + case B4800: return 115200/4800; + case B9600: return 115200/9600; + case B19200: return 115200/19200; + case B38400: return 115200/38400; + case B57600: return 115200/57600; + case 115200: return 115200/115200; + } } return (0x0); @@ -446,7 +463,8 @@ uint32_t value; sc = addr; - value = umct_calc_baud(ti->c_ospeed); + value = umct_calc_baud(sc, ti->c_ospeed); + if (value == 0) return (EIO); umct_request(sc, UMCT_SET_BAUD, UMCT_SET_BAUD_SIZE, value); value = sc->sc_lcr & 0x40;