]>
Commit | Line | Data |
---|---|---|
48ebf2f9 IY |
1 | /* |
2 | * x3130_downstream.c | |
3 | * TI X3130 pci express downstream port switch | |
4 | * | |
5 | * Copyright (c) 2010 Isaku Yamahata <yamahata at valinux co jp> | |
6 | * VA Linux Systems Japan K.K. | |
7 | * | |
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. | |
12 | * | |
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. | |
17 | * | |
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/>. | |
20 | */ | |
21 | ||
22 | #include "pci_ids.h" | |
23 | #include "msi.h" | |
24 | #include "pcie.h" | |
25 | #include "xio3130_downstream.h" | |
26 | ||
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 | |
37 | ||
38 | static void xio3130_downstream_write_config(PCIDevice *d, uint32_t address, | |
39 | uint32_t val, int len) | |
40 | { | |
48ebf2f9 IY |
41 | pci_bridge_write_config(d, address, val, len); |
42 | pcie_cap_flr_write_config(d, address, val, len); | |
6bde6aaa | 43 | pcie_cap_slot_write_config(d, address, val, len); |
09b926d4 | 44 | pcie_aer_write_config(d, address, val, len); |
48ebf2f9 IY |
45 | } |
46 | ||
47 | static void xio3130_downstream_reset(DeviceState *qdev) | |
48 | { | |
40021f08 | 49 | PCIDevice *d = PCI_DEVICE(qdev); |
cbd2d434 | 50 | |
48ebf2f9 IY |
51 | pcie_cap_deverr_reset(d); |
52 | pcie_cap_slot_reset(d); | |
53 | pcie_cap_ari_reset(d); | |
54 | pci_bridge_reset(qdev); | |
55 | } | |
56 | ||
57 | static int xio3130_downstream_initfn(PCIDevice *d) | |
58 | { | |
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; | |
09b926d4 | 63 | int tmp; |
48ebf2f9 IY |
64 | |
65 | rc = pci_bridge_initfn(d); | |
66 | if (rc < 0) { | |
67 | return rc; | |
68 | } | |
69 | ||
70 | pcie_port_init_reg(d); | |
48ebf2f9 IY |
71 | |
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) { | |
09b926d4 | 76 | goto err_bridge; |
48ebf2f9 IY |
77 | } |
78 | rc = pci_bridge_ssvid_init(d, XIO3130_SSVID_OFFSET, | |
79 | XIO3130_SSVID_SVID, XIO3130_SSVID_SSID); | |
80 | if (rc < 0) { | |
09b926d4 | 81 | goto err_bridge; |
48ebf2f9 IY |
82 | } |
83 | rc = pcie_cap_init(d, XIO3130_EXP_OFFSET, PCI_EXP_TYPE_DOWNSTREAM, | |
84 | p->port); | |
85 | if (rc < 0) { | |
09b926d4 | 86 | goto err_msi; |
48ebf2f9 | 87 | } |
0ead87c8 | 88 | pcie_cap_flr_init(d); |
48ebf2f9 IY |
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) { | |
09b926d4 | 94 | goto err_pcie_cap; |
48ebf2f9 IY |
95 | } |
96 | pcie_cap_ari_init(d); | |
09b926d4 IY |
97 | rc = pcie_aer_init(d, XIO3130_AER_OFFSET); |
98 | if (rc < 0) { | |
99 | goto err; | |
100 | } | |
48ebf2f9 IY |
101 | |
102 | return 0; | |
09b926d4 IY |
103 | |
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; | |
48ebf2f9 IY |
114 | } |
115 | ||
116 | static int xio3130_downstream_exitfn(PCIDevice *d) | |
117 | { | |
09b926d4 IY |
118 | PCIBridge* br = DO_UPCAST(PCIBridge, dev, d); |
119 | PCIEPort *p = DO_UPCAST(PCIEPort, br, br); | |
120 | PCIESlot *s = DO_UPCAST(PCIESlot, port, p); | |
121 | ||
122 | pcie_aer_exit(d); | |
123 | pcie_chassis_del_slot(s); | |
48ebf2f9 | 124 | pcie_cap_exit(d); |
09b926d4 | 125 | msi_uninit(d); |
48ebf2f9 IY |
126 | return pci_bridge_exitfn(d); |
127 | } | |
128 | ||
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) | |
133 | { | |
134 | PCIDevice *d; | |
135 | PCIBridge *br; | |
136 | DeviceState *qdev; | |
137 | ||
138 | d = pci_create_multifunction(bus, devfn, multifunction, | |
139 | "xio3130-downstream"); | |
140 | if (!d) { | |
141 | return NULL; | |
142 | } | |
143 | br = DO_UPCAST(PCIBridge, dev, d); | |
144 | ||
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); | |
151 | ||
152 | return DO_UPCAST(PCIESlot, port, DO_UPCAST(PCIEPort, br, br)); | |
153 | } | |
154 | ||
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, | |
6bde6aaa | 160 | .post_load = pcie_cap_slot_post_load, |
48ebf2f9 IY |
161 | .fields = (VMStateField[]) { |
162 | VMSTATE_PCIE_DEVICE(port.br.dev, PCIESlot), | |
09b926d4 IY |
163 | VMSTATE_STRUCT(port.br.dev.exp.aer_log, PCIESlot, 0, |
164 | vmstate_pcie_aer_log, PCIEAERLog), | |
48ebf2f9 IY |
165 | VMSTATE_END_OF_LIST() |
166 | } | |
167 | }; | |
168 | ||
40021f08 AL |
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(), | |
177 | }; | |
178 | ||
179 | static void xio3130_downstream_class_init(ObjectClass *klass, void *data) | |
180 | { | |
39bffca2 | 181 | DeviceClass *dc = DEVICE_CLASS(klass); |
40021f08 AL |
182 | PCIDeviceClass *k = PCI_DEVICE_CLASS(klass); |
183 | ||
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; | |
39bffca2 AL |
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; | |
40021f08 AL |
196 | } |
197 | ||
39bffca2 AL |
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, | |
48ebf2f9 IY |
203 | }; |
204 | ||
83f7d43a | 205 | static void xio3130_downstream_register_types(void) |
48ebf2f9 | 206 | { |
39bffca2 | 207 | type_register_static(&xio3130_downstream_info); |
48ebf2f9 IY |
208 | } |
209 | ||
83f7d43a | 210 | type_init(xio3130_downstream_register_types) |
48ebf2f9 IY |
211 | |
212 | /* | |
213 | * Local variables: | |
214 | * c-indent-level: 4 | |
215 | * c-basic-offset: 4 | |
216 | * tab-width: 8 | |
217 | * indent-tab-mode: nil | |
218 | * End: | |
219 | */ |