tusb6010.h 598 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * tusb6010 interfaces
 *
 * Copyright 2011 Red Hat, Inc. and/or its affiliates
 *
 * Authors:
 *  Avi Kivity <avi@redhat.com>
 *
 * Derived from hw/devices.h.
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
 */

#ifndef TUSB6010_H
#define TUSB6010_H

19 20 21
#include "targphys.h"
#include "memory.h"

22 23
typedef struct TUSBState TUSBState;
TUSBState *tusb6010_init(qemu_irq intr);
24 25
MemoryRegion *tusb6010_sync_io(TUSBState *s);
MemoryRegion *tusb6010_async_io(TUSBState *s);
26 27 28
void tusb6010_power(TUSBState *s, int on);

#endif