1198151Sthompsa/* $FreeBSD: releng/10.2/sys/dev/usb/controller/uhcireg.h 204632 2010-03-03 10:18:03Z joel $ */
2198151Sthompsa/*-
3198151Sthompsa * Copyright (c) 1998 The NetBSD Foundation, Inc.
4198151Sthompsa * All rights reserved.
5198151Sthompsa *
6198151Sthompsa * This code is derived from software contributed to The NetBSD Foundation
7198151Sthompsa * by Lennart Augustsson (lennart@augustsson.net) at
8198151Sthompsa * Carlstedt Research & Technology.
9198151Sthompsa *
10198151Sthompsa * Redistribution and use in source and binary forms, with or without
11198151Sthompsa * modification, are permitted provided that the following conditions
12198151Sthompsa * are met:
13198151Sthompsa * 1. Redistributions of source code must retain the above copyright
14198151Sthompsa *    notice, this list of conditions and the following disclaimer.
15198151Sthompsa * 2. Redistributions in binary form must reproduce the above copyright
16198151Sthompsa *    notice, this list of conditions and the following disclaimer in the
17198151Sthompsa *    documentation and/or other materials provided with the distribution.
18198151Sthompsa *
19198151Sthompsa * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20198151Sthompsa * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21198151Sthompsa * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22198151Sthompsa * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23198151Sthompsa * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24198151Sthompsa * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25198151Sthompsa * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26198151Sthompsa * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27198151Sthompsa * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28198151Sthompsa * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29198151Sthompsa * POSSIBILITY OF SUCH DAMAGE.
30198151Sthompsa */
31198151Sthompsa
32198151Sthompsa#ifndef _UHCIREG_H_
33198151Sthompsa#define	_UHCIREG_H_
34198151Sthompsa
35199814Sthompsa#define	PCI_UHCI_BASE_REG	0x20
36199814Sthompsa
37198151Sthompsa/* PCI config registers  */
38198151Sthompsa#define	PCI_USBREV		0x60	/* USB protocol revision */
39198151Sthompsa#define	PCI_USB_REV_MASK		0xff
40198151Sthompsa#define	PCI_USB_REV_PRE_1_0	0x00
41198151Sthompsa#define	PCI_USB_REV_1_0		0x10
42198151Sthompsa#define	PCI_USB_REV_1_1		0x11
43198151Sthompsa#define	PCI_LEGSUP		0xc0	/* Legacy Support register */
44198151Sthompsa#define	PCI_LEGSUP_USBPIRQDEN	0x2000	/* USB PIRQ D Enable */
45198151Sthompsa#define	PCI_CBIO		0x20	/* configuration base IO */
46198151Sthompsa#define	PCI_INTERFACE_UHCI	0x00
47198151Sthompsa
48198151Sthompsa/* UHCI registers */
49198151Sthompsa#define	UHCI_CMD		0x00
50198151Sthompsa#define	UHCI_CMD_RS		0x0001
51198151Sthompsa#define	UHCI_CMD_HCRESET	0x0002
52198151Sthompsa#define	UHCI_CMD_GRESET		0x0004
53198151Sthompsa#define	UHCI_CMD_EGSM		0x0008
54198151Sthompsa#define	UHCI_CMD_FGR		0x0010
55198151Sthompsa#define	UHCI_CMD_SWDBG		0x0020
56198151Sthompsa#define	UHCI_CMD_CF		0x0040
57198151Sthompsa#define	UHCI_CMD_MAXP		0x0080
58198151Sthompsa#define	UHCI_STS		0x02
59198151Sthompsa#define	UHCI_STS_USBINT		0x0001
60198151Sthompsa#define	UHCI_STS_USBEI		0x0002
61198151Sthompsa#define	UHCI_STS_RD		0x0004
62198151Sthompsa#define	UHCI_STS_HSE		0x0008
63198151Sthompsa#define	UHCI_STS_HCPE		0x0010
64198151Sthompsa#define	UHCI_STS_HCH		0x0020
65198151Sthompsa#define	UHCI_STS_ALLINTRS	0x003f
66198151Sthompsa#define	UHCI_INTR		0x04
67198151Sthompsa#define	UHCI_INTR_TOCRCIE	0x0001
68198151Sthompsa#define	UHCI_INTR_RIE		0x0002
69198151Sthompsa#define	UHCI_INTR_IOCE		0x0004
70198151Sthompsa#define	UHCI_INTR_SPIE		0x0008
71198151Sthompsa#define	UHCI_FRNUM		0x06
72198151Sthompsa#define	UHCI_FRNUM_MASK		0x03ff
73198151Sthompsa#define	UHCI_FLBASEADDR		0x08
74198151Sthompsa#define	UHCI_SOF		0x0c
75198151Sthompsa#define	UHCI_SOF_MASK		0x7f
76198151Sthompsa#define	UHCI_PORTSC1      	0x010
77198151Sthompsa#define	UHCI_PORTSC2      	0x012
78198151Sthompsa#define	UHCI_PORTSC_CCS		0x0001
79198151Sthompsa#define	UHCI_PORTSC_CSC		0x0002
80198151Sthompsa#define	UHCI_PORTSC_PE		0x0004
81198151Sthompsa#define	UHCI_PORTSC_POEDC	0x0008
82198151Sthompsa#define	UHCI_PORTSC_LS		0x0030
83198151Sthompsa#define	UHCI_PORTSC_LS_SHIFT	4
84198151Sthompsa#define	UHCI_PORTSC_RD		0x0040
85198151Sthompsa#define	UHCI_PORTSC_LSDA	0x0100
86198151Sthompsa#define	UHCI_PORTSC_PR		0x0200
87198151Sthompsa#define	UHCI_PORTSC_OCI		0x0400
88198151Sthompsa#define	UHCI_PORTSC_OCIC	0x0800
89198151Sthompsa#define	UHCI_PORTSC_SUSP	0x1000
90198151Sthompsa
91198151Sthompsa#define	URWMASK(x)		((x) & (UHCI_PORTSC_SUSP |		\
92198151Sthompsa				UHCI_PORTSC_PR | UHCI_PORTSC_RD |	\
93198151Sthompsa				UHCI_PORTSC_PE))
94198151Sthompsa
95198151Sthompsa#endif	/* _UHCIREG_H_ */
96