blob: 1c01d346c927a87ad09849583472412182d010dc [file] [log] [blame]
Michael S. Tsirkinc759b242012-12-12 23:05:42 +02001#include "hw/pci/slotid_cap.h"
2#include "hw/pci/pci.h"
Paolo Bonzinib4a42f82013-02-04 11:37:52 +01003#include "qemu/error-report.h"
Michael S. Tsirkin762833b2012-02-15 19:17:59 +02004
5#define SLOTID_CAP_LENGTH 4
Stefan Hajnoczi786a4ea2015-03-23 15:29:26 +00006#define SLOTID_NSLOTS_SHIFT ctz32(PCI_SID_ESR_NSLOTS)
Michael S. Tsirkin762833b2012-02-15 19:17:59 +02007
8int slotid_cap_init(PCIDevice *d, int nslots,
9 uint8_t chassis,
10 unsigned offset)
11{
12 int cap;
13 if (!chassis) {
14 error_report("Bridge chassis not specified. Each bridge is required "
15 "to be assigned a unique chassis id > 0.");
16 return -EINVAL;
17 }
18 if (nslots < 0 || nslots > (PCI_SID_ESR_NSLOTS >> SLOTID_NSLOTS_SHIFT)) {
19 /* TODO: error report? */
20 return -EINVAL;
21 }
22
23 cap = pci_add_capability(d, PCI_CAP_ID_SLOTID, offset, SLOTID_CAP_LENGTH);
24 if (cap < 0) {
25 return cap;
26 }
27 /* We make each chassis unique, this way each bridge is First in Chassis */
28 d->config[cap + PCI_SID_ESR] = PCI_SID_ESR_FIC |
29 (nslots << SLOTID_NSLOTS_SHIFT);
30 d->cmask[cap + PCI_SID_ESR] = 0xff;
31 d->config[cap + PCI_SID_CHASSIS_NR] = chassis;
32 /* Note: Chassis number register is non-volatile,
33 so we don't reset it. */
34 /* TODO: store in eeprom? */
35 d->wmask[cap + PCI_SID_CHASSIS_NR] = 0xff;
36
37 d->cap_present |= QEMU_PCI_CAP_SLOTID;
38 return 0;
39}
40
41void slotid_cap_cleanup(PCIDevice *d)
42{
43 /* TODO: cleanup config space? */
44 d->cap_present &= ~QEMU_PCI_CAP_SLOTID;
45}