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"
27 /* Number of Downstream Ports on the root hub: */
28 #define OHCI_MAX_PORTS 15
30 typedef struct OHCIPort
{
35 typedef struct OHCIState
{
47 /* Control partition */
52 /* memory pointer partition */
54 uint32_t ctrl_head
, ctrl_cur
;
55 uint32_t bulk_head
, bulk_cur
;
60 /* Frame counter partition */
65 uint16_t frame_number
;
70 /* Root Hub partition */
71 uint32_t rhdesc_a
, rhdesc_b
;
73 OHCIPort rhport
[OHCI_MAX_PORTS
];
75 /* PXA27x Non-OHCI events */
81 /* SM501 local memory offset */
82 dma_addr_t localmem_base
;
87 uint8_t usb_buf
[8192];
91 void (*ohci_die
)(struct OHCIState
*ohci
);
94 #define TYPE_SYSBUS_OHCI "sysbus-ohci"
95 #define SYSBUS_OHCI(obj) OBJECT_CHECK(OHCISysBusState, (obj), TYPE_SYSBUS_OHCI)
99 SysBusDevice parent_obj
;
106 dma_addr_t dma_offset
;
109 extern const VMStateDescription vmstate_ohci_state
;
111 void usb_ohci_init(OHCIState
*ohci
, DeviceState
*dev
, uint32_t num_ports
,
112 dma_addr_t localmem_base
, char *masterbus
,
113 uint32_t firstport
, AddressSpace
*as
,
114 void (*ohci_die_fn
)(struct OHCIState
*), Error
**errp
);
115 void ohci_bus_stop(OHCIState
*ohci
);
116 void ohci_stop_endpoints(OHCIState
*ohci
);
117 void ohci_hard_reset(OHCIState
*ohci
);
118 void ohci_sysbus_die(struct OHCIState
*ohci
);