hw/sd: sd: Skip write protect groups check in sd_erase() for high capacity cards
[qemu/ar7.git] / hw / usb / hcd-xhci-pci.h
blobc193f794439ca58f5eb5444452082d8f3a5d0d2f
1 /*
2 * USB xHCI controller emulation
4 * Copyright (c) 2011 Securiforest
5 * Date: 2011-05-11 ; Author: Hector Martin <hector@marcansoft.com>
6 * Based on usb-ohci.c, emulates Renesas NEC USB 3.0
7 * Date: 2020-01-1; Author: Sai Pavan Boddu <sai.pavan.boddu@xilinx.com>
8 * PCI hooks are moved from XHCIState to XHCIPciState
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
24 #ifndef HW_USB_HCD_XHCI_PCI_H
25 #define HW_USB_HCD_XHCI_PCI_H
27 #include "hw/usb.h"
28 #include "hcd-xhci.h"
30 #define TYPE_XHCI_PCI "pci-xhci"
31 #define XHCI_PCI(obj) \
32 OBJECT_CHECK(XHCIPciState, (obj), TYPE_XHCI_PCI)
35 typedef struct XHCIPciState {
36 /*< private >*/
37 PCIDevice parent_obj;
38 /*< public >*/
39 XHCIState xhci;
40 OnOffAuto msi;
41 OnOffAuto msix;
42 } XHCIPciState;
44 #endif