2 * QEMU USB OHCI Emulation
3 * Copyright (c) 2004 Gianni Tedesco
4 * Copyright (c) 2006 CodeSourcery
5 * Copyright (c) 2006 Openedhand Ltd.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
24 #include "sysemu/dma.h"
26 #include "qom/object.h"
28 /* Number of Downstream Ports on the root hub: */
29 #define OHCI_MAX_PORTS 15
31 typedef struct OHCIPort
{
36 typedef struct OHCIState
{
48 /* Control partition */
53 /* memory pointer partition */
55 uint32_t ctrl_head
, ctrl_cur
;
56 uint32_t bulk_head
, bulk_cur
;
61 /* Frame counter partition */
66 uint16_t frame_number
;
71 /* Root Hub partition */
72 uint32_t rhdesc_a
, rhdesc_b
;
74 OHCIPort rhport
[OHCI_MAX_PORTS
];
76 /* PXA27x Non-OHCI events */
82 /* SM501 local memory offset */
83 dma_addr_t localmem_base
;
88 uint8_t usb_buf
[8192];
92 void (*ohci_die
)(struct OHCIState
*ohci
);
95 #define TYPE_SYSBUS_OHCI "sysbus-ohci"
96 OBJECT_DECLARE_SIMPLE_TYPE(OHCISysBusState
, SYSBUS_OHCI
)
98 struct OHCISysBusState
{
100 SysBusDevice parent_obj
;
107 dma_addr_t dma_offset
;
110 extern const VMStateDescription vmstate_ohci_state
;
112 void usb_ohci_init(OHCIState
*ohci
, DeviceState
*dev
, uint32_t num_ports
,
113 dma_addr_t localmem_base
, char *masterbus
,
114 uint32_t firstport
, AddressSpace
*as
,
115 void (*ohci_die_fn
)(struct OHCIState
*), Error
**errp
);
116 void ohci_bus_stop(OHCIState
*ohci
);
117 void ohci_stop_endpoints(OHCIState
*ohci
);
118 void ohci_hard_reset(OHCIState
*ohci
);
119 void ohci_sysbus_die(struct OHCIState
*ohci
);