1 // SPDX-License-Identifier: GPL-2.0
3 /******************************************************************************
4 * platform-pci-unplug.c
6 * Xen platform PCI device driver
7 * Copyright (c) 2010, Citrix
10 #include <linux/init.h>
12 #include <linux/export.h>
15 #include <xen/platform_pci.h>
18 #define XEN_PLATFORM_ERR_MAGIC -1
19 #define XEN_PLATFORM_ERR_PROTOCOL -2
20 #define XEN_PLATFORM_ERR_BLACKLIST -3
22 /* store the value of xen_emul_unplug after the unplug is done */
23 static int xen_platform_pci_unplug
;
24 static int xen_emul_unplug
;
26 static int check_platform_magic(void)
31 magic
= inw(XEN_IOPORT_MAGIC
);
32 if (magic
!= XEN_IOPORT_MAGIC_VAL
) {
33 printk(KERN_ERR
"Xen Platform PCI: unrecognised magic value\n");
34 return XEN_PLATFORM_ERR_MAGIC
;
37 protocol
= inb(XEN_IOPORT_PROTOVER
);
39 printk(KERN_DEBUG
"Xen Platform PCI: I/O protocol version %d\n",
44 outw(XEN_IOPORT_LINUX_PRODNUM
, XEN_IOPORT_PRODNUM
);
45 outl(XEN_IOPORT_LINUX_DRVVER
, XEN_IOPORT_DRVVER
);
46 if (inw(XEN_IOPORT_MAGIC
) != XEN_IOPORT_MAGIC_VAL
) {
47 printk(KERN_ERR
"Xen Platform: blacklisted by host\n");
48 return XEN_PLATFORM_ERR_BLACKLIST
;
52 printk(KERN_WARNING
"Xen Platform PCI: unknown I/O protocol version\n");
53 return XEN_PLATFORM_ERR_PROTOCOL
;
59 bool xen_has_pv_devices(void)
64 /* PV and PVH domains always have them. */
65 if (xen_pv_domain() || xen_pvh_domain())
68 /* And user has xen_platform_pci=0 set in guest config as
69 * driver did not modify the value. */
70 if (xen_platform_pci_unplug
== 0)
73 if (xen_platform_pci_unplug
& XEN_UNPLUG_NEVER
)
76 if (xen_platform_pci_unplug
& XEN_UNPLUG_ALL
)
79 /* This is an odd one - we are going to run legacy
80 * and PV drivers at the same time. */
81 if (xen_platform_pci_unplug
& XEN_UNPLUG_UNNECESSARY
)
84 /* And the caller has to follow with xen_pv_{disk,nic}_devices
85 * to be certain which driver can load. */
88 EXPORT_SYMBOL_GPL(xen_has_pv_devices
);
90 static bool __xen_has_pv_device(int state
)
92 /* HVM domains might or might not */
93 if (xen_hvm_domain() && (xen_platform_pci_unplug
& state
))
96 return xen_has_pv_devices();
99 bool xen_has_pv_nic_devices(void)
101 return __xen_has_pv_device(XEN_UNPLUG_ALL_NICS
| XEN_UNPLUG_ALL
);
103 EXPORT_SYMBOL_GPL(xen_has_pv_nic_devices
);
105 bool xen_has_pv_disk_devices(void)
107 return __xen_has_pv_device(XEN_UNPLUG_ALL_IDE_DISKS
|
108 XEN_UNPLUG_AUX_IDE_DISKS
| XEN_UNPLUG_ALL
);
110 EXPORT_SYMBOL_GPL(xen_has_pv_disk_devices
);
113 * This one is odd - it determines whether you want to run PV _and_
114 * legacy (IDE) drivers together. This combination is only possible
117 bool xen_has_pv_and_legacy_disk_devices(void)
122 /* N.B. This is only ever used in HVM mode */
126 if (xen_platform_pci_unplug
& XEN_UNPLUG_UNNECESSARY
)
131 EXPORT_SYMBOL_GPL(xen_has_pv_and_legacy_disk_devices
);
133 void xen_unplug_emulated_devices(void)
137 /* PVH guests don't have emulated devices. */
138 if (xen_pvh_domain())
141 /* user explicitly requested no unplug */
142 if (xen_emul_unplug
& XEN_UNPLUG_NEVER
)
144 /* check the version of the xen platform PCI device */
145 r
= check_platform_magic();
146 /* If the version matches enable the Xen platform PCI driver.
147 * Also enable the Xen platform PCI driver if the host does
148 * not support the unplug protocol (XEN_PLATFORM_ERR_MAGIC)
149 * but the user told us that unplugging is unnecessary. */
150 if (r
&& !(r
== XEN_PLATFORM_ERR_MAGIC
&&
151 (xen_emul_unplug
& XEN_UNPLUG_UNNECESSARY
)))
153 /* Set the default value of xen_emul_unplug depending on whether or
154 * not the Xen PV frontends and the Xen platform PCI driver have
155 * been compiled for this kernel (modules or built-in are both OK). */
156 if (!xen_emul_unplug
) {
157 if (xen_must_unplug_nics()) {
158 printk(KERN_INFO
"Netfront and the Xen platform PCI driver have "
159 "been compiled for this kernel: unplug emulated NICs.\n");
160 xen_emul_unplug
|= XEN_UNPLUG_ALL_NICS
;
162 if (xen_must_unplug_disks()) {
163 printk(KERN_INFO
"Blkfront and the Xen platform PCI driver have "
164 "been compiled for this kernel: unplug emulated disks.\n"
165 "You might have to change the root device\n"
166 "from /dev/hd[a-d] to /dev/xvd[a-d]\n"
167 "in your root= kernel command line option\n");
168 xen_emul_unplug
|= XEN_UNPLUG_ALL_IDE_DISKS
;
171 /* Now unplug the emulated devices */
172 if (!(xen_emul_unplug
& XEN_UNPLUG_UNNECESSARY
))
173 outw(xen_emul_unplug
, XEN_IOPORT_UNPLUG
);
174 xen_platform_pci_unplug
= xen_emul_unplug
;
177 static int __init
parse_xen_emul_unplug(char *arg
)
182 for (p
= arg
; p
; p
= q
) {
190 if (!strncmp(p
, "all", l
))
191 xen_emul_unplug
|= XEN_UNPLUG_ALL
;
192 else if (!strncmp(p
, "ide-disks", l
))
193 xen_emul_unplug
|= XEN_UNPLUG_ALL_IDE_DISKS
;
194 else if (!strncmp(p
, "aux-ide-disks", l
))
195 xen_emul_unplug
|= XEN_UNPLUG_AUX_IDE_DISKS
;
196 else if (!strncmp(p
, "nics", l
))
197 xen_emul_unplug
|= XEN_UNPLUG_ALL_NICS
;
198 else if (!strncmp(p
, "unnecessary", l
))
199 xen_emul_unplug
|= XEN_UNPLUG_UNNECESSARY
;
200 else if (!strncmp(p
, "never", l
))
201 xen_emul_unplug
|= XEN_UNPLUG_NEVER
;
203 printk(KERN_WARNING
"unrecognised option '%s' "
204 "in parameter 'xen_emul_unplug'\n", p
);
208 early_param("xen_emul_unplug", parse_xen_emul_unplug
);