1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */
2*4882a593Smuzhiyun #ifndef __LINUX_UHCI_HCD_H
3*4882a593Smuzhiyun #define __LINUX_UHCI_HCD_H
4*4882a593Smuzhiyun
5*4882a593Smuzhiyun #include <linux/list.h>
6*4882a593Smuzhiyun #include <linux/usb.h>
7*4882a593Smuzhiyun #include <linux/clk.h>
8*4882a593Smuzhiyun
9*4882a593Smuzhiyun #define usb_packetid(pipe) (usb_pipein(pipe) ? USB_PID_IN : USB_PID_OUT)
10*4882a593Smuzhiyun #define PIPE_DEVEP_MASK 0x0007ff00
11*4882a593Smuzhiyun
12*4882a593Smuzhiyun
13*4882a593Smuzhiyun /*
14*4882a593Smuzhiyun * Universal Host Controller Interface data structures and defines
15*4882a593Smuzhiyun */
16*4882a593Smuzhiyun
17*4882a593Smuzhiyun /* Command register */
18*4882a593Smuzhiyun #define USBCMD 0
19*4882a593Smuzhiyun #define USBCMD_RS 0x0001 /* Run/Stop */
20*4882a593Smuzhiyun #define USBCMD_HCRESET 0x0002 /* Host reset */
21*4882a593Smuzhiyun #define USBCMD_GRESET 0x0004 /* Global reset */
22*4882a593Smuzhiyun #define USBCMD_EGSM 0x0008 /* Global Suspend Mode */
23*4882a593Smuzhiyun #define USBCMD_FGR 0x0010 /* Force Global Resume */
24*4882a593Smuzhiyun #define USBCMD_SWDBG 0x0020 /* SW Debug mode */
25*4882a593Smuzhiyun #define USBCMD_CF 0x0040 /* Config Flag (sw only) */
26*4882a593Smuzhiyun #define USBCMD_MAXP 0x0080 /* Max Packet (0 = 32, 1 = 64) */
27*4882a593Smuzhiyun
28*4882a593Smuzhiyun /* Status register */
29*4882a593Smuzhiyun #define USBSTS 2
30*4882a593Smuzhiyun #define USBSTS_USBINT 0x0001 /* Interrupt due to IOC */
31*4882a593Smuzhiyun #define USBSTS_ERROR 0x0002 /* Interrupt due to error */
32*4882a593Smuzhiyun #define USBSTS_RD 0x0004 /* Resume Detect */
33*4882a593Smuzhiyun #define USBSTS_HSE 0x0008 /* Host System Error: PCI problems */
34*4882a593Smuzhiyun #define USBSTS_HCPE 0x0010 /* Host Controller Process Error:
35*4882a593Smuzhiyun * the schedule is buggy */
36*4882a593Smuzhiyun #define USBSTS_HCH 0x0020 /* HC Halted */
37*4882a593Smuzhiyun
38*4882a593Smuzhiyun /* Interrupt enable register */
39*4882a593Smuzhiyun #define USBINTR 4
40*4882a593Smuzhiyun #define USBINTR_TIMEOUT 0x0001 /* Timeout/CRC error enable */
41*4882a593Smuzhiyun #define USBINTR_RESUME 0x0002 /* Resume interrupt enable */
42*4882a593Smuzhiyun #define USBINTR_IOC 0x0004 /* Interrupt On Complete enable */
43*4882a593Smuzhiyun #define USBINTR_SP 0x0008 /* Short packet interrupt enable */
44*4882a593Smuzhiyun
45*4882a593Smuzhiyun #define USBFRNUM 6
46*4882a593Smuzhiyun #define USBFLBASEADD 8
47*4882a593Smuzhiyun #define USBSOF 12
48*4882a593Smuzhiyun #define USBSOF_DEFAULT 64 /* Frame length is exactly 1 ms */
49*4882a593Smuzhiyun
50*4882a593Smuzhiyun /* USB port status and control registers */
51*4882a593Smuzhiyun #define USBPORTSC1 16
52*4882a593Smuzhiyun #define USBPORTSC2 18
53*4882a593Smuzhiyun #define USBPORTSC3 20
54*4882a593Smuzhiyun #define USBPORTSC4 22
55*4882a593Smuzhiyun #define USBPORTSC_CCS 0x0001 /* Current Connect Status
56*4882a593Smuzhiyun * ("device present") */
57*4882a593Smuzhiyun #define USBPORTSC_CSC 0x0002 /* Connect Status Change */
58*4882a593Smuzhiyun #define USBPORTSC_PE 0x0004 /* Port Enable */
59*4882a593Smuzhiyun #define USBPORTSC_PEC 0x0008 /* Port Enable Change */
60*4882a593Smuzhiyun #define USBPORTSC_DPLUS 0x0010 /* D+ high (line status) */
61*4882a593Smuzhiyun #define USBPORTSC_DMINUS 0x0020 /* D- high (line status) */
62*4882a593Smuzhiyun #define USBPORTSC_RD 0x0040 /* Resume Detect */
63*4882a593Smuzhiyun #define USBPORTSC_RES1 0x0080 /* reserved, always 1 */
64*4882a593Smuzhiyun #define USBPORTSC_LSDA 0x0100 /* Low Speed Device Attached */
65*4882a593Smuzhiyun #define USBPORTSC_PR 0x0200 /* Port Reset */
66*4882a593Smuzhiyun /* OC and OCC from Intel 430TX and later (not UHCI 1.1d spec) */
67*4882a593Smuzhiyun #define USBPORTSC_OC 0x0400 /* Over Current condition */
68*4882a593Smuzhiyun #define USBPORTSC_OCC 0x0800 /* Over Current Change R/WC */
69*4882a593Smuzhiyun #define USBPORTSC_SUSP 0x1000 /* Suspend */
70*4882a593Smuzhiyun #define USBPORTSC_RES2 0x2000 /* reserved, write zeroes */
71*4882a593Smuzhiyun #define USBPORTSC_RES3 0x4000 /* reserved, write zeroes */
72*4882a593Smuzhiyun #define USBPORTSC_RES4 0x8000 /* reserved, write zeroes */
73*4882a593Smuzhiyun
74*4882a593Smuzhiyun /* PCI legacy support register */
75*4882a593Smuzhiyun #define USBLEGSUP 0xc0
76*4882a593Smuzhiyun #define USBLEGSUP_DEFAULT 0x2000 /* only PIRQ enable set */
77*4882a593Smuzhiyun #define USBLEGSUP_RWC 0x8f00 /* the R/WC bits */
78*4882a593Smuzhiyun #define USBLEGSUP_RO 0x5040 /* R/O and reserved bits */
79*4882a593Smuzhiyun
80*4882a593Smuzhiyun /* PCI Intel-specific resume-enable register */
81*4882a593Smuzhiyun #define USBRES_INTEL 0xc4
82*4882a593Smuzhiyun #define USBPORT1EN 0x01
83*4882a593Smuzhiyun #define USBPORT2EN 0x02
84*4882a593Smuzhiyun
85*4882a593Smuzhiyun #define UHCI_PTR_BITS(uhci) cpu_to_hc32((uhci), 0x000F)
86*4882a593Smuzhiyun #define UHCI_PTR_TERM(uhci) cpu_to_hc32((uhci), 0x0001)
87*4882a593Smuzhiyun #define UHCI_PTR_QH(uhci) cpu_to_hc32((uhci), 0x0002)
88*4882a593Smuzhiyun #define UHCI_PTR_DEPTH(uhci) cpu_to_hc32((uhci), 0x0004)
89*4882a593Smuzhiyun #define UHCI_PTR_BREADTH(uhci) cpu_to_hc32((uhci), 0x0000)
90*4882a593Smuzhiyun
91*4882a593Smuzhiyun #define UHCI_NUMFRAMES 1024 /* in the frame list [array] */
92*4882a593Smuzhiyun #define UHCI_MAX_SOF_NUMBER 2047 /* in an SOF packet */
93*4882a593Smuzhiyun #define CAN_SCHEDULE_FRAMES 1000 /* how far in the future frames
94*4882a593Smuzhiyun * can be scheduled */
95*4882a593Smuzhiyun #define MAX_PHASE 32 /* Periodic scheduling length */
96*4882a593Smuzhiyun
97*4882a593Smuzhiyun /* When no queues need Full-Speed Bandwidth Reclamation,
98*4882a593Smuzhiyun * delay this long before turning FSBR off */
99*4882a593Smuzhiyun #define FSBR_OFF_DELAY msecs_to_jiffies(10)
100*4882a593Smuzhiyun
101*4882a593Smuzhiyun /* If a queue hasn't advanced after this much time, assume it is stuck */
102*4882a593Smuzhiyun #define QH_WAIT_TIMEOUT msecs_to_jiffies(200)
103*4882a593Smuzhiyun
104*4882a593Smuzhiyun
105*4882a593Smuzhiyun /*
106*4882a593Smuzhiyun * __hc32 and __hc16 are "Host Controller" types, they may be equivalent to
107*4882a593Smuzhiyun * __leXX (normally) or __beXX (given UHCI_BIG_ENDIAN_DESC), depending on
108*4882a593Smuzhiyun * the host controller implementation.
109*4882a593Smuzhiyun *
110*4882a593Smuzhiyun * To facilitate the strongest possible byte-order checking from "sparse"
111*4882a593Smuzhiyun * and so on, we use __leXX unless that's not practical.
112*4882a593Smuzhiyun */
113*4882a593Smuzhiyun #ifdef CONFIG_USB_UHCI_BIG_ENDIAN_DESC
114*4882a593Smuzhiyun typedef __u32 __bitwise __hc32;
115*4882a593Smuzhiyun typedef __u16 __bitwise __hc16;
116*4882a593Smuzhiyun #else
117*4882a593Smuzhiyun #define __hc32 __le32
118*4882a593Smuzhiyun #define __hc16 __le16
119*4882a593Smuzhiyun #endif
120*4882a593Smuzhiyun
121*4882a593Smuzhiyun /*
122*4882a593Smuzhiyun * Queue Headers
123*4882a593Smuzhiyun */
124*4882a593Smuzhiyun
125*4882a593Smuzhiyun /*
126*4882a593Smuzhiyun * One role of a QH is to hold a queue of TDs for some endpoint. One QH goes
127*4882a593Smuzhiyun * with each endpoint, and qh->element (updated by the HC) is either:
128*4882a593Smuzhiyun * - the next unprocessed TD in the endpoint's queue, or
129*4882a593Smuzhiyun * - UHCI_PTR_TERM (when there's no more traffic for this endpoint).
130*4882a593Smuzhiyun *
131*4882a593Smuzhiyun * The other role of a QH is to serve as a "skeleton" framelist entry, so we
132*4882a593Smuzhiyun * can easily splice a QH for some endpoint into the schedule at the right
133*4882a593Smuzhiyun * place. Then qh->element is UHCI_PTR_TERM.
134*4882a593Smuzhiyun *
135*4882a593Smuzhiyun * In the schedule, qh->link maintains a list of QHs seen by the HC:
136*4882a593Smuzhiyun * skel1 --> ep1-qh --> ep2-qh --> ... --> skel2 --> ...
137*4882a593Smuzhiyun *
138*4882a593Smuzhiyun * qh->node is the software equivalent of qh->link. The differences
139*4882a593Smuzhiyun * are that the software list is doubly-linked and QHs in the UNLINKING
140*4882a593Smuzhiyun * state are on the software list but not the hardware schedule.
141*4882a593Smuzhiyun *
142*4882a593Smuzhiyun * For bookkeeping purposes we maintain QHs even for Isochronous endpoints,
143*4882a593Smuzhiyun * but they never get added to the hardware schedule.
144*4882a593Smuzhiyun */
145*4882a593Smuzhiyun #define QH_STATE_IDLE 1 /* QH is not being used */
146*4882a593Smuzhiyun #define QH_STATE_UNLINKING 2 /* QH has been removed from the
147*4882a593Smuzhiyun * schedule but the hardware may
148*4882a593Smuzhiyun * still be using it */
149*4882a593Smuzhiyun #define QH_STATE_ACTIVE 3 /* QH is on the schedule */
150*4882a593Smuzhiyun
151*4882a593Smuzhiyun struct uhci_qh {
152*4882a593Smuzhiyun /* Hardware fields */
153*4882a593Smuzhiyun __hc32 link; /* Next QH in the schedule */
154*4882a593Smuzhiyun __hc32 element; /* Queue element (TD) pointer */
155*4882a593Smuzhiyun
156*4882a593Smuzhiyun /* Software fields */
157*4882a593Smuzhiyun dma_addr_t dma_handle;
158*4882a593Smuzhiyun
159*4882a593Smuzhiyun struct list_head node; /* Node in the list of QHs */
160*4882a593Smuzhiyun struct usb_host_endpoint *hep; /* Endpoint information */
161*4882a593Smuzhiyun struct usb_device *udev;
162*4882a593Smuzhiyun struct list_head queue; /* Queue of urbps for this QH */
163*4882a593Smuzhiyun struct uhci_td *dummy_td; /* Dummy TD to end the queue */
164*4882a593Smuzhiyun struct uhci_td *post_td; /* Last TD completed */
165*4882a593Smuzhiyun
166*4882a593Smuzhiyun struct usb_iso_packet_descriptor *iso_packet_desc;
167*4882a593Smuzhiyun /* Next urb->iso_frame_desc entry */
168*4882a593Smuzhiyun unsigned long advance_jiffies; /* Time of last queue advance */
169*4882a593Smuzhiyun unsigned int unlink_frame; /* When the QH was unlinked */
170*4882a593Smuzhiyun unsigned int period; /* For Interrupt and Isochronous QHs */
171*4882a593Smuzhiyun short phase; /* Between 0 and period-1 */
172*4882a593Smuzhiyun short load; /* Periodic time requirement, in us */
173*4882a593Smuzhiyun unsigned int iso_frame; /* Frame # for iso_packet_desc */
174*4882a593Smuzhiyun
175*4882a593Smuzhiyun int state; /* QH_STATE_xxx; see above */
176*4882a593Smuzhiyun int type; /* Queue type (control, bulk, etc) */
177*4882a593Smuzhiyun int skel; /* Skeleton queue number */
178*4882a593Smuzhiyun
179*4882a593Smuzhiyun unsigned int initial_toggle:1; /* Endpoint's current toggle value */
180*4882a593Smuzhiyun unsigned int needs_fixup:1; /* Must fix the TD toggle values */
181*4882a593Smuzhiyun unsigned int is_stopped:1; /* Queue was stopped by error/unlink */
182*4882a593Smuzhiyun unsigned int wait_expired:1; /* QH_WAIT_TIMEOUT has expired */
183*4882a593Smuzhiyun unsigned int bandwidth_reserved:1; /* Periodic bandwidth has
184*4882a593Smuzhiyun * been allocated */
185*4882a593Smuzhiyun } __attribute__((aligned(16)));
186*4882a593Smuzhiyun
187*4882a593Smuzhiyun /*
188*4882a593Smuzhiyun * We need a special accessor for the element pointer because it is
189*4882a593Smuzhiyun * subject to asynchronous updates by the controller.
190*4882a593Smuzhiyun */
191*4882a593Smuzhiyun #define qh_element(qh) READ_ONCE((qh)->element)
192*4882a593Smuzhiyun
193*4882a593Smuzhiyun #define LINK_TO_QH(uhci, qh) (UHCI_PTR_QH((uhci)) | \
194*4882a593Smuzhiyun cpu_to_hc32((uhci), (qh)->dma_handle))
195*4882a593Smuzhiyun
196*4882a593Smuzhiyun
197*4882a593Smuzhiyun /*
198*4882a593Smuzhiyun * Transfer Descriptors
199*4882a593Smuzhiyun */
200*4882a593Smuzhiyun
201*4882a593Smuzhiyun /*
202*4882a593Smuzhiyun * for TD <status>:
203*4882a593Smuzhiyun */
204*4882a593Smuzhiyun #define TD_CTRL_SPD (1 << 29) /* Short Packet Detect */
205*4882a593Smuzhiyun #define TD_CTRL_C_ERR_MASK (3 << 27) /* Error Counter bits */
206*4882a593Smuzhiyun #define TD_CTRL_C_ERR_SHIFT 27
207*4882a593Smuzhiyun #define TD_CTRL_LS (1 << 26) /* Low Speed Device */
208*4882a593Smuzhiyun #define TD_CTRL_IOS (1 << 25) /* Isochronous Select */
209*4882a593Smuzhiyun #define TD_CTRL_IOC (1 << 24) /* Interrupt on Complete */
210*4882a593Smuzhiyun #define TD_CTRL_ACTIVE (1 << 23) /* TD Active */
211*4882a593Smuzhiyun #define TD_CTRL_STALLED (1 << 22) /* TD Stalled */
212*4882a593Smuzhiyun #define TD_CTRL_DBUFERR (1 << 21) /* Data Buffer Error */
213*4882a593Smuzhiyun #define TD_CTRL_BABBLE (1 << 20) /* Babble Detected */
214*4882a593Smuzhiyun #define TD_CTRL_NAK (1 << 19) /* NAK Received */
215*4882a593Smuzhiyun #define TD_CTRL_CRCTIMEO (1 << 18) /* CRC/Time Out Error */
216*4882a593Smuzhiyun #define TD_CTRL_BITSTUFF (1 << 17) /* Bit Stuff Error */
217*4882a593Smuzhiyun #define TD_CTRL_ACTLEN_MASK 0x7FF /* actual length, encoded as n - 1 */
218*4882a593Smuzhiyun
219*4882a593Smuzhiyun #define uhci_maxerr(err) ((err) << TD_CTRL_C_ERR_SHIFT)
220*4882a593Smuzhiyun #define uhci_status_bits(ctrl_sts) ((ctrl_sts) & 0xF60000)
221*4882a593Smuzhiyun #define uhci_actual_length(ctrl_sts) (((ctrl_sts) + 1) & \
222*4882a593Smuzhiyun TD_CTRL_ACTLEN_MASK) /* 1-based */
223*4882a593Smuzhiyun
224*4882a593Smuzhiyun /*
225*4882a593Smuzhiyun * for TD <info>: (a.k.a. Token)
226*4882a593Smuzhiyun */
227*4882a593Smuzhiyun #define td_token(uhci, td) hc32_to_cpu((uhci), (td)->token)
228*4882a593Smuzhiyun #define TD_TOKEN_DEVADDR_SHIFT 8
229*4882a593Smuzhiyun #define TD_TOKEN_TOGGLE_SHIFT 19
230*4882a593Smuzhiyun #define TD_TOKEN_TOGGLE (1 << 19)
231*4882a593Smuzhiyun #define TD_TOKEN_EXPLEN_SHIFT 21
232*4882a593Smuzhiyun #define TD_TOKEN_EXPLEN_MASK 0x7FF /* expected length, encoded as n-1 */
233*4882a593Smuzhiyun #define TD_TOKEN_PID_MASK 0xFF
234*4882a593Smuzhiyun
235*4882a593Smuzhiyun #define uhci_explen(len) ((((len) - 1) & TD_TOKEN_EXPLEN_MASK) << \
236*4882a593Smuzhiyun TD_TOKEN_EXPLEN_SHIFT)
237*4882a593Smuzhiyun
238*4882a593Smuzhiyun #define uhci_expected_length(token) ((((token) >> TD_TOKEN_EXPLEN_SHIFT) + \
239*4882a593Smuzhiyun 1) & TD_TOKEN_EXPLEN_MASK)
240*4882a593Smuzhiyun #define uhci_toggle(token) (((token) >> TD_TOKEN_TOGGLE_SHIFT) & 1)
241*4882a593Smuzhiyun #define uhci_endpoint(token) (((token) >> 15) & 0xf)
242*4882a593Smuzhiyun #define uhci_devaddr(token) (((token) >> TD_TOKEN_DEVADDR_SHIFT) & 0x7f)
243*4882a593Smuzhiyun #define uhci_devep(token) (((token) >> TD_TOKEN_DEVADDR_SHIFT) & 0x7ff)
244*4882a593Smuzhiyun #define uhci_packetid(token) ((token) & TD_TOKEN_PID_MASK)
245*4882a593Smuzhiyun #define uhci_packetout(token) (uhci_packetid(token) != USB_PID_IN)
246*4882a593Smuzhiyun #define uhci_packetin(token) (uhci_packetid(token) == USB_PID_IN)
247*4882a593Smuzhiyun
248*4882a593Smuzhiyun /*
249*4882a593Smuzhiyun * The documentation says "4 words for hardware, 4 words for software".
250*4882a593Smuzhiyun *
251*4882a593Smuzhiyun * That's silly, the hardware doesn't care. The hardware only cares that
252*4882a593Smuzhiyun * the hardware words are 16-byte aligned, and we can have any amount of
253*4882a593Smuzhiyun * sw space after the TD entry.
254*4882a593Smuzhiyun *
255*4882a593Smuzhiyun * td->link points to either another TD (not necessarily for the same urb or
256*4882a593Smuzhiyun * even the same endpoint), or nothing (PTR_TERM), or a QH.
257*4882a593Smuzhiyun */
258*4882a593Smuzhiyun struct uhci_td {
259*4882a593Smuzhiyun /* Hardware fields */
260*4882a593Smuzhiyun __hc32 link;
261*4882a593Smuzhiyun __hc32 status;
262*4882a593Smuzhiyun __hc32 token;
263*4882a593Smuzhiyun __hc32 buffer;
264*4882a593Smuzhiyun
265*4882a593Smuzhiyun /* Software fields */
266*4882a593Smuzhiyun dma_addr_t dma_handle;
267*4882a593Smuzhiyun
268*4882a593Smuzhiyun struct list_head list;
269*4882a593Smuzhiyun
270*4882a593Smuzhiyun int frame; /* for iso: what frame? */
271*4882a593Smuzhiyun struct list_head fl_list;
272*4882a593Smuzhiyun } __attribute__((aligned(16)));
273*4882a593Smuzhiyun
274*4882a593Smuzhiyun /*
275*4882a593Smuzhiyun * We need a special accessor for the control/status word because it is
276*4882a593Smuzhiyun * subject to asynchronous updates by the controller.
277*4882a593Smuzhiyun */
278*4882a593Smuzhiyun #define td_status(uhci, td) hc32_to_cpu((uhci), \
279*4882a593Smuzhiyun READ_ONCE((td)->status))
280*4882a593Smuzhiyun
281*4882a593Smuzhiyun #define LINK_TO_TD(uhci, td) (cpu_to_hc32((uhci), (td)->dma_handle))
282*4882a593Smuzhiyun
283*4882a593Smuzhiyun
284*4882a593Smuzhiyun /*
285*4882a593Smuzhiyun * Skeleton Queue Headers
286*4882a593Smuzhiyun */
287*4882a593Smuzhiyun
288*4882a593Smuzhiyun /*
289*4882a593Smuzhiyun * The UHCI driver uses QHs with Interrupt, Control and Bulk URBs for
290*4882a593Smuzhiyun * automatic queuing. To make it easy to insert entries into the schedule,
291*4882a593Smuzhiyun * we have a skeleton of QHs for each predefined Interrupt latency.
292*4882a593Smuzhiyun * Asynchronous QHs (low-speed control, full-speed control, and bulk)
293*4882a593Smuzhiyun * go onto the period-1 interrupt list, since they all get accessed on
294*4882a593Smuzhiyun * every frame.
295*4882a593Smuzhiyun *
296*4882a593Smuzhiyun * When we want to add a new QH, we add it to the list starting from the
297*4882a593Smuzhiyun * appropriate skeleton QH. For instance, the schedule can look like this:
298*4882a593Smuzhiyun *
299*4882a593Smuzhiyun * skel int128 QH
300*4882a593Smuzhiyun * dev 1 interrupt QH
301*4882a593Smuzhiyun * dev 5 interrupt QH
302*4882a593Smuzhiyun * skel int64 QH
303*4882a593Smuzhiyun * skel int32 QH
304*4882a593Smuzhiyun * ...
305*4882a593Smuzhiyun * skel int1 + async QH
306*4882a593Smuzhiyun * dev 5 low-speed control QH
307*4882a593Smuzhiyun * dev 1 bulk QH
308*4882a593Smuzhiyun * dev 2 bulk QH
309*4882a593Smuzhiyun *
310*4882a593Smuzhiyun * There is a special terminating QH used to keep full-speed bandwidth
311*4882a593Smuzhiyun * reclamation active when no full-speed control or bulk QHs are linked
312*4882a593Smuzhiyun * into the schedule. It has an inactive TD (to work around a PIIX bug,
313*4882a593Smuzhiyun * see the Intel errata) and it points back to itself.
314*4882a593Smuzhiyun *
315*4882a593Smuzhiyun * There's a special skeleton QH for Isochronous QHs which never appears
316*4882a593Smuzhiyun * on the schedule. Isochronous TDs go on the schedule before the
317*4882a593Smuzhiyun * the skeleton QHs. The hardware accesses them directly rather than
318*4882a593Smuzhiyun * through their QH, which is used only for bookkeeping purposes.
319*4882a593Smuzhiyun * While the UHCI spec doesn't forbid the use of QHs for Isochronous,
320*4882a593Smuzhiyun * it doesn't use them either. And the spec says that queues never
321*4882a593Smuzhiyun * advance on an error completion status, which makes them totally
322*4882a593Smuzhiyun * unsuitable for Isochronous transfers.
323*4882a593Smuzhiyun *
324*4882a593Smuzhiyun * There's also a special skeleton QH used for QHs which are in the process
325*4882a593Smuzhiyun * of unlinking and so may still be in use by the hardware. It too never
326*4882a593Smuzhiyun * appears on the schedule.
327*4882a593Smuzhiyun */
328*4882a593Smuzhiyun
329*4882a593Smuzhiyun #define UHCI_NUM_SKELQH 11
330*4882a593Smuzhiyun #define SKEL_UNLINK 0
331*4882a593Smuzhiyun #define skel_unlink_qh skelqh[SKEL_UNLINK]
332*4882a593Smuzhiyun #define SKEL_ISO 1
333*4882a593Smuzhiyun #define skel_iso_qh skelqh[SKEL_ISO]
334*4882a593Smuzhiyun /* int128, int64, ..., int1 = 2, 3, ..., 9 */
335*4882a593Smuzhiyun #define SKEL_INDEX(exponent) (9 - exponent)
336*4882a593Smuzhiyun #define SKEL_ASYNC 9
337*4882a593Smuzhiyun #define skel_async_qh skelqh[SKEL_ASYNC]
338*4882a593Smuzhiyun #define SKEL_TERM 10
339*4882a593Smuzhiyun #define skel_term_qh skelqh[SKEL_TERM]
340*4882a593Smuzhiyun
341*4882a593Smuzhiyun /* The following entries refer to sublists of skel_async_qh */
342*4882a593Smuzhiyun #define SKEL_LS_CONTROL 20
343*4882a593Smuzhiyun #define SKEL_FS_CONTROL 21
344*4882a593Smuzhiyun #define SKEL_FSBR SKEL_FS_CONTROL
345*4882a593Smuzhiyun #define SKEL_BULK 22
346*4882a593Smuzhiyun
347*4882a593Smuzhiyun /*
348*4882a593Smuzhiyun * The UHCI controller and root hub
349*4882a593Smuzhiyun */
350*4882a593Smuzhiyun
351*4882a593Smuzhiyun /*
352*4882a593Smuzhiyun * States for the root hub:
353*4882a593Smuzhiyun *
354*4882a593Smuzhiyun * To prevent "bouncing" in the presence of electrical noise,
355*4882a593Smuzhiyun * when there are no devices attached we delay for 1 second in the
356*4882a593Smuzhiyun * RUNNING_NODEVS state before switching to the AUTO_STOPPED state.
357*4882a593Smuzhiyun *
358*4882a593Smuzhiyun * (Note that the AUTO_STOPPED state won't be necessary once the hub
359*4882a593Smuzhiyun * driver learns to autosuspend.)
360*4882a593Smuzhiyun */
361*4882a593Smuzhiyun enum uhci_rh_state {
362*4882a593Smuzhiyun /* In the following states the HC must be halted.
363*4882a593Smuzhiyun * These two must come first. */
364*4882a593Smuzhiyun UHCI_RH_RESET,
365*4882a593Smuzhiyun UHCI_RH_SUSPENDED,
366*4882a593Smuzhiyun
367*4882a593Smuzhiyun UHCI_RH_AUTO_STOPPED,
368*4882a593Smuzhiyun UHCI_RH_RESUMING,
369*4882a593Smuzhiyun
370*4882a593Smuzhiyun /* In this state the HC changes from running to halted,
371*4882a593Smuzhiyun * so it can legally appear either way. */
372*4882a593Smuzhiyun UHCI_RH_SUSPENDING,
373*4882a593Smuzhiyun
374*4882a593Smuzhiyun /* In the following states it's an error if the HC is halted.
375*4882a593Smuzhiyun * These two must come last. */
376*4882a593Smuzhiyun UHCI_RH_RUNNING, /* The normal state */
377*4882a593Smuzhiyun UHCI_RH_RUNNING_NODEVS, /* Running with no devices attached */
378*4882a593Smuzhiyun };
379*4882a593Smuzhiyun
380*4882a593Smuzhiyun /*
381*4882a593Smuzhiyun * The full UHCI controller information:
382*4882a593Smuzhiyun */
383*4882a593Smuzhiyun struct uhci_hcd {
384*4882a593Smuzhiyun
385*4882a593Smuzhiyun /* debugfs */
386*4882a593Smuzhiyun struct dentry *dentry;
387*4882a593Smuzhiyun
388*4882a593Smuzhiyun /* Grabbed from PCI */
389*4882a593Smuzhiyun unsigned long io_addr;
390*4882a593Smuzhiyun
391*4882a593Smuzhiyun /* Used when registers are memory mapped */
392*4882a593Smuzhiyun void __iomem *regs;
393*4882a593Smuzhiyun
394*4882a593Smuzhiyun struct dma_pool *qh_pool;
395*4882a593Smuzhiyun struct dma_pool *td_pool;
396*4882a593Smuzhiyun
397*4882a593Smuzhiyun struct uhci_td *term_td; /* Terminating TD, see UHCI bug */
398*4882a593Smuzhiyun struct uhci_qh *skelqh[UHCI_NUM_SKELQH]; /* Skeleton QHs */
399*4882a593Smuzhiyun struct uhci_qh *next_qh; /* Next QH to scan */
400*4882a593Smuzhiyun
401*4882a593Smuzhiyun spinlock_t lock;
402*4882a593Smuzhiyun
403*4882a593Smuzhiyun dma_addr_t frame_dma_handle; /* Hardware frame list */
404*4882a593Smuzhiyun __hc32 *frame;
405*4882a593Smuzhiyun void **frame_cpu; /* CPU's frame list */
406*4882a593Smuzhiyun
407*4882a593Smuzhiyun enum uhci_rh_state rh_state;
408*4882a593Smuzhiyun unsigned long auto_stop_time; /* When to AUTO_STOP */
409*4882a593Smuzhiyun
410*4882a593Smuzhiyun unsigned int frame_number; /* As of last check */
411*4882a593Smuzhiyun unsigned int is_stopped;
412*4882a593Smuzhiyun #define UHCI_IS_STOPPED 9999 /* Larger than a frame # */
413*4882a593Smuzhiyun unsigned int last_iso_frame; /* Frame of last scan */
414*4882a593Smuzhiyun unsigned int cur_iso_frame; /* Frame for current scan */
415*4882a593Smuzhiyun
416*4882a593Smuzhiyun unsigned int scan_in_progress:1; /* Schedule scan is running */
417*4882a593Smuzhiyun unsigned int need_rescan:1; /* Redo the schedule scan */
418*4882a593Smuzhiyun unsigned int dead:1; /* Controller has died */
419*4882a593Smuzhiyun unsigned int RD_enable:1; /* Suspended root hub with
420*4882a593Smuzhiyun Resume-Detect interrupts
421*4882a593Smuzhiyun enabled */
422*4882a593Smuzhiyun unsigned int is_initialized:1; /* Data structure is usable */
423*4882a593Smuzhiyun unsigned int fsbr_is_on:1; /* FSBR is turned on */
424*4882a593Smuzhiyun unsigned int fsbr_is_wanted:1; /* Does any URB want FSBR? */
425*4882a593Smuzhiyun unsigned int fsbr_expiring:1; /* FSBR is timing out */
426*4882a593Smuzhiyun
427*4882a593Smuzhiyun struct timer_list fsbr_timer; /* For turning off FBSR */
428*4882a593Smuzhiyun
429*4882a593Smuzhiyun /* Silicon quirks */
430*4882a593Smuzhiyun unsigned int oc_low:1; /* OverCurrent bit active low */
431*4882a593Smuzhiyun unsigned int wait_for_hp:1; /* Wait for HP port reset */
432*4882a593Smuzhiyun unsigned int big_endian_mmio:1; /* Big endian registers */
433*4882a593Smuzhiyun unsigned int big_endian_desc:1; /* Big endian descriptors */
434*4882a593Smuzhiyun unsigned int is_aspeed:1; /* Aspeed impl. workarounds */
435*4882a593Smuzhiyun
436*4882a593Smuzhiyun /* Support for port suspend/resume/reset */
437*4882a593Smuzhiyun unsigned long port_c_suspend; /* Bit-arrays of ports */
438*4882a593Smuzhiyun unsigned long resuming_ports;
439*4882a593Smuzhiyun unsigned long ports_timeout; /* Time to stop signalling */
440*4882a593Smuzhiyun
441*4882a593Smuzhiyun struct list_head idle_qh_list; /* Where the idle QHs live */
442*4882a593Smuzhiyun
443*4882a593Smuzhiyun int rh_numports; /* Number of root-hub ports */
444*4882a593Smuzhiyun
445*4882a593Smuzhiyun wait_queue_head_t waitqh; /* endpoint_disable waiters */
446*4882a593Smuzhiyun int num_waiting; /* Number of waiters */
447*4882a593Smuzhiyun
448*4882a593Smuzhiyun int total_load; /* Sum of array values */
449*4882a593Smuzhiyun short load[MAX_PHASE]; /* Periodic allocations */
450*4882a593Smuzhiyun
451*4882a593Smuzhiyun struct clk *clk; /* (optional) clock source */
452*4882a593Smuzhiyun
453*4882a593Smuzhiyun /* Reset host controller */
454*4882a593Smuzhiyun void (*reset_hc) (struct uhci_hcd *uhci);
455*4882a593Smuzhiyun int (*check_and_reset_hc) (struct uhci_hcd *uhci);
456*4882a593Smuzhiyun /* configure_hc should perform arch specific settings, if needed */
457*4882a593Smuzhiyun void (*configure_hc) (struct uhci_hcd *uhci);
458*4882a593Smuzhiyun /* Check for broken resume detect interrupts */
459*4882a593Smuzhiyun int (*resume_detect_interrupts_are_broken) (struct uhci_hcd *uhci);
460*4882a593Smuzhiyun /* Check for broken global suspend */
461*4882a593Smuzhiyun int (*global_suspend_mode_is_broken) (struct uhci_hcd *uhci);
462*4882a593Smuzhiyun };
463*4882a593Smuzhiyun
464*4882a593Smuzhiyun /* Convert between a usb_hcd pointer and the corresponding uhci_hcd */
hcd_to_uhci(struct usb_hcd * hcd)465*4882a593Smuzhiyun static inline struct uhci_hcd *hcd_to_uhci(struct usb_hcd *hcd)
466*4882a593Smuzhiyun {
467*4882a593Smuzhiyun return (struct uhci_hcd *) (hcd->hcd_priv);
468*4882a593Smuzhiyun }
uhci_to_hcd(struct uhci_hcd * uhci)469*4882a593Smuzhiyun static inline struct usb_hcd *uhci_to_hcd(struct uhci_hcd *uhci)
470*4882a593Smuzhiyun {
471*4882a593Smuzhiyun return container_of((void *) uhci, struct usb_hcd, hcd_priv);
472*4882a593Smuzhiyun }
473*4882a593Smuzhiyun
474*4882a593Smuzhiyun #define uhci_dev(u) (uhci_to_hcd(u)->self.controller)
475*4882a593Smuzhiyun
476*4882a593Smuzhiyun /* Utility macro for comparing frame numbers */
477*4882a593Smuzhiyun #define uhci_frame_before_eq(f1, f2) (0 <= (int) ((f2) - (f1)))
478*4882a593Smuzhiyun
479*4882a593Smuzhiyun
480*4882a593Smuzhiyun /*
481*4882a593Smuzhiyun * Private per-URB data
482*4882a593Smuzhiyun */
483*4882a593Smuzhiyun struct urb_priv {
484*4882a593Smuzhiyun struct list_head node; /* Node in the QH's urbp list */
485*4882a593Smuzhiyun
486*4882a593Smuzhiyun struct urb *urb;
487*4882a593Smuzhiyun
488*4882a593Smuzhiyun struct uhci_qh *qh; /* QH for this URB */
489*4882a593Smuzhiyun struct list_head td_list;
490*4882a593Smuzhiyun
491*4882a593Smuzhiyun unsigned fsbr:1; /* URB wants FSBR */
492*4882a593Smuzhiyun };
493*4882a593Smuzhiyun
494*4882a593Smuzhiyun
495*4882a593Smuzhiyun /* Some special IDs */
496*4882a593Smuzhiyun
497*4882a593Smuzhiyun #define PCI_VENDOR_ID_GENESYS 0x17a0
498*4882a593Smuzhiyun #define PCI_DEVICE_ID_GL880S_UHCI 0x8083
499*4882a593Smuzhiyun
500*4882a593Smuzhiyun /* Aspeed SoC needs some quirks */
uhci_is_aspeed(const struct uhci_hcd * uhci)501*4882a593Smuzhiyun static inline bool uhci_is_aspeed(const struct uhci_hcd *uhci)
502*4882a593Smuzhiyun {
503*4882a593Smuzhiyun return IS_ENABLED(CONFIG_USB_UHCI_ASPEED) && uhci->is_aspeed;
504*4882a593Smuzhiyun }
505*4882a593Smuzhiyun
506*4882a593Smuzhiyun /*
507*4882a593Smuzhiyun * Functions used to access controller registers. The UCHI spec says that host
508*4882a593Smuzhiyun * controller I/O registers are mapped into PCI I/O space. For non-PCI hosts
509*4882a593Smuzhiyun * we use memory mapped registers.
510*4882a593Smuzhiyun */
511*4882a593Smuzhiyun
512*4882a593Smuzhiyun #ifndef CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC
513*4882a593Smuzhiyun /* Support PCI only */
uhci_readl(const struct uhci_hcd * uhci,int reg)514*4882a593Smuzhiyun static inline u32 uhci_readl(const struct uhci_hcd *uhci, int reg)
515*4882a593Smuzhiyun {
516*4882a593Smuzhiyun return inl(uhci->io_addr + reg);
517*4882a593Smuzhiyun }
518*4882a593Smuzhiyun
uhci_writel(const struct uhci_hcd * uhci,u32 val,int reg)519*4882a593Smuzhiyun static inline void uhci_writel(const struct uhci_hcd *uhci, u32 val, int reg)
520*4882a593Smuzhiyun {
521*4882a593Smuzhiyun outl(val, uhci->io_addr + reg);
522*4882a593Smuzhiyun }
523*4882a593Smuzhiyun
uhci_readw(const struct uhci_hcd * uhci,int reg)524*4882a593Smuzhiyun static inline u16 uhci_readw(const struct uhci_hcd *uhci, int reg)
525*4882a593Smuzhiyun {
526*4882a593Smuzhiyun return inw(uhci->io_addr + reg);
527*4882a593Smuzhiyun }
528*4882a593Smuzhiyun
uhci_writew(const struct uhci_hcd * uhci,u16 val,int reg)529*4882a593Smuzhiyun static inline void uhci_writew(const struct uhci_hcd *uhci, u16 val, int reg)
530*4882a593Smuzhiyun {
531*4882a593Smuzhiyun outw(val, uhci->io_addr + reg);
532*4882a593Smuzhiyun }
533*4882a593Smuzhiyun
uhci_readb(const struct uhci_hcd * uhci,int reg)534*4882a593Smuzhiyun static inline u8 uhci_readb(const struct uhci_hcd *uhci, int reg)
535*4882a593Smuzhiyun {
536*4882a593Smuzhiyun return inb(uhci->io_addr + reg);
537*4882a593Smuzhiyun }
538*4882a593Smuzhiyun
uhci_writeb(const struct uhci_hcd * uhci,u8 val,int reg)539*4882a593Smuzhiyun static inline void uhci_writeb(const struct uhci_hcd *uhci, u8 val, int reg)
540*4882a593Smuzhiyun {
541*4882a593Smuzhiyun outb(val, uhci->io_addr + reg);
542*4882a593Smuzhiyun }
543*4882a593Smuzhiyun
544*4882a593Smuzhiyun #else
545*4882a593Smuzhiyun /* Support non-PCI host controllers */
546*4882a593Smuzhiyun #ifdef CONFIG_USB_PCI
547*4882a593Smuzhiyun /* Support PCI and non-PCI host controllers */
548*4882a593Smuzhiyun #define uhci_has_pci_registers(u) ((u)->io_addr != 0)
549*4882a593Smuzhiyun #else
550*4882a593Smuzhiyun /* Support non-PCI host controllers only */
551*4882a593Smuzhiyun #define uhci_has_pci_registers(u) 0
552*4882a593Smuzhiyun #endif
553*4882a593Smuzhiyun
554*4882a593Smuzhiyun #ifdef CONFIG_USB_UHCI_BIG_ENDIAN_MMIO
555*4882a593Smuzhiyun /* Support (non-PCI) big endian host controllers */
556*4882a593Smuzhiyun #define uhci_big_endian_mmio(u) ((u)->big_endian_mmio)
557*4882a593Smuzhiyun #else
558*4882a593Smuzhiyun #define uhci_big_endian_mmio(u) 0
559*4882a593Smuzhiyun #endif
560*4882a593Smuzhiyun
uhci_aspeed_reg(unsigned int reg)561*4882a593Smuzhiyun static inline int uhci_aspeed_reg(unsigned int reg)
562*4882a593Smuzhiyun {
563*4882a593Smuzhiyun switch (reg) {
564*4882a593Smuzhiyun case USBCMD:
565*4882a593Smuzhiyun return 00;
566*4882a593Smuzhiyun case USBSTS:
567*4882a593Smuzhiyun return 0x04;
568*4882a593Smuzhiyun case USBINTR:
569*4882a593Smuzhiyun return 0x08;
570*4882a593Smuzhiyun case USBFRNUM:
571*4882a593Smuzhiyun return 0x80;
572*4882a593Smuzhiyun case USBFLBASEADD:
573*4882a593Smuzhiyun return 0x0c;
574*4882a593Smuzhiyun case USBSOF:
575*4882a593Smuzhiyun return 0x84;
576*4882a593Smuzhiyun case USBPORTSC1:
577*4882a593Smuzhiyun return 0x88;
578*4882a593Smuzhiyun case USBPORTSC2:
579*4882a593Smuzhiyun return 0x8c;
580*4882a593Smuzhiyun case USBPORTSC3:
581*4882a593Smuzhiyun return 0x90;
582*4882a593Smuzhiyun case USBPORTSC4:
583*4882a593Smuzhiyun return 0x94;
584*4882a593Smuzhiyun default:
585*4882a593Smuzhiyun pr_warn("UHCI: Unsupported register 0x%02x on Aspeed\n", reg);
586*4882a593Smuzhiyun /* Return an unimplemented register */
587*4882a593Smuzhiyun return 0x10;
588*4882a593Smuzhiyun }
589*4882a593Smuzhiyun }
590*4882a593Smuzhiyun
uhci_readl(const struct uhci_hcd * uhci,int reg)591*4882a593Smuzhiyun static inline u32 uhci_readl(const struct uhci_hcd *uhci, int reg)
592*4882a593Smuzhiyun {
593*4882a593Smuzhiyun if (uhci_has_pci_registers(uhci))
594*4882a593Smuzhiyun return inl(uhci->io_addr + reg);
595*4882a593Smuzhiyun else if (uhci_is_aspeed(uhci))
596*4882a593Smuzhiyun return readl(uhci->regs + uhci_aspeed_reg(reg));
597*4882a593Smuzhiyun #ifdef CONFIG_USB_UHCI_BIG_ENDIAN_MMIO
598*4882a593Smuzhiyun else if (uhci_big_endian_mmio(uhci))
599*4882a593Smuzhiyun return readl_be(uhci->regs + reg);
600*4882a593Smuzhiyun #endif
601*4882a593Smuzhiyun else
602*4882a593Smuzhiyun return readl(uhci->regs + reg);
603*4882a593Smuzhiyun }
604*4882a593Smuzhiyun
uhci_writel(const struct uhci_hcd * uhci,u32 val,int reg)605*4882a593Smuzhiyun static inline void uhci_writel(const struct uhci_hcd *uhci, u32 val, int reg)
606*4882a593Smuzhiyun {
607*4882a593Smuzhiyun if (uhci_has_pci_registers(uhci))
608*4882a593Smuzhiyun outl(val, uhci->io_addr + reg);
609*4882a593Smuzhiyun else if (uhci_is_aspeed(uhci))
610*4882a593Smuzhiyun writel(val, uhci->regs + uhci_aspeed_reg(reg));
611*4882a593Smuzhiyun #ifdef CONFIG_USB_UHCI_BIG_ENDIAN_MMIO
612*4882a593Smuzhiyun else if (uhci_big_endian_mmio(uhci))
613*4882a593Smuzhiyun writel_be(val, uhci->regs + reg);
614*4882a593Smuzhiyun #endif
615*4882a593Smuzhiyun else
616*4882a593Smuzhiyun writel(val, uhci->regs + reg);
617*4882a593Smuzhiyun }
618*4882a593Smuzhiyun
uhci_readw(const struct uhci_hcd * uhci,int reg)619*4882a593Smuzhiyun static inline u16 uhci_readw(const struct uhci_hcd *uhci, int reg)
620*4882a593Smuzhiyun {
621*4882a593Smuzhiyun if (uhci_has_pci_registers(uhci))
622*4882a593Smuzhiyun return inw(uhci->io_addr + reg);
623*4882a593Smuzhiyun else if (uhci_is_aspeed(uhci))
624*4882a593Smuzhiyun return readl(uhci->regs + uhci_aspeed_reg(reg));
625*4882a593Smuzhiyun #ifdef CONFIG_USB_UHCI_BIG_ENDIAN_MMIO
626*4882a593Smuzhiyun else if (uhci_big_endian_mmio(uhci))
627*4882a593Smuzhiyun return readw_be(uhci->regs + reg);
628*4882a593Smuzhiyun #endif
629*4882a593Smuzhiyun else
630*4882a593Smuzhiyun return readw(uhci->regs + reg);
631*4882a593Smuzhiyun }
632*4882a593Smuzhiyun
uhci_writew(const struct uhci_hcd * uhci,u16 val,int reg)633*4882a593Smuzhiyun static inline void uhci_writew(const struct uhci_hcd *uhci, u16 val, int reg)
634*4882a593Smuzhiyun {
635*4882a593Smuzhiyun if (uhci_has_pci_registers(uhci))
636*4882a593Smuzhiyun outw(val, uhci->io_addr + reg);
637*4882a593Smuzhiyun else if (uhci_is_aspeed(uhci))
638*4882a593Smuzhiyun writel(val, uhci->regs + uhci_aspeed_reg(reg));
639*4882a593Smuzhiyun #ifdef CONFIG_USB_UHCI_BIG_ENDIAN_MMIO
640*4882a593Smuzhiyun else if (uhci_big_endian_mmio(uhci))
641*4882a593Smuzhiyun writew_be(val, uhci->regs + reg);
642*4882a593Smuzhiyun #endif
643*4882a593Smuzhiyun else
644*4882a593Smuzhiyun writew(val, uhci->regs + reg);
645*4882a593Smuzhiyun }
646*4882a593Smuzhiyun
uhci_readb(const struct uhci_hcd * uhci,int reg)647*4882a593Smuzhiyun static inline u8 uhci_readb(const struct uhci_hcd *uhci, int reg)
648*4882a593Smuzhiyun {
649*4882a593Smuzhiyun if (uhci_has_pci_registers(uhci))
650*4882a593Smuzhiyun return inb(uhci->io_addr + reg);
651*4882a593Smuzhiyun else if (uhci_is_aspeed(uhci))
652*4882a593Smuzhiyun return readl(uhci->regs + uhci_aspeed_reg(reg));
653*4882a593Smuzhiyun #ifdef CONFIG_USB_UHCI_BIG_ENDIAN_MMIO
654*4882a593Smuzhiyun else if (uhci_big_endian_mmio(uhci))
655*4882a593Smuzhiyun return readb_be(uhci->regs + reg);
656*4882a593Smuzhiyun #endif
657*4882a593Smuzhiyun else
658*4882a593Smuzhiyun return readb(uhci->regs + reg);
659*4882a593Smuzhiyun }
660*4882a593Smuzhiyun
uhci_writeb(const struct uhci_hcd * uhci,u8 val,int reg)661*4882a593Smuzhiyun static inline void uhci_writeb(const struct uhci_hcd *uhci, u8 val, int reg)
662*4882a593Smuzhiyun {
663*4882a593Smuzhiyun if (uhci_has_pci_registers(uhci))
664*4882a593Smuzhiyun outb(val, uhci->io_addr + reg);
665*4882a593Smuzhiyun else if (uhci_is_aspeed(uhci))
666*4882a593Smuzhiyun writel(val, uhci->regs + uhci_aspeed_reg(reg));
667*4882a593Smuzhiyun #ifdef CONFIG_USB_UHCI_BIG_ENDIAN_MMIO
668*4882a593Smuzhiyun else if (uhci_big_endian_mmio(uhci))
669*4882a593Smuzhiyun writeb_be(val, uhci->regs + reg);
670*4882a593Smuzhiyun #endif
671*4882a593Smuzhiyun else
672*4882a593Smuzhiyun writeb(val, uhci->regs + reg);
673*4882a593Smuzhiyun }
674*4882a593Smuzhiyun #endif /* CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC */
675*4882a593Smuzhiyun
676*4882a593Smuzhiyun /*
677*4882a593Smuzhiyun * The GRLIB GRUSBHC controller can use big endian format for its descriptors.
678*4882a593Smuzhiyun *
679*4882a593Smuzhiyun * UHCI controllers accessed through PCI work normally (little-endian
680*4882a593Smuzhiyun * everywhere), so we don't bother supporting a BE-only mode.
681*4882a593Smuzhiyun */
682*4882a593Smuzhiyun #ifdef CONFIG_USB_UHCI_BIG_ENDIAN_DESC
683*4882a593Smuzhiyun #define uhci_big_endian_desc(u) ((u)->big_endian_desc)
684*4882a593Smuzhiyun
685*4882a593Smuzhiyun /* cpu to uhci */
cpu_to_hc32(const struct uhci_hcd * uhci,const u32 x)686*4882a593Smuzhiyun static inline __hc32 cpu_to_hc32(const struct uhci_hcd *uhci, const u32 x)
687*4882a593Smuzhiyun {
688*4882a593Smuzhiyun return uhci_big_endian_desc(uhci)
689*4882a593Smuzhiyun ? (__force __hc32)cpu_to_be32(x)
690*4882a593Smuzhiyun : (__force __hc32)cpu_to_le32(x);
691*4882a593Smuzhiyun }
692*4882a593Smuzhiyun
693*4882a593Smuzhiyun /* uhci to cpu */
hc32_to_cpu(const struct uhci_hcd * uhci,const __hc32 x)694*4882a593Smuzhiyun static inline u32 hc32_to_cpu(const struct uhci_hcd *uhci, const __hc32 x)
695*4882a593Smuzhiyun {
696*4882a593Smuzhiyun return uhci_big_endian_desc(uhci)
697*4882a593Smuzhiyun ? be32_to_cpu((__force __be32)x)
698*4882a593Smuzhiyun : le32_to_cpu((__force __le32)x);
699*4882a593Smuzhiyun }
700*4882a593Smuzhiyun
701*4882a593Smuzhiyun #else
702*4882a593Smuzhiyun /* cpu to uhci */
cpu_to_hc32(const struct uhci_hcd * uhci,const u32 x)703*4882a593Smuzhiyun static inline __hc32 cpu_to_hc32(const struct uhci_hcd *uhci, const u32 x)
704*4882a593Smuzhiyun {
705*4882a593Smuzhiyun return cpu_to_le32(x);
706*4882a593Smuzhiyun }
707*4882a593Smuzhiyun
708*4882a593Smuzhiyun /* uhci to cpu */
hc32_to_cpu(const struct uhci_hcd * uhci,const __hc32 x)709*4882a593Smuzhiyun static inline u32 hc32_to_cpu(const struct uhci_hcd *uhci, const __hc32 x)
710*4882a593Smuzhiyun {
711*4882a593Smuzhiyun return le32_to_cpu(x);
712*4882a593Smuzhiyun }
713*4882a593Smuzhiyun #endif
714*4882a593Smuzhiyun
715*4882a593Smuzhiyun #endif
716