From owner-cvs-src-old@FreeBSD.ORG Sat Mar 7 19:49:57 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D47B106572E for ; Sat, 7 Mar 2009 19:49:56 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id EE19C8FC1D for ; Sat, 7 Mar 2009 19:49:55 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n27Jntuk076260 for ; Sat, 7 Mar 2009 19:49:55 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n27Jntww076259 for cvs-src-old@freebsd.org; Sat, 7 Mar 2009 19:49:55 GMT (envelope-from thompsa@repoman.freebsd.org) Message-Id: <200903071949.n27Jntww076259@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to thompsa@repoman.freebsd.org using -f From: Andrew Thompson Date: Sat, 7 Mar 2009 19:49:47 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb/controller ehci.c ehci.h ehci_ixp4xx.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Mar 2009 19:49:57 -0000 thompsa 2009-03-07 19:49:47 UTC FreeBSD src repository Modified files: sys/dev/usb/controller ehci.c ehci.h ehci_ixp4xx.c Log: SVN rev 189496 on 2009-03-07 19:49:47Z by thompsa (re)merge r186415,186416 from the old usb stack; o add Transaction Translator support (still missing ISOC xfers) o add EHCI_SCFLG_BIGEMMIO flag to force big-endian byte-select to be set in USBMODE o split reset work into new public routine ehci_reset so bus shim drivers can force big-endian byte-select before ehci_init o enable TT and big-endian MMIO o force a reset before ehci_init to get byte-select setup Also go back to using USB_EHCI_BIG_ENDIAN_DESC at compile time to enable the byteswapping and reduce diffs to the original commits. This fixes the new USB stack on the Cambria board. Revision Changes Path 1.5 +195 -200 src/sys/dev/usb/controller/ehci.c 1.2 +59 -0 src/sys/dev/usb/controller/ehci.h 1.2 +1 -0 src/sys/dev/usb/controller/ehci_ixp4xx.c