Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
1
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
8014bcc
Documentation
arch
block
crypto
drivers
accessibility
acpi
amba
android
ata
atm
auxdisplay
base
bcma
block
bluetooth
bus
cdrom
char
clk
clocksource
connector
cpufreq
cpuidle
crypto
dca
devfreq
dio
dma-buf
dma
edac
eisa
extcon
firewire
firmware
fmc
gpio
gpu
hid
hsi
hv
hwmon
hwspinlock
hwtracing
i2c
ide
idle
iio
infiniband
input
iommu
ipack
irqchip
isdn
leds
lguest
macintosh
mailbox
mcb
md
media
memory
memstick
message
mfd
misc
mmc
mtd
net
nfc
ntb
nubus
of
oprofile
parisc
parport
pci
pcmcia
phy
pinctrl
platform
pnp
power
powercap
pps
ps3
ptp
pwm
rapidio
ras
regulator
remoteproc
reset
rpmsg
rtc
s390
sbus
scsi
sfi
sh
sn
soc
spi
spmi
ssb
staging
target
tc
thermal
thunderbolt
tty
uio
usb
uwb
vfio
vhost
video
virt
virtio
vlynq
vme
w1
watchdog
xen
events
xen-pciback
Makefile
conf_space.c
conf_space.h
conf_space_capability.c
conf_space_header.c
conf_space_quirks.c
conf_space_quirks.h
passthrough.c
pci_stub.c
pciback.h
pciback_ops.c
vpci.c
xenbus.c
xenbus
xenfs
Kconfig
Makefile
acpi.c
balloon.c
biomerge.c
cpu_hotplug.c
dbgp.c
efi.c
evtchn.c
fallback.c
features.c
gntalloc.c
gntdev.c
grant-table.c
manage.c
mcelog.c
pci.c
pcpu.c
platform-pci.c
preempt.c
privcmd.c
privcmd.h
swiotlb-xen.c
sys-hypervisor.c
tmem.c
xen-acpi-cpuhotplug.c
xen-acpi-memhotplug.c
xen-acpi-pad.c
xen-acpi-processor.c
xen-balloon.c
xen-scsiback.c
xen-selfballoon.c
xen-stub.c
xlate_mmu.c
zorro
Kconfig
Makefile
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
REPORTING-BUGS
Breadcrumbs
linux
/
drivers
/
xen
/
xen-pciback
/
conf_space.h
Copy path
Blame
Blame
Latest commit
History
History
128 lines (112 loc) · 3.74 KB
Breadcrumbs
linux
/
drivers
/
xen
/
xen-pciback
/
conf_space.h
Top
File metadata and controls
Code
Blame
128 lines (112 loc) · 3.74 KB
Raw
/* * PCI Backend - Common data structures for overriding the configuration space * * Author: Ryan Wilson <hap9@epoch.ncsc.mil> */ #ifndef __XEN_PCIBACK_CONF_SPACE_H__ #define __XEN_PCIBACK_CONF_SPACE_H__ #include <linux/list.h> #include <linux/err.h> /* conf_field_init can return an errno in a ptr with ERR_PTR() */ typedef void *(*conf_field_init) (struct pci_dev *dev, int offset); typedef void (*conf_field_reset) (struct pci_dev *dev, int offset, void *data); typedef void (*conf_field_free) (struct pci_dev *dev, int offset, void *data); typedef int (*conf_dword_write) (struct pci_dev *dev, int offset, u32 value, void *data); typedef int (*conf_word_write) (struct pci_dev *dev, int offset, u16 value, void *data); typedef int (*conf_byte_write) (struct pci_dev *dev, int offset, u8 value, void *data); typedef int (*conf_dword_read) (struct pci_dev *dev, int offset, u32 *value, void *data); typedef int (*conf_word_read) (struct pci_dev *dev, int offset, u16 *value, void *data); typedef int (*conf_byte_read) (struct pci_dev *dev, int offset, u8 *value, void *data); /* These are the fields within the configuration space which we * are interested in intercepting reads/writes to and changing their * values. */ struct config_field { unsigned int offset; unsigned int size; unsigned int mask; conf_field_init init; conf_field_reset reset; conf_field_free release; void (*clean) (struct config_field *field); union { struct { conf_dword_write write; conf_dword_read read; } dw; struct { conf_word_write write; conf_word_read read; } w; struct { conf_byte_write write; conf_byte_read read; } b; } u; struct list_head list; }; struct config_field_entry { struct list_head list; const struct config_field *field; unsigned int base_offset; void *data; }; extern bool xen_pcibk_permissive; #define OFFSET(cfg_entry) ((cfg_entry)->base_offset+(cfg_entry)->field->offset) /* Add fields to a device - the add_fields macro expects to get a pointer to * the first entry in an array (of which the ending is marked by size==0) */ int xen_pcibk_config_add_field_offset(struct pci_dev *dev, const struct config_field *field, unsigned int offset); static inline int xen_pcibk_config_add_field(struct pci_dev *dev, const struct config_field *field) { return xen_pcibk_config_add_field_offset(dev, field, 0); } static inline int xen_pcibk_config_add_fields(struct pci_dev *dev, const struct config_field *field) { int i, err = 0; for (i = 0; field[i].size != 0; i++) { err = xen_pcibk_config_add_field(dev, &field[i]); if (err) break; } return err; } static inline int xen_pcibk_config_add_fields_offset(struct pci_dev *dev, const struct config_field *field, unsigned int offset) { int i, err = 0; for (i = 0; field[i].size != 0; i++) { err = xen_pcibk_config_add_field_offset(dev, &field[i], offset); if (err) break; } return err; } /* Read/Write the real configuration space */ int xen_pcibk_read_config_byte(struct pci_dev *dev, int offset, u8 *value, void *data); int xen_pcibk_read_config_word(struct pci_dev *dev, int offset, u16 *value, void *data); int xen_pcibk_read_config_dword(struct pci_dev *dev, int offset, u32 *value, void *data); int xen_pcibk_write_config_byte(struct pci_dev *dev, int offset, u8 value, void *data); int xen_pcibk_write_config_word(struct pci_dev *dev, int offset, u16 value, void *data); int xen_pcibk_write_config_dword(struct pci_dev *dev, int offset, u32 value, void *data); int xen_pcibk_config_capability_init(void); int xen_pcibk_config_header_add_fields(struct pci_dev *dev); int xen_pcibk_config_capability_add_fields(struct pci_dev *dev); #endif /* __XEN_PCIBACK_CONF_SPACE_H__ */
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
You can’t perform that action at this time.