]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/xen/xen-pciback/conf_space_header.c
xen-pciback: drop rom_init()
[mirror_ubuntu-bionic-kernel.git] / drivers / xen / xen-pciback / conf_space_header.c
CommitLineData
30edc14b
KRW
1/*
2 * PCI Backend - Handles the virtual fields in the configuration space headers.
3 *
4 * Author: Ryan Wilson <hap9@epoch.ncsc.mil>
5 */
6
283c0972
JP
7#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
30edc14b
KRW
9#include <linux/kernel.h>
10#include <linux/pci.h>
11#include "pciback.h"
12#include "conf_space.h"
13
af6fc858
JB
14struct pci_cmd_info {
15 u16 val;
16};
17
30edc14b
KRW
18struct pci_bar_info {
19 u32 val;
20 u32 len_val;
21 int which;
22};
23
24#define is_enable_cmd(value) ((value)&(PCI_COMMAND_MEMORY|PCI_COMMAND_IO))
25#define is_master_cmd(value) ((value)&PCI_COMMAND_MASTER)
26
af6fc858
JB
27/* Bits guests are allowed to control in permissive mode. */
28#define PCI_COMMAND_GUEST (PCI_COMMAND_MASTER|PCI_COMMAND_SPECIAL| \
29 PCI_COMMAND_INVALIDATE|PCI_COMMAND_VGA_PALETTE| \
30 PCI_COMMAND_WAIT|PCI_COMMAND_FAST_BACK)
31
32static void *command_init(struct pci_dev *dev, int offset)
fd5b221b 33{
af6fc858
JB
34 struct pci_cmd_info *cmd = kmalloc(sizeof(*cmd), GFP_KERNEL);
35 int err;
36
37 if (!cmd)
38 return ERR_PTR(-ENOMEM);
39
40 err = pci_read_config_word(dev, PCI_COMMAND, &cmd->val);
41 if (err) {
42 kfree(cmd);
43 return ERR_PTR(err);
fd5b221b
ZY
44 }
45
af6fc858
JB
46 return cmd;
47}
48
49static int command_read(struct pci_dev *dev, int offset, u16 *value, void *data)
50{
51 int ret = pci_read_config_word(dev, offset, value);
52 const struct pci_cmd_info *cmd = data;
53
54 *value &= PCI_COMMAND_GUEST;
55 *value |= cmd->val & ~PCI_COMMAND_GUEST;
56
fd5b221b
ZY
57 return ret;
58}
59
30edc14b
KRW
60static int command_write(struct pci_dev *dev, int offset, u16 value, void *data)
61{
a92336a1 62 struct xen_pcibk_dev_data *dev_data;
30edc14b 63 int err;
af6fc858
JB
64 u16 val;
65 struct pci_cmd_info *cmd = data;
30edc14b 66
0513fe9e 67 dev_data = pci_get_drvdata(dev);
30edc14b
KRW
68 if (!pci_is_enabled(dev) && is_enable_cmd(value)) {
69 if (unlikely(verbose_request))
a92336a1 70 printk(KERN_DEBUG DRV_NAME ": %s: enable\n",
30edc14b
KRW
71 pci_name(dev));
72 err = pci_enable_device(dev);
73 if (err)
74 return err;
0513fe9e
KRW
75 if (dev_data)
76 dev_data->enable_intx = 1;
30edc14b
KRW
77 } else if (pci_is_enabled(dev) && !is_enable_cmd(value)) {
78 if (unlikely(verbose_request))
a92336a1 79 printk(KERN_DEBUG DRV_NAME ": %s: disable\n",
30edc14b
KRW
80 pci_name(dev));
81 pci_disable_device(dev);
0513fe9e
KRW
82 if (dev_data)
83 dev_data->enable_intx = 0;
30edc14b
KRW
84 }
85
86 if (!dev->is_busmaster && is_master_cmd(value)) {
87 if (unlikely(verbose_request))
a92336a1 88 printk(KERN_DEBUG DRV_NAME ": %s: set bus master\n",
30edc14b
KRW
89 pci_name(dev));
90 pci_set_master(dev);
278edfc0
JB
91 } else if (dev->is_busmaster && !is_master_cmd(value)) {
92 if (unlikely(verbose_request))
93 printk(KERN_DEBUG DRV_NAME ": %s: clear bus master\n",
94 pci_name(dev));
95 pci_clear_master(dev);
30edc14b
KRW
96 }
97
278edfc0
JB
98 if (!(cmd->val & PCI_COMMAND_INVALIDATE) &&
99 (value & PCI_COMMAND_INVALIDATE)) {
30edc14b
KRW
100 if (unlikely(verbose_request))
101 printk(KERN_DEBUG
a92336a1 102 DRV_NAME ": %s: enable memory-write-invalidate\n",
30edc14b
KRW
103 pci_name(dev));
104 err = pci_set_mwi(dev);
105 if (err) {
283c0972
JP
106 pr_warn("%s: cannot enable memory-write-invalidate (%d)\n",
107 pci_name(dev), err);
30edc14b
KRW
108 value &= ~PCI_COMMAND_INVALIDATE;
109 }
278edfc0
JB
110 } else if ((cmd->val & PCI_COMMAND_INVALIDATE) &&
111 !(value & PCI_COMMAND_INVALIDATE)) {
112 if (unlikely(verbose_request))
113 printk(KERN_DEBUG
114 DRV_NAME ": %s: disable memory-write-invalidate\n",
115 pci_name(dev));
116 pci_clear_mwi(dev);
30edc14b
KRW
117 }
118
af6fc858
JB
119 cmd->val = value;
120
8014bcc8 121 if (!xen_pcibk_permissive && (!dev_data || !dev_data->permissive))
af6fc858
JB
122 return 0;
123
124 /* Only allow the guest to control certain bits. */
125 err = pci_read_config_word(dev, offset, &val);
126 if (err || val == value)
127 return err;
128
129 value &= PCI_COMMAND_GUEST;
130 value |= val & ~PCI_COMMAND_GUEST;
131
30edc14b
KRW
132 return pci_write_config_word(dev, offset, value);
133}
134
135static int rom_write(struct pci_dev *dev, int offset, u32 value, void *data)
136{
137 struct pci_bar_info *bar = data;
138
139 if (unlikely(!bar)) {
283c0972 140 pr_warn(DRV_NAME ": driver data not found for %s\n",
30edc14b
KRW
141 pci_name(dev));
142 return XEN_PCI_ERR_op_failed;
143 }
144
145 /* A write to obtain the length must happen as a 32-bit write.
146 * This does not (yet) support writing individual bytes
147 */
d2bd05d8 148 if ((value | ~PCI_ROM_ADDRESS_MASK) == ~0U)
30edc14b
KRW
149 bar->which = 1;
150 else {
151 u32 tmpval;
152 pci_read_config_dword(dev, offset, &tmpval);
153 if (tmpval != bar->val && value == bar->val) {
154 /* Allow restoration of bar value. */
155 pci_write_config_dword(dev, offset, bar->val);
156 }
157 bar->which = 0;
158 }
159
160 /* Do we need to support enabling/disabling the rom address here? */
161
162 return 0;
163}
164
165/* For the BARs, only allow writes which write ~0 or
166 * the correct resource information
167 * (Needed for when the driver probes the resource usage)
168 */
169static int bar_write(struct pci_dev *dev, int offset, u32 value, void *data)
170{
171 struct pci_bar_info *bar = data;
172
173 if (unlikely(!bar)) {
283c0972 174 pr_warn(DRV_NAME ": driver data not found for %s\n",
30edc14b
KRW
175 pci_name(dev));
176 return XEN_PCI_ERR_op_failed;
177 }
178
179 /* A write to obtain the length must happen as a 32-bit write.
180 * This does not (yet) support writing individual bytes
181 */
182 if (value == ~0)
183 bar->which = 1;
184 else {
185 u32 tmpval;
186 pci_read_config_dword(dev, offset, &tmpval);
187 if (tmpval != bar->val && value == bar->val) {
188 /* Allow restoration of bar value. */
189 pci_write_config_dword(dev, offset, bar->val);
190 }
191 bar->which = 0;
192 }
193
194 return 0;
195}
196
197static int bar_read(struct pci_dev *dev, int offset, u32 * value, void *data)
198{
199 struct pci_bar_info *bar = data;
200
201 if (unlikely(!bar)) {
283c0972 202 pr_warn(DRV_NAME ": driver data not found for %s\n",
30edc14b
KRW
203 pci_name(dev));
204 return XEN_PCI_ERR_op_failed;
205 }
206
207 *value = bar->which ? bar->len_val : bar->val;
208
209 return 0;
210}
211
212static inline void read_dev_bar(struct pci_dev *dev,
6c6e4caa 213 struct pci_bar_info *bar_info, int offset)
30edc14b 214{
fd5b221b
ZY
215 int pos;
216 struct resource *res = dev->resource;
217
218 if (offset == PCI_ROM_ADDRESS || offset == PCI_ROM_ADDRESS1)
219 pos = PCI_ROM_RESOURCE;
220 else {
221 pos = (offset - PCI_BASE_ADDRESS_0) / 4;
222 if (pos && ((res[pos - 1].flags & (PCI_BASE_ADDRESS_SPACE |
223 PCI_BASE_ADDRESS_MEM_TYPE_MASK)) ==
224 (PCI_BASE_ADDRESS_SPACE_MEMORY |
225 PCI_BASE_ADDRESS_MEM_TYPE_64))) {
226 bar_info->val = res[pos - 1].start >> 32;
d2bd05d8 227 bar_info->len_val = -resource_size(&res[pos - 1]) >> 32;
fd5b221b
ZY
228 return;
229 }
230 }
231
d2bd05d8
JB
232 if (!res[pos].flags ||
233 (res[pos].flags & (IORESOURCE_DISABLED | IORESOURCE_UNSET |
234 IORESOURCE_BUSY)))
235 return;
236
fd5b221b
ZY
237 bar_info->val = res[pos].start |
238 (res[pos].flags & PCI_REGION_FLAG_MASK);
d2bd05d8
JB
239 bar_info->len_val = -resource_size(&res[pos]) |
240 (res[pos].flags & PCI_REGION_FLAG_MASK);
30edc14b
KRW
241}
242
243static void *bar_init(struct pci_dev *dev, int offset)
244{
d2bd05d8 245 struct pci_bar_info *bar = kzalloc(sizeof(*bar), GFP_KERNEL);
30edc14b
KRW
246
247 if (!bar)
248 return ERR_PTR(-ENOMEM);
249
6c6e4caa 250 read_dev_bar(dev, bar, offset);
30edc14b
KRW
251
252 return bar;
253}
254
30edc14b
KRW
255static void bar_reset(struct pci_dev *dev, int offset, void *data)
256{
257 struct pci_bar_info *bar = data;
258
259 bar->which = 0;
260}
261
262static void bar_release(struct pci_dev *dev, int offset, void *data)
263{
264 kfree(data);
265}
266
a92336a1 267static int xen_pcibk_read_vendor(struct pci_dev *dev, int offset,
fd5b221b
ZY
268 u16 *value, void *data)
269{
270 *value = dev->vendor;
271
272 return 0;
273}
274
a92336a1 275static int xen_pcibk_read_device(struct pci_dev *dev, int offset,
fd5b221b
ZY
276 u16 *value, void *data)
277{
278 *value = dev->device;
279
280 return 0;
281}
282
30edc14b
KRW
283static int interrupt_read(struct pci_dev *dev, int offset, u8 * value,
284 void *data)
285{
286 *value = (u8) dev->irq;
287
288 return 0;
289}
290
291static int bist_write(struct pci_dev *dev, int offset, u8 value, void *data)
292{
293 u8 cur_value;
294 int err;
295
296 err = pci_read_config_byte(dev, offset, &cur_value);
297 if (err)
298 goto out;
299
300 if ((cur_value & ~PCI_BIST_START) == (value & ~PCI_BIST_START)
301 || value == PCI_BIST_START)
302 err = pci_write_config_byte(dev, offset, value);
303
304out:
305 return err;
306}
307
308static const struct config_field header_common[] = {
fd5b221b
ZY
309 {
310 .offset = PCI_VENDOR_ID,
311 .size = 2,
a92336a1 312 .u.w.read = xen_pcibk_read_vendor,
fd5b221b
ZY
313 },
314 {
315 .offset = PCI_DEVICE_ID,
316 .size = 2,
a92336a1 317 .u.w.read = xen_pcibk_read_device,
fd5b221b 318 },
30edc14b
KRW
319 {
320 .offset = PCI_COMMAND,
321 .size = 2,
af6fc858
JB
322 .init = command_init,
323 .release = bar_release,
fd5b221b 324 .u.w.read = command_read,
30edc14b
KRW
325 .u.w.write = command_write,
326 },
327 {
328 .offset = PCI_INTERRUPT_LINE,
329 .size = 1,
330 .u.b.read = interrupt_read,
331 },
332 {
333 .offset = PCI_INTERRUPT_PIN,
334 .size = 1,
a92336a1 335 .u.b.read = xen_pcibk_read_config_byte,
30edc14b
KRW
336 },
337 {
338 /* Any side effects of letting driver domain control cache line? */
339 .offset = PCI_CACHE_LINE_SIZE,
340 .size = 1,
a92336a1
KRW
341 .u.b.read = xen_pcibk_read_config_byte,
342 .u.b.write = xen_pcibk_write_config_byte,
30edc14b
KRW
343 },
344 {
345 .offset = PCI_LATENCY_TIMER,
346 .size = 1,
a92336a1 347 .u.b.read = xen_pcibk_read_config_byte,
30edc14b
KRW
348 },
349 {
350 .offset = PCI_BIST,
351 .size = 1,
a92336a1 352 .u.b.read = xen_pcibk_read_config_byte,
30edc14b
KRW
353 .u.b.write = bist_write,
354 },
355 {}
356};
357
8bfd4e02
KRW
358#define CFG_FIELD_BAR(reg_offset) \
359 { \
360 .offset = reg_offset, \
361 .size = 4, \
362 .init = bar_init, \
363 .reset = bar_reset, \
364 .release = bar_release, \
365 .u.dw.read = bar_read, \
366 .u.dw.write = bar_write, \
367 }
368
369#define CFG_FIELD_ROM(reg_offset) \
370 { \
371 .offset = reg_offset, \
372 .size = 4, \
664093bb 373 .init = bar_init, \
8bfd4e02
KRW
374 .reset = bar_reset, \
375 .release = bar_release, \
376 .u.dw.read = bar_read, \
377 .u.dw.write = rom_write, \
378 }
30edc14b
KRW
379
380static const struct config_field header_0[] = {
381 CFG_FIELD_BAR(PCI_BASE_ADDRESS_0),
382 CFG_FIELD_BAR(PCI_BASE_ADDRESS_1),
383 CFG_FIELD_BAR(PCI_BASE_ADDRESS_2),
384 CFG_FIELD_BAR(PCI_BASE_ADDRESS_3),
385 CFG_FIELD_BAR(PCI_BASE_ADDRESS_4),
386 CFG_FIELD_BAR(PCI_BASE_ADDRESS_5),
387 CFG_FIELD_ROM(PCI_ROM_ADDRESS),
388 {}
389};
390
391static const struct config_field header_1[] = {
392 CFG_FIELD_BAR(PCI_BASE_ADDRESS_0),
393 CFG_FIELD_BAR(PCI_BASE_ADDRESS_1),
394 CFG_FIELD_ROM(PCI_ROM_ADDRESS1),
395 {}
396};
397
a92336a1 398int xen_pcibk_config_header_add_fields(struct pci_dev *dev)
30edc14b
KRW
399{
400 int err;
401
a92336a1 402 err = xen_pcibk_config_add_fields(dev, header_common);
30edc14b
KRW
403 if (err)
404 goto out;
405
406 switch (dev->hdr_type) {
407 case PCI_HEADER_TYPE_NORMAL:
a92336a1 408 err = xen_pcibk_config_add_fields(dev, header_0);
30edc14b
KRW
409 break;
410
411 case PCI_HEADER_TYPE_BRIDGE:
a92336a1 412 err = xen_pcibk_config_add_fields(dev, header_1);
30edc14b
KRW
413 break;
414
415 default:
416 err = -EINVAL;
283c0972 417 pr_err("%s: Unsupported header type %d!\n",
30edc14b
KRW
418 pci_name(dev), dev->hdr_type);
419 break;
420 }
421
422out:
423 return err;
424}