]>
Commit | Line | Data |
---|---|---|
94527ead GH |
1 | /* |
2 | * QEMU USB EHCI Emulation | |
3 | * | |
4 | * Copyright(c) 2008 Emutex Ltd. (address@hidden) | |
522079dd HG |
5 | * Copyright(c) 2011-2012 Red Hat, Inc. |
6 | * | |
7 | * Red Hat Authors: | |
8 | * Gerd Hoffmann <[email protected]> | |
9 | * Hans de Goede <[email protected]> | |
94527ead GH |
10 | * |
11 | * EHCI project was started by Mark Burkley, with contributions by | |
12 | * Niels de Vos. David S. Ahern continued working on it. Kevin Wolf, | |
13 | * Jan Kiszka and Vincent Palatin contributed bugfixes. | |
14 | * | |
15 | * | |
16 | * This library is free software; you can redistribute it and/or | |
17 | * modify it under the terms of the GNU Lesser General Public | |
18 | * License as published by the Free Software Foundation; either | |
19 | * version 2 of the License, or(at your option) any later version. | |
20 | * | |
21 | * This library is distributed in the hope that it will be useful, | |
22 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
23 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
24 | * Lesser General Public License for more details. | |
25 | * | |
26 | * You should have received a copy of the GNU General Public License | |
27 | * along with this program; if not, see <http://www.gnu.org/licenses/>. | |
94527ead GH |
28 | */ |
29 | ||
f1ae32a1 | 30 | #include "hw/hw.h" |
94527ead | 31 | #include "qemu-timer.h" |
f1ae32a1 GH |
32 | #include "hw/usb.h" |
33 | #include "hw/pci.h" | |
94527ead | 34 | #include "monitor.h" |
439a97cc | 35 | #include "trace.h" |
0ce668bc | 36 | #include "dma.h" |
ceab6f96 | 37 | #include "sysemu.h" |
94527ead GH |
38 | |
39 | #define EHCI_DEBUG 0 | |
94527ead | 40 | |
26d53979 | 41 | #if EHCI_DEBUG |
94527ead GH |
42 | #define DPRINTF printf |
43 | #else | |
44 | #define DPRINTF(...) | |
45 | #endif | |
46 | ||
94527ead GH |
47 | /* internal processing - reset HC to try and recover */ |
48 | #define USB_RET_PROCERR (-99) | |
49 | ||
50 | #define MMIO_SIZE 0x1000 | |
51 | ||
52 | /* Capability Registers Base Address - section 2.2 */ | |
53 | #define CAPREGBASE 0x0000 | |
54 | #define CAPLENGTH CAPREGBASE + 0x0000 // 1-byte, 0x0001 reserved | |
55 | #define HCIVERSION CAPREGBASE + 0x0002 // 2-bytes, i/f version # | |
56 | #define HCSPARAMS CAPREGBASE + 0x0004 // 4-bytes, structural params | |
57 | #define HCCPARAMS CAPREGBASE + 0x0008 // 4-bytes, capability params | |
58 | #define EECP HCCPARAMS + 1 | |
59 | #define HCSPPORTROUTE1 CAPREGBASE + 0x000c | |
60 | #define HCSPPORTROUTE2 CAPREGBASE + 0x0010 | |
61 | ||
62 | #define OPREGBASE 0x0020 // Operational Registers Base Address | |
63 | ||
64 | #define USBCMD OPREGBASE + 0x0000 | |
65 | #define USBCMD_RUNSTOP (1 << 0) // run / Stop | |
66 | #define USBCMD_HCRESET (1 << 1) // HC Reset | |
67 | #define USBCMD_FLS (3 << 2) // Frame List Size | |
68 | #define USBCMD_FLS_SH 2 // Frame List Size Shift | |
69 | #define USBCMD_PSE (1 << 4) // Periodic Schedule Enable | |
70 | #define USBCMD_ASE (1 << 5) // Asynch Schedule Enable | |
71 | #define USBCMD_IAAD (1 << 6) // Int Asynch Advance Doorbell | |
72 | #define USBCMD_LHCR (1 << 7) // Light Host Controller Reset | |
73 | #define USBCMD_ASPMC (3 << 8) // Async Sched Park Mode Count | |
74 | #define USBCMD_ASPME (1 << 11) // Async Sched Park Mode Enable | |
75 | #define USBCMD_ITC (0x7f << 16) // Int Threshold Control | |
76 | #define USBCMD_ITC_SH 16 // Int Threshold Control Shift | |
77 | ||
78 | #define USBSTS OPREGBASE + 0x0004 | |
79 | #define USBSTS_RO_MASK 0x0000003f | |
80 | #define USBSTS_INT (1 << 0) // USB Interrupt | |
81 | #define USBSTS_ERRINT (1 << 1) // Error Interrupt | |
82 | #define USBSTS_PCD (1 << 2) // Port Change Detect | |
83 | #define USBSTS_FLR (1 << 3) // Frame List Rollover | |
84 | #define USBSTS_HSE (1 << 4) // Host System Error | |
85 | #define USBSTS_IAA (1 << 5) // Interrupt on Async Advance | |
86 | #define USBSTS_HALT (1 << 12) // HC Halted | |
87 | #define USBSTS_REC (1 << 13) // Reclamation | |
88 | #define USBSTS_PSS (1 << 14) // Periodic Schedule Status | |
89 | #define USBSTS_ASS (1 << 15) // Asynchronous Schedule Status | |
90 | ||
91 | /* | |
92 | * Interrupt enable bits correspond to the interrupt active bits in USBSTS | |
93 | * so no need to redefine here. | |
94 | */ | |
95 | #define USBINTR OPREGBASE + 0x0008 | |
96 | #define USBINTR_MASK 0x0000003f | |
97 | ||
98 | #define FRINDEX OPREGBASE + 0x000c | |
99 | #define CTRLDSSEGMENT OPREGBASE + 0x0010 | |
100 | #define PERIODICLISTBASE OPREGBASE + 0x0014 | |
101 | #define ASYNCLISTADDR OPREGBASE + 0x0018 | |
102 | #define ASYNCLISTADDR_MASK 0xffffffe0 | |
103 | ||
104 | #define CONFIGFLAG OPREGBASE + 0x0040 | |
105 | ||
106 | #define PORTSC (OPREGBASE + 0x0044) | |
107 | #define PORTSC_BEGIN PORTSC | |
108 | #define PORTSC_END (PORTSC + 4 * NB_PORTS) | |
109 | /* | |
c44fd61c | 110 | * Bits that are reserved or are read-only are masked out of values |
94527ead GH |
111 | * written to us by software |
112 | */ | |
a0a3167a | 113 | #define PORTSC_RO_MASK 0x007001c0 |
94527ead GH |
114 | #define PORTSC_RWC_MASK 0x0000002a |
115 | #define PORTSC_WKOC_E (1 << 22) // Wake on Over Current Enable | |
116 | #define PORTSC_WKDS_E (1 << 21) // Wake on Disconnect Enable | |
117 | #define PORTSC_WKCN_E (1 << 20) // Wake on Connect Enable | |
118 | #define PORTSC_PTC (15 << 16) // Port Test Control | |
119 | #define PORTSC_PTC_SH 16 // Port Test Control shift | |
120 | #define PORTSC_PIC (3 << 14) // Port Indicator Control | |
121 | #define PORTSC_PIC_SH 14 // Port Indicator Control Shift | |
122 | #define PORTSC_POWNER (1 << 13) // Port Owner | |
123 | #define PORTSC_PPOWER (1 << 12) // Port Power | |
124 | #define PORTSC_LINESTAT (3 << 10) // Port Line Status | |
125 | #define PORTSC_LINESTAT_SH 10 // Port Line Status Shift | |
126 | #define PORTSC_PRESET (1 << 8) // Port Reset | |
127 | #define PORTSC_SUSPEND (1 << 7) // Port Suspend | |
128 | #define PORTSC_FPRES (1 << 6) // Force Port Resume | |
129 | #define PORTSC_OCC (1 << 5) // Over Current Change | |
130 | #define PORTSC_OCA (1 << 4) // Over Current Active | |
131 | #define PORTSC_PEDC (1 << 3) // Port Enable/Disable Change | |
132 | #define PORTSC_PED (1 << 2) // Port Enable/Disable | |
133 | #define PORTSC_CSC (1 << 1) // Connect Status Change | |
134 | #define PORTSC_CONNECT (1 << 0) // Current Connect Status | |
135 | ||
136 | #define FRAME_TIMER_FREQ 1000 | |
adddecb1 | 137 | #define FRAME_TIMER_NS (1000000000 / FRAME_TIMER_FREQ) |
94527ead GH |
138 | |
139 | #define NB_MAXINTRATE 8 // Max rate at which controller issues ints | |
5cc194ca | 140 | #define NB_PORTS 6 // Number of downstream ports |
94527ead | 141 | #define BUFF_SIZE 5*4096 // Max bytes to transfer per transaction |
94527ead | 142 | #define MAX_QH 100 // Max allowable queue heads in a chain |
8f74ed1e | 143 | #define MIN_FR_PER_TICK 3 // Min frames to process when catching up |
94527ead GH |
144 | |
145 | /* Internal periodic / asynchronous schedule state machine states | |
146 | */ | |
147 | typedef enum { | |
148 | EST_INACTIVE = 1000, | |
149 | EST_ACTIVE, | |
150 | EST_EXECUTING, | |
151 | EST_SLEEPING, | |
152 | /* The following states are internal to the state machine function | |
153 | */ | |
154 | EST_WAITLISTHEAD, | |
155 | EST_FETCHENTRY, | |
156 | EST_FETCHQH, | |
157 | EST_FETCHITD, | |
2fe80192 | 158 | EST_FETCHSITD, |
94527ead GH |
159 | EST_ADVANCEQUEUE, |
160 | EST_FETCHQTD, | |
161 | EST_EXECUTE, | |
162 | EST_WRITEBACK, | |
163 | EST_HORIZONTALQH | |
164 | } EHCI_STATES; | |
165 | ||
166 | /* macros for accessing fields within next link pointer entry */ | |
167 | #define NLPTR_GET(x) ((x) & 0xffffffe0) | |
168 | #define NLPTR_TYPE_GET(x) (((x) >> 1) & 3) | |
169 | #define NLPTR_TBIT(x) ((x) & 1) // 1=invalid, 0=valid | |
170 | ||
171 | /* link pointer types */ | |
172 | #define NLPTR_TYPE_ITD 0 // isoc xfer descriptor | |
173 | #define NLPTR_TYPE_QH 1 // queue head | |
174 | #define NLPTR_TYPE_STITD 2 // split xaction, isoc xfer descriptor | |
175 | #define NLPTR_TYPE_FSTN 3 // frame span traversal node | |
176 | ||
177 | ||
178 | /* EHCI spec version 1.0 Section 3.3 | |
179 | */ | |
180 | typedef struct EHCIitd { | |
181 | uint32_t next; | |
182 | ||
183 | uint32_t transact[8]; | |
184 | #define ITD_XACT_ACTIVE (1 << 31) | |
185 | #define ITD_XACT_DBERROR (1 << 30) | |
186 | #define ITD_XACT_BABBLE (1 << 29) | |
187 | #define ITD_XACT_XACTERR (1 << 28) | |
188 | #define ITD_XACT_LENGTH_MASK 0x0fff0000 | |
189 | #define ITD_XACT_LENGTH_SH 16 | |
190 | #define ITD_XACT_IOC (1 << 15) | |
191 | #define ITD_XACT_PGSEL_MASK 0x00007000 | |
192 | #define ITD_XACT_PGSEL_SH 12 | |
193 | #define ITD_XACT_OFFSET_MASK 0x00000fff | |
194 | ||
195 | uint32_t bufptr[7]; | |
196 | #define ITD_BUFPTR_MASK 0xfffff000 | |
197 | #define ITD_BUFPTR_SH 12 | |
198 | #define ITD_BUFPTR_EP_MASK 0x00000f00 | |
199 | #define ITD_BUFPTR_EP_SH 8 | |
200 | #define ITD_BUFPTR_DEVADDR_MASK 0x0000007f | |
201 | #define ITD_BUFPTR_DEVADDR_SH 0 | |
202 | #define ITD_BUFPTR_DIRECTION (1 << 11) | |
203 | #define ITD_BUFPTR_MAXPKT_MASK 0x000007ff | |
204 | #define ITD_BUFPTR_MAXPKT_SH 0 | |
205 | #define ITD_BUFPTR_MULT_MASK 0x00000003 | |
e654887f | 206 | #define ITD_BUFPTR_MULT_SH 0 |
94527ead GH |
207 | } EHCIitd; |
208 | ||
209 | /* EHCI spec version 1.0 Section 3.4 | |
210 | */ | |
211 | typedef struct EHCIsitd { | |
212 | uint32_t next; // Standard next link pointer | |
213 | uint32_t epchar; | |
214 | #define SITD_EPCHAR_IO (1 << 31) | |
215 | #define SITD_EPCHAR_PORTNUM_MASK 0x7f000000 | |
216 | #define SITD_EPCHAR_PORTNUM_SH 24 | |
217 | #define SITD_EPCHAR_HUBADD_MASK 0x007f0000 | |
218 | #define SITD_EPCHAR_HUBADDR_SH 16 | |
219 | #define SITD_EPCHAR_EPNUM_MASK 0x00000f00 | |
220 | #define SITD_EPCHAR_EPNUM_SH 8 | |
221 | #define SITD_EPCHAR_DEVADDR_MASK 0x0000007f | |
222 | ||
223 | uint32_t uframe; | |
224 | #define SITD_UFRAME_CMASK_MASK 0x0000ff00 | |
225 | #define SITD_UFRAME_CMASK_SH 8 | |
226 | #define SITD_UFRAME_SMASK_MASK 0x000000ff | |
227 | ||
228 | uint32_t results; | |
229 | #define SITD_RESULTS_IOC (1 << 31) | |
230 | #define SITD_RESULTS_PGSEL (1 << 30) | |
231 | #define SITD_RESULTS_TBYTES_MASK 0x03ff0000 | |
232 | #define SITD_RESULTS_TYBYTES_SH 16 | |
233 | #define SITD_RESULTS_CPROGMASK_MASK 0x0000ff00 | |
234 | #define SITD_RESULTS_CPROGMASK_SH 8 | |
235 | #define SITD_RESULTS_ACTIVE (1 << 7) | |
236 | #define SITD_RESULTS_ERR (1 << 6) | |
237 | #define SITD_RESULTS_DBERR (1 << 5) | |
238 | #define SITD_RESULTS_BABBLE (1 << 4) | |
239 | #define SITD_RESULTS_XACTERR (1 << 3) | |
240 | #define SITD_RESULTS_MISSEDUF (1 << 2) | |
241 | #define SITD_RESULTS_SPLITXSTATE (1 << 1) | |
242 | ||
243 | uint32_t bufptr[2]; | |
244 | #define SITD_BUFPTR_MASK 0xfffff000 | |
245 | #define SITD_BUFPTR_CURROFF_MASK 0x00000fff | |
246 | #define SITD_BUFPTR_TPOS_MASK 0x00000018 | |
247 | #define SITD_BUFPTR_TPOS_SH 3 | |
248 | #define SITD_BUFPTR_TCNT_MASK 0x00000007 | |
249 | ||
250 | uint32_t backptr; // Standard next link pointer | |
251 | } EHCIsitd; | |
252 | ||
253 | /* EHCI spec version 1.0 Section 3.5 | |
254 | */ | |
255 | typedef struct EHCIqtd { | |
256 | uint32_t next; // Standard next link pointer | |
257 | uint32_t altnext; // Standard next link pointer | |
258 | uint32_t token; | |
259 | #define QTD_TOKEN_DTOGGLE (1 << 31) | |
260 | #define QTD_TOKEN_TBYTES_MASK 0x7fff0000 | |
261 | #define QTD_TOKEN_TBYTES_SH 16 | |
262 | #define QTD_TOKEN_IOC (1 << 15) | |
263 | #define QTD_TOKEN_CPAGE_MASK 0x00007000 | |
264 | #define QTD_TOKEN_CPAGE_SH 12 | |
265 | #define QTD_TOKEN_CERR_MASK 0x00000c00 | |
266 | #define QTD_TOKEN_CERR_SH 10 | |
267 | #define QTD_TOKEN_PID_MASK 0x00000300 | |
268 | #define QTD_TOKEN_PID_SH 8 | |
269 | #define QTD_TOKEN_ACTIVE (1 << 7) | |
270 | #define QTD_TOKEN_HALT (1 << 6) | |
271 | #define QTD_TOKEN_DBERR (1 << 5) | |
272 | #define QTD_TOKEN_BABBLE (1 << 4) | |
273 | #define QTD_TOKEN_XACTERR (1 << 3) | |
274 | #define QTD_TOKEN_MISSEDUF (1 << 2) | |
275 | #define QTD_TOKEN_SPLITXSTATE (1 << 1) | |
276 | #define QTD_TOKEN_PING (1 << 0) | |
277 | ||
278 | uint32_t bufptr[5]; // Standard buffer pointer | |
279 | #define QTD_BUFPTR_MASK 0xfffff000 | |
0ce668bc | 280 | #define QTD_BUFPTR_SH 12 |
94527ead GH |
281 | } EHCIqtd; |
282 | ||
283 | /* EHCI spec version 1.0 Section 3.6 | |
284 | */ | |
285 | typedef struct EHCIqh { | |
286 | uint32_t next; // Standard next link pointer | |
287 | ||
288 | /* endpoint characteristics */ | |
289 | uint32_t epchar; | |
290 | #define QH_EPCHAR_RL_MASK 0xf0000000 | |
291 | #define QH_EPCHAR_RL_SH 28 | |
292 | #define QH_EPCHAR_C (1 << 27) | |
293 | #define QH_EPCHAR_MPLEN_MASK 0x07FF0000 | |
294 | #define QH_EPCHAR_MPLEN_SH 16 | |
295 | #define QH_EPCHAR_H (1 << 15) | |
296 | #define QH_EPCHAR_DTC (1 << 14) | |
297 | #define QH_EPCHAR_EPS_MASK 0x00003000 | |
298 | #define QH_EPCHAR_EPS_SH 12 | |
299 | #define EHCI_QH_EPS_FULL 0 | |
300 | #define EHCI_QH_EPS_LOW 1 | |
301 | #define EHCI_QH_EPS_HIGH 2 | |
302 | #define EHCI_QH_EPS_RESERVED 3 | |
303 | ||
304 | #define QH_EPCHAR_EP_MASK 0x00000f00 | |
305 | #define QH_EPCHAR_EP_SH 8 | |
306 | #define QH_EPCHAR_I (1 << 7) | |
307 | #define QH_EPCHAR_DEVADDR_MASK 0x0000007f | |
308 | #define QH_EPCHAR_DEVADDR_SH 0 | |
309 | ||
310 | /* endpoint capabilities */ | |
311 | uint32_t epcap; | |
312 | #define QH_EPCAP_MULT_MASK 0xc0000000 | |
313 | #define QH_EPCAP_MULT_SH 30 | |
314 | #define QH_EPCAP_PORTNUM_MASK 0x3f800000 | |
315 | #define QH_EPCAP_PORTNUM_SH 23 | |
316 | #define QH_EPCAP_HUBADDR_MASK 0x007f0000 | |
317 | #define QH_EPCAP_HUBADDR_SH 16 | |
318 | #define QH_EPCAP_CMASK_MASK 0x0000ff00 | |
319 | #define QH_EPCAP_CMASK_SH 8 | |
320 | #define QH_EPCAP_SMASK_MASK 0x000000ff | |
321 | #define QH_EPCAP_SMASK_SH 0 | |
322 | ||
323 | uint32_t current_qtd; // Standard next link pointer | |
324 | uint32_t next_qtd; // Standard next link pointer | |
325 | uint32_t altnext_qtd; | |
326 | #define QH_ALTNEXT_NAKCNT_MASK 0x0000001e | |
327 | #define QH_ALTNEXT_NAKCNT_SH 1 | |
328 | ||
329 | uint32_t token; // Same as QTD token | |
330 | uint32_t bufptr[5]; // Standard buffer pointer | |
331 | #define BUFPTR_CPROGMASK_MASK 0x000000ff | |
332 | #define BUFPTR_FRAMETAG_MASK 0x0000001f | |
333 | #define BUFPTR_SBYTES_MASK 0x00000fe0 | |
334 | #define BUFPTR_SBYTES_SH 5 | |
335 | } EHCIqh; | |
336 | ||
337 | /* EHCI spec version 1.0 Section 3.7 | |
338 | */ | |
339 | typedef struct EHCIfstn { | |
340 | uint32_t next; // Standard next link pointer | |
341 | uint32_t backptr; // Standard next link pointer | |
342 | } EHCIfstn; | |
343 | ||
eb36a88e | 344 | typedef struct EHCIPacket EHCIPacket; |
0122f472 GH |
345 | typedef struct EHCIQueue EHCIQueue; |
346 | typedef struct EHCIState EHCIState; | |
347 | ||
348 | enum async_state { | |
349 | EHCI_ASYNC_NONE = 0, | |
ef5b2344 | 350 | EHCI_ASYNC_INITIALIZED, |
0122f472 GH |
351 | EHCI_ASYNC_INFLIGHT, |
352 | EHCI_ASYNC_FINISHED, | |
353 | }; | |
354 | ||
eb36a88e GH |
355 | struct EHCIPacket { |
356 | EHCIQueue *queue; | |
357 | QTAILQ_ENTRY(EHCIPacket) next; | |
358 | ||
359 | EHCIqtd qtd; /* copy of current QTD (being worked on) */ | |
360 | uint32_t qtdaddr; /* address QTD read from */ | |
361 | ||
362 | USBPacket packet; | |
363 | QEMUSGList sgl; | |
364 | int pid; | |
eb36a88e GH |
365 | enum async_state async; |
366 | int usb_status; | |
367 | }; | |
368 | ||
0122f472 GH |
369 | struct EHCIQueue { |
370 | EHCIState *ehci; | |
8ac6d699 | 371 | QTAILQ_ENTRY(EHCIQueue) next; |
adddecb1 GH |
372 | uint32_t seen; |
373 | uint64_t ts; | |
ae0138a8 | 374 | int async; |
cae5d3f4 | 375 | int transact_ctr; |
0122f472 GH |
376 | |
377 | /* cached data from guest - needs to be flushed | |
378 | * when guest removes an entry (doorbell, handshake sequence) | |
379 | */ | |
eb36a88e GH |
380 | EHCIqh qh; /* copy of current QH (being worked on) */ |
381 | uint32_t qhaddr; /* address QH read from */ | |
382 | uint32_t qtdaddr; /* address QTD read from */ | |
e59928b3 | 383 | USBDevice *dev; |
eb36a88e | 384 | QTAILQ_HEAD(, EHCIPacket) packets; |
0122f472 GH |
385 | }; |
386 | ||
df5d5c5c HG |
387 | typedef QTAILQ_HEAD(EHCIQueueHead, EHCIQueue) EHCIQueueHead; |
388 | ||
0122f472 | 389 | struct EHCIState { |
94527ead | 390 | PCIDevice dev; |
0122f472 | 391 | USBBus bus; |
94527ead | 392 | qemu_irq irq; |
e57964f5 | 393 | MemoryRegion mem; |
3e4f910c GH |
394 | MemoryRegion mem_caps; |
395 | MemoryRegion mem_opreg; | |
396 | MemoryRegion mem_ports; | |
a0a3167a | 397 | int companion_count; |
16a2dee6 GH |
398 | |
399 | /* properties */ | |
16a2dee6 GH |
400 | uint32_t maxframes; |
401 | ||
94527ead GH |
402 | /* |
403 | * EHCI spec version 1.0 Section 2.3 | |
404 | * Host Controller Operational Registers | |
405 | */ | |
3e4f910c | 406 | uint8_t caps[OPREGBASE]; |
94527ead | 407 | union { |
3e4f910c | 408 | uint32_t opreg[(PORTSC_BEGIN-OPREGBASE)/sizeof(uint32_t)]; |
94527ead | 409 | struct { |
94527ead GH |
410 | uint32_t usbcmd; |
411 | uint32_t usbsts; | |
412 | uint32_t usbintr; | |
413 | uint32_t frindex; | |
414 | uint32_t ctrldssegment; | |
415 | uint32_t periodiclistbase; | |
416 | uint32_t asynclistaddr; | |
417 | uint32_t notused[9]; | |
418 | uint32_t configflag; | |
94527ead GH |
419 | }; |
420 | }; | |
3e4f910c | 421 | uint32_t portsc[NB_PORTS]; |
0122f472 | 422 | |
94527ead GH |
423 | /* |
424 | * Internal states, shadow registers, etc | |
425 | */ | |
94527ead | 426 | QEMUTimer *frame_timer; |
0fb3e299 | 427 | QEMUBH *async_bh; |
9a773408 GH |
428 | uint32_t astate; /* Current state in asynchronous schedule */ |
429 | uint32_t pstate; /* Current state in periodic schedule */ | |
94527ead | 430 | USBPort ports[NB_PORTS]; |
a0a3167a | 431 | USBPort *companion_ports[NB_PORTS]; |
94527ead | 432 | uint32_t usbsts_pending; |
7efc17af | 433 | uint32_t usbsts_frindex; |
df5d5c5c HG |
434 | EHCIQueueHead aqueues; |
435 | EHCIQueueHead pqueues; | |
94527ead | 436 | |
9a773408 GH |
437 | /* which address to look at next */ |
438 | uint32_t a_fetch_addr; | |
439 | uint32_t p_fetch_addr; | |
94527ead | 440 | |
0122f472 | 441 | USBPacket ipacket; |
0ce668bc | 442 | QEMUSGList isgl; |
0122f472 | 443 | |
adddecb1 | 444 | uint64_t last_run_ns; |
3a215326 | 445 | uint32_t async_stepdown; |
44272b0f | 446 | bool int_req_by_async; |
0122f472 | 447 | }; |
94527ead GH |
448 | |
449 | #define SET_LAST_RUN_CLOCK(s) \ | |
adddecb1 | 450 | (s)->last_run_ns = qemu_get_clock_ns(vm_clock); |
94527ead GH |
451 | |
452 | /* nifty macros from Arnon's EHCI version */ | |
453 | #define get_field(data, field) \ | |
454 | (((data) & field##_MASK) >> field##_SH) | |
455 | ||
456 | #define set_field(data, newval, field) do { \ | |
457 | uint32_t val = *data; \ | |
458 | val &= ~ field##_MASK; \ | |
459 | val |= ((newval) << field##_SH) & field##_MASK; \ | |
460 | *data = val; \ | |
461 | } while(0) | |
462 | ||
26d53979 | 463 | static const char *ehci_state_names[] = { |
aac882e7 GH |
464 | [EST_INACTIVE] = "INACTIVE", |
465 | [EST_ACTIVE] = "ACTIVE", | |
466 | [EST_EXECUTING] = "EXECUTING", | |
467 | [EST_SLEEPING] = "SLEEPING", | |
468 | [EST_WAITLISTHEAD] = "WAITLISTHEAD", | |
469 | [EST_FETCHENTRY] = "FETCH ENTRY", | |
470 | [EST_FETCHQH] = "FETCH QH", | |
471 | [EST_FETCHITD] = "FETCH ITD", | |
472 | [EST_ADVANCEQUEUE] = "ADVANCEQUEUE", | |
473 | [EST_FETCHQTD] = "FETCH QTD", | |
474 | [EST_EXECUTE] = "EXECUTE", | |
475 | [EST_WRITEBACK] = "WRITEBACK", | |
476 | [EST_HORIZONTALQH] = "HORIZONTALQH", | |
26d53979 GH |
477 | }; |
478 | ||
479 | static const char *ehci_mmio_names[] = { | |
aac882e7 GH |
480 | [USBCMD] = "USBCMD", |
481 | [USBSTS] = "USBSTS", | |
482 | [USBINTR] = "USBINTR", | |
483 | [FRINDEX] = "FRINDEX", | |
484 | [PERIODICLISTBASE] = "P-LIST BASE", | |
485 | [ASYNCLISTADDR] = "A-LIST ADDR", | |
aac882e7 | 486 | [CONFIGFLAG] = "CONFIGFLAG", |
26d53979 | 487 | }; |
94527ead | 488 | |
4b63a0df HG |
489 | static int ehci_state_executing(EHCIQueue *q); |
490 | static int ehci_state_writeback(EHCIQueue *q); | |
491 | ||
26d53979 | 492 | static const char *nr2str(const char **n, size_t len, uint32_t nr) |
94527ead | 493 | { |
26d53979 GH |
494 | if (nr < len && n[nr] != NULL) { |
495 | return n[nr]; | |
94527ead | 496 | } else { |
26d53979 | 497 | return "unknown"; |
94527ead GH |
498 | } |
499 | } | |
94527ead | 500 | |
26d53979 GH |
501 | static const char *state2str(uint32_t state) |
502 | { | |
503 | return nr2str(ehci_state_names, ARRAY_SIZE(ehci_state_names), state); | |
504 | } | |
505 | ||
a8170e5e | 506 | static const char *addr2str(hwaddr addr) |
26d53979 | 507 | { |
3e4f910c GH |
508 | return nr2str(ehci_mmio_names, ARRAY_SIZE(ehci_mmio_names), |
509 | addr + OPREGBASE); | |
26d53979 GH |
510 | } |
511 | ||
439a97cc GH |
512 | static void ehci_trace_usbsts(uint32_t mask, int state) |
513 | { | |
514 | /* interrupts */ | |
515 | if (mask & USBSTS_INT) { | |
516 | trace_usb_ehci_usbsts("INT", state); | |
517 | } | |
518 | if (mask & USBSTS_ERRINT) { | |
519 | trace_usb_ehci_usbsts("ERRINT", state); | |
520 | } | |
521 | if (mask & USBSTS_PCD) { | |
522 | trace_usb_ehci_usbsts("PCD", state); | |
523 | } | |
524 | if (mask & USBSTS_FLR) { | |
525 | trace_usb_ehci_usbsts("FLR", state); | |
526 | } | |
527 | if (mask & USBSTS_HSE) { | |
528 | trace_usb_ehci_usbsts("HSE", state); | |
529 | } | |
530 | if (mask & USBSTS_IAA) { | |
531 | trace_usb_ehci_usbsts("IAA", state); | |
532 | } | |
533 | ||
534 | /* status */ | |
535 | if (mask & USBSTS_HALT) { | |
536 | trace_usb_ehci_usbsts("HALT", state); | |
537 | } | |
538 | if (mask & USBSTS_REC) { | |
539 | trace_usb_ehci_usbsts("REC", state); | |
540 | } | |
541 | if (mask & USBSTS_PSS) { | |
542 | trace_usb_ehci_usbsts("PSS", state); | |
543 | } | |
544 | if (mask & USBSTS_ASS) { | |
545 | trace_usb_ehci_usbsts("ASS", state); | |
546 | } | |
547 | } | |
548 | ||
549 | static inline void ehci_set_usbsts(EHCIState *s, int mask) | |
550 | { | |
551 | if ((s->usbsts & mask) == mask) { | |
552 | return; | |
553 | } | |
554 | ehci_trace_usbsts(mask, 1); | |
555 | s->usbsts |= mask; | |
556 | } | |
557 | ||
558 | static inline void ehci_clear_usbsts(EHCIState *s, int mask) | |
559 | { | |
560 | if ((s->usbsts & mask) == 0) { | |
561 | return; | |
562 | } | |
563 | ehci_trace_usbsts(mask, 0); | |
564 | s->usbsts &= ~mask; | |
565 | } | |
94527ead | 566 | |
7efc17af GH |
567 | /* update irq line */ |
568 | static inline void ehci_update_irq(EHCIState *s) | |
94527ead GH |
569 | { |
570 | int level = 0; | |
571 | ||
94527ead GH |
572 | if ((s->usbsts & USBINTR_MASK) & s->usbintr) { |
573 | level = 1; | |
574 | } | |
575 | ||
7efc17af | 576 | trace_usb_ehci_irq(level, s->frindex, s->usbsts, s->usbintr); |
94527ead GH |
577 | qemu_set_irq(s->irq, level); |
578 | } | |
579 | ||
7efc17af GH |
580 | /* flag interrupt condition */ |
581 | static inline void ehci_raise_irq(EHCIState *s, int intr) | |
94527ead | 582 | { |
6d3b6d3d GH |
583 | if (intr & (USBSTS_PCD | USBSTS_FLR | USBSTS_HSE)) { |
584 | s->usbsts |= intr; | |
585 | ehci_update_irq(s); | |
586 | } else { | |
587 | s->usbsts_pending |= intr; | |
588 | } | |
94527ead GH |
589 | } |
590 | ||
7efc17af GH |
591 | /* |
592 | * Commit pending interrupts (added via ehci_raise_irq), | |
593 | * at the rate allowed by "Interrupt Threshold Control". | |
594 | */ | |
595 | static inline void ehci_commit_irq(EHCIState *s) | |
94527ead | 596 | { |
7efc17af GH |
597 | uint32_t itc; |
598 | ||
94527ead GH |
599 | if (!s->usbsts_pending) { |
600 | return; | |
601 | } | |
7efc17af GH |
602 | if (s->usbsts_frindex > s->frindex) { |
603 | return; | |
604 | } | |
605 | ||
606 | itc = (s->usbcmd >> 16) & 0xff; | |
607 | s->usbsts |= s->usbsts_pending; | |
94527ead | 608 | s->usbsts_pending = 0; |
7efc17af GH |
609 | s->usbsts_frindex = s->frindex + itc; |
610 | ehci_update_irq(s); | |
94527ead GH |
611 | } |
612 | ||
daf25307 GH |
613 | static void ehci_update_halt(EHCIState *s) |
614 | { | |
615 | if (s->usbcmd & USBCMD_RUNSTOP) { | |
616 | ehci_clear_usbsts(s, USBSTS_HALT); | |
617 | } else { | |
618 | if (s->astate == EST_INACTIVE && s->pstate == EST_INACTIVE) { | |
619 | ehci_set_usbsts(s, USBSTS_HALT); | |
620 | } | |
621 | } | |
622 | } | |
623 | ||
26d53979 GH |
624 | static void ehci_set_state(EHCIState *s, int async, int state) |
625 | { | |
626 | if (async) { | |
627 | trace_usb_ehci_state("async", state2str(state)); | |
628 | s->astate = state; | |
b53f685d GH |
629 | if (s->astate == EST_INACTIVE) { |
630 | ehci_clear_usbsts(s, USBSTS_ASS); | |
daf25307 | 631 | ehci_update_halt(s); |
b53f685d GH |
632 | } else { |
633 | ehci_set_usbsts(s, USBSTS_ASS); | |
634 | } | |
26d53979 GH |
635 | } else { |
636 | trace_usb_ehci_state("periodic", state2str(state)); | |
637 | s->pstate = state; | |
b53f685d GH |
638 | if (s->pstate == EST_INACTIVE) { |
639 | ehci_clear_usbsts(s, USBSTS_PSS); | |
daf25307 | 640 | ehci_update_halt(s); |
b53f685d GH |
641 | } else { |
642 | ehci_set_usbsts(s, USBSTS_PSS); | |
643 | } | |
26d53979 GH |
644 | } |
645 | } | |
646 | ||
647 | static int ehci_get_state(EHCIState *s, int async) | |
648 | { | |
649 | return async ? s->astate : s->pstate; | |
650 | } | |
651 | ||
0122f472 GH |
652 | static void ehci_set_fetch_addr(EHCIState *s, int async, uint32_t addr) |
653 | { | |
654 | if (async) { | |
655 | s->a_fetch_addr = addr; | |
656 | } else { | |
657 | s->p_fetch_addr = addr; | |
658 | } | |
659 | } | |
660 | ||
661 | static int ehci_get_fetch_addr(EHCIState *s, int async) | |
662 | { | |
663 | return async ? s->a_fetch_addr : s->p_fetch_addr; | |
664 | } | |
665 | ||
a8170e5e | 666 | static void ehci_trace_qh(EHCIQueue *q, hwaddr addr, EHCIqh *qh) |
26d53979 | 667 | { |
025b168c GH |
668 | /* need three here due to argument count limits */ |
669 | trace_usb_ehci_qh_ptrs(q, addr, qh->next, | |
670 | qh->current_qtd, qh->next_qtd, qh->altnext_qtd); | |
671 | trace_usb_ehci_qh_fields(addr, | |
672 | get_field(qh->epchar, QH_EPCHAR_RL), | |
673 | get_field(qh->epchar, QH_EPCHAR_MPLEN), | |
674 | get_field(qh->epchar, QH_EPCHAR_EPS), | |
675 | get_field(qh->epchar, QH_EPCHAR_EP), | |
676 | get_field(qh->epchar, QH_EPCHAR_DEVADDR)); | |
677 | trace_usb_ehci_qh_bits(addr, | |
678 | (bool)(qh->epchar & QH_EPCHAR_C), | |
679 | (bool)(qh->epchar & QH_EPCHAR_H), | |
680 | (bool)(qh->epchar & QH_EPCHAR_DTC), | |
681 | (bool)(qh->epchar & QH_EPCHAR_I)); | |
26d53979 GH |
682 | } |
683 | ||
a8170e5e | 684 | static void ehci_trace_qtd(EHCIQueue *q, hwaddr addr, EHCIqtd *qtd) |
26d53979 | 685 | { |
025b168c GH |
686 | /* need three here due to argument count limits */ |
687 | trace_usb_ehci_qtd_ptrs(q, addr, qtd->next, qtd->altnext); | |
688 | trace_usb_ehci_qtd_fields(addr, | |
689 | get_field(qtd->token, QTD_TOKEN_TBYTES), | |
690 | get_field(qtd->token, QTD_TOKEN_CPAGE), | |
691 | get_field(qtd->token, QTD_TOKEN_CERR), | |
692 | get_field(qtd->token, QTD_TOKEN_PID)); | |
693 | trace_usb_ehci_qtd_bits(addr, | |
694 | (bool)(qtd->token & QTD_TOKEN_IOC), | |
695 | (bool)(qtd->token & QTD_TOKEN_ACTIVE), | |
696 | (bool)(qtd->token & QTD_TOKEN_HALT), | |
697 | (bool)(qtd->token & QTD_TOKEN_BABBLE), | |
698 | (bool)(qtd->token & QTD_TOKEN_XACTERR)); | |
26d53979 GH |
699 | } |
700 | ||
a8170e5e | 701 | static void ehci_trace_itd(EHCIState *s, hwaddr addr, EHCIitd *itd) |
26d53979 | 702 | { |
e654887f GH |
703 | trace_usb_ehci_itd(addr, itd->next, |
704 | get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT), | |
705 | get_field(itd->bufptr[2], ITD_BUFPTR_MULT), | |
706 | get_field(itd->bufptr[0], ITD_BUFPTR_EP), | |
707 | get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR)); | |
26d53979 GH |
708 | } |
709 | ||
a8170e5e | 710 | static void ehci_trace_sitd(EHCIState *s, hwaddr addr, |
2fe80192 GH |
711 | EHCIsitd *sitd) |
712 | { | |
713 | trace_usb_ehci_sitd(addr, sitd->next, | |
714 | (bool)(sitd->results & SITD_RESULTS_ACTIVE)); | |
715 | } | |
716 | ||
5c514681 GH |
717 | static void ehci_trace_guest_bug(EHCIState *s, const char *message) |
718 | { | |
719 | trace_usb_ehci_guest_bug(message); | |
720 | fprintf(stderr, "ehci warning: %s\n", message); | |
721 | } | |
722 | ||
ec807d12 GH |
723 | static inline bool ehci_enabled(EHCIState *s) |
724 | { | |
725 | return s->usbcmd & USBCMD_RUNSTOP; | |
726 | } | |
727 | ||
728 | static inline bool ehci_async_enabled(EHCIState *s) | |
729 | { | |
730 | return ehci_enabled(s) && (s->usbcmd & USBCMD_ASE); | |
731 | } | |
732 | ||
733 | static inline bool ehci_periodic_enabled(EHCIState *s) | |
734 | { | |
735 | return ehci_enabled(s) && (s->usbcmd & USBCMD_PSE); | |
736 | } | |
737 | ||
eb36a88e GH |
738 | /* packet management */ |
739 | ||
740 | static EHCIPacket *ehci_alloc_packet(EHCIQueue *q) | |
741 | { | |
742 | EHCIPacket *p; | |
743 | ||
eb36a88e GH |
744 | p = g_new0(EHCIPacket, 1); |
745 | p->queue = q; | |
746 | usb_packet_init(&p->packet); | |
747 | QTAILQ_INSERT_TAIL(&q->packets, p, next); | |
748 | trace_usb_ehci_packet_action(p->queue, p, "alloc"); | |
749 | return p; | |
750 | } | |
751 | ||
752 | static void ehci_free_packet(EHCIPacket *p) | |
753 | { | |
4b63a0df HG |
754 | if (p->async == EHCI_ASYNC_FINISHED) { |
755 | int state = ehci_get_state(p->queue->ehci, p->queue->async); | |
756 | /* This is a normal, but rare condition (cancel racing completion) */ | |
757 | fprintf(stderr, "EHCI: Warning packet completed but not processed\n"); | |
758 | ehci_state_executing(p->queue); | |
759 | ehci_state_writeback(p->queue); | |
760 | ehci_set_state(p->queue->ehci, p->queue->async, state); | |
761 | /* state_writeback recurses into us with async == EHCI_ASYNC_NONE!! */ | |
762 | return; | |
763 | } | |
616789cd | 764 | trace_usb_ehci_packet_action(p->queue, p, "free"); |
ef5b2344 HG |
765 | if (p->async == EHCI_ASYNC_INITIALIZED) { |
766 | usb_packet_unmap(&p->packet, &p->sgl); | |
767 | qemu_sglist_destroy(&p->sgl); | |
768 | } | |
616789cd GH |
769 | if (p->async == EHCI_ASYNC_INFLIGHT) { |
770 | usb_cancel_packet(&p->packet); | |
771 | usb_packet_unmap(&p->packet, &p->sgl); | |
772 | qemu_sglist_destroy(&p->sgl); | |
773 | } | |
eb36a88e GH |
774 | QTAILQ_REMOVE(&p->queue->packets, p, next); |
775 | usb_packet_cleanup(&p->packet); | |
776 | g_free(p); | |
777 | } | |
778 | ||
8ac6d699 GH |
779 | /* queue management */ |
780 | ||
8f6d5e26 | 781 | static EHCIQueue *ehci_alloc_queue(EHCIState *ehci, uint32_t addr, int async) |
8ac6d699 | 782 | { |
df5d5c5c | 783 | EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues; |
8ac6d699 GH |
784 | EHCIQueue *q; |
785 | ||
7267c094 | 786 | q = g_malloc0(sizeof(*q)); |
8ac6d699 | 787 | q->ehci = ehci; |
8f6d5e26 | 788 | q->qhaddr = addr; |
ae0138a8 | 789 | q->async = async; |
eb36a88e | 790 | QTAILQ_INIT(&q->packets); |
df5d5c5c | 791 | QTAILQ_INSERT_HEAD(head, q, next); |
8ac6d699 GH |
792 | trace_usb_ehci_queue_action(q, "alloc"); |
793 | return q; | |
794 | } | |
795 | ||
5c514681 | 796 | static int ehci_cancel_queue(EHCIQueue *q) |
c7cdca3b GH |
797 | { |
798 | EHCIPacket *p; | |
5c514681 | 799 | int packets = 0; |
c7cdca3b GH |
800 | |
801 | p = QTAILQ_FIRST(&q->packets); | |
802 | if (p == NULL) { | |
5c514681 | 803 | return 0; |
c7cdca3b GH |
804 | } |
805 | ||
806 | trace_usb_ehci_queue_action(q, "cancel"); | |
807 | do { | |
808 | ehci_free_packet(p); | |
5c514681 | 809 | packets++; |
c7cdca3b | 810 | } while ((p = QTAILQ_FIRST(&q->packets)) != NULL); |
5c514681 | 811 | return packets; |
c7cdca3b GH |
812 | } |
813 | ||
5c514681 | 814 | static int ehci_reset_queue(EHCIQueue *q) |
dafe31fc | 815 | { |
5c514681 GH |
816 | int packets; |
817 | ||
dafe31fc | 818 | trace_usb_ehci_queue_action(q, "reset"); |
5c514681 | 819 | packets = ehci_cancel_queue(q); |
dafe31fc HG |
820 | q->dev = NULL; |
821 | q->qtdaddr = 0; | |
5c514681 | 822 | return packets; |
dafe31fc HG |
823 | } |
824 | ||
3a8ca08e | 825 | static void ehci_free_queue(EHCIQueue *q, const char *warn) |
8ac6d699 | 826 | { |
ae0138a8 | 827 | EHCIQueueHead *head = q->async ? &q->ehci->aqueues : &q->ehci->pqueues; |
3a8ca08e | 828 | int cancelled; |
eb36a88e | 829 | |
8ac6d699 | 830 | trace_usb_ehci_queue_action(q, "free"); |
3a8ca08e HG |
831 | cancelled = ehci_cancel_queue(q); |
832 | if (warn && cancelled > 0) { | |
833 | ehci_trace_guest_bug(q->ehci, warn); | |
834 | } | |
df5d5c5c | 835 | QTAILQ_REMOVE(head, q, next); |
7267c094 | 836 | g_free(q); |
8ac6d699 GH |
837 | } |
838 | ||
df5d5c5c HG |
839 | static EHCIQueue *ehci_find_queue_by_qh(EHCIState *ehci, uint32_t addr, |
840 | int async) | |
8ac6d699 | 841 | { |
df5d5c5c | 842 | EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues; |
8ac6d699 GH |
843 | EHCIQueue *q; |
844 | ||
df5d5c5c | 845 | QTAILQ_FOREACH(q, head, next) { |
8ac6d699 GH |
846 | if (addr == q->qhaddr) { |
847 | return q; | |
848 | } | |
849 | } | |
850 | return NULL; | |
851 | } | |
852 | ||
8f5457eb | 853 | static void ehci_queues_rip_unused(EHCIState *ehci, int async) |
8ac6d699 | 854 | { |
df5d5c5c | 855 | EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues; |
8f5457eb | 856 | const char *warn = async ? "guest unlinked busy QH" : NULL; |
3a215326 | 857 | uint64_t maxage = FRAME_TIMER_NS * ehci->maxframes * 4; |
8ac6d699 GH |
858 | EHCIQueue *q, *tmp; |
859 | ||
df5d5c5c | 860 | QTAILQ_FOREACH_SAFE(q, head, next, tmp) { |
8ac6d699 GH |
861 | if (q->seen) { |
862 | q->seen = 0; | |
adddecb1 | 863 | q->ts = ehci->last_run_ns; |
8ac6d699 GH |
864 | continue; |
865 | } | |
8f5457eb | 866 | if (ehci->last_run_ns < q->ts + maxage) { |
8ac6d699 GH |
867 | continue; |
868 | } | |
3a8ca08e | 869 | ehci_free_queue(q, warn); |
8ac6d699 GH |
870 | } |
871 | } | |
872 | ||
8f5457eb HG |
873 | static void ehci_queues_rip_unseen(EHCIState *ehci, int async) |
874 | { | |
875 | EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues; | |
876 | EHCIQueue *q, *tmp; | |
877 | ||
878 | QTAILQ_FOREACH_SAFE(q, head, next, tmp) { | |
879 | if (!q->seen) { | |
880 | ehci_free_queue(q, NULL); | |
881 | } | |
882 | } | |
883 | } | |
884 | ||
df5d5c5c | 885 | static void ehci_queues_rip_device(EHCIState *ehci, USBDevice *dev, int async) |
07771f6f | 886 | { |
df5d5c5c | 887 | EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues; |
07771f6f GH |
888 | EHCIQueue *q, *tmp; |
889 | ||
df5d5c5c | 890 | QTAILQ_FOREACH_SAFE(q, head, next, tmp) { |
e59928b3 | 891 | if (q->dev != dev) { |
07771f6f GH |
892 | continue; |
893 | } | |
3a8ca08e | 894 | ehci_free_queue(q, NULL); |
07771f6f GH |
895 | } |
896 | } | |
897 | ||
df5d5c5c | 898 | static void ehci_queues_rip_all(EHCIState *ehci, int async) |
8ac6d699 | 899 | { |
df5d5c5c | 900 | EHCIQueueHead *head = async ? &ehci->aqueues : &ehci->pqueues; |
3a8ca08e | 901 | const char *warn = async ? "guest stopped busy async schedule" : NULL; |
8ac6d699 GH |
902 | EHCIQueue *q, *tmp; |
903 | ||
df5d5c5c | 904 | QTAILQ_FOREACH_SAFE(q, head, next, tmp) { |
3a8ca08e | 905 | ehci_free_queue(q, warn); |
8ac6d699 GH |
906 | } |
907 | } | |
908 | ||
94527ead GH |
909 | /* Attach or detach a device on root hub */ |
910 | ||
911 | static void ehci_attach(USBPort *port) | |
912 | { | |
913 | EHCIState *s = port->opaque; | |
914 | uint32_t *portsc = &s->portsc[port->index]; | |
30e9d412 | 915 | const char *owner = (*portsc & PORTSC_POWNER) ? "comp" : "ehci"; |
94527ead | 916 | |
30e9d412 | 917 | trace_usb_ehci_port_attach(port->index, owner, port->dev->product_desc); |
94527ead | 918 | |
a0a3167a HG |
919 | if (*portsc & PORTSC_POWNER) { |
920 | USBPort *companion = s->companion_ports[port->index]; | |
921 | companion->dev = port->dev; | |
922 | companion->ops->attach(companion); | |
923 | return; | |
924 | } | |
925 | ||
94527ead GH |
926 | *portsc |= PORTSC_CONNECT; |
927 | *portsc |= PORTSC_CSC; | |
928 | ||
7efc17af GH |
929 | ehci_raise_irq(s, USBSTS_PCD); |
930 | ehci_commit_irq(s); | |
94527ead GH |
931 | } |
932 | ||
933 | static void ehci_detach(USBPort *port) | |
934 | { | |
935 | EHCIState *s = port->opaque; | |
936 | uint32_t *portsc = &s->portsc[port->index]; | |
30e9d412 | 937 | const char *owner = (*portsc & PORTSC_POWNER) ? "comp" : "ehci"; |
94527ead | 938 | |
30e9d412 | 939 | trace_usb_ehci_port_detach(port->index, owner); |
94527ead | 940 | |
a0a3167a HG |
941 | if (*portsc & PORTSC_POWNER) { |
942 | USBPort *companion = s->companion_ports[port->index]; | |
943 | companion->ops->detach(companion); | |
944 | companion->dev = NULL; | |
f76e1d81 HG |
945 | /* |
946 | * EHCI spec 4.2.2: "When a disconnect occurs... On the event, | |
947 | * the port ownership is returned immediately to the EHCI controller." | |
948 | */ | |
949 | *portsc &= ~PORTSC_POWNER; | |
a0a3167a HG |
950 | return; |
951 | } | |
952 | ||
df5d5c5c HG |
953 | ehci_queues_rip_device(s, port->dev, 0); |
954 | ehci_queues_rip_device(s, port->dev, 1); | |
4706ab6c | 955 | |
fbd97532 | 956 | *portsc &= ~(PORTSC_CONNECT|PORTSC_PED); |
94527ead GH |
957 | *portsc |= PORTSC_CSC; |
958 | ||
7efc17af GH |
959 | ehci_raise_irq(s, USBSTS_PCD); |
960 | ehci_commit_irq(s); | |
94527ead GH |
961 | } |
962 | ||
4706ab6c HG |
963 | static void ehci_child_detach(USBPort *port, USBDevice *child) |
964 | { | |
965 | EHCIState *s = port->opaque; | |
a0a3167a HG |
966 | uint32_t portsc = s->portsc[port->index]; |
967 | ||
968 | if (portsc & PORTSC_POWNER) { | |
969 | USBPort *companion = s->companion_ports[port->index]; | |
970 | companion->ops->child_detach(companion, child); | |
a0a3167a HG |
971 | return; |
972 | } | |
4706ab6c | 973 | |
df5d5c5c HG |
974 | ehci_queues_rip_device(s, child, 0); |
975 | ehci_queues_rip_device(s, child, 1); | |
4706ab6c HG |
976 | } |
977 | ||
a0a3167a HG |
978 | static void ehci_wakeup(USBPort *port) |
979 | { | |
980 | EHCIState *s = port->opaque; | |
981 | uint32_t portsc = s->portsc[port->index]; | |
982 | ||
983 | if (portsc & PORTSC_POWNER) { | |
984 | USBPort *companion = s->companion_ports[port->index]; | |
985 | if (companion->ops->wakeup) { | |
986 | companion->ops->wakeup(companion); | |
987 | } | |
37952117 | 988 | return; |
a0a3167a | 989 | } |
37952117 HG |
990 | |
991 | qemu_bh_schedule(s->async_bh); | |
a0a3167a HG |
992 | } |
993 | ||
994 | static int ehci_register_companion(USBBus *bus, USBPort *ports[], | |
995 | uint32_t portcount, uint32_t firstport) | |
996 | { | |
997 | EHCIState *s = container_of(bus, EHCIState, bus); | |
998 | uint32_t i; | |
999 | ||
1000 | if (firstport + portcount > NB_PORTS) { | |
1001 | qerror_report(QERR_INVALID_PARAMETER_VALUE, "firstport", | |
1002 | "firstport on masterbus"); | |
1003 | error_printf_unless_qmp( | |
1004 | "firstport value of %u makes companion take ports %u - %u, which " | |
1005 | "is outside of the valid range of 0 - %u\n", firstport, firstport, | |
1006 | firstport + portcount - 1, NB_PORTS - 1); | |
1007 | return -1; | |
1008 | } | |
1009 | ||
1010 | for (i = 0; i < portcount; i++) { | |
1011 | if (s->companion_ports[firstport + i]) { | |
1012 | qerror_report(QERR_INVALID_PARAMETER_VALUE, "masterbus", | |
1013 | "an USB masterbus"); | |
1014 | error_printf_unless_qmp( | |
1015 | "port %u on masterbus %s already has a companion assigned\n", | |
1016 | firstport + i, bus->qbus.name); | |
1017 | return -1; | |
1018 | } | |
1019 | } | |
1020 | ||
1021 | for (i = 0; i < portcount; i++) { | |
1022 | s->companion_ports[firstport + i] = ports[i]; | |
1023 | s->ports[firstport + i].speedmask |= | |
1024 | USB_SPEED_MASK_LOW | USB_SPEED_MASK_FULL; | |
1025 | /* Ensure devs attached before the initial reset go to the companion */ | |
1026 | s->portsc[firstport + i] = PORTSC_POWNER; | |
1027 | } | |
1028 | ||
1029 | s->companion_count++; | |
3e4f910c | 1030 | s->caps[0x05] = (s->companion_count << 4) | portcount; |
a0a3167a HG |
1031 | |
1032 | return 0; | |
1033 | } | |
1034 | ||
828143c6 GH |
1035 | static USBDevice *ehci_find_device(EHCIState *ehci, uint8_t addr) |
1036 | { | |
1037 | USBDevice *dev; | |
1038 | USBPort *port; | |
1039 | int i; | |
1040 | ||
1041 | for (i = 0; i < NB_PORTS; i++) { | |
1042 | port = &ehci->ports[i]; | |
1043 | if (!(ehci->portsc[i] & PORTSC_PED)) { | |
1044 | DPRINTF("Port %d not enabled\n", i); | |
1045 | continue; | |
1046 | } | |
1047 | dev = usb_find_device(port, addr); | |
1048 | if (dev != NULL) { | |
1049 | return dev; | |
1050 | } | |
1051 | } | |
1052 | return NULL; | |
1053 | } | |
1054 | ||
94527ead GH |
1055 | /* 4.1 host controller initialization */ |
1056 | static void ehci_reset(void *opaque) | |
1057 | { | |
1058 | EHCIState *s = opaque; | |
94527ead | 1059 | int i; |
a0a3167a | 1060 | USBDevice *devs[NB_PORTS]; |
94527ead | 1061 | |
439a97cc | 1062 | trace_usb_ehci_reset(); |
94527ead | 1063 | |
a0a3167a HG |
1064 | /* |
1065 | * Do the detach before touching portsc, so that it correctly gets send to | |
1066 | * us or to our companion based on PORTSC_POWNER before the reset. | |
1067 | */ | |
1068 | for(i = 0; i < NB_PORTS; i++) { | |
1069 | devs[i] = s->ports[i].dev; | |
891fb2cd GH |
1070 | if (devs[i] && devs[i]->attached) { |
1071 | usb_detach(&s->ports[i]); | |
a0a3167a HG |
1072 | } |
1073 | } | |
1074 | ||
3e4f910c GH |
1075 | memset(&s->opreg, 0x00, sizeof(s->opreg)); |
1076 | memset(&s->portsc, 0x00, sizeof(s->portsc)); | |
94527ead GH |
1077 | |
1078 | s->usbcmd = NB_MAXINTRATE << USBCMD_ITC_SH; | |
1079 | s->usbsts = USBSTS_HALT; | |
7efc17af GH |
1080 | s->usbsts_pending = 0; |
1081 | s->usbsts_frindex = 0; | |
94527ead GH |
1082 | |
1083 | s->astate = EST_INACTIVE; | |
1084 | s->pstate = EST_INACTIVE; | |
94527ead GH |
1085 | |
1086 | for(i = 0; i < NB_PORTS; i++) { | |
a0a3167a HG |
1087 | if (s->companion_ports[i]) { |
1088 | s->portsc[i] = PORTSC_POWNER | PORTSC_PPOWER; | |
1089 | } else { | |
1090 | s->portsc[i] = PORTSC_PPOWER; | |
1091 | } | |
891fb2cd GH |
1092 | if (devs[i] && devs[i]->attached) { |
1093 | usb_attach(&s->ports[i]); | |
d28f4e2d | 1094 | usb_device_reset(devs[i]); |
94527ead GH |
1095 | } |
1096 | } | |
df5d5c5c HG |
1097 | ehci_queues_rip_all(s, 0); |
1098 | ehci_queues_rip_all(s, 1); | |
81d37739 | 1099 | qemu_del_timer(s->frame_timer); |
0fb3e299 | 1100 | qemu_bh_cancel(s->async_bh); |
94527ead GH |
1101 | } |
1102 | ||
a8170e5e | 1103 | static uint64_t ehci_caps_read(void *ptr, hwaddr addr, |
3e4f910c | 1104 | unsigned size) |
94527ead GH |
1105 | { |
1106 | EHCIState *s = ptr; | |
3e4f910c | 1107 | return s->caps[addr]; |
94527ead GH |
1108 | } |
1109 | ||
a8170e5e | 1110 | static uint64_t ehci_opreg_read(void *ptr, hwaddr addr, |
3e4f910c | 1111 | unsigned size) |
94527ead GH |
1112 | { |
1113 | EHCIState *s = ptr; | |
1114 | uint32_t val; | |
1115 | ||
3e4f910c GH |
1116 | val = s->opreg[addr >> 2]; |
1117 | trace_usb_ehci_opreg_read(addr + OPREGBASE, addr2str(addr), val); | |
94527ead GH |
1118 | return val; |
1119 | } | |
1120 | ||
a8170e5e | 1121 | static uint64_t ehci_port_read(void *ptr, hwaddr addr, |
3e4f910c | 1122 | unsigned size) |
94527ead GH |
1123 | { |
1124 | EHCIState *s = ptr; | |
1125 | uint32_t val; | |
1126 | ||
3e4f910c GH |
1127 | val = s->portsc[addr >> 2]; |
1128 | trace_usb_ehci_portsc_read(addr + PORTSC_BEGIN, addr >> 2, val); | |
94527ead GH |
1129 | return val; |
1130 | } | |
1131 | ||
a0a3167a HG |
1132 | static void handle_port_owner_write(EHCIState *s, int port, uint32_t owner) |
1133 | { | |
1134 | USBDevice *dev = s->ports[port].dev; | |
1135 | uint32_t *portsc = &s->portsc[port]; | |
1136 | uint32_t orig; | |
1137 | ||
1138 | if (s->companion_ports[port] == NULL) | |
1139 | return; | |
1140 | ||
1141 | owner = owner & PORTSC_POWNER; | |
1142 | orig = *portsc & PORTSC_POWNER; | |
1143 | ||
1144 | if (!(owner ^ orig)) { | |
1145 | return; | |
1146 | } | |
1147 | ||
891fb2cd GH |
1148 | if (dev && dev->attached) { |
1149 | usb_detach(&s->ports[port]); | |
a0a3167a HG |
1150 | } |
1151 | ||
1152 | *portsc &= ~PORTSC_POWNER; | |
1153 | *portsc |= owner; | |
1154 | ||
891fb2cd GH |
1155 | if (dev && dev->attached) { |
1156 | usb_attach(&s->ports[port]); | |
a0a3167a HG |
1157 | } |
1158 | } | |
1159 | ||
a8170e5e | 1160 | static void ehci_port_write(void *ptr, hwaddr addr, |
3e4f910c | 1161 | uint64_t val, unsigned size) |
94527ead | 1162 | { |
3e4f910c GH |
1163 | EHCIState *s = ptr; |
1164 | int port = addr >> 2; | |
94527ead | 1165 | uint32_t *portsc = &s->portsc[port]; |
3e4f910c | 1166 | uint32_t old = *portsc; |
94527ead GH |
1167 | USBDevice *dev = s->ports[port].dev; |
1168 | ||
3e4f910c GH |
1169 | trace_usb_ehci_portsc_write(addr + PORTSC_BEGIN, addr >> 2, val); |
1170 | ||
fbd97532 HG |
1171 | /* Clear rwc bits */ |
1172 | *portsc &= ~(val & PORTSC_RWC_MASK); | |
1173 | /* The guest may clear, but not set the PED bit */ | |
1174 | *portsc &= val | ~PORTSC_PED; | |
a0a3167a HG |
1175 | /* POWNER is masked out by RO_MASK as it is RO when we've no companion */ |
1176 | handle_port_owner_write(s, port, val); | |
1177 | /* And finally apply RO_MASK */ | |
94527ead GH |
1178 | val &= PORTSC_RO_MASK; |
1179 | ||
94527ead | 1180 | if ((val & PORTSC_PRESET) && !(*portsc & PORTSC_PRESET)) { |
dcbd0b5c | 1181 | trace_usb_ehci_port_reset(port, 1); |
94527ead GH |
1182 | } |
1183 | ||
1184 | if (!(val & PORTSC_PRESET) &&(*portsc & PORTSC_PRESET)) { | |
dcbd0b5c | 1185 | trace_usb_ehci_port_reset(port, 0); |
891fb2cd | 1186 | if (dev && dev->attached) { |
d28f4e2d | 1187 | usb_port_reset(&s->ports[port]); |
94527ead GH |
1188 | *portsc &= ~PORTSC_CSC; |
1189 | } | |
1190 | ||
fbd97532 HG |
1191 | /* |
1192 | * Table 2.16 Set the enable bit(and enable bit change) to indicate | |
94527ead | 1193 | * to SW that this port has a high speed device attached |
94527ead | 1194 | */ |
891fb2cd | 1195 | if (dev && dev->attached && (dev->speedmask & USB_SPEED_MASK_HIGH)) { |
fbd97532 HG |
1196 | val |= PORTSC_PED; |
1197 | } | |
94527ead GH |
1198 | } |
1199 | ||
1200 | *portsc &= ~PORTSC_RO_MASK; | |
1201 | *portsc |= val; | |
3e4f910c | 1202 | trace_usb_ehci_portsc_change(addr + PORTSC_BEGIN, addr >> 2, *portsc, old); |
94527ead GH |
1203 | } |
1204 | ||
a8170e5e | 1205 | static void ehci_opreg_write(void *ptr, hwaddr addr, |
3e4f910c | 1206 | uint64_t val, unsigned size) |
94527ead GH |
1207 | { |
1208 | EHCIState *s = ptr; | |
3e4f910c | 1209 | uint32_t *mmio = s->opreg + (addr >> 2); |
c4f8e211 | 1210 | uint32_t old = *mmio; |
94527ead | 1211 | int i; |
439a97cc | 1212 | |
3e4f910c | 1213 | trace_usb_ehci_opreg_write(addr + OPREGBASE, addr2str(addr), val); |
94527ead | 1214 | |
3e4f910c | 1215 | switch (addr + OPREGBASE) { |
94527ead | 1216 | case USBCMD: |
7046530c GH |
1217 | if (val & USBCMD_HCRESET) { |
1218 | ehci_reset(s); | |
1219 | val = s->usbcmd; | |
1220 | break; | |
1221 | } | |
1222 | ||
47d073cc HG |
1223 | /* not supporting dynamic frame list size at the moment */ |
1224 | if ((val & USBCMD_FLS) && !(s->usbcmd & USBCMD_FLS)) { | |
1225 | fprintf(stderr, "attempt to set frame list size -- value %d\n", | |
3e4f910c | 1226 | (int)val & USBCMD_FLS); |
47d073cc HG |
1227 | val &= ~USBCMD_FLS; |
1228 | } | |
1229 | ||
a1c3e4b8 HG |
1230 | if (val & USBCMD_IAAD) { |
1231 | /* | |
1232 | * Process IAAD immediately, otherwise the Linux IAAD watchdog may | |
1233 | * trigger and re-use a qh without us seeing the unlink. | |
1234 | */ | |
1235 | s->async_stepdown = 0; | |
1236 | qemu_bh_schedule(s->async_bh); | |
1defcbd1 | 1237 | trace_usb_ehci_doorbell_ring(); |
a1c3e4b8 HG |
1238 | } |
1239 | ||
daf25307 GH |
1240 | if (((USBCMD_RUNSTOP | USBCMD_PSE | USBCMD_ASE) & val) != |
1241 | ((USBCMD_RUNSTOP | USBCMD_PSE | USBCMD_ASE) & s->usbcmd)) { | |
3a215326 | 1242 | if (s->pstate == EST_INACTIVE) { |
daf25307 GH |
1243 | SET_LAST_RUN_CLOCK(s); |
1244 | } | |
47d073cc | 1245 | s->usbcmd = val; /* Set usbcmd for ehci_update_halt() */ |
daf25307 | 1246 | ehci_update_halt(s); |
3a215326 | 1247 | s->async_stepdown = 0; |
0262f65a | 1248 | qemu_bh_schedule(s->async_bh); |
94527ead | 1249 | } |
94527ead GH |
1250 | break; |
1251 | ||
94527ead | 1252 | case USBSTS: |
a31f0531 JM |
1253 | val &= USBSTS_RO_MASK; // bits 6 through 31 are RO |
1254 | ehci_clear_usbsts(s, val); // bits 0 through 5 are R/WC | |
439a97cc | 1255 | val = s->usbsts; |
7efc17af | 1256 | ehci_update_irq(s); |
94527ead GH |
1257 | break; |
1258 | ||
94527ead GH |
1259 | case USBINTR: |
1260 | val &= USBINTR_MASK; | |
94527ead GH |
1261 | break; |
1262 | ||
8a771f77 HG |
1263 | case FRINDEX: |
1264 | val &= 0x00003ff8; /* frindex is 14bits and always a multiple of 8 */ | |
1265 | break; | |
1266 | ||
94527ead | 1267 | case CONFIGFLAG: |
94527ead GH |
1268 | val &= 0x1; |
1269 | if (val) { | |
1270 | for(i = 0; i < NB_PORTS; i++) | |
a0a3167a | 1271 | handle_port_owner_write(s, i, 0); |
94527ead GH |
1272 | } |
1273 | break; | |
1274 | ||
1275 | case PERIODICLISTBASE: | |
ec807d12 | 1276 | if (ehci_periodic_enabled(s)) { |
94527ead GH |
1277 | fprintf(stderr, |
1278 | "ehci: PERIODIC list base register set while periodic schedule\n" | |
1279 | " is enabled and HC is enabled\n"); | |
1280 | } | |
94527ead GH |
1281 | break; |
1282 | ||
1283 | case ASYNCLISTADDR: | |
ec807d12 | 1284 | if (ehci_async_enabled(s)) { |
94527ead GH |
1285 | fprintf(stderr, |
1286 | "ehci: ASYNC list address register set while async schedule\n" | |
1287 | " is enabled and HC is enabled\n"); | |
1288 | } | |
94527ead GH |
1289 | break; |
1290 | } | |
1291 | ||
c4f8e211 | 1292 | *mmio = val; |
3e4f910c | 1293 | trace_usb_ehci_opreg_change(addr + OPREGBASE, addr2str(addr), *mmio, old); |
94527ead GH |
1294 | } |
1295 | ||
1296 | ||
1297 | // TODO : Put in common header file, duplication from usb-ohci.c | |
1298 | ||
1299 | /* Get an array of dwords from main memory */ | |
68d55358 DG |
1300 | static inline int get_dwords(EHCIState *ehci, uint32_t addr, |
1301 | uint32_t *buf, int num) | |
94527ead GH |
1302 | { |
1303 | int i; | |
1304 | ||
1305 | for(i = 0; i < num; i++, buf++, addr += sizeof(*buf)) { | |
4bf80119 | 1306 | pci_dma_read(&ehci->dev, addr, buf, sizeof(*buf)); |
94527ead GH |
1307 | *buf = le32_to_cpu(*buf); |
1308 | } | |
1309 | ||
1310 | return 1; | |
1311 | } | |
1312 | ||
1313 | /* Put an array of dwords in to main memory */ | |
68d55358 DG |
1314 | static inline int put_dwords(EHCIState *ehci, uint32_t addr, |
1315 | uint32_t *buf, int num) | |
94527ead GH |
1316 | { |
1317 | int i; | |
1318 | ||
1319 | for(i = 0; i < num; i++, buf++, addr += sizeof(*buf)) { | |
1320 | uint32_t tmp = cpu_to_le32(*buf); | |
4bf80119 | 1321 | pci_dma_write(&ehci->dev, addr, &tmp, sizeof(tmp)); |
94527ead GH |
1322 | } |
1323 | ||
1324 | return 1; | |
1325 | } | |
1326 | ||
a5e0139a GH |
1327 | /* |
1328 | * Write the qh back to guest physical memory. This step isn't | |
1329 | * in the EHCI spec but we need to do it since we don't share | |
1330 | * physical memory with our guest VM. | |
1331 | * | |
1332 | * The first three dwords are read-only for the EHCI, so skip them | |
1333 | * when writing back the qh. | |
1334 | */ | |
1335 | static void ehci_flush_qh(EHCIQueue *q) | |
1336 | { | |
1337 | uint32_t *qh = (uint32_t *) &q->qh; | |
1338 | uint32_t dwords = sizeof(EHCIqh) >> 2; | |
1339 | uint32_t addr = NLPTR_GET(q->qhaddr); | |
1340 | ||
1341 | put_dwords(q->ehci, addr + 3 * sizeof(uint32_t), qh + 3, dwords - 3); | |
1342 | } | |
1343 | ||
94527ead GH |
1344 | // 4.10.2 |
1345 | ||
0122f472 | 1346 | static int ehci_qh_do_overlay(EHCIQueue *q) |
94527ead | 1347 | { |
eb36a88e | 1348 | EHCIPacket *p = QTAILQ_FIRST(&q->packets); |
94527ead GH |
1349 | int i; |
1350 | int dtoggle; | |
1351 | int ping; | |
1352 | int eps; | |
1353 | int reload; | |
1354 | ||
eb36a88e GH |
1355 | assert(p != NULL); |
1356 | assert(p->qtdaddr == q->qtdaddr); | |
1357 | ||
94527ead GH |
1358 | // remember values in fields to preserve in qh after overlay |
1359 | ||
0122f472 GH |
1360 | dtoggle = q->qh.token & QTD_TOKEN_DTOGGLE; |
1361 | ping = q->qh.token & QTD_TOKEN_PING; | |
94527ead | 1362 | |
eb36a88e GH |
1363 | q->qh.current_qtd = p->qtdaddr; |
1364 | q->qh.next_qtd = p->qtd.next; | |
1365 | q->qh.altnext_qtd = p->qtd.altnext; | |
1366 | q->qh.token = p->qtd.token; | |
94527ead GH |
1367 | |
1368 | ||
0122f472 | 1369 | eps = get_field(q->qh.epchar, QH_EPCHAR_EPS); |
94527ead | 1370 | if (eps == EHCI_QH_EPS_HIGH) { |
0122f472 GH |
1371 | q->qh.token &= ~QTD_TOKEN_PING; |
1372 | q->qh.token |= ping; | |
94527ead GH |
1373 | } |
1374 | ||
0122f472 GH |
1375 | reload = get_field(q->qh.epchar, QH_EPCHAR_RL); |
1376 | set_field(&q->qh.altnext_qtd, reload, QH_ALTNEXT_NAKCNT); | |
94527ead GH |
1377 | |
1378 | for (i = 0; i < 5; i++) { | |
eb36a88e | 1379 | q->qh.bufptr[i] = p->qtd.bufptr[i]; |
94527ead GH |
1380 | } |
1381 | ||
0122f472 | 1382 | if (!(q->qh.epchar & QH_EPCHAR_DTC)) { |
94527ead | 1383 | // preserve QH DT bit |
0122f472 GH |
1384 | q->qh.token &= ~QTD_TOKEN_DTOGGLE; |
1385 | q->qh.token |= dtoggle; | |
94527ead GH |
1386 | } |
1387 | ||
0122f472 GH |
1388 | q->qh.bufptr[1] &= ~BUFPTR_CPROGMASK_MASK; |
1389 | q->qh.bufptr[2] &= ~BUFPTR_FRAMETAG_MASK; | |
94527ead | 1390 | |
a5e0139a | 1391 | ehci_flush_qh(q); |
94527ead GH |
1392 | |
1393 | return 0; | |
1394 | } | |
1395 | ||
eb36a88e | 1396 | static int ehci_init_transfer(EHCIPacket *p) |
94527ead | 1397 | { |
0ce668bc | 1398 | uint32_t cpage, offset, bytes, plen; |
68d55358 | 1399 | dma_addr_t page; |
94527ead | 1400 | |
eb36a88e GH |
1401 | cpage = get_field(p->qtd.token, QTD_TOKEN_CPAGE); |
1402 | bytes = get_field(p->qtd.token, QTD_TOKEN_TBYTES); | |
1403 | offset = p->qtd.bufptr[0] & ~QTD_BUFPTR_MASK; | |
1404 | pci_dma_sglist_init(&p->sgl, &p->queue->ehci->dev, 5); | |
94527ead | 1405 | |
0ce668bc GH |
1406 | while (bytes > 0) { |
1407 | if (cpage > 4) { | |
1408 | fprintf(stderr, "cpage out of range (%d)\n", cpage); | |
1409 | return USB_RET_PROCERR; | |
1410 | } | |
94527ead | 1411 | |
eb36a88e | 1412 | page = p->qtd.bufptr[cpage] & QTD_BUFPTR_MASK; |
0ce668bc GH |
1413 | page += offset; |
1414 | plen = bytes; | |
1415 | if (plen > 4096 - offset) { | |
1416 | plen = 4096 - offset; | |
1417 | offset = 0; | |
1418 | cpage++; | |
94527ead GH |
1419 | } |
1420 | ||
eb36a88e | 1421 | qemu_sglist_add(&p->sgl, page, plen); |
0ce668bc GH |
1422 | bytes -= plen; |
1423 | } | |
1424 | return 0; | |
1425 | } | |
94527ead | 1426 | |
0ce668bc GH |
1427 | static void ehci_finish_transfer(EHCIQueue *q, int status) |
1428 | { | |
1429 | uint32_t cpage, offset; | |
94527ead | 1430 | |
0ce668bc GH |
1431 | if (status > 0) { |
1432 | /* update cpage & offset */ | |
1433 | cpage = get_field(q->qh.token, QTD_TOKEN_CPAGE); | |
1434 | offset = q->qh.bufptr[0] & ~QTD_BUFPTR_MASK; | |
94527ead | 1435 | |
0ce668bc GH |
1436 | offset += status; |
1437 | cpage += offset >> QTD_BUFPTR_SH; | |
1438 | offset &= ~QTD_BUFPTR_MASK; | |
94527ead | 1439 | |
0ce668bc GH |
1440 | set_field(&q->qh.token, cpage, QTD_TOKEN_CPAGE); |
1441 | q->qh.bufptr[0] &= QTD_BUFPTR_MASK; | |
1442 | q->qh.bufptr[0] |= offset; | |
1443 | } | |
94527ead GH |
1444 | } |
1445 | ||
d47e59b8 | 1446 | static void ehci_async_complete_packet(USBPort *port, USBPacket *packet) |
94527ead | 1447 | { |
eb36a88e | 1448 | EHCIPacket *p; |
a0a3167a HG |
1449 | EHCIState *s = port->opaque; |
1450 | uint32_t portsc = s->portsc[port->index]; | |
1451 | ||
1452 | if (portsc & PORTSC_POWNER) { | |
1453 | USBPort *companion = s->companion_ports[port->index]; | |
1454 | companion->ops->complete(companion, packet); | |
1455 | return; | |
1456 | } | |
94527ead | 1457 | |
eb36a88e GH |
1458 | p = container_of(packet, EHCIPacket, packet); |
1459 | trace_usb_ehci_packet_action(p->queue, p, "wakeup"); | |
1460 | assert(p->async == EHCI_ASYNC_INFLIGHT); | |
1461 | p->async = EHCI_ASYNC_FINISHED; | |
1462 | p->usb_status = packet->result; | |
ae710b99 GH |
1463 | |
1464 | if (p->queue->async) { | |
1465 | qemu_bh_schedule(p->queue->ehci->async_bh); | |
1466 | } | |
94527ead GH |
1467 | } |
1468 | ||
0122f472 | 1469 | static void ehci_execute_complete(EHCIQueue *q) |
94527ead | 1470 | { |
eb36a88e GH |
1471 | EHCIPacket *p = QTAILQ_FIRST(&q->packets); |
1472 | ||
1473 | assert(p != NULL); | |
1474 | assert(p->qtdaddr == q->qtdaddr); | |
ef5b2344 HG |
1475 | assert(p->async == EHCI_ASYNC_INITIALIZED || |
1476 | p->async == EHCI_ASYNC_FINISHED); | |
94527ead GH |
1477 | |
1478 | DPRINTF("execute_complete: qhaddr 0x%x, next %x, qtdaddr 0x%x, status %d\n", | |
0122f472 | 1479 | q->qhaddr, q->qh.next, q->qtdaddr, q->usb_status); |
94527ead | 1480 | |
eb36a88e GH |
1481 | if (p->usb_status < 0) { |
1482 | switch (p->usb_status) { | |
d61000a8 | 1483 | case USB_RET_IOERROR: |
94527ead | 1484 | case USB_RET_NODEV: |
d2bd525f | 1485 | q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_XACTERR); |
dd54cfe0 | 1486 | set_field(&q->qh.token, 0, QTD_TOKEN_CERR); |
7efc17af | 1487 | ehci_raise_irq(q->ehci, USBSTS_ERRINT); |
94527ead GH |
1488 | break; |
1489 | case USB_RET_STALL: | |
0122f472 | 1490 | q->qh.token |= QTD_TOKEN_HALT; |
7efc17af | 1491 | ehci_raise_irq(q->ehci, USBSTS_ERRINT); |
94527ead GH |
1492 | break; |
1493 | case USB_RET_NAK: | |
553a6a59 HG |
1494 | set_field(&q->qh.altnext_qtd, 0, QH_ALTNEXT_NAKCNT); |
1495 | return; /* We're not done yet with this transaction */ | |
94527ead | 1496 | case USB_RET_BABBLE: |
d2bd525f | 1497 | q->qh.token |= (QTD_TOKEN_HALT | QTD_TOKEN_BABBLE); |
7efc17af | 1498 | ehci_raise_irq(q->ehci, USBSTS_ERRINT); |
94527ead GH |
1499 | break; |
1500 | default: | |
0122f472 | 1501 | /* should not be triggerable */ |
eb36a88e | 1502 | fprintf(stderr, "USB invalid response %d\n", p->usb_status); |
0122f472 | 1503 | assert(0); |
94527ead GH |
1504 | break; |
1505 | } | |
1506 | } else { | |
94527ead | 1507 | // TODO check 4.12 for splits |
549a3c3d | 1508 | uint32_t tbytes = get_field(q->qh.token, QTD_TOKEN_TBYTES); |
94527ead | 1509 | |
549a3c3d HG |
1510 | if (tbytes && p->pid == USB_TOKEN_IN) { |
1511 | tbytes -= p->usb_status; | |
cf08a8a1 HG |
1512 | if (tbytes) { |
1513 | /* 4.15.1.2 must raise int on a short input packet */ | |
1514 | ehci_raise_irq(q->ehci, USBSTS_INT); | |
1515 | } | |
94527ead | 1516 | } else { |
549a3c3d | 1517 | tbytes = 0; |
94527ead GH |
1518 | } |
1519 | ||
549a3c3d HG |
1520 | DPRINTF("updating tbytes to %d\n", tbytes); |
1521 | set_field(&q->qh.token, tbytes, QTD_TOKEN_TBYTES); | |
94527ead | 1522 | } |
eb36a88e | 1523 | ehci_finish_transfer(q, p->usb_status); |
e2f89926 | 1524 | usb_packet_unmap(&p->packet, &p->sgl); |
eb36a88e | 1525 | qemu_sglist_destroy(&p->sgl); |
ef5b2344 | 1526 | p->async = EHCI_ASYNC_NONE; |
94527ead | 1527 | |
0122f472 GH |
1528 | q->qh.token ^= QTD_TOKEN_DTOGGLE; |
1529 | q->qh.token &= ~QTD_TOKEN_ACTIVE; | |
94527ead | 1530 | |
553a6a59 | 1531 | if (q->qh.token & QTD_TOKEN_IOC) { |
7efc17af | 1532 | ehci_raise_irq(q->ehci, USBSTS_INT); |
44272b0f HG |
1533 | if (q->async) { |
1534 | q->ehci->int_req_by_async = true; | |
1535 | } | |
94527ead | 1536 | } |
94527ead GH |
1537 | } |
1538 | ||
1539 | // 4.10.3 | |
1540 | ||
773dc9cd | 1541 | static int ehci_execute(EHCIPacket *p, const char *action) |
94527ead | 1542 | { |
079d0b7f | 1543 | USBEndpoint *ep; |
94527ead | 1544 | int ret; |
94527ead | 1545 | int endp; |
94527ead | 1546 | |
ef5b2344 HG |
1547 | assert(p->async == EHCI_ASYNC_NONE || |
1548 | p->async == EHCI_ASYNC_INITIALIZED); | |
1549 | ||
4224558f GH |
1550 | if (!(p->qtd.token & QTD_TOKEN_ACTIVE)) { |
1551 | fprintf(stderr, "Attempting to execute inactive qtd\n"); | |
94527ead GH |
1552 | return USB_RET_PROCERR; |
1553 | } | |
1554 | ||
549a3c3d | 1555 | if (get_field(p->qtd.token, QTD_TOKEN_TBYTES) > BUFF_SIZE) { |
3a8ca08e HG |
1556 | ehci_trace_guest_bug(p->queue->ehci, |
1557 | "guest requested more bytes than allowed"); | |
94527ead GH |
1558 | return USB_RET_PROCERR; |
1559 | } | |
1560 | ||
4224558f | 1561 | p->pid = (p->qtd.token & QTD_TOKEN_PID_MASK) >> QTD_TOKEN_PID_SH; |
eb36a88e GH |
1562 | switch (p->pid) { |
1563 | case 0: | |
1564 | p->pid = USB_TOKEN_OUT; | |
1565 | break; | |
1566 | case 1: | |
1567 | p->pid = USB_TOKEN_IN; | |
1568 | break; | |
1569 | case 2: | |
1570 | p->pid = USB_TOKEN_SETUP; | |
1571 | break; | |
1572 | default: | |
1573 | fprintf(stderr, "bad token\n"); | |
1574 | break; | |
94527ead GH |
1575 | } |
1576 | ||
4224558f | 1577 | endp = get_field(p->queue->qh.epchar, QH_EPCHAR_EP); |
e59928b3 | 1578 | ep = usb_ep_get(p->queue->dev, p->pid, endp); |
94527ead | 1579 | |
ef5b2344 HG |
1580 | if (p->async == EHCI_ASYNC_NONE) { |
1581 | if (ehci_init_transfer(p) != 0) { | |
1582 | return USB_RET_PROCERR; | |
1583 | } | |
1584 | ||
1585 | usb_packet_setup(&p->packet, p->pid, ep, p->qtdaddr); | |
1586 | usb_packet_map(&p->packet, &p->sgl); | |
1587 | p->async = EHCI_ASYNC_INITIALIZED; | |
1588 | } | |
0ce668bc | 1589 | |
773dc9cd | 1590 | trace_usb_ehci_packet_action(p->queue, p, action); |
e59928b3 | 1591 | ret = usb_handle_packet(p->queue->dev, &p->packet); |
549a3c3d | 1592 | DPRINTF("submit: qh %x next %x qtd %x pid %x len %zd endp %x ret %d\n", |
828143c6 | 1593 | q->qhaddr, q->qh.next, q->qtdaddr, q->pid, |
549a3c3d | 1594 | q->packet.iov.size, endp, ret); |
94527ead GH |
1595 | |
1596 | if (ret > BUFF_SIZE) { | |
1597 | fprintf(stderr, "ret from usb_handle_packet > BUFF_SIZE\n"); | |
1598 | return USB_RET_PROCERR; | |
1599 | } | |
1600 | ||
94527ead GH |
1601 | return ret; |
1602 | } | |
1603 | ||
1604 | /* 4.7.2 | |
1605 | */ | |
1606 | ||
1607 | static int ehci_process_itd(EHCIState *ehci, | |
e983395d GH |
1608 | EHCIitd *itd, |
1609 | uint32_t addr) | |
94527ead | 1610 | { |
94527ead | 1611 | USBDevice *dev; |
079d0b7f | 1612 | USBEndpoint *ep; |
94527ead | 1613 | int ret; |
828143c6 | 1614 | uint32_t i, len, pid, dir, devaddr, endp; |
e654887f | 1615 | uint32_t pg, off, ptr1, ptr2, max, mult; |
94527ead GH |
1616 | |
1617 | dir =(itd->bufptr[1] & ITD_BUFPTR_DIRECTION); | |
e654887f | 1618 | devaddr = get_field(itd->bufptr[0], ITD_BUFPTR_DEVADDR); |
94527ead | 1619 | endp = get_field(itd->bufptr[0], ITD_BUFPTR_EP); |
e654887f GH |
1620 | max = get_field(itd->bufptr[1], ITD_BUFPTR_MAXPKT); |
1621 | mult = get_field(itd->bufptr[2], ITD_BUFPTR_MULT); | |
94527ead GH |
1622 | |
1623 | for(i = 0; i < 8; i++) { | |
1624 | if (itd->transact[i] & ITD_XACT_ACTIVE) { | |
e654887f GH |
1625 | pg = get_field(itd->transact[i], ITD_XACT_PGSEL); |
1626 | off = itd->transact[i] & ITD_XACT_OFFSET_MASK; | |
1627 | ptr1 = (itd->bufptr[pg] & ITD_BUFPTR_MASK); | |
1628 | ptr2 = (itd->bufptr[pg+1] & ITD_BUFPTR_MASK); | |
1629 | len = get_field(itd->transact[i], ITD_XACT_LENGTH); | |
1630 | ||
1631 | if (len > max * mult) { | |
1632 | len = max * mult; | |
1633 | } | |
94527ead GH |
1634 | |
1635 | if (len > BUFF_SIZE) { | |
1636 | return USB_RET_PROCERR; | |
1637 | } | |
1638 | ||
68d55358 | 1639 | pci_dma_sglist_init(&ehci->isgl, &ehci->dev, 2); |
e654887f GH |
1640 | if (off + len > 4096) { |
1641 | /* transfer crosses page border */ | |
0ce668bc GH |
1642 | uint32_t len2 = off + len - 4096; |
1643 | uint32_t len1 = len - len2; | |
1644 | qemu_sglist_add(&ehci->isgl, ptr1 + off, len1); | |
1645 | qemu_sglist_add(&ehci->isgl, ptr2, len2); | |
e654887f | 1646 | } else { |
0ce668bc | 1647 | qemu_sglist_add(&ehci->isgl, ptr1 + off, len); |
e654887f | 1648 | } |
94527ead | 1649 | |
0ce668bc | 1650 | pid = dir ? USB_TOKEN_IN : USB_TOKEN_OUT; |
94527ead | 1651 | |
079d0b7f GH |
1652 | dev = ehci_find_device(ehci, devaddr); |
1653 | ep = usb_ep_get(dev, pid, endp); | |
7ce86aa1 | 1654 | if (ep && ep->type == USB_ENDPOINT_XFER_ISOC) { |
e983395d | 1655 | usb_packet_setup(&ehci->ipacket, pid, ep, addr); |
aa0568ff GH |
1656 | usb_packet_map(&ehci->ipacket, &ehci->isgl); |
1657 | ret = usb_handle_packet(dev, &ehci->ipacket); | |
1658 | assert(ret != USB_RET_ASYNC); | |
e2f89926 | 1659 | usb_packet_unmap(&ehci->ipacket, &ehci->isgl); |
aa0568ff GH |
1660 | } else { |
1661 | DPRINTF("ISOCH: attempt to addess non-iso endpoint\n"); | |
1662 | ret = USB_RET_NAK; | |
1663 | } | |
0ce668bc GH |
1664 | qemu_sglist_destroy(&ehci->isgl); |
1665 | ||
5eafd438 | 1666 | if (ret < 0) { |
df787185 HG |
1667 | switch (ret) { |
1668 | default: | |
1669 | fprintf(stderr, "Unexpected iso usb result: %d\n", ret); | |
1670 | /* Fall through */ | |
d61000a8 | 1671 | case USB_RET_IOERROR: |
df787185 HG |
1672 | case USB_RET_NODEV: |
1673 | /* 3.3.2: XACTERR is only allowed on IN transactions */ | |
1674 | if (dir) { | |
1675 | itd->transact[i] |= ITD_XACT_XACTERR; | |
7efc17af | 1676 | ehci_raise_irq(ehci, USBSTS_ERRINT); |
df787185 HG |
1677 | } |
1678 | break; | |
1679 | case USB_RET_BABBLE: | |
1680 | itd->transact[i] |= ITD_XACT_BABBLE; | |
7efc17af | 1681 | ehci_raise_irq(ehci, USBSTS_ERRINT); |
df787185 | 1682 | break; |
5eafd438 HG |
1683 | case USB_RET_NAK: |
1684 | /* no data for us, so do a zero-length transfer */ | |
1685 | ret = 0; | |
1686 | break; | |
1687 | } | |
1688 | } | |
1689 | if (ret >= 0) { | |
1690 | if (!dir) { | |
1691 | /* OUT */ | |
1692 | set_field(&itd->transact[i], len - ret, ITD_XACT_LENGTH); | |
1693 | } else { | |
1694 | /* IN */ | |
1695 | set_field(&itd->transact[i], ret, ITD_XACT_LENGTH); | |
94527ead GH |
1696 | } |
1697 | } | |
df787185 | 1698 | if (itd->transact[i] & ITD_XACT_IOC) { |
7efc17af | 1699 | ehci_raise_irq(ehci, USBSTS_INT); |
df787185 | 1700 | } |
e654887f | 1701 | itd->transact[i] &= ~ITD_XACT_ACTIVE; |
94527ead GH |
1702 | } |
1703 | } | |
1704 | return 0; | |
1705 | } | |
1706 | ||
cd665715 | 1707 | |
94527ead GH |
1708 | /* This state is the entry point for asynchronous schedule |
1709 | * processing. Entry here consitutes a EHCI start event state (4.8.5) | |
1710 | */ | |
26d53979 | 1711 | static int ehci_state_waitlisthead(EHCIState *ehci, int async) |
94527ead | 1712 | { |
0122f472 | 1713 | EHCIqh qh; |
94527ead GH |
1714 | int i = 0; |
1715 | int again = 0; | |
1716 | uint32_t entry = ehci->asynclistaddr; | |
1717 | ||
1718 | /* set reclamation flag at start event (4.8.6) */ | |
1719 | if (async) { | |
439a97cc | 1720 | ehci_set_usbsts(ehci, USBSTS_REC); |
94527ead GH |
1721 | } |
1722 | ||
8f5457eb | 1723 | ehci_queues_rip_unused(ehci, async); |
8ac6d699 | 1724 | |
94527ead GH |
1725 | /* Find the head of the list (4.9.1.1) */ |
1726 | for(i = 0; i < MAX_QH; i++) { | |
68d55358 DG |
1727 | get_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &qh, |
1728 | sizeof(EHCIqh) >> 2); | |
8ac6d699 | 1729 | ehci_trace_qh(NULL, NLPTR_GET(entry), &qh); |
94527ead | 1730 | |
0122f472 | 1731 | if (qh.epchar & QH_EPCHAR_H) { |
94527ead GH |
1732 | if (async) { |
1733 | entry |= (NLPTR_TYPE_QH << 1); | |
1734 | } | |
1735 | ||
0122f472 | 1736 | ehci_set_fetch_addr(ehci, async, entry); |
26d53979 | 1737 | ehci_set_state(ehci, async, EST_FETCHENTRY); |
94527ead GH |
1738 | again = 1; |
1739 | goto out; | |
1740 | } | |
1741 | ||
0122f472 | 1742 | entry = qh.next; |
94527ead | 1743 | if (entry == ehci->asynclistaddr) { |
94527ead GH |
1744 | break; |
1745 | } | |
1746 | } | |
1747 | ||
1748 | /* no head found for list. */ | |
1749 | ||
26d53979 | 1750 | ehci_set_state(ehci, async, EST_ACTIVE); |
94527ead GH |
1751 | |
1752 | out: | |
1753 | return again; | |
1754 | } | |
1755 | ||
1756 | ||
1757 | /* This state is the entry point for periodic schedule processing as | |
1758 | * well as being a continuation state for async processing. | |
1759 | */ | |
26d53979 | 1760 | static int ehci_state_fetchentry(EHCIState *ehci, int async) |
94527ead GH |
1761 | { |
1762 | int again = 0; | |
0122f472 | 1763 | uint32_t entry = ehci_get_fetch_addr(ehci, async); |
94527ead | 1764 | |
2a5ff735 | 1765 | if (NLPTR_TBIT(entry)) { |
26d53979 | 1766 | ehci_set_state(ehci, async, EST_ACTIVE); |
94527ead GH |
1767 | goto out; |
1768 | } | |
1769 | ||
1770 | /* section 4.8, only QH in async schedule */ | |
1771 | if (async && (NLPTR_TYPE_GET(entry) != NLPTR_TYPE_QH)) { | |
1772 | fprintf(stderr, "non queue head request in async schedule\n"); | |
1773 | return -1; | |
1774 | } | |
1775 | ||
1776 | switch (NLPTR_TYPE_GET(entry)) { | |
1777 | case NLPTR_TYPE_QH: | |
26d53979 | 1778 | ehci_set_state(ehci, async, EST_FETCHQH); |
94527ead GH |
1779 | again = 1; |
1780 | break; | |
1781 | ||
1782 | case NLPTR_TYPE_ITD: | |
26d53979 | 1783 | ehci_set_state(ehci, async, EST_FETCHITD); |
94527ead GH |
1784 | again = 1; |
1785 | break; | |
1786 | ||
2fe80192 GH |
1787 | case NLPTR_TYPE_STITD: |
1788 | ehci_set_state(ehci, async, EST_FETCHSITD); | |
1789 | again = 1; | |
1790 | break; | |
1791 | ||
94527ead | 1792 | default: |
2fe80192 | 1793 | /* TODO: handle FSTN type */ |
94527ead GH |
1794 | fprintf(stderr, "FETCHENTRY: entry at %X is of type %d " |
1795 | "which is not supported yet\n", entry, NLPTR_TYPE_GET(entry)); | |
1796 | return -1; | |
1797 | } | |
1798 | ||
1799 | out: | |
1800 | return again; | |
1801 | } | |
1802 | ||
0122f472 | 1803 | static EHCIQueue *ehci_state_fetchqh(EHCIState *ehci, int async) |
94527ead | 1804 | { |
eb36a88e | 1805 | EHCIPacket *p; |
dafe31fc | 1806 | uint32_t entry, devaddr, endp; |
0122f472 | 1807 | EHCIQueue *q; |
dafe31fc | 1808 | EHCIqh qh; |
94527ead | 1809 | |
0122f472 | 1810 | entry = ehci_get_fetch_addr(ehci, async); |
df5d5c5c | 1811 | q = ehci_find_queue_by_qh(ehci, entry, async); |
8ac6d699 | 1812 | if (NULL == q) { |
8f6d5e26 | 1813 | q = ehci_alloc_queue(ehci, entry, async); |
8ac6d699 | 1814 | } |
eb36a88e | 1815 | p = QTAILQ_FIRST(&q->packets); |
8ac6d699 | 1816 | |
8f6d5e26 | 1817 | q->seen++; |
8ac6d699 GH |
1818 | if (q->seen > 1) { |
1819 | /* we are going in circles -- stop processing */ | |
1820 | ehci_set_state(ehci, async, EST_ACTIVE); | |
1821 | q = NULL; | |
1822 | goto out; | |
1823 | } | |
94527ead | 1824 | |
68d55358 | 1825 | get_dwords(ehci, NLPTR_GET(q->qhaddr), |
dafe31fc HG |
1826 | (uint32_t *) &qh, sizeof(EHCIqh) >> 2); |
1827 | ehci_trace_qh(q, NLPTR_GET(q->qhaddr), &qh); | |
1828 | ||
1829 | /* | |
1830 | * The overlay area of the qh should never be changed by the guest, | |
1831 | * except when idle, in which case the reset is a nop. | |
1832 | */ | |
1833 | devaddr = get_field(qh.epchar, QH_EPCHAR_DEVADDR); | |
1834 | endp = get_field(qh.epchar, QH_EPCHAR_EP); | |
1835 | if ((devaddr != get_field(q->qh.epchar, QH_EPCHAR_DEVADDR)) || | |
1836 | (endp != get_field(q->qh.epchar, QH_EPCHAR_EP)) || | |
1837 | (memcmp(&qh.current_qtd, &q->qh.current_qtd, | |
1838 | 9 * sizeof(uint32_t)) != 0) || | |
1839 | (q->dev != NULL && q->dev->addr != devaddr)) { | |
5c514681 GH |
1840 | if (ehci_reset_queue(q) > 0) { |
1841 | ehci_trace_guest_bug(ehci, "guest updated active QH"); | |
1842 | } | |
dafe31fc HG |
1843 | p = NULL; |
1844 | } | |
1845 | q->qh = qh; | |
1846 | ||
cae5d3f4 HG |
1847 | q->transact_ctr = get_field(q->qh.epcap, QH_EPCAP_MULT); |
1848 | if (q->transact_ctr == 0) { /* Guest bug in some versions of windows */ | |
1849 | q->transact_ctr = 4; | |
1850 | } | |
1851 | ||
e59928b3 GH |
1852 | if (q->dev == NULL) { |
1853 | q->dev = ehci_find_device(q->ehci, devaddr); | |
1854 | } | |
1855 | ||
eb36a88e | 1856 | if (p && p->async == EHCI_ASYNC_FINISHED) { |
8ac6d699 | 1857 | /* I/O finished -- continue processing queue */ |
773dc9cd | 1858 | trace_usb_ehci_packet_action(p->queue, p, "complete"); |
8ac6d699 GH |
1859 | ehci_set_state(ehci, async, EST_EXECUTING); |
1860 | goto out; | |
1861 | } | |
0122f472 GH |
1862 | |
1863 | if (async && (q->qh.epchar & QH_EPCHAR_H)) { | |
94527ead GH |
1864 | |
1865 | /* EHCI spec version 1.0 Section 4.8.3 & 4.10.1 */ | |
1866 | if (ehci->usbsts & USBSTS_REC) { | |
439a97cc | 1867 | ehci_clear_usbsts(ehci, USBSTS_REC); |
94527ead GH |
1868 | } else { |
1869 | DPRINTF("FETCHQH: QH 0x%08x. H-bit set, reclamation status reset" | |
0122f472 | 1870 | " - done processing\n", q->qhaddr); |
26d53979 | 1871 | ehci_set_state(ehci, async, EST_ACTIVE); |
0122f472 | 1872 | q = NULL; |
94527ead GH |
1873 | goto out; |
1874 | } | |
1875 | } | |
1876 | ||
1877 | #if EHCI_DEBUG | |
0122f472 | 1878 | if (q->qhaddr != q->qh.next) { |
94527ead | 1879 | DPRINTF("FETCHQH: QH 0x%08x (h %x halt %x active %x) next 0x%08x\n", |
0122f472 GH |
1880 | q->qhaddr, |
1881 | q->qh.epchar & QH_EPCHAR_H, | |
1882 | q->qh.token & QTD_TOKEN_HALT, | |
1883 | q->qh.token & QTD_TOKEN_ACTIVE, | |
1884 | q->qh.next); | |
94527ead GH |
1885 | } |
1886 | #endif | |
1887 | ||
0122f472 | 1888 | if (q->qh.token & QTD_TOKEN_HALT) { |
26d53979 | 1889 | ehci_set_state(ehci, async, EST_HORIZONTALQH); |
94527ead | 1890 | |
2a5ff735 HG |
1891 | } else if ((q->qh.token & QTD_TOKEN_ACTIVE) && |
1892 | (NLPTR_TBIT(q->qh.current_qtd) == 0)) { | |
0122f472 | 1893 | q->qtdaddr = q->qh.current_qtd; |
26d53979 | 1894 | ehci_set_state(ehci, async, EST_FETCHQTD); |
94527ead GH |
1895 | |
1896 | } else { | |
1897 | /* EHCI spec version 1.0 Section 4.10.2 */ | |
26d53979 | 1898 | ehci_set_state(ehci, async, EST_ADVANCEQUEUE); |
94527ead GH |
1899 | } |
1900 | ||
1901 | out: | |
0122f472 | 1902 | return q; |
94527ead GH |
1903 | } |
1904 | ||
26d53979 | 1905 | static int ehci_state_fetchitd(EHCIState *ehci, int async) |
94527ead | 1906 | { |
0122f472 | 1907 | uint32_t entry; |
94527ead GH |
1908 | EHCIitd itd; |
1909 | ||
0122f472 GH |
1910 | assert(!async); |
1911 | entry = ehci_get_fetch_addr(ehci, async); | |
1912 | ||
68d55358 | 1913 | get_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &itd, |
94527ead | 1914 | sizeof(EHCIitd) >> 2); |
0122f472 | 1915 | ehci_trace_itd(ehci, entry, &itd); |
94527ead | 1916 | |
e983395d | 1917 | if (ehci_process_itd(ehci, &itd, entry) != 0) { |
94527ead GH |
1918 | return -1; |
1919 | } | |
1920 | ||
68d55358 DG |
1921 | put_dwords(ehci, NLPTR_GET(entry), (uint32_t *) &itd, |
1922 | sizeof(EHCIitd) >> 2); | |
0122f472 | 1923 | ehci_set_fetch_addr(ehci, async, itd.next); |
26d53979 | 1924 | ehci_set_state(ehci, async, EST_FETCHENTRY); |
94527ead GH |
1925 | |
1926 | return 1; | |
1927 | } | |
1928 | ||
2fe80192 GH |
1929 | static int ehci_state_fetchsitd(EHCIState *ehci, int async) |
1930 | { | |
1931 | uint32_t entry; | |
1932 | EHCIsitd sitd; | |
1933 | ||
1934 | assert(!async); | |
1935 | entry = ehci_get_fetch_addr(ehci, async); | |
1936 | ||
68d55358 | 1937 | get_dwords(ehci, NLPTR_GET(entry), (uint32_t *)&sitd, |
2fe80192 GH |
1938 | sizeof(EHCIsitd) >> 2); |
1939 | ehci_trace_sitd(ehci, entry, &sitd); | |
1940 | ||
1941 | if (!(sitd.results & SITD_RESULTS_ACTIVE)) { | |
1942 | /* siTD is not active, nothing to do */; | |
1943 | } else { | |
1944 | /* TODO: split transfers are not implemented */ | |
1945 | fprintf(stderr, "WARNING: Skipping active siTD\n"); | |
1946 | } | |
1947 | ||
1948 | ehci_set_fetch_addr(ehci, async, sitd.next); | |
1949 | ehci_set_state(ehci, async, EST_FETCHENTRY); | |
1950 | return 1; | |
1951 | } | |
1952 | ||
94527ead | 1953 | /* Section 4.10.2 - paragraph 3 */ |
ae0138a8 | 1954 | static int ehci_state_advqueue(EHCIQueue *q) |
94527ead GH |
1955 | { |
1956 | #if 0 | |
1957 | /* TO-DO: 4.10.2 - paragraph 2 | |
1958 | * if I-bit is set to 1 and QH is not active | |
1959 | * go to horizontal QH | |
1960 | */ | |
1961 | if (I-bit set) { | |
26d53979 | 1962 | ehci_set_state(ehci, async, EST_HORIZONTALQH); |
94527ead GH |
1963 | goto out; |
1964 | } | |
1965 | #endif | |
1966 | ||
1967 | /* | |
1968 | * want data and alt-next qTD is valid | |
1969 | */ | |
0122f472 | 1970 | if (((q->qh.token & QTD_TOKEN_TBYTES_MASK) != 0) && |
0122f472 GH |
1971 | (NLPTR_TBIT(q->qh.altnext_qtd) == 0)) { |
1972 | q->qtdaddr = q->qh.altnext_qtd; | |
ae0138a8 | 1973 | ehci_set_state(q->ehci, q->async, EST_FETCHQTD); |
94527ead GH |
1974 | |
1975 | /* | |
1976 | * next qTD is valid | |
1977 | */ | |
2a5ff735 | 1978 | } else if (NLPTR_TBIT(q->qh.next_qtd) == 0) { |
0122f472 | 1979 | q->qtdaddr = q->qh.next_qtd; |
ae0138a8 | 1980 | ehci_set_state(q->ehci, q->async, EST_FETCHQTD); |
94527ead GH |
1981 | |
1982 | /* | |
1983 | * no valid qTD, try next QH | |
1984 | */ | |
1985 | } else { | |
ae0138a8 | 1986 | ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH); |
94527ead GH |
1987 | } |
1988 | ||
1989 | return 1; | |
1990 | } | |
1991 | ||
1992 | /* Section 4.10.2 - paragraph 4 */ | |
ae0138a8 | 1993 | static int ehci_state_fetchqtd(EHCIQueue *q) |
94527ead | 1994 | { |
eb36a88e GH |
1995 | EHCIqtd qtd; |
1996 | EHCIPacket *p; | |
94527ead GH |
1997 | int again = 0; |
1998 | ||
eb36a88e | 1999 | get_dwords(q->ehci, NLPTR_GET(q->qtdaddr), (uint32_t *) &qtd, |
68d55358 | 2000 | sizeof(EHCIqtd) >> 2); |
eb36a88e | 2001 | ehci_trace_qtd(q, NLPTR_GET(q->qtdaddr), &qtd); |
94527ead | 2002 | |
773dc9cd | 2003 | p = QTAILQ_FIRST(&q->packets); |
773dc9cd | 2004 | if (p != NULL) { |
287fd3f1 GH |
2005 | if (p->qtdaddr != q->qtdaddr || |
2006 | (!NLPTR_TBIT(p->qtd.next) && (p->qtd.next != qtd.next)) || | |
2007 | (!NLPTR_TBIT(p->qtd.altnext) && (p->qtd.altnext != qtd.altnext)) || | |
2008 | p->qtd.bufptr[0] != qtd.bufptr[0]) { | |
287fd3f1 | 2009 | ehci_cancel_queue(q); |
5c514681 | 2010 | ehci_trace_guest_bug(q->ehci, "guest updated active QH or qTD"); |
287fd3f1 GH |
2011 | p = NULL; |
2012 | } else { | |
2013 | p->qtd = qtd; | |
2014 | ehci_qh_do_overlay(q); | |
2015 | } | |
2016 | } | |
2017 | ||
2018 | if (!(qtd.token & QTD_TOKEN_ACTIVE)) { | |
2019 | if (p != NULL) { | |
2020 | /* transfer canceled by guest (clear active) */ | |
2021 | ehci_cancel_queue(q); | |
2022 | p = NULL; | |
2023 | } | |
2024 | ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH); | |
2025 | again = 1; | |
2026 | } else if (p != NULL) { | |
adf47834 HG |
2027 | switch (p->async) { |
2028 | case EHCI_ASYNC_NONE: | |
ef5b2344 | 2029 | case EHCI_ASYNC_INITIALIZED: |
cae5d3f4 | 2030 | /* Not yet executed (MULT), or previously nacked (int) packet */ |
ef5b2344 HG |
2031 | ehci_set_state(q->ehci, q->async, EST_EXECUTE); |
2032 | break; | |
adf47834 | 2033 | case EHCI_ASYNC_INFLIGHT: |
ef5b2344 | 2034 | /* Unfinished async handled packet, go horizontal */ |
ae0138a8 | 2035 | ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH); |
adf47834 HG |
2036 | break; |
2037 | case EHCI_ASYNC_FINISHED: | |
cf1f8169 HG |
2038 | /* |
2039 | * We get here when advqueue moves to a packet which is already | |
2040 | * finished, which can happen with packets queued up by fill_queue | |
2041 | */ | |
ae0138a8 | 2042 | ehci_set_state(q->ehci, q->async, EST_EXECUTING); |
adf47834 | 2043 | break; |
773dc9cd GH |
2044 | } |
2045 | again = 1; | |
287fd3f1 | 2046 | } else { |
eb36a88e GH |
2047 | p = ehci_alloc_packet(q); |
2048 | p->qtdaddr = q->qtdaddr; | |
2049 | p->qtd = qtd; | |
ae0138a8 | 2050 | ehci_set_state(q->ehci, q->async, EST_EXECUTE); |
94527ead | 2051 | again = 1; |
94527ead GH |
2052 | } |
2053 | ||
2054 | return again; | |
2055 | } | |
2056 | ||
ae0138a8 | 2057 | static int ehci_state_horizqh(EHCIQueue *q) |
94527ead GH |
2058 | { |
2059 | int again = 0; | |
2060 | ||
ae0138a8 GH |
2061 | if (ehci_get_fetch_addr(q->ehci, q->async) != q->qh.next) { |
2062 | ehci_set_fetch_addr(q->ehci, q->async, q->qh.next); | |
2063 | ehci_set_state(q->ehci, q->async, EST_FETCHENTRY); | |
94527ead GH |
2064 | again = 1; |
2065 | } else { | |
ae0138a8 | 2066 | ehci_set_state(q->ehci, q->async, EST_ACTIVE); |
94527ead GH |
2067 | } |
2068 | ||
2069 | return again; | |
2070 | } | |
2071 | ||
eff6dce7 | 2072 | static int ehci_fill_queue(EHCIPacket *p) |
773dc9cd GH |
2073 | { |
2074 | EHCIQueue *q = p->queue; | |
2075 | EHCIqtd qtd = p->qtd; | |
e3a36bce | 2076 | uint32_t qtdaddr, start_addr = p->qtdaddr; |
773dc9cd GH |
2077 | |
2078 | for (;;) { | |
2079 | if (NLPTR_TBIT(qtd.altnext) == 0) { | |
2080 | break; | |
2081 | } | |
2082 | if (NLPTR_TBIT(qtd.next) != 0) { | |
2083 | break; | |
2084 | } | |
2085 | qtdaddr = qtd.next; | |
e3a36bce HG |
2086 | /* |
2087 | * Detect circular td lists, Windows creates these, counting on the | |
2088 | * active bit going low after execution to make the queue stop. | |
2089 | */ | |
2090 | if (qtdaddr == start_addr) { | |
2091 | break; | |
2092 | } | |
773dc9cd GH |
2093 | get_dwords(q->ehci, NLPTR_GET(qtdaddr), |
2094 | (uint32_t *) &qtd, sizeof(EHCIqtd) >> 2); | |
2095 | ehci_trace_qtd(q, NLPTR_GET(qtdaddr), &qtd); | |
2096 | if (!(qtd.token & QTD_TOKEN_ACTIVE)) { | |
2097 | break; | |
2098 | } | |
2099 | p = ehci_alloc_packet(q); | |
2100 | p->qtdaddr = qtdaddr; | |
2101 | p->qtd = qtd; | |
2102 | p->usb_status = ehci_execute(p, "queue"); | |
eff6dce7 HG |
2103 | if (p->usb_status == USB_RET_PROCERR) { |
2104 | break; | |
2105 | } | |
df6839c7 | 2106 | assert(p->usb_status == USB_RET_ASYNC); |
773dc9cd GH |
2107 | p->async = EHCI_ASYNC_INFLIGHT; |
2108 | } | |
eff6dce7 | 2109 | return p->usb_status; |
773dc9cd GH |
2110 | } |
2111 | ||
ae0138a8 | 2112 | static int ehci_state_execute(EHCIQueue *q) |
94527ead | 2113 | { |
eb36a88e | 2114 | EHCIPacket *p = QTAILQ_FIRST(&q->packets); |
94527ead | 2115 | int again = 0; |
94527ead | 2116 | |
eb36a88e GH |
2117 | assert(p != NULL); |
2118 | assert(p->qtdaddr == q->qtdaddr); | |
2119 | ||
0122f472 | 2120 | if (ehci_qh_do_overlay(q) != 0) { |
94527ead GH |
2121 | return -1; |
2122 | } | |
2123 | ||
94527ead GH |
2124 | // TODO verify enough time remains in the uframe as in 4.4.1.1 |
2125 | // TODO write back ptr to async list when done or out of time | |
94527ead | 2126 | |
cae5d3f4 HG |
2127 | /* 4.10.3, bottom of page 82, go horizontal on transaction counter == 0 */ |
2128 | if (!q->async && q->transact_ctr == 0) { | |
2129 | ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH); | |
2130 | again = 1; | |
2131 | goto out; | |
94527ead GH |
2132 | } |
2133 | ||
ae0138a8 | 2134 | if (q->async) { |
0122f472 | 2135 | ehci_set_usbsts(q->ehci, USBSTS_REC); |
94527ead GH |
2136 | } |
2137 | ||
773dc9cd | 2138 | p->usb_status = ehci_execute(p, "process"); |
eb36a88e | 2139 | if (p->usb_status == USB_RET_PROCERR) { |
94527ead GH |
2140 | again = -1; |
2141 | goto out; | |
2142 | } | |
eb36a88e | 2143 | if (p->usb_status == USB_RET_ASYNC) { |
8ac6d699 | 2144 | ehci_flush_qh(q); |
773dc9cd | 2145 | trace_usb_ehci_packet_action(p->queue, p, "async"); |
eb36a88e | 2146 | p->async = EHCI_ASYNC_INFLIGHT; |
ae0138a8 | 2147 | ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH); |
cae5d3f4 HG |
2148 | if (q->async) { |
2149 | again = (ehci_fill_queue(p) == USB_RET_PROCERR) ? -1 : 1; | |
2150 | } else { | |
2151 | again = 1; | |
2152 | } | |
8ac6d699 | 2153 | goto out; |
94527ead GH |
2154 | } |
2155 | ||
ae0138a8 | 2156 | ehci_set_state(q->ehci, q->async, EST_EXECUTING); |
8ac6d699 GH |
2157 | again = 1; |
2158 | ||
94527ead GH |
2159 | out: |
2160 | return again; | |
2161 | } | |
2162 | ||
ae0138a8 | 2163 | static int ehci_state_executing(EHCIQueue *q) |
94527ead | 2164 | { |
eb36a88e | 2165 | EHCIPacket *p = QTAILQ_FIRST(&q->packets); |
94527ead | 2166 | |
eb36a88e GH |
2167 | assert(p != NULL); |
2168 | assert(p->qtdaddr == q->qtdaddr); | |
2169 | ||
0122f472 | 2170 | ehci_execute_complete(q); |
94527ead | 2171 | |
cae5d3f4 HG |
2172 | /* 4.10.3 */ |
2173 | if (!q->async && q->transact_ctr > 0) { | |
2174 | q->transact_ctr--; | |
94527ead GH |
2175 | } |
2176 | ||
94527ead | 2177 | /* 4.10.5 */ |
eb36a88e | 2178 | if (p->usb_status == USB_RET_NAK) { |
ae0138a8 | 2179 | ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH); |
94527ead | 2180 | } else { |
ae0138a8 | 2181 | ehci_set_state(q->ehci, q->async, EST_WRITEBACK); |
94527ead GH |
2182 | } |
2183 | ||
8ac6d699 | 2184 | ehci_flush_qh(q); |
574ef171 | 2185 | return 1; |
94527ead GH |
2186 | } |
2187 | ||
2188 | ||
ae0138a8 | 2189 | static int ehci_state_writeback(EHCIQueue *q) |
94527ead | 2190 | { |
eb36a88e | 2191 | EHCIPacket *p = QTAILQ_FIRST(&q->packets); |
4ed1c57a | 2192 | uint32_t *qtd, addr; |
94527ead GH |
2193 | int again = 0; |
2194 | ||
2195 | /* Write back the QTD from the QH area */ | |
eb36a88e GH |
2196 | assert(p != NULL); |
2197 | assert(p->qtdaddr == q->qtdaddr); | |
2198 | ||
2199 | ehci_trace_qtd(q, NLPTR_GET(p->qtdaddr), (EHCIqtd *) &q->qh.next_qtd); | |
4ed1c57a GH |
2200 | qtd = (uint32_t *) &q->qh.next_qtd; |
2201 | addr = NLPTR_GET(p->qtdaddr); | |
2202 | put_dwords(q->ehci, addr + 2 * sizeof(uint32_t), qtd + 2, 2); | |
eb36a88e | 2203 | ehci_free_packet(p); |
94527ead | 2204 | |
d2bd525f GH |
2205 | /* |
2206 | * EHCI specs say go horizontal here. | |
2207 | * | |
2208 | * We can also advance the queue here for performance reasons. We | |
2209 | * need to take care to only take that shortcut in case we've | |
2210 | * processed the qtd just written back without errors, i.e. halt | |
2211 | * bit is clear. | |
94527ead | 2212 | */ |
d2bd525f | 2213 | if (q->qh.token & QTD_TOKEN_HALT) { |
0132b4b6 HG |
2214 | /* |
2215 | * We should not do any further processing on a halted queue! | |
2216 | * This is esp. important for bulk endpoints with pipelining enabled | |
2217 | * (redirection to a real USB device), where we must cancel all the | |
2218 | * transfers after this one so that: | |
2219 | * 1) If they've completed already, they are not processed further | |
2220 | * causing more stalls, originating from the same failed transfer | |
2221 | * 2) If still in flight, they are cancelled before the guest does | |
2222 | * a clear stall, otherwise the guest and device can loose sync! | |
2223 | */ | |
2224 | while ((p = QTAILQ_FIRST(&q->packets)) != NULL) { | |
2225 | ehci_free_packet(p); | |
2226 | } | |
ae0138a8 | 2227 | ehci_set_state(q->ehci, q->async, EST_HORIZONTALQH); |
d2bd525f GH |
2228 | again = 1; |
2229 | } else { | |
ae0138a8 | 2230 | ehci_set_state(q->ehci, q->async, EST_ADVANCEQUEUE); |
94527ead | 2231 | again = 1; |
d2bd525f | 2232 | } |
94527ead GH |
2233 | return again; |
2234 | } | |
2235 | ||
2236 | /* | |
2237 | * This is the state machine that is common to both async and periodic | |
2238 | */ | |
2239 | ||
ae0138a8 | 2240 | static void ehci_advance_state(EHCIState *ehci, int async) |
94527ead | 2241 | { |
0122f472 | 2242 | EHCIQueue *q = NULL; |
94527ead | 2243 | int again; |
94527ead GH |
2244 | |
2245 | do { | |
26d53979 | 2246 | switch(ehci_get_state(ehci, async)) { |
94527ead | 2247 | case EST_WAITLISTHEAD: |
26d53979 | 2248 | again = ehci_state_waitlisthead(ehci, async); |
94527ead GH |
2249 | break; |
2250 | ||
2251 | case EST_FETCHENTRY: | |
26d53979 | 2252 | again = ehci_state_fetchentry(ehci, async); |
94527ead GH |
2253 | break; |
2254 | ||
2255 | case EST_FETCHQH: | |
0122f472 | 2256 | q = ehci_state_fetchqh(ehci, async); |
ae0138a8 GH |
2257 | if (q != NULL) { |
2258 | assert(q->async == async); | |
2259 | again = 1; | |
2260 | } else { | |
2261 | again = 0; | |
2262 | } | |
94527ead GH |
2263 | break; |
2264 | ||
2265 | case EST_FETCHITD: | |
26d53979 | 2266 | again = ehci_state_fetchitd(ehci, async); |
94527ead GH |
2267 | break; |
2268 | ||
2fe80192 GH |
2269 | case EST_FETCHSITD: |
2270 | again = ehci_state_fetchsitd(ehci, async); | |
2271 | break; | |
2272 | ||
94527ead | 2273 | case EST_ADVANCEQUEUE: |
ae0138a8 | 2274 | again = ehci_state_advqueue(q); |
94527ead GH |
2275 | break; |
2276 | ||
2277 | case EST_FETCHQTD: | |
ae0138a8 | 2278 | again = ehci_state_fetchqtd(q); |
94527ead GH |
2279 | break; |
2280 | ||
2281 | case EST_HORIZONTALQH: | |
ae0138a8 | 2282 | again = ehci_state_horizqh(q); |
94527ead GH |
2283 | break; |
2284 | ||
2285 | case EST_EXECUTE: | |
ae0138a8 | 2286 | again = ehci_state_execute(q); |
3a215326 GH |
2287 | if (async) { |
2288 | ehci->async_stepdown = 0; | |
2289 | } | |
94527ead GH |
2290 | break; |
2291 | ||
2292 | case EST_EXECUTING: | |
8ac6d699 | 2293 | assert(q != NULL); |
3a215326 GH |
2294 | if (async) { |
2295 | ehci->async_stepdown = 0; | |
2296 | } | |
ae0138a8 | 2297 | again = ehci_state_executing(q); |
94527ead GH |
2298 | break; |
2299 | ||
2300 | case EST_WRITEBACK: | |
b2467216 | 2301 | assert(q != NULL); |
ae0138a8 | 2302 | again = ehci_state_writeback(q); |
94527ead GH |
2303 | break; |
2304 | ||
2305 | default: | |
2306 | fprintf(stderr, "Bad state!\n"); | |
2307 | again = -1; | |
8ac6d699 | 2308 | assert(0); |
94527ead GH |
2309 | break; |
2310 | } | |
2311 | ||
2312 | if (again < 0) { | |
2313 | fprintf(stderr, "processing error - resetting ehci HC\n"); | |
2314 | ehci_reset(ehci); | |
2315 | again = 0; | |
2316 | } | |
2317 | } | |
2318 | while (again); | |
94527ead GH |
2319 | } |
2320 | ||
2321 | static void ehci_advance_async_state(EHCIState *ehci) | |
2322 | { | |
df5d5c5c | 2323 | const int async = 1; |
94527ead | 2324 | |
26d53979 | 2325 | switch(ehci_get_state(ehci, async)) { |
94527ead | 2326 | case EST_INACTIVE: |
ec807d12 | 2327 | if (!ehci_async_enabled(ehci)) { |
94527ead GH |
2328 | break; |
2329 | } | |
26d53979 | 2330 | ehci_set_state(ehci, async, EST_ACTIVE); |
94527ead GH |
2331 | // No break, fall through to ACTIVE |
2332 | ||
2333 | case EST_ACTIVE: | |
ec807d12 | 2334 | if (!ehci_async_enabled(ehci)) { |
e850c2b4 | 2335 | ehci_queues_rip_all(ehci, async); |
26d53979 | 2336 | ehci_set_state(ehci, async, EST_INACTIVE); |
94527ead GH |
2337 | break; |
2338 | } | |
2339 | ||
4be23939 | 2340 | /* make sure guest has acknowledged the doorbell interrupt */ |
94527ead GH |
2341 | /* TO-DO: is this really needed? */ |
2342 | if (ehci->usbsts & USBSTS_IAA) { | |
2343 | DPRINTF("IAA status bit still set.\n"); | |
2344 | break; | |
2345 | } | |
2346 | ||
94527ead GH |
2347 | /* check that address register has been set */ |
2348 | if (ehci->asynclistaddr == 0) { | |
2349 | break; | |
2350 | } | |
2351 | ||
26d53979 | 2352 | ehci_set_state(ehci, async, EST_WAITLISTHEAD); |
26d53979 | 2353 | ehci_advance_state(ehci, async); |
4be23939 HG |
2354 | |
2355 | /* If the doorbell is set, the guest wants to make a change to the | |
2356 | * schedule. The host controller needs to release cached data. | |
2357 | * (section 4.8.2) | |
2358 | */ | |
2359 | if (ehci->usbcmd & USBCMD_IAAD) { | |
2360 | /* Remove all unseen qhs from the async qhs queue */ | |
8f5457eb | 2361 | ehci_queues_rip_unseen(ehci, async); |
1defcbd1 | 2362 | trace_usb_ehci_doorbell_ack(); |
4be23939 | 2363 | ehci->usbcmd &= ~USBCMD_IAAD; |
7efc17af | 2364 | ehci_raise_irq(ehci, USBSTS_IAA); |
4be23939 | 2365 | } |
94527ead GH |
2366 | break; |
2367 | ||
2368 | default: | |
2369 | /* this should only be due to a developer mistake */ | |
2370 | fprintf(stderr, "ehci: Bad asynchronous state %d. " | |
2371 | "Resetting to active\n", ehci->astate); | |
0122f472 | 2372 | assert(0); |
94527ead GH |
2373 | } |
2374 | } | |
2375 | ||
2376 | static void ehci_advance_periodic_state(EHCIState *ehci) | |
2377 | { | |
2378 | uint32_t entry; | |
2379 | uint32_t list; | |
df5d5c5c | 2380 | const int async = 0; |
94527ead GH |
2381 | |
2382 | // 4.6 | |
2383 | ||
26d53979 | 2384 | switch(ehci_get_state(ehci, async)) { |
94527ead | 2385 | case EST_INACTIVE: |
ec807d12 | 2386 | if (!(ehci->frindex & 7) && ehci_periodic_enabled(ehci)) { |
26d53979 | 2387 | ehci_set_state(ehci, async, EST_ACTIVE); |
94527ead GH |
2388 | // No break, fall through to ACTIVE |
2389 | } else | |
2390 | break; | |
2391 | ||
2392 | case EST_ACTIVE: | |
ec807d12 | 2393 | if (!(ehci->frindex & 7) && !ehci_periodic_enabled(ehci)) { |
e850c2b4 | 2394 | ehci_queues_rip_all(ehci, async); |
26d53979 | 2395 | ehci_set_state(ehci, async, EST_INACTIVE); |
94527ead GH |
2396 | break; |
2397 | } | |
2398 | ||
2399 | list = ehci->periodiclistbase & 0xfffff000; | |
2400 | /* check that register has been set */ | |
2401 | if (list == 0) { | |
2402 | break; | |
2403 | } | |
2404 | list |= ((ehci->frindex & 0x1ff8) >> 1); | |
2405 | ||
4bf80119 | 2406 | pci_dma_read(&ehci->dev, list, &entry, sizeof entry); |
94527ead GH |
2407 | entry = le32_to_cpu(entry); |
2408 | ||
2409 | DPRINTF("PERIODIC state adv fr=%d. [%08X] -> %08X\n", | |
2410 | ehci->frindex / 8, list, entry); | |
0122f472 | 2411 | ehci_set_fetch_addr(ehci, async,entry); |
26d53979 GH |
2412 | ehci_set_state(ehci, async, EST_FETCHENTRY); |
2413 | ehci_advance_state(ehci, async); | |
8f5457eb | 2414 | ehci_queues_rip_unused(ehci, async); |
94527ead GH |
2415 | break; |
2416 | ||
94527ead GH |
2417 | default: |
2418 | /* this should only be due to a developer mistake */ | |
2419 | fprintf(stderr, "ehci: Bad periodic state %d. " | |
2420 | "Resetting to active\n", ehci->pstate); | |
0122f472 | 2421 | assert(0); |
94527ead GH |
2422 | } |
2423 | } | |
2424 | ||
6ceced0b GH |
2425 | static void ehci_update_frindex(EHCIState *ehci, int frames) |
2426 | { | |
2427 | int i; | |
2428 | ||
2429 | if (!ehci_enabled(ehci)) { | |
2430 | return; | |
2431 | } | |
2432 | ||
2433 | for (i = 0; i < frames; i++) { | |
2434 | ehci->frindex += 8; | |
2435 | ||
2436 | if (ehci->frindex == 0x00002000) { | |
7efc17af | 2437 | ehci_raise_irq(ehci, USBSTS_FLR); |
6ceced0b GH |
2438 | } |
2439 | ||
2440 | if (ehci->frindex == 0x00004000) { | |
7efc17af | 2441 | ehci_raise_irq(ehci, USBSTS_FLR); |
6ceced0b | 2442 | ehci->frindex = 0; |
ffa1f2e0 | 2443 | if (ehci->usbsts_frindex >= 0x00004000) { |
7efc17af GH |
2444 | ehci->usbsts_frindex -= 0x00004000; |
2445 | } else { | |
2446 | ehci->usbsts_frindex = 0; | |
2447 | } | |
6ceced0b GH |
2448 | } |
2449 | } | |
2450 | } | |
2451 | ||
94527ead GH |
2452 | static void ehci_frame_timer(void *opaque) |
2453 | { | |
2454 | EHCIState *ehci = opaque; | |
7efc17af | 2455 | int need_timer = 0; |
94527ead | 2456 | int64_t expire_time, t_now; |
adddecb1 | 2457 | uint64_t ns_elapsed; |
f020ed36 | 2458 | int frames, skipped_frames; |
94527ead | 2459 | int i; |
94527ead | 2460 | |
94527ead | 2461 | t_now = qemu_get_clock_ns(vm_clock); |
adddecb1 GH |
2462 | ns_elapsed = t_now - ehci->last_run_ns; |
2463 | frames = ns_elapsed / FRAME_TIMER_NS; | |
94527ead | 2464 | |
3a215326 | 2465 | if (ehci_periodic_enabled(ehci) || ehci->pstate != EST_INACTIVE) { |
7efc17af | 2466 | need_timer++; |
afb7a0b8 | 2467 | ehci->async_stepdown = 0; |
94527ead | 2468 | |
f020ed36 GH |
2469 | if (frames > ehci->maxframes) { |
2470 | skipped_frames = frames - ehci->maxframes; | |
2471 | ehci_update_frindex(ehci, skipped_frames); | |
2472 | ehci->last_run_ns += FRAME_TIMER_NS * skipped_frames; | |
2473 | frames -= skipped_frames; | |
2474 | DPRINTF("WARNING - EHCI skipped %d frames\n", skipped_frames); | |
2475 | } | |
2476 | ||
3a215326 | 2477 | for (i = 0; i < frames; i++) { |
8f74ed1e HG |
2478 | /* |
2479 | * If we're running behind schedule, we should not catch up | |
2480 | * too fast, as that will make some guests unhappy: | |
2481 | * 1) We must process a minimum of MIN_FR_PER_TICK frames, | |
2482 | * otherwise we will never catch up | |
2483 | * 2) Process frames until the guest has requested an irq (IOC) | |
2484 | */ | |
2485 | if (i >= MIN_FR_PER_TICK) { | |
2486 | ehci_commit_irq(ehci); | |
2487 | if ((ehci->usbsts & USBINTR_MASK) & ehci->usbintr) { | |
2488 | break; | |
2489 | } | |
2490 | } | |
3a215326 | 2491 | ehci_update_frindex(ehci, 1); |
f020ed36 | 2492 | ehci_advance_periodic_state(ehci); |
3a215326 GH |
2493 | ehci->last_run_ns += FRAME_TIMER_NS; |
2494 | } | |
2495 | } else { | |
2496 | if (ehci->async_stepdown < ehci->maxframes / 2) { | |
2497 | ehci->async_stepdown++; | |
2498 | } | |
3a215326 GH |
2499 | ehci_update_frindex(ehci, frames); |
2500 | ehci->last_run_ns += FRAME_TIMER_NS * frames; | |
94527ead GH |
2501 | } |
2502 | ||
94527ead GH |
2503 | /* Async is not inside loop since it executes everything it can once |
2504 | * called | |
2505 | */ | |
3a215326 | 2506 | if (ehci_async_enabled(ehci) || ehci->astate != EST_INACTIVE) { |
7efc17af | 2507 | need_timer++; |
afb7a0b8 | 2508 | ehci_advance_async_state(ehci); |
3a215326 | 2509 | } |
94527ead | 2510 | |
7efc17af GH |
2511 | ehci_commit_irq(ehci); |
2512 | if (ehci->usbsts_pending) { | |
2513 | need_timer++; | |
2514 | ehci->async_stepdown = 0; | |
daf25307 | 2515 | } |
f0ad01f9 | 2516 | |
7efc17af | 2517 | if (need_timer) { |
44272b0f HG |
2518 | /* If we've raised int, we speed up the timer, so that we quickly |
2519 | * notice any new packets queued up in response */ | |
2520 | if (ehci->int_req_by_async && (ehci->usbsts & USBSTS_INT)) { | |
2521 | expire_time = t_now + get_ticks_per_sec() / (FRAME_TIMER_FREQ * 2); | |
2522 | ehci->int_req_by_async = false; | |
2523 | } else { | |
2524 | expire_time = t_now + (get_ticks_per_sec() | |
afb7a0b8 | 2525 | * (ehci->async_stepdown+1) / FRAME_TIMER_FREQ); |
44272b0f | 2526 | } |
7efc17af GH |
2527 | qemu_mod_timer(ehci->frame_timer, expire_time); |
2528 | } | |
94527ead GH |
2529 | } |
2530 | ||
3e4f910c GH |
2531 | static const MemoryRegionOps ehci_mmio_caps_ops = { |
2532 | .read = ehci_caps_read, | |
2533 | .valid.min_access_size = 1, | |
2534 | .valid.max_access_size = 4, | |
2535 | .impl.min_access_size = 1, | |
2536 | .impl.max_access_size = 1, | |
2537 | .endianness = DEVICE_LITTLE_ENDIAN, | |
2538 | }; | |
2539 | ||
2540 | static const MemoryRegionOps ehci_mmio_opreg_ops = { | |
2541 | .read = ehci_opreg_read, | |
2542 | .write = ehci_opreg_write, | |
2543 | .valid.min_access_size = 4, | |
2544 | .valid.max_access_size = 4, | |
2545 | .endianness = DEVICE_LITTLE_ENDIAN, | |
2546 | }; | |
2547 | ||
2548 | static const MemoryRegionOps ehci_mmio_port_ops = { | |
2549 | .read = ehci_port_read, | |
2550 | .write = ehci_port_write, | |
2551 | .valid.min_access_size = 4, | |
2552 | .valid.max_access_size = 4, | |
e57964f5 | 2553 | .endianness = DEVICE_LITTLE_ENDIAN, |
94527ead GH |
2554 | }; |
2555 | ||
94527ead GH |
2556 | static int usb_ehci_initfn(PCIDevice *dev); |
2557 | ||
2558 | static USBPortOps ehci_port_ops = { | |
2559 | .attach = ehci_attach, | |
2560 | .detach = ehci_detach, | |
4706ab6c | 2561 | .child_detach = ehci_child_detach, |
a0a3167a | 2562 | .wakeup = ehci_wakeup, |
94527ead GH |
2563 | .complete = ehci_async_complete_packet, |
2564 | }; | |
2565 | ||
07771f6f | 2566 | static USBBusOps ehci_bus_ops = { |
a0a3167a | 2567 | .register_companion = ehci_register_companion, |
07771f6f GH |
2568 | }; |
2569 | ||
9a773408 GH |
2570 | static int usb_ehci_post_load(void *opaque, int version_id) |
2571 | { | |
2572 | EHCIState *s = opaque; | |
2573 | int i; | |
2574 | ||
2575 | for (i = 0; i < NB_PORTS; i++) { | |
2576 | USBPort *companion = s->companion_ports[i]; | |
2577 | if (companion == NULL) { | |
2578 | continue; | |
2579 | } | |
2580 | if (s->portsc[i] & PORTSC_POWNER) { | |
2581 | companion->dev = s->ports[i].dev; | |
2582 | } else { | |
2583 | companion->dev = NULL; | |
2584 | } | |
2585 | } | |
2586 | ||
2587 | return 0; | |
2588 | } | |
2589 | ||
ceab6f96 HG |
2590 | static void usb_ehci_vm_state_change(void *opaque, int running, RunState state) |
2591 | { | |
2592 | EHCIState *ehci = opaque; | |
2593 | ||
2594 | /* | |
2595 | * We don't migrate the EHCIQueue-s, instead we rebuild them for the | |
2596 | * schedule in guest memory. We must do the rebuilt ASAP, so that | |
2597 | * USB-devices which have async handled packages have a packet in the | |
2598 | * ep queue to match the completion with. | |
2599 | */ | |
2600 | if (state == RUN_STATE_RUNNING) { | |
2601 | ehci_advance_async_state(ehci); | |
2602 | } | |
2603 | ||
2604 | /* | |
2605 | * The schedule rebuilt from guest memory could cause the migration dest | |
2606 | * to miss a QH unlink, and fail to cancel packets, since the unlinked QH | |
2607 | * will never have existed on the destination. Therefor we must flush the | |
2608 | * async schedule on savevm to catch any not yet noticed unlinks. | |
2609 | */ | |
2610 | if (state == RUN_STATE_SAVE_VM) { | |
2611 | ehci_advance_async_state(ehci); | |
2612 | ehci_queues_rip_unseen(ehci, 1); | |
2613 | } | |
2614 | } | |
2615 | ||
9490fb06 | 2616 | static const VMStateDescription vmstate_ehci = { |
9a773408 | 2617 | .name = "ehci", |
6d3b6d3d GH |
2618 | .version_id = 2, |
2619 | .minimum_version_id = 1, | |
9a773408 GH |
2620 | .post_load = usb_ehci_post_load, |
2621 | .fields = (VMStateField[]) { | |
2622 | VMSTATE_PCI_DEVICE(dev, EHCIState), | |
2623 | /* mmio registers */ | |
2624 | VMSTATE_UINT32(usbcmd, EHCIState), | |
2625 | VMSTATE_UINT32(usbsts, EHCIState), | |
6d3b6d3d GH |
2626 | VMSTATE_UINT32_V(usbsts_pending, EHCIState, 2), |
2627 | VMSTATE_UINT32_V(usbsts_frindex, EHCIState, 2), | |
9a773408 GH |
2628 | VMSTATE_UINT32(usbintr, EHCIState), |
2629 | VMSTATE_UINT32(frindex, EHCIState), | |
2630 | VMSTATE_UINT32(ctrldssegment, EHCIState), | |
2631 | VMSTATE_UINT32(periodiclistbase, EHCIState), | |
2632 | VMSTATE_UINT32(asynclistaddr, EHCIState), | |
2633 | VMSTATE_UINT32(configflag, EHCIState), | |
2634 | VMSTATE_UINT32(portsc[0], EHCIState), | |
2635 | VMSTATE_UINT32(portsc[1], EHCIState), | |
2636 | VMSTATE_UINT32(portsc[2], EHCIState), | |
2637 | VMSTATE_UINT32(portsc[3], EHCIState), | |
2638 | VMSTATE_UINT32(portsc[4], EHCIState), | |
2639 | VMSTATE_UINT32(portsc[5], EHCIState), | |
2640 | /* frame timer */ | |
2641 | VMSTATE_TIMER(frame_timer, EHCIState), | |
2642 | VMSTATE_UINT64(last_run_ns, EHCIState), | |
2643 | VMSTATE_UINT32(async_stepdown, EHCIState), | |
2644 | /* schedule state */ | |
2645 | VMSTATE_UINT32(astate, EHCIState), | |
2646 | VMSTATE_UINT32(pstate, EHCIState), | |
2647 | VMSTATE_UINT32(a_fetch_addr, EHCIState), | |
2648 | VMSTATE_UINT32(p_fetch_addr, EHCIState), | |
2649 | VMSTATE_END_OF_LIST() | |
2650 | } | |
9490fb06 GH |
2651 | }; |
2652 | ||
3028376e | 2653 | static Property ehci_properties[] = { |
3028376e GH |
2654 | DEFINE_PROP_UINT32("maxframes", EHCIState, maxframes, 128), |
2655 | DEFINE_PROP_END_OF_LIST(), | |
2656 | }; | |
2657 | ||
40021f08 AL |
2658 | static void ehci_class_init(ObjectClass *klass, void *data) |
2659 | { | |
39bffca2 | 2660 | DeviceClass *dc = DEVICE_CLASS(klass); |
40021f08 AL |
2661 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
2662 | ||
2663 | k->init = usb_ehci_initfn; | |
2664 | k->vendor_id = PCI_VENDOR_ID_INTEL; | |
2665 | k->device_id = PCI_DEVICE_ID_INTEL_82801D; /* ich4 */ | |
2666 | k->revision = 0x10; | |
2667 | k->class_id = PCI_CLASS_SERIAL_USB; | |
39bffca2 AL |
2668 | dc->vmsd = &vmstate_ehci; |
2669 | dc->props = ehci_properties; | |
40021f08 AL |
2670 | } |
2671 | ||
39bffca2 AL |
2672 | static TypeInfo ehci_info = { |
2673 | .name = "usb-ehci", | |
2674 | .parent = TYPE_PCI_DEVICE, | |
2675 | .instance_size = sizeof(EHCIState), | |
2676 | .class_init = ehci_class_init, | |
e855761c AL |
2677 | }; |
2678 | ||
40021f08 AL |
2679 | static void ich9_ehci_class_init(ObjectClass *klass, void *data) |
2680 | { | |
39bffca2 | 2681 | DeviceClass *dc = DEVICE_CLASS(klass); |
40021f08 AL |
2682 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
2683 | ||
2684 | k->init = usb_ehci_initfn; | |
2685 | k->vendor_id = PCI_VENDOR_ID_INTEL; | |
2686 | k->device_id = PCI_DEVICE_ID_INTEL_82801I_EHCI1; | |
2687 | k->revision = 0x03; | |
2688 | k->class_id = PCI_CLASS_SERIAL_USB; | |
39bffca2 AL |
2689 | dc->vmsd = &vmstate_ehci; |
2690 | dc->props = ehci_properties; | |
40021f08 AL |
2691 | } |
2692 | ||
39bffca2 AL |
2693 | static TypeInfo ich9_ehci_info = { |
2694 | .name = "ich9-usb-ehci1", | |
2695 | .parent = TYPE_PCI_DEVICE, | |
2696 | .instance_size = sizeof(EHCIState), | |
2697 | .class_init = ich9_ehci_class_init, | |
94527ead GH |
2698 | }; |
2699 | ||
2700 | static int usb_ehci_initfn(PCIDevice *dev) | |
2701 | { | |
2702 | EHCIState *s = DO_UPCAST(EHCIState, dev, dev); | |
2703 | uint8_t *pci_conf = s->dev.config; | |
2704 | int i; | |
2705 | ||
94527ead | 2706 | pci_set_byte(&pci_conf[PCI_CLASS_PROG], 0x20); |
94527ead GH |
2707 | |
2708 | /* capabilities pointer */ | |
2709 | pci_set_byte(&pci_conf[PCI_CAPABILITY_LIST], 0x00); | |
2710 | //pci_set_byte(&pci_conf[PCI_CAPABILITY_LIST], 0x50); | |
2711 | ||
817e0b6f | 2712 | pci_set_byte(&pci_conf[PCI_INTERRUPT_PIN], 4); /* interrupt pin D */ |
94527ead GH |
2713 | pci_set_byte(&pci_conf[PCI_MIN_GNT], 0); |
2714 | pci_set_byte(&pci_conf[PCI_MAX_LAT], 0); | |
2715 | ||
2716 | // pci_conf[0x50] = 0x01; // power management caps | |
2717 | ||
4001f22f | 2718 | pci_set_byte(&pci_conf[USB_SBRN], USB_RELEASE_2); // release number (2.1.4) |
94527ead GH |
2719 | pci_set_byte(&pci_conf[0x61], 0x20); // frame length adjustment (2.1.5) |
2720 | pci_set_word(&pci_conf[0x62], 0x00); // port wake up capability (2.1.6) | |
2721 | ||
2722 | pci_conf[0x64] = 0x00; | |
2723 | pci_conf[0x65] = 0x00; | |
2724 | pci_conf[0x66] = 0x00; | |
2725 | pci_conf[0x67] = 0x00; | |
2726 | pci_conf[0x68] = 0x01; | |
2727 | pci_conf[0x69] = 0x00; | |
2728 | pci_conf[0x6a] = 0x00; | |
2729 | pci_conf[0x6b] = 0x00; // USBLEGSUP | |
2730 | pci_conf[0x6c] = 0x00; | |
2731 | pci_conf[0x6d] = 0x00; | |
2732 | pci_conf[0x6e] = 0x00; | |
2733 | pci_conf[0x6f] = 0xc0; // USBLEFCTLSTS | |
2734 | ||
3e4f910c GH |
2735 | /* 2.2 host controller interface version */ |
2736 | s->caps[0x00] = (uint8_t) OPREGBASE; | |
2737 | s->caps[0x01] = 0x00; | |
2738 | s->caps[0x02] = 0x00; | |
2739 | s->caps[0x03] = 0x01; /* HC version */ | |
2740 | s->caps[0x04] = NB_PORTS; /* Number of downstream ports */ | |
2741 | s->caps[0x05] = 0x00; /* No companion ports at present */ | |
2742 | s->caps[0x06] = 0x00; | |
2743 | s->caps[0x07] = 0x00; | |
2744 | s->caps[0x08] = 0x80; /* We can cache whole frame, no 64-bit */ | |
2745 | s->caps[0x09] = 0x68; /* EECP */ | |
2746 | s->caps[0x0a] = 0x00; | |
2747 | s->caps[0x0b] = 0x00; | |
94527ead GH |
2748 | |
2749 | s->irq = s->dev.irq[3]; | |
2750 | ||
07771f6f | 2751 | usb_bus_new(&s->bus, &ehci_bus_ops, &s->dev.qdev); |
94527ead GH |
2752 | for(i = 0; i < NB_PORTS; i++) { |
2753 | usb_register_port(&s->bus, &s->ports[i], s, i, &ehci_port_ops, | |
2754 | USB_SPEED_MASK_HIGH); | |
94527ead GH |
2755 | s->ports[i].dev = 0; |
2756 | } | |
2757 | ||
2758 | s->frame_timer = qemu_new_timer_ns(vm_clock, ehci_frame_timer, s); | |
0262f65a | 2759 | s->async_bh = qemu_bh_new(ehci_frame_timer, s); |
df5d5c5c HG |
2760 | QTAILQ_INIT(&s->aqueues); |
2761 | QTAILQ_INIT(&s->pqueues); | |
7341ea07 | 2762 | usb_packet_init(&s->ipacket); |
94527ead GH |
2763 | |
2764 | qemu_register_reset(ehci_reset, s); | |
ceab6f96 | 2765 | qemu_add_vm_change_state_handler(usb_ehci_vm_state_change, s); |
94527ead | 2766 | |
3e4f910c GH |
2767 | memory_region_init(&s->mem, "ehci", MMIO_SIZE); |
2768 | memory_region_init_io(&s->mem_caps, &ehci_mmio_caps_ops, s, | |
2769 | "capabilities", OPREGBASE); | |
2770 | memory_region_init_io(&s->mem_opreg, &ehci_mmio_opreg_ops, s, | |
2771 | "operational", PORTSC_BEGIN - OPREGBASE); | |
2772 | memory_region_init_io(&s->mem_ports, &ehci_mmio_port_ops, s, | |
2773 | "ports", PORTSC_END - PORTSC_BEGIN); | |
2774 | ||
2775 | memory_region_add_subregion(&s->mem, 0, &s->mem_caps); | |
2776 | memory_region_add_subregion(&s->mem, OPREGBASE, &s->mem_opreg); | |
2777 | memory_region_add_subregion(&s->mem, PORTSC_BEGIN, &s->mem_ports); | |
2778 | ||
e824b2cc | 2779 | pci_register_bar(&s->dev, 0, PCI_BASE_ADDRESS_SPACE_MEMORY, &s->mem); |
94527ead | 2780 | |
94527ead GH |
2781 | return 0; |
2782 | } | |
2783 | ||
83f7d43a | 2784 | static void ehci_register_types(void) |
94527ead | 2785 | { |
39bffca2 AL |
2786 | type_register_static(&ehci_info); |
2787 | type_register_static(&ich9_ehci_info); | |
94527ead | 2788 | } |
83f7d43a AF |
2789 | |
2790 | type_init(ehci_register_types) | |
94527ead GH |
2791 | |
2792 | /* | |
2793 | * vim: expandtab ts=4 | |
2794 | */ |