xref: /qemu/hw/pci/pci-stub.c (revision 88c725c7)
1315a1350SMichael S. Tsirkin /*
2315a1350SMichael S. Tsirkin  * PCI stubs for platforms that don't support pci bus.
3315a1350SMichael S. Tsirkin  *
4315a1350SMichael S. Tsirkin  * Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp>
5315a1350SMichael S. Tsirkin  *                    VA Linux Systems Japan K.K.
6315a1350SMichael S. Tsirkin  *
7315a1350SMichael S. Tsirkin  * This program is free software; you can redistribute it and/or modify
8315a1350SMichael S. Tsirkin  * it under the terms of the GNU General Public License as published by
9315a1350SMichael S. Tsirkin  * the Free Software Foundation; either version 2 of the License, or
10315a1350SMichael S. Tsirkin  * (at your option) any later version.
11315a1350SMichael S. Tsirkin  *
12315a1350SMichael S. Tsirkin  * This program is distributed in the hope that it will be useful,
13315a1350SMichael S. Tsirkin  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14315a1350SMichael S. Tsirkin  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15315a1350SMichael S. Tsirkin  * GNU General Public License for more details.
16315a1350SMichael S. Tsirkin  *
17315a1350SMichael S. Tsirkin  * You should have received a copy of the GNU General Public License along
18315a1350SMichael S. Tsirkin  * with this program; if not, see <http://www.gnu.org/licenses/>.
19315a1350SMichael S. Tsirkin  */
20315a1350SMichael S. Tsirkin 
2197d5408fSPeter Maydell #include "qemu/osdep.h"
229c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
2383c9089eSPaolo Bonzini #include "monitor/monitor.h"
24cc7a8ea7SMarkus Armbruster #include "qapi/qmp/qerror.h"
25c759b24fSMichael S. Tsirkin #include "hw/pci/pci.h"
26315a1350SMichael S. Tsirkin #include "qmp-commands.h"
2766767562SPhilippe Mathieu-Daudé #include "hw/pci/msi.h"
2866767562SPhilippe Mathieu-Daudé 
2966767562SPhilippe Mathieu-Daudé bool msi_nonbroken;
30*88c725c7SCornelia Huck bool pci_available;
31315a1350SMichael S. Tsirkin 
32315a1350SMichael S. Tsirkin PciInfoList *qmp_query_pci(Error **errp)
33315a1350SMichael S. Tsirkin {
34c6bd8c70SMarkus Armbruster     error_setg(errp, QERR_UNSUPPORTED);
35315a1350SMichael S. Tsirkin     return NULL;
36315a1350SMichael S. Tsirkin }
37315a1350SMichael S. Tsirkin 
3804e00c92SMarkus Armbruster void hmp_pcie_aer_inject_error(Monitor *mon, const QDict *qdict)
39315a1350SMichael S. Tsirkin {
40315a1350SMichael S. Tsirkin     monitor_printf(mon, "PCI devices not supported\n");
41315a1350SMichael S. Tsirkin }
42*88c725c7SCornelia Huck 
43*88c725c7SCornelia Huck /* kvm-all wants this */
44*88c725c7SCornelia Huck MSIMessage pci_get_msi_message(PCIDevice *dev, int vector)
45*88c725c7SCornelia Huck {
46*88c725c7SCornelia Huck     g_assert(false);
47*88c725c7SCornelia Huck     return (MSIMessage){};
48*88c725c7SCornelia Huck }
49*88c725c7SCornelia Huck 
50*88c725c7SCornelia Huck uint16_t pci_requester_id(PCIDevice *dev)
51*88c725c7SCornelia Huck {
52*88c725c7SCornelia Huck     g_assert(false);
53*88c725c7SCornelia Huck     return 0;
54*88c725c7SCornelia Huck }
55