]> git.proxmox.com Git - mirror_qemu.git/blame - hw/pci/pci-hmp-cmds.c
ppc/xive: Handle END triggers between chips with MMIOs
[mirror_qemu.git] / hw / pci / pci-hmp-cmds.c
CommitLineData
5ef4a0cb
MA
1/*
2 * HMP commands related to PCI
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
14 */
15
16#include "qemu/osdep.h"
0bcaaff8 17#include "hw/pci/pci.h"
edf5ca5d 18#include "hw/pci/pci_device.h"
5ef4a0cb
MA
19#include "monitor/hmp.h"
20#include "monitor/monitor.h"
0bcaaff8 21#include "pci-internal.h"
5ef4a0cb 22#include "qapi/error.h"
d0e67298 23#include "qapi/qmp/qdict.h"
5ef4a0cb 24#include "qapi/qapi-commands-pci.h"
d0e67298 25#include "qemu/cutils.h"
5ef4a0cb
MA
26
27static void hmp_info_pci_device(Monitor *mon, const PciDeviceInfo *dev)
28{
29 PciMemoryRegionList *region;
30
31 monitor_printf(mon, " Bus %2" PRId64 ", ", dev->bus);
32 monitor_printf(mon, "device %3" PRId64 ", function %" PRId64 ":\n",
33 dev->slot, dev->function);
34 monitor_printf(mon, " ");
35
36 if (dev->class_info->desc) {
37 monitor_puts(mon, dev->class_info->desc);
38 } else {
39 monitor_printf(mon, "Class %04" PRId64, dev->class_info->q_class);
40 }
41
42 monitor_printf(mon, ": PCI device %04" PRIx64 ":%04" PRIx64 "\n",
43 dev->id->vendor, dev->id->device);
44 if (dev->id->has_subsystem_vendor && dev->id->has_subsystem) {
45 monitor_printf(mon, " PCI subsystem %04" PRIx64 ":%04" PRIx64 "\n",
46 dev->id->subsystem_vendor, dev->id->subsystem);
47 }
48
49 if (dev->has_irq) {
50 monitor_printf(mon, " IRQ %" PRId64 ", pin %c\n",
51 dev->irq, (char)('A' + dev->irq_pin - 1));
52 }
53
54 if (dev->pci_bridge) {
55 monitor_printf(mon, " BUS %" PRId64 ".\n",
56 dev->pci_bridge->bus->number);
57 monitor_printf(mon, " secondary bus %" PRId64 ".\n",
58 dev->pci_bridge->bus->secondary);
59 monitor_printf(mon, " subordinate bus %" PRId64 ".\n",
60 dev->pci_bridge->bus->subordinate);
61
62 monitor_printf(mon, " IO range [0x%04"PRIx64", 0x%04"PRIx64"]\n",
63 dev->pci_bridge->bus->io_range->base,
64 dev->pci_bridge->bus->io_range->limit);
65
66 monitor_printf(mon,
67 " memory range [0x%08"PRIx64", 0x%08"PRIx64"]\n",
68 dev->pci_bridge->bus->memory_range->base,
69 dev->pci_bridge->bus->memory_range->limit);
70
71 monitor_printf(mon, " prefetchable memory range "
72 "[0x%08"PRIx64", 0x%08"PRIx64"]\n",
73 dev->pci_bridge->bus->prefetchable_range->base,
74 dev->pci_bridge->bus->prefetchable_range->limit);
75 }
76
77 for (region = dev->regions; region; region = region->next) {
78 uint64_t addr, size;
79
80 addr = region->value->address;
81 size = region->value->size;
82
83 monitor_printf(mon, " BAR%" PRId64 ": ", region->value->bar);
84
85 if (!strcmp(region->value->type, "io")) {
86 monitor_printf(mon, "I/O at 0x%04" PRIx64
87 " [0x%04" PRIx64 "].\n",
88 addr, addr + size - 1);
89 } else {
90 monitor_printf(mon, "%d bit%s memory at 0x%08" PRIx64
91 " [0x%08" PRIx64 "].\n",
92 region->value->mem_type_64 ? 64 : 32,
93 region->value->prefetch ? " prefetchable" : "",
94 addr, addr + size - 1);
95 }
96 }
97
98 monitor_printf(mon, " id \"%s\"\n", dev->qdev_id);
99
100 if (dev->pci_bridge) {
101 if (dev->pci_bridge->has_devices) {
102 PciDeviceInfoList *cdev;
103 for (cdev = dev->pci_bridge->devices; cdev; cdev = cdev->next) {
104 hmp_info_pci_device(mon, cdev->value);
105 }
106 }
107 }
108}
109
110void hmp_info_pci(Monitor *mon, const QDict *qdict)
111{
112 PciInfoList *info_list, *info;
5ef4a0cb 113
6be4ddff 114 info_list = qmp_query_pci(&error_abort);
5ef4a0cb
MA
115
116 for (info = info_list; info; info = info->next) {
117 PciDeviceInfoList *dev;
118
119 for (dev = info->value->devices; dev; dev = dev->next) {
120 hmp_info_pci_device(mon, dev->value);
121 }
122 }
123
124 qapi_free_PciInfoList(info_list);
125}
0bcaaff8
MA
126
127void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent)
128{
129 PCIDevice *d = (PCIDevice *)dev;
130 int class = pci_get_word(d->config + PCI_CLASS_DEVICE);
131 const pci_class_desc *desc = get_class_desc(class);
132 char ctxt[64];
133 PCIIORegion *r;
134 int i;
135
136 if (desc->desc) {
137 snprintf(ctxt, sizeof(ctxt), "%s", desc->desc);
138 } else {
139 snprintf(ctxt, sizeof(ctxt), "Class %04x", class);
140 }
141
142 monitor_printf(mon, "%*sclass %s, addr %02x:%02x.%x, "
143 "pci id %04x:%04x (sub %04x:%04x)\n",
144 indent, "", ctxt, pci_dev_bus_num(d),
145 PCI_SLOT(d->devfn), PCI_FUNC(d->devfn),
146 pci_get_word(d->config + PCI_VENDOR_ID),
147 pci_get_word(d->config + PCI_DEVICE_ID),
148 pci_get_word(d->config + PCI_SUBSYSTEM_VENDOR_ID),
149 pci_get_word(d->config + PCI_SUBSYSTEM_ID));
150 for (i = 0; i < PCI_NUM_REGIONS; i++) {
151 r = &d->io_regions[i];
152 if (!r->size) {
153 continue;
154 }
155 monitor_printf(mon, "%*sbar %d: %s at 0x%"FMT_PCIBUS
156 " [0x%"FMT_PCIBUS"]\n",
157 indent, "",
158 i, r->type & PCI_BASE_ADDRESS_SPACE_IO ? "i/o" : "mem",
159 r->addr, r->addr + r->size - 1);
160 }
161}
d0e67298 162
74a11ca6 163void hmp_pcie_aer_inject_error(Monitor *mon, const QDict *qdict)
d0e67298 164{
ba235d33 165 Error *err = NULL;
d0e67298
MA
166 const char *id = qdict_get_str(qdict, "id");
167 const char *error_name;
168 uint32_t error_status;
169 unsigned int num;
170 bool correctable;
171 PCIDevice *dev;
c276dc89 172 PCIEAERErr aer_err;
d0e67298
MA
173 int ret;
174
175 ret = pci_qdev_find_device(id, &dev);
ba235d33
MA
176 if (ret == -ENODEV) {
177 error_setg(&err, "device '%s' not found", id);
178 goto out;
d0e67298 179 }
ba235d33
MA
180 if (ret < 0 || !pci_is_express(dev)) {
181 error_setg(&err, "device '%s' is not a PCIe device", id);
182 goto out;
d0e67298
MA
183 }
184
185 error_name = qdict_get_str(qdict, "error_status");
186 if (pcie_aer_parse_error_string(error_name, &error_status, &correctable)) {
187 if (qemu_strtoui(error_name, NULL, 0, &num) < 0) {
ba235d33
MA
188 error_setg(&err, "invalid error status value '%s'", error_name);
189 goto out;
d0e67298
MA
190 }
191 error_status = num;
192 correctable = qdict_get_try_bool(qdict, "correctable", false);
e221cfac
MA
193 } else {
194 if (qdict_haskey(qdict, "correctable")) {
195 error_setg(&err, "-c is only valid with numeric error status");
196 goto out;
197 }
d0e67298 198 }
c276dc89
MA
199 aer_err.status = error_status;
200 aer_err.source_id = pci_requester_id(dev);
d0e67298 201
c276dc89 202 aer_err.flags = 0;
d0e67298 203 if (correctable) {
c276dc89 204 aer_err.flags |= PCIE_AER_ERR_IS_CORRECTABLE;
d0e67298
MA
205 }
206 if (qdict_get_try_bool(qdict, "advisory_non_fatal", false)) {
c276dc89 207 aer_err.flags |= PCIE_AER_ERR_MAYBE_ADVISORY;
d0e67298
MA
208 }
209 if (qdict_haskey(qdict, "header0")) {
c276dc89 210 aer_err.flags |= PCIE_AER_ERR_HEADER_VALID;
d0e67298
MA
211 }
212 if (qdict_haskey(qdict, "prefix0")) {
c276dc89 213 aer_err.flags |= PCIE_AER_ERR_TLP_PREFIX_PRESENT;
d0e67298
MA
214 }
215
c276dc89
MA
216 aer_err.header[0] = qdict_get_try_int(qdict, "header0", 0);
217 aer_err.header[1] = qdict_get_try_int(qdict, "header1", 0);
218 aer_err.header[2] = qdict_get_try_int(qdict, "header2", 0);
219 aer_err.header[3] = qdict_get_try_int(qdict, "header3", 0);
d0e67298 220
c276dc89
MA
221 aer_err.prefix[0] = qdict_get_try_int(qdict, "prefix0", 0);
222 aer_err.prefix[1] = qdict_get_try_int(qdict, "prefix1", 0);
223 aer_err.prefix[2] = qdict_get_try_int(qdict, "prefix2", 0);
224 aer_err.prefix[3] = qdict_get_try_int(qdict, "prefix3", 0);
d0e67298 225
c276dc89 226 ret = pcie_aer_inject_error(dev, &aer_err);
d0e67298 227 if (ret < 0) {
ba235d33
MA
228 error_setg_errno(&err, -ret, "failed to inject error");
229 goto out;
d0e67298
MA
230 }
231
ba235d33 232
d0e67298 233 monitor_printf(mon, "OK id: %s root bus: %s, bus: %x devfn: %x.%x\n",
74a11ca6
MA
234 id, pci_root_bus_path(dev), pci_dev_bus_num(dev),
235 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn));
ba235d33
MA
236
237out:
238 hmp_handle_error(mon, err);
d0e67298 239}