Deleted Added
full compact
ehci_pci.c (197554) ehci_pci.c (198151)
1/*-
2 * Copyright (c) 1998 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Lennart Augustsson (augustss@carlstedt.se) at
7 * Carlstedt Research & Technology.
8 *

--- 22 unchanged lines hidden (view full) ---

31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1998 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Lennart Augustsson (augustss@carlstedt.se) at
7 * Carlstedt Research & Technology.
8 *

--- 22 unchanged lines hidden (view full) ---

31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <sys/cdefs.h>
39__FBSDID("$FreeBSD: head/sys/dev/usb/controller/ehci_pci.c 197554 2009-09-28 07:06:47Z thompsa $");
39__FBSDID("$FreeBSD: head/sys/dev/usb/controller/ehci_pci.c 198151 2009-10-15 20:07:08Z thompsa $");
40
41/*
42 * USB Enhanced Host Controller Driver, a.k.a. USB 2.0 controller.
43 *
44 * The EHCI 1.0 spec can be found at
45 * http://developer.intel.com/technology/usb/download/ehci-r10.pdf
46 * and the USB 2.0 spec at
47 * http://www.usb.org/developers/docs/usb_20.zip

--- 31 unchanged lines hidden (view full) ---

79#include <dev/usb/usb_busdma.h>
80#include <dev/usb/usb_process.h>
81#include <dev/usb/usb_util.h>
82
83#include <dev/usb/usb_controller.h>
84#include <dev/usb/usb_bus.h>
85#include <dev/usb/usb_pci.h>
86#include <dev/usb/controller/ehci.h>
40
41/*
42 * USB Enhanced Host Controller Driver, a.k.a. USB 2.0 controller.
43 *
44 * The EHCI 1.0 spec can be found at
45 * http://developer.intel.com/technology/usb/download/ehci-r10.pdf
46 * and the USB 2.0 spec at
47 * http://www.usb.org/developers/docs/usb_20.zip

--- 31 unchanged lines hidden (view full) ---

79#include <dev/usb/usb_busdma.h>
80#include <dev/usb/usb_process.h>
81#include <dev/usb/usb_util.h>
82
83#include <dev/usb/usb_controller.h>
84#include <dev/usb/usb_bus.h>
85#include <dev/usb/usb_pci.h>
86#include <dev/usb/controller/ehci.h>
87#include <dev/usb/controller/ehcireg.h>
87
88#define PCI_EHCI_VENDORID_ACERLABS 0x10b9
89#define PCI_EHCI_VENDORID_AMD 0x1022
90#define PCI_EHCI_VENDORID_APPLE 0x106b
91#define PCI_EHCI_VENDORID_ATI 0x1002
92#define PCI_EHCI_VENDORID_CMDTECH 0x1095
93#define PCI_EHCI_VENDORID_INTEL 0x8086
94#define PCI_EHCI_VENDORID_NEC 0x1033

--- 481 unchanged lines hidden ---
88
89#define PCI_EHCI_VENDORID_ACERLABS 0x10b9
90#define PCI_EHCI_VENDORID_AMD 0x1022
91#define PCI_EHCI_VENDORID_APPLE 0x106b
92#define PCI_EHCI_VENDORID_ATI 0x1002
93#define PCI_EHCI_VENDORID_CMDTECH 0x1095
94#define PCI_EHCI_VENDORID_INTEL 0x8086
95#define PCI_EHCI_VENDORID_NEC 0x1033

--- 481 unchanged lines hidden ---