hcd-uhci.c (923fd9897b0ffbcc5091181f8b0484aa2e36413b) | hcd-uhci.c (a2cb15b0ddfa05f81a42d7b65dd0c7c50e420c33) |
---|---|
1/* 2 * USB UHCI controller emulation 3 * 4 * Copyright (c) 2005 Fabrice Bellard 5 * 6 * Copyright (c) 2008 Max Krasnyansky 7 * Magor rewrite of the UHCI data structures parser and frame processor 8 * Support for fully async operation and multiple outstanding transactions --- 13 unchanged lines hidden (view full) --- 22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 26 * THE SOFTWARE. 27 */ 28#include "hw/hw.h" 29#include "hw/usb.h" | 1/* 2 * USB UHCI controller emulation 3 * 4 * Copyright (c) 2005 Fabrice Bellard 5 * 6 * Copyright (c) 2008 Max Krasnyansky 7 * Magor rewrite of the UHCI data structures parser and frame processor 8 * Support for fully async operation and multiple outstanding transactions --- 13 unchanged lines hidden (view full) --- 22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 26 * THE SOFTWARE. 27 */ 28#include "hw/hw.h" 29#include "hw/usb.h" |
30#include "hw/pci.h" | 30#include "hw/pci/pci.h" |
31#include "qemu-timer.h" 32#include "iov.h" 33#include "dma.h" 34#include "trace.h" 35 36//#define DEBUG 37//#define DEBUG_DUMP_DATA 38 --- 1383 unchanged lines hidden --- | 31#include "qemu-timer.h" 32#include "iov.h" 33#include "dma.h" 34#include "trace.h" 35 36//#define DEBUG 37//#define DEBUG_DUMP_DATA 38 --- 1383 unchanged lines hidden --- |