1 // SPDX-License-Identifier: GPL-2.0
3 * PCI Backend - Handles the virtual fields in the configuration space headers.
5 * Author: Ryan Wilson <hap9@epoch.ncsc.mil>
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/kernel.h>
11 #include <linux/pci.h>
13 #include "conf_space.h"
25 #define is_enable_cmd(value) ((value)&(PCI_COMMAND_MEMORY|PCI_COMMAND_IO))
26 #define is_master_cmd(value) ((value)&PCI_COMMAND_MASTER)
28 /* Bits guests are allowed to control in permissive mode. */
29 #define PCI_COMMAND_GUEST (PCI_COMMAND_MASTER|PCI_COMMAND_SPECIAL| \
30 PCI_COMMAND_INVALIDATE|PCI_COMMAND_VGA_PALETTE| \
31 PCI_COMMAND_WAIT|PCI_COMMAND_FAST_BACK)
33 static void *command_init(struct pci_dev
*dev
, int offset
)
35 struct pci_cmd_info
*cmd
= kmalloc(sizeof(*cmd
), GFP_KERNEL
);
39 return ERR_PTR(-ENOMEM
);
41 err
= pci_read_config_word(dev
, PCI_COMMAND
, &cmd
->val
);
50 static int command_read(struct pci_dev
*dev
, int offset
, u16
*value
, void *data
)
52 int ret
= pci_read_config_word(dev
, offset
, value
);
53 const struct pci_cmd_info
*cmd
= data
;
55 *value
&= PCI_COMMAND_GUEST
;
56 *value
|= cmd
->val
& ~PCI_COMMAND_GUEST
;
61 static int command_write(struct pci_dev
*dev
, int offset
, u16 value
, void *data
)
63 struct xen_pcibk_dev_data
*dev_data
;
66 struct pci_cmd_info
*cmd
= data
;
68 dev_data
= pci_get_drvdata(dev
);
69 if (!pci_is_enabled(dev
) && is_enable_cmd(value
)) {
70 if (unlikely(verbose_request
))
71 printk(KERN_DEBUG DRV_NAME
": %s: enable\n",
73 err
= pci_enable_device(dev
);
77 dev_data
->enable_intx
= 1;
78 } else if (pci_is_enabled(dev
) && !is_enable_cmd(value
)) {
79 if (unlikely(verbose_request
))
80 printk(KERN_DEBUG DRV_NAME
": %s: disable\n",
82 pci_disable_device(dev
);
84 dev_data
->enable_intx
= 0;
87 if (!dev
->is_busmaster
&& is_master_cmd(value
)) {
88 if (unlikely(verbose_request
))
89 printk(KERN_DEBUG DRV_NAME
": %s: set bus master\n",
92 } else if (dev
->is_busmaster
&& !is_master_cmd(value
)) {
93 if (unlikely(verbose_request
))
94 printk(KERN_DEBUG DRV_NAME
": %s: clear bus master\n",
96 pci_clear_master(dev
);
99 if (!(cmd
->val
& PCI_COMMAND_INVALIDATE
) &&
100 (value
& PCI_COMMAND_INVALIDATE
)) {
101 if (unlikely(verbose_request
))
103 DRV_NAME
": %s: enable memory-write-invalidate\n",
105 err
= pci_set_mwi(dev
);
107 pr_warn("%s: cannot enable memory-write-invalidate (%d)\n",
109 value
&= ~PCI_COMMAND_INVALIDATE
;
111 } else if ((cmd
->val
& PCI_COMMAND_INVALIDATE
) &&
112 !(value
& PCI_COMMAND_INVALIDATE
)) {
113 if (unlikely(verbose_request
))
115 DRV_NAME
": %s: disable memory-write-invalidate\n",
122 if (!xen_pcibk_permissive
&& (!dev_data
|| !dev_data
->permissive
))
125 /* Only allow the guest to control certain bits. */
126 err
= pci_read_config_word(dev
, offset
, &val
);
127 if (err
|| val
== value
)
130 value
&= PCI_COMMAND_GUEST
;
131 value
|= val
& ~PCI_COMMAND_GUEST
;
133 return pci_write_config_word(dev
, offset
, value
);
136 static int rom_write(struct pci_dev
*dev
, int offset
, u32 value
, void *data
)
138 struct pci_bar_info
*bar
= data
;
140 if (unlikely(!bar
)) {
141 pr_warn(DRV_NAME
": driver data not found for %s\n",
143 return XEN_PCI_ERR_op_failed
;
146 /* A write to obtain the length must happen as a 32-bit write.
147 * This does not (yet) support writing individual bytes
149 if ((value
| ~PCI_ROM_ADDRESS_MASK
) == ~0U)
153 pci_read_config_dword(dev
, offset
, &tmpval
);
154 if (tmpval
!= bar
->val
&& value
== bar
->val
) {
155 /* Allow restoration of bar value. */
156 pci_write_config_dword(dev
, offset
, bar
->val
);
161 /* Do we need to support enabling/disabling the rom address here? */
166 /* For the BARs, only allow writes which write ~0 or
167 * the correct resource information
168 * (Needed for when the driver probes the resource usage)
170 static int bar_write(struct pci_dev
*dev
, int offset
, u32 value
, void *data
)
172 struct pci_bar_info
*bar
= data
;
173 unsigned int pos
= (offset
- PCI_BASE_ADDRESS_0
) / 4;
174 const struct resource
*res
= dev
->resource
;
177 if (unlikely(!bar
)) {
178 pr_warn(DRV_NAME
": driver data not found for %s\n",
180 return XEN_PCI_ERR_op_failed
;
183 /* A write to obtain the length must happen as a 32-bit write.
184 * This does not (yet) support writing individual bytes
186 if (res
[pos
].flags
& IORESOURCE_IO
)
187 mask
= ~PCI_BASE_ADDRESS_IO_MASK
;
188 else if (pos
&& (res
[pos
- 1].flags
& IORESOURCE_MEM_64
))
191 mask
= ~PCI_BASE_ADDRESS_MEM_MASK
;
192 if ((value
| mask
) == ~0U)
196 pci_read_config_dword(dev
, offset
, &tmpval
);
197 if (tmpval
!= bar
->val
&& value
== bar
->val
) {
198 /* Allow restoration of bar value. */
199 pci_write_config_dword(dev
, offset
, bar
->val
);
207 static int bar_read(struct pci_dev
*dev
, int offset
, u32
* value
, void *data
)
209 struct pci_bar_info
*bar
= data
;
211 if (unlikely(!bar
)) {
212 pr_warn(DRV_NAME
": driver data not found for %s\n",
214 return XEN_PCI_ERR_op_failed
;
217 *value
= bar
->which
? bar
->len_val
: bar
->val
;
222 static void *bar_init(struct pci_dev
*dev
, int offset
)
225 const struct resource
*res
= dev
->resource
;
226 struct pci_bar_info
*bar
= kzalloc(sizeof(*bar
), GFP_KERNEL
);
229 return ERR_PTR(-ENOMEM
);
231 if (offset
== PCI_ROM_ADDRESS
|| offset
== PCI_ROM_ADDRESS1
)
232 pos
= PCI_ROM_RESOURCE
;
234 pos
= (offset
- PCI_BASE_ADDRESS_0
) / 4;
235 if (pos
&& (res
[pos
- 1].flags
& IORESOURCE_MEM_64
)) {
236 bar
->val
= res
[pos
- 1].start
>> 32;
237 bar
->len_val
= -resource_size(&res
[pos
- 1]) >> 32;
242 if (!res
[pos
].flags
||
243 (res
[pos
].flags
& (IORESOURCE_DISABLED
| IORESOURCE_UNSET
|
247 bar
->val
= res
[pos
].start
|
248 (res
[pos
].flags
& PCI_REGION_FLAG_MASK
);
249 bar
->len_val
= -resource_size(&res
[pos
]) |
250 (res
[pos
].flags
& PCI_REGION_FLAG_MASK
);
255 static void bar_reset(struct pci_dev
*dev
, int offset
, void *data
)
257 struct pci_bar_info
*bar
= data
;
262 static void bar_release(struct pci_dev
*dev
, int offset
, void *data
)
267 static int xen_pcibk_read_vendor(struct pci_dev
*dev
, int offset
,
268 u16
*value
, void *data
)
270 *value
= dev
->vendor
;
275 static int xen_pcibk_read_device(struct pci_dev
*dev
, int offset
,
276 u16
*value
, void *data
)
278 *value
= dev
->device
;
283 static int interrupt_read(struct pci_dev
*dev
, int offset
, u8
* value
,
286 *value
= (u8
) dev
->irq
;
291 static int bist_write(struct pci_dev
*dev
, int offset
, u8 value
, void *data
)
296 err
= pci_read_config_byte(dev
, offset
, &cur_value
);
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
);
308 static const struct config_field header_common
[] = {
310 .offset
= PCI_VENDOR_ID
,
312 .u
.w
.read
= xen_pcibk_read_vendor
,
315 .offset
= PCI_DEVICE_ID
,
317 .u
.w
.read
= xen_pcibk_read_device
,
320 .offset
= PCI_COMMAND
,
322 .init
= command_init
,
323 .release
= bar_release
,
324 .u
.w
.read
= command_read
,
325 .u
.w
.write
= command_write
,
328 .offset
= PCI_INTERRUPT_LINE
,
330 .u
.b
.read
= interrupt_read
,
333 .offset
= PCI_INTERRUPT_PIN
,
335 .u
.b
.read
= xen_pcibk_read_config_byte
,
338 /* Any side effects of letting driver domain control cache line? */
339 .offset
= PCI_CACHE_LINE_SIZE
,
341 .u
.b
.read
= xen_pcibk_read_config_byte
,
342 .u
.b
.write
= xen_pcibk_write_config_byte
,
345 .offset
= PCI_LATENCY_TIMER
,
347 .u
.b
.read
= xen_pcibk_read_config_byte
,
352 .u
.b
.read
= xen_pcibk_read_config_byte
,
353 .u
.b
.write
= bist_write
,
358 #define CFG_FIELD_BAR(reg_offset) \
360 .offset = reg_offset, \
363 .reset = bar_reset, \
364 .release = bar_release, \
365 .u.dw.read = bar_read, \
366 .u.dw.write = bar_write, \
369 #define CFG_FIELD_ROM(reg_offset) \
371 .offset = reg_offset, \
374 .reset = bar_reset, \
375 .release = bar_release, \
376 .u.dw.read = bar_read, \
377 .u.dw.write = rom_write, \
380 static 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
),
391 static 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
),
398 int xen_pcibk_config_header_add_fields(struct pci_dev
*dev
)
402 err
= xen_pcibk_config_add_fields(dev
, header_common
);
406 switch (dev
->hdr_type
) {
407 case PCI_HEADER_TYPE_NORMAL
:
408 err
= xen_pcibk_config_add_fields(dev
, header_0
);
411 case PCI_HEADER_TYPE_BRIDGE
:
412 err
= xen_pcibk_config_add_fields(dev
, header_1
);
417 pr_err("%s: Unsupported header type %d!\n",
418 pci_name(dev
), dev
->hdr_type
);