msi: Invoke msi/msix_write_config from PCI core
[qemu/kevin.git] / hw / xio3130_downstream.c
blob56d1b353d0a65226571a5dd0d2cb39c064b1e802
1 /*
2 * x3130_downstream.c
3 * TI X3130 pci express downstream port switch
5 * Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp>
6 * VA Linux Systems Japan K.K.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "pci_ids.h"
23 #include "msi.h"
24 #include "pcie.h"
25 #include "xio3130_downstream.h"
27 #define PCI_DEVICE_ID_TI_XIO3130D 0x8233 /* downstream port */
28 #define XIO3130_REVISION 0x1
29 #define XIO3130_MSI_OFFSET 0x70
30 #define XIO3130_MSI_SUPPORTED_FLAGS PCI_MSI_FLAGS_64BIT
31 #define XIO3130_MSI_NR_VECTOR 1
32 #define XIO3130_SSVID_OFFSET 0x80
33 #define XIO3130_SSVID_SVID 0
34 #define XIO3130_SSVID_SSID 0
35 #define XIO3130_EXP_OFFSET 0x90
36 #define XIO3130_AER_OFFSET 0x100
38 static void xio3130_downstream_write_config(PCIDevice *d, uint32_t address,
39 uint32_t val, int len)
41 pci_bridge_write_config(d, address, val, len);
42 pcie_cap_flr_write_config(d, address, val, len);
43 pcie_cap_slot_write_config(d, address, val, len);
44 pcie_aer_write_config(d, address, val, len);
47 static void xio3130_downstream_reset(DeviceState *qdev)
49 PCIDevice *d = PCI_DEVICE(qdev);
51 pcie_cap_deverr_reset(d);
52 pcie_cap_slot_reset(d);
53 pcie_cap_ari_reset(d);
54 pci_bridge_reset(qdev);
57 static int xio3130_downstream_initfn(PCIDevice *d)
59 PCIBridge* br = DO_UPCAST(PCIBridge, dev, d);
60 PCIEPort *p = DO_UPCAST(PCIEPort, br, br);
61 PCIESlot *s = DO_UPCAST(PCIESlot, port, p);
62 int rc;
63 int tmp;
65 rc = pci_bridge_initfn(d);
66 if (rc < 0) {
67 return rc;
70 pcie_port_init_reg(d);
72 rc = msi_init(d, XIO3130_MSI_OFFSET, XIO3130_MSI_NR_VECTOR,
73 XIO3130_MSI_SUPPORTED_FLAGS & PCI_MSI_FLAGS_64BIT,
74 XIO3130_MSI_SUPPORTED_FLAGS & PCI_MSI_FLAGS_MASKBIT);
75 if (rc < 0) {
76 goto err_bridge;
78 rc = pci_bridge_ssvid_init(d, XIO3130_SSVID_OFFSET,
79 XIO3130_SSVID_SVID, XIO3130_SSVID_SSID);
80 if (rc < 0) {
81 goto err_bridge;
83 rc = pcie_cap_init(d, XIO3130_EXP_OFFSET, PCI_EXP_TYPE_DOWNSTREAM,
84 p->port);
85 if (rc < 0) {
86 goto err_msi;
88 pcie_cap_flr_init(d);
89 pcie_cap_deverr_init(d);
90 pcie_cap_slot_init(d, s->slot);
91 pcie_chassis_create(s->chassis);
92 rc = pcie_chassis_add_slot(s);
93 if (rc < 0) {
94 goto err_pcie_cap;
96 pcie_cap_ari_init(d);
97 rc = pcie_aer_init(d, XIO3130_AER_OFFSET);
98 if (rc < 0) {
99 goto err;
102 return 0;
104 err:
105 pcie_chassis_del_slot(s);
106 err_pcie_cap:
107 pcie_cap_exit(d);
108 err_msi:
109 msi_uninit(d);
110 err_bridge:
111 tmp = pci_bridge_exitfn(d);
112 assert(!tmp);
113 return rc;
116 static int xio3130_downstream_exitfn(PCIDevice *d)
118 PCIBridge* br = DO_UPCAST(PCIBridge, dev, d);
119 PCIEPort *p = DO_UPCAST(PCIEPort, br, br);
120 PCIESlot *s = DO_UPCAST(PCIESlot, port, p);
122 pcie_aer_exit(d);
123 pcie_chassis_del_slot(s);
124 pcie_cap_exit(d);
125 msi_uninit(d);
126 return pci_bridge_exitfn(d);
129 PCIESlot *xio3130_downstream_init(PCIBus *bus, int devfn, bool multifunction,
130 const char *bus_name, pci_map_irq_fn map_irq,
131 uint8_t port, uint8_t chassis,
132 uint16_t slot)
134 PCIDevice *d;
135 PCIBridge *br;
136 DeviceState *qdev;
138 d = pci_create_multifunction(bus, devfn, multifunction,
139 "xio3130-downstream");
140 if (!d) {
141 return NULL;
143 br = DO_UPCAST(PCIBridge, dev, d);
145 qdev = &br->dev.qdev;
146 pci_bridge_map_irq(br, bus_name, map_irq);
147 qdev_prop_set_uint8(qdev, "port", port);
148 qdev_prop_set_uint8(qdev, "chassis", chassis);
149 qdev_prop_set_uint16(qdev, "slot", slot);
150 qdev_init_nofail(qdev);
152 return DO_UPCAST(PCIESlot, port, DO_UPCAST(PCIEPort, br, br));
155 static const VMStateDescription vmstate_xio3130_downstream = {
156 .name = "xio3130-express-downstream-port",
157 .version_id = 1,
158 .minimum_version_id = 1,
159 .minimum_version_id_old = 1,
160 .post_load = pcie_cap_slot_post_load,
161 .fields = (VMStateField[]) {
162 VMSTATE_PCIE_DEVICE(port.br.dev, PCIESlot),
163 VMSTATE_STRUCT(port.br.dev.exp.aer_log, PCIESlot, 0,
164 vmstate_pcie_aer_log, PCIEAERLog),
165 VMSTATE_END_OF_LIST()
169 static Property xio3130_downstream_properties[] = {
170 DEFINE_PROP_UINT8("port", PCIESlot, port.port, 0),
171 DEFINE_PROP_UINT8("chassis", PCIESlot, chassis, 0),
172 DEFINE_PROP_UINT16("slot", PCIESlot, slot, 0),
173 DEFINE_PROP_UINT16("aer_log_max", PCIESlot,
174 port.br.dev.exp.aer_log.log_max,
175 PCIE_AER_LOG_MAX_DEFAULT),
176 DEFINE_PROP_END_OF_LIST(),
179 static void xio3130_downstream_class_init(ObjectClass *klass, void *data)
181 DeviceClass *dc = DEVICE_CLASS(klass);
182 PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
184 k->is_express = 1;
185 k->is_bridge = 1;
186 k->config_write = xio3130_downstream_write_config;
187 k->init = xio3130_downstream_initfn;
188 k->exit = xio3130_downstream_exitfn;
189 k->vendor_id = PCI_VENDOR_ID_TI;
190 k->device_id = PCI_DEVICE_ID_TI_XIO3130D;
191 k->revision = XIO3130_REVISION;
192 dc->desc = "TI X3130 Downstream Port of PCI Express Switch";
193 dc->reset = xio3130_downstream_reset;
194 dc->vmsd = &vmstate_xio3130_downstream;
195 dc->props = xio3130_downstream_properties;
198 static TypeInfo xio3130_downstream_info = {
199 .name = "xio3130-downstream",
200 .parent = TYPE_PCI_DEVICE,
201 .instance_size = sizeof(PCIESlot),
202 .class_init = xio3130_downstream_class_init,
205 static void xio3130_downstream_register_types(void)
207 type_register_static(&xio3130_downstream_info);
210 type_init(xio3130_downstream_register_types)
213 * Local variables:
214 * c-indent-level: 4
215 * c-basic-offset: 4
216 * tab-width: 8
217 * indent-tab-mode: nil
218 * End: