Merge tag 'pull-loongarch-20241016' of https://gitlab.com/gaosong/qemu into staging
[qemu/armbru.git] / hw / pci / pcie_port.c
blob9f978ba16485007a9aab0020a7d9015207716405
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 "hw/qdev-properties.h"
24 #include "qemu/module.h"
25 #include "hw/hotplug.h"
27 void pcie_port_init_reg(PCIDevice *d)
29 /* Unlike pci bridge,
30 66MHz and fast back to back don't apply to pci express port. */
31 pci_set_word(d->config + PCI_STATUS, 0);
32 pci_set_word(d->config + PCI_SEC_STATUS, 0);
35 * Unlike conventional pci bridge, for some bits the spec states:
36 * Does not apply to PCI Express and must be hardwired to 0.
38 pci_word_test_and_clear_mask(d->wmask + PCI_BRIDGE_CONTROL,
39 PCI_BRIDGE_CTL_MASTER_ABORT |
40 PCI_BRIDGE_CTL_FAST_BACK |
41 PCI_BRIDGE_CTL_DISCARD |
42 PCI_BRIDGE_CTL_SEC_DISCARD |
43 PCI_BRIDGE_CTL_DISCARD_STATUS |
44 PCI_BRIDGE_CTL_DISCARD_SERR);
47 /**************************************************************************
48 * (chassis number, pcie physical slot number) -> pcie slot conversion
50 struct PCIEChassis {
51 uint8_t number;
53 QLIST_HEAD(, PCIESlot) slots;
54 QLIST_ENTRY(PCIEChassis) next;
57 static QLIST_HEAD(, PCIEChassis) chassis = QLIST_HEAD_INITIALIZER(chassis);
59 static struct PCIEChassis *pcie_chassis_find(uint8_t chassis_number)
61 struct PCIEChassis *c;
62 QLIST_FOREACH(c, &chassis, next) {
63 if (c->number == chassis_number) {
64 break;
67 return c;
70 void pcie_chassis_create(uint8_t chassis_number)
72 struct PCIEChassis *c;
73 c = pcie_chassis_find(chassis_number);
74 if (c) {
75 return;
77 c = g_malloc0(sizeof(*c));
78 c->number = chassis_number;
79 QLIST_INIT(&c->slots);
80 QLIST_INSERT_HEAD(&chassis, c, next);
83 static PCIESlot *pcie_chassis_find_slot_with_chassis(struct PCIEChassis *c,
84 uint8_t slot)
86 PCIESlot *s;
87 QLIST_FOREACH(s, &c->slots, next) {
88 if (s->slot == slot) {
89 break;
92 return s;
95 int pcie_chassis_add_slot(struct PCIESlot *slot)
97 struct PCIEChassis *c;
98 c = pcie_chassis_find(slot->chassis);
99 if (!c) {
100 return -ENODEV;
102 if (pcie_chassis_find_slot_with_chassis(c, slot->slot)) {
103 return -EBUSY;
105 QLIST_INSERT_HEAD(&c->slots, slot, next);
106 return 0;
109 void pcie_chassis_del_slot(PCIESlot *s)
111 QLIST_REMOVE(s, next);
114 static Property pcie_port_props[] = {
115 DEFINE_PROP_UINT8("port", PCIEPort, port, 0),
116 DEFINE_PROP_UINT16("aer_log_max", PCIEPort,
117 parent_obj.parent_obj.exp.aer_log.log_max,
118 PCIE_AER_LOG_MAX_DEFAULT),
119 DEFINE_PROP_END_OF_LIST()
122 static void pcie_port_class_init(ObjectClass *oc, void *data)
124 DeviceClass *dc = DEVICE_CLASS(oc);
126 device_class_set_props(dc, pcie_port_props);
129 PCIDevice *pcie_find_port_by_pn(PCIBus *bus, uint8_t pn)
131 int devfn;
133 for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
134 PCIDevice *d = bus->devices[devfn];
135 PCIEPort *port;
137 if (!d || !pci_is_express(d) || !d->exp.exp_cap) {
138 continue;
141 if (!object_dynamic_cast(OBJECT(d), TYPE_PCIE_PORT)) {
142 continue;
145 port = PCIE_PORT(d);
146 if (port->port == pn) {
147 return d;
151 return NULL;
154 /* Find first port in devfn number order */
155 PCIDevice *pcie_find_port_first(PCIBus *bus)
157 int devfn;
159 for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
160 PCIDevice *d = bus->devices[devfn];
162 if (!d || !pci_is_express(d) || !d->exp.exp_cap) {
163 continue;
166 if (object_dynamic_cast(OBJECT(d), TYPE_PCIE_PORT)) {
167 return d;
171 return NULL;
174 int pcie_count_ds_ports(PCIBus *bus)
176 int dsp_count = 0;
177 int devfn;
179 for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
180 PCIDevice *d = bus->devices[devfn];
182 if (!d || !pci_is_express(d) || !d->exp.exp_cap) {
183 continue;
185 if (object_dynamic_cast(OBJECT(d), TYPE_PCIE_PORT)) {
186 dsp_count++;
189 return dsp_count;
192 static bool pcie_slot_is_hotpluggbale_bus(HotplugHandler *plug_handler,
193 BusState *bus)
195 PCIESlot *s = PCIE_SLOT(bus->parent);
196 return s->hotplug;
199 static const TypeInfo pcie_port_type_info = {
200 .name = TYPE_PCIE_PORT,
201 .parent = TYPE_PCI_BRIDGE,
202 .instance_size = sizeof(PCIEPort),
203 .abstract = true,
204 .class_init = pcie_port_class_init,
207 static Property pcie_slot_props[] = {
208 DEFINE_PROP_UINT8("chassis", PCIESlot, chassis, 0),
209 DEFINE_PROP_UINT16("slot", PCIESlot, slot, 0),
210 DEFINE_PROP_BOOL("hotplug", PCIESlot, hotplug, true),
211 DEFINE_PROP_BOOL("x-do-not-expose-native-hotplug-cap", PCIESlot,
212 hide_native_hotplug_cap, false),
213 DEFINE_PROP_END_OF_LIST()
216 static void pcie_slot_class_init(ObjectClass *oc, void *data)
218 DeviceClass *dc = DEVICE_CLASS(oc);
219 HotplugHandlerClass *hc = HOTPLUG_HANDLER_CLASS(oc);
221 device_class_set_props(dc, pcie_slot_props);
222 hc->pre_plug = pcie_cap_slot_pre_plug_cb;
223 hc->plug = pcie_cap_slot_plug_cb;
224 hc->unplug = pcie_cap_slot_unplug_cb;
225 hc->unplug_request = pcie_cap_slot_unplug_request_cb;
226 hc->is_hotpluggable_bus = pcie_slot_is_hotpluggbale_bus;
229 static const TypeInfo pcie_slot_type_info = {
230 .name = TYPE_PCIE_SLOT,
231 .parent = TYPE_PCIE_PORT,
232 .instance_size = sizeof(PCIESlot),
233 .abstract = true,
234 .class_init = pcie_slot_class_init,
235 .interfaces = (InterfaceInfo[]) {
236 { TYPE_HOTPLUG_HANDLER },
241 static void pcie_port_register_types(void)
243 type_register_static(&pcie_port_type_info);
244 type_register_static(&pcie_slot_type_info);
247 type_init(pcie_port_register_types)