Merge remote-tracking branch 'remotes/stefanberger/tags/pull-tpm-2019-07-08-1' into...
[qemu/ar7.git] / hw / pci / pcie_port.c
blobc9c3ba540addc4ba546bfef5c11c07d9e9a56b45
1 /*
2 * pcie_port.c
4 * Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp>
5 * VA Linux Systems Japan K.K.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program 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
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "hw/pci/pcie_port.h"
23 #include "qemu/module.h"
24 #include "hw/hotplug.h"
26 void pcie_port_init_reg(PCIDevice *d)
28 /* Unlike pci bridge,
29 66MHz and fast back to back don't apply to pci express port. */
30 pci_set_word(d->config + PCI_STATUS, 0);
31 pci_set_word(d->config + PCI_SEC_STATUS, 0);
34 * Unlike conventional pci bridge, for some bits the spec states:
35 * Does not apply to PCI Express and must be hardwired to 0.
37 pci_word_test_and_clear_mask(d->wmask + PCI_BRIDGE_CONTROL,
38 PCI_BRIDGE_CTL_MASTER_ABORT |
39 PCI_BRIDGE_CTL_FAST_BACK |
40 PCI_BRIDGE_CTL_DISCARD |
41 PCI_BRIDGE_CTL_SEC_DISCARD |
42 PCI_BRIDGE_CTL_DISCARD_STATUS |
43 PCI_BRIDGE_CTL_DISCARD_SERR);
46 /**************************************************************************
47 * (chassis number, pcie physical slot number) -> pcie slot conversion
49 struct PCIEChassis {
50 uint8_t number;
52 QLIST_HEAD(, PCIESlot) slots;
53 QLIST_ENTRY(PCIEChassis) next;
56 static QLIST_HEAD(, PCIEChassis) chassis = QLIST_HEAD_INITIALIZER(chassis);
58 static struct PCIEChassis *pcie_chassis_find(uint8_t chassis_number)
60 struct PCIEChassis *c;
61 QLIST_FOREACH(c, &chassis, next) {
62 if (c->number == chassis_number) {
63 break;
66 return c;
69 void pcie_chassis_create(uint8_t chassis_number)
71 struct PCIEChassis *c;
72 c = pcie_chassis_find(chassis_number);
73 if (c) {
74 return;
76 c = g_malloc0(sizeof(*c));
77 c->number = chassis_number;
78 QLIST_INIT(&c->slots);
79 QLIST_INSERT_HEAD(&chassis, c, next);
82 static PCIESlot *pcie_chassis_find_slot_with_chassis(struct PCIEChassis *c,
83 uint8_t slot)
85 PCIESlot *s;
86 QLIST_FOREACH(s, &c->slots, next) {
87 if (s->slot == slot) {
88 break;
91 return s;
94 PCIESlot *pcie_chassis_find_slot(uint8_t chassis_number, uint16_t slot)
96 struct PCIEChassis *c;
97 c = pcie_chassis_find(chassis_number);
98 if (!c) {
99 return NULL;
101 return pcie_chassis_find_slot_with_chassis(c, slot);
104 int pcie_chassis_add_slot(struct PCIESlot *slot)
106 struct PCIEChassis *c;
107 c = pcie_chassis_find(slot->chassis);
108 if (!c) {
109 return -ENODEV;
111 if (pcie_chassis_find_slot_with_chassis(c, slot->slot)) {
112 return -EBUSY;
114 QLIST_INSERT_HEAD(&c->slots, slot, next);
115 return 0;
118 void pcie_chassis_del_slot(PCIESlot *s)
120 QLIST_REMOVE(s, next);
123 static Property pcie_port_props[] = {
124 DEFINE_PROP_UINT8("port", PCIEPort, port, 0),
125 DEFINE_PROP_UINT16("aer_log_max", PCIEPort,
126 parent_obj.parent_obj.exp.aer_log.log_max,
127 PCIE_AER_LOG_MAX_DEFAULT),
128 DEFINE_PROP_END_OF_LIST()
131 static void pcie_port_class_init(ObjectClass *oc, void *data)
133 DeviceClass *dc = DEVICE_CLASS(oc);
135 dc->props = pcie_port_props;
138 static const TypeInfo pcie_port_type_info = {
139 .name = TYPE_PCIE_PORT,
140 .parent = TYPE_PCI_BRIDGE,
141 .instance_size = sizeof(PCIEPort),
142 .abstract = true,
143 .class_init = pcie_port_class_init,
146 static Property pcie_slot_props[] = {
147 DEFINE_PROP_UINT8("chassis", PCIESlot, chassis, 0),
148 DEFINE_PROP_UINT16("slot", PCIESlot, slot, 0),
149 DEFINE_PROP_END_OF_LIST()
152 static void pcie_slot_class_init(ObjectClass *oc, void *data)
154 DeviceClass *dc = DEVICE_CLASS(oc);
155 HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(oc);
157 dc->props = pcie_slot_props;
158 hc->pre_plug = pcie_cap_slot_pre_plug_cb;
159 hc->plug = pcie_cap_slot_plug_cb;
160 hc->unplug = pcie_cap_slot_unplug_cb;
161 hc->unplug_request = pcie_cap_slot_unplug_request_cb;
164 static const TypeInfo pcie_slot_type_info = {
165 .name = TYPE_PCIE_SLOT,
166 .parent = TYPE_PCIE_PORT,
167 .instance_size = sizeof(PCIESlot),
168 .abstract = true,
169 .class_init = pcie_slot_class_init,
170 .interfaces = (InterfaceInfo[]) {
171 { TYPE_HOTPLUG_HANDLER },
176 static void pcie_port_register_types(void)
178 type_register_static(&pcie_port_type_info);
179 type_register_static(&pcie_slot_type_info);
182 type_init(pcie_port_register_types)