2 * XEN platform pci device, formerly known as the event channel device
4 * Copyright (c) 2003-2004 Intel Corp.
5 * Copyright (c) 2006 XenSource
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 #include "hw/i386/pc.h"
29 #include "hw/pci/pci.h"
31 #include "hw/xen/xen_common.h"
32 #include "hw/xen/xen_backend.h"
34 #include "exec/address-spaces.h"
35 #include "sysemu/block-backend.h"
39 //#define DEBUG_PLATFORM
42 #define DPRINTF(fmt, ...) do { \
43 fprintf(stderr, "xen_platform: " fmt, ## __VA_ARGS__); \
46 #define DPRINTF(fmt, ...) do { } while (0)
49 #define PFFLAG_ROM_LOCK 1 /* Sets whether ROM memory area is RW or RO */
51 typedef struct PCIXenPlatformState
{
56 MemoryRegion fixed_io
;
58 MemoryRegion mmio_bar
;
59 uint8_t flags
; /* used only for version_id == 2 */
60 int drivers_blacklisted
;
61 uint16_t driver_product_version
;
63 /* Log from guest drivers */
64 char log_buffer
[4096];
66 } PCIXenPlatformState
;
68 #define TYPE_XEN_PLATFORM "xen-platform"
69 #define XEN_PLATFORM(obj) \
70 OBJECT_CHECK(PCIXenPlatformState, (obj), TYPE_XEN_PLATFORM)
72 #define XEN_PLATFORM_IOPORT 0x10
74 /* Send bytes to syslog */
75 static void log_writeb(PCIXenPlatformState
*s
, char val
)
77 if (val
== '\n' || s
->log_buffer_off
== sizeof(s
->log_buffer
) - 1) {
79 s
->log_buffer
[s
->log_buffer_off
] = 0;
80 trace_xen_platform_log(s
->log_buffer
);
81 s
->log_buffer_off
= 0;
83 s
->log_buffer
[s
->log_buffer_off
++] = val
;
87 /* Xen Platform, Fixed IOPort */
88 #define UNPLUG_ALL_IDE_DISKS 1
89 #define UNPLUG_ALL_NICS 2
90 #define UNPLUG_AUX_IDE_DISKS 4
92 static void unplug_nic(PCIBus
*b
, PCIDevice
*d
, void *o
)
94 /* We have to ignore passthrough devices */
95 if (pci_get_word(d
->config
+ PCI_CLASS_DEVICE
) ==
96 PCI_CLASS_NETWORK_ETHERNET
97 && strcmp(d
->name
, "xen-pci-passthrough") != 0) {
98 object_unparent(OBJECT(d
));
102 static void pci_unplug_nics(PCIBus
*bus
)
104 pci_for_each_device(bus
, 0, unplug_nic
, NULL
);
107 static void unplug_disks(PCIBus
*b
, PCIDevice
*d
, void *o
)
109 /* We have to ignore passthrough devices */
110 if (pci_get_word(d
->config
+ PCI_CLASS_DEVICE
) ==
111 PCI_CLASS_STORAGE_IDE
112 && strcmp(d
->name
, "xen-pci-passthrough") != 0) {
113 pci_piix3_xen_ide_unplug(DEVICE(d
));
117 static void pci_unplug_disks(PCIBus
*bus
)
119 pci_for_each_device(bus
, 0, unplug_disks
, NULL
);
122 static void platform_fixed_ioport_writew(void *opaque
, uint32_t addr
, uint32_t val
)
124 PCIXenPlatformState
*s
= opaque
;
128 PCIDevice
*pci_dev
= PCI_DEVICE(s
);
129 /* Unplug devices. Value is a bitmask of which devices to
130 unplug, with bit 0 the IDE devices, bit 1 the network
131 devices, and bit 2 the non-primary-master IDE devices. */
132 if (val
& UNPLUG_ALL_IDE_DISKS
) {
133 DPRINTF("unplug disks\n");
136 pci_unplug_disks(pci_dev
->bus
);
138 if (val
& UNPLUG_ALL_NICS
) {
139 DPRINTF("unplug nics\n");
140 pci_unplug_nics(pci_dev
->bus
);
142 if (val
& UNPLUG_AUX_IDE_DISKS
) {
143 DPRINTF("unplug auxiliary disks not supported\n");
150 DPRINTF("Citrix Windows PV drivers loaded in guest\n");
153 DPRINTF("Guest claimed to be running PV product 0?\n");
156 DPRINTF("Unknown PV product %d loaded in guest\n", val
);
159 s
->driver_product_version
= val
;
164 static void platform_fixed_ioport_writel(void *opaque
, uint32_t addr
,
169 /* PV driver version */
174 static void platform_fixed_ioport_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
176 PCIXenPlatformState
*s
= opaque
;
179 case 0: /* Platform flags */ {
180 hvmmem_type_t mem_type
= (val
& PFFLAG_ROM_LOCK
) ?
181 HVMMEM_ram_ro
: HVMMEM_ram_rw
;
182 if (xc_hvm_set_mem_type(xen_xc
, xen_domid
, mem_type
, 0xc0, 0x40)) {
183 DPRINTF("unable to change ro/rw state of ROM memory area!\n");
185 s
->flags
= val
& PFFLAG_ROM_LOCK
;
186 DPRINTF("changed ro/rw state of ROM memory area. now is %s state.\n",
187 (mem_type
== HVMMEM_ram_ro
? "ro":"rw"));
197 static uint32_t platform_fixed_ioport_readw(void *opaque
, uint32_t addr
)
199 PCIXenPlatformState
*s
= opaque
;
203 if (s
->drivers_blacklisted
) {
204 /* The drivers will recognise this magic number and refuse
208 /* Magic value so that you can identify the interface. */
216 static uint32_t platform_fixed_ioport_readb(void *opaque
, uint32_t addr
)
218 PCIXenPlatformState
*s
= opaque
;
232 static void platform_fixed_ioport_reset(void *opaque
)
234 PCIXenPlatformState
*s
= opaque
;
236 platform_fixed_ioport_writeb(s
, 0, 0);
239 static uint64_t platform_fixed_ioport_read(void *opaque
,
245 return platform_fixed_ioport_readb(opaque
, addr
);
247 return platform_fixed_ioport_readw(opaque
, addr
);
253 static void platform_fixed_ioport_write(void *opaque
, hwaddr addr
,
255 uint64_t val
, unsigned size
)
259 platform_fixed_ioport_writeb(opaque
, addr
, val
);
262 platform_fixed_ioport_writew(opaque
, addr
, val
);
265 platform_fixed_ioport_writel(opaque
, addr
, val
);
271 static const MemoryRegionOps platform_fixed_io_ops
= {
272 .read
= platform_fixed_ioport_read
,
273 .write
= platform_fixed_ioport_write
,
278 .min_access_size
= 1,
279 .max_access_size
= 4,
282 .endianness
= DEVICE_LITTLE_ENDIAN
,
285 static void platform_fixed_ioport_init(PCIXenPlatformState
* s
)
287 memory_region_init_io(&s
->fixed_io
, OBJECT(s
), &platform_fixed_io_ops
, s
,
289 memory_region_add_subregion(get_system_io(), XEN_PLATFORM_IOPORT
,
293 /* Xen Platform PCI Device */
295 static uint64_t xen_platform_ioport_readb(void *opaque
, hwaddr addr
,
299 return platform_fixed_ioport_readb(opaque
, 0);
305 static void xen_platform_ioport_writeb(void *opaque
, hwaddr addr
,
306 uint64_t val
, unsigned int size
)
308 PCIXenPlatformState
*s
= opaque
;
311 case 0: /* Platform flags */
312 platform_fixed_ioport_writeb(opaque
, 0, (uint32_t)val
);
315 log_writeb(s
, (uint32_t)val
);
322 static const MemoryRegionOps xen_pci_io_ops
= {
323 .read
= xen_platform_ioport_readb
,
324 .write
= xen_platform_ioport_writeb
,
325 .impl
.min_access_size
= 1,
326 .impl
.max_access_size
= 1,
329 static void platform_ioport_bar_setup(PCIXenPlatformState
*d
)
331 memory_region_init_io(&d
->bar
, OBJECT(d
), &xen_pci_io_ops
, d
,
335 static uint64_t platform_mmio_read(void *opaque
, hwaddr addr
,
338 DPRINTF("Warning: attempted read from physical address "
339 "0x" TARGET_FMT_plx
" in xen platform mmio space\n", addr
);
344 static void platform_mmio_write(void *opaque
, hwaddr addr
,
345 uint64_t val
, unsigned size
)
347 DPRINTF("Warning: attempted write of 0x%"PRIx64
" to physical "
348 "address 0x" TARGET_FMT_plx
" in xen platform mmio space\n",
352 static const MemoryRegionOps platform_mmio_handler
= {
353 .read
= &platform_mmio_read
,
354 .write
= &platform_mmio_write
,
355 .endianness
= DEVICE_NATIVE_ENDIAN
,
358 static void platform_mmio_setup(PCIXenPlatformState
*d
)
360 memory_region_init_io(&d
->mmio_bar
, OBJECT(d
), &platform_mmio_handler
, d
,
361 "xen-mmio", 0x1000000);
364 static int xen_platform_post_load(void *opaque
, int version_id
)
366 PCIXenPlatformState
*s
= opaque
;
368 platform_fixed_ioport_writeb(s
, 0, s
->flags
);
373 static const VMStateDescription vmstate_xen_platform
= {
376 .minimum_version_id
= 4,
377 .post_load
= xen_platform_post_load
,
378 .fields
= (VMStateField
[]) {
379 VMSTATE_PCI_DEVICE(parent_obj
, PCIXenPlatformState
),
380 VMSTATE_UINT8(flags
, PCIXenPlatformState
),
381 VMSTATE_END_OF_LIST()
385 static int xen_platform_initfn(PCIDevice
*dev
)
387 PCIXenPlatformState
*d
= XEN_PLATFORM(dev
);
390 /* Device will crash on reset if xen is not initialized */
391 assert(xen_enabled());
393 pci_conf
= dev
->config
;
395 pci_set_word(pci_conf
+ PCI_COMMAND
, PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
);
397 pci_config_set_prog_interface(pci_conf
, 0);
399 pci_conf
[PCI_INTERRUPT_PIN
] = 1;
401 platform_ioport_bar_setup(d
);
402 pci_register_bar(dev
, 0, PCI_BASE_ADDRESS_SPACE_IO
, &d
->bar
);
404 /* reserve 16MB mmio address for share memory*/
405 platform_mmio_setup(d
);
406 pci_register_bar(dev
, 1, PCI_BASE_ADDRESS_MEM_PREFETCH
,
409 platform_fixed_ioport_init(d
);
414 static void platform_reset(DeviceState
*dev
)
416 PCIXenPlatformState
*s
= XEN_PLATFORM(dev
);
418 platform_fixed_ioport_reset(s
);
421 static void xen_platform_class_init(ObjectClass
*klass
, void *data
)
423 DeviceClass
*dc
= DEVICE_CLASS(klass
);
424 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
426 k
->init
= xen_platform_initfn
;
427 k
->vendor_id
= PCI_VENDOR_ID_XEN
;
428 k
->device_id
= PCI_DEVICE_ID_XEN_PLATFORM
;
429 k
->class_id
= PCI_CLASS_OTHERS
<< 8 | 0x80;
430 k
->subsystem_vendor_id
= PCI_VENDOR_ID_XEN
;
431 k
->subsystem_id
= PCI_DEVICE_ID_XEN_PLATFORM
;
433 set_bit(DEVICE_CATEGORY_MISC
, dc
->categories
);
434 dc
->desc
= "XEN platform pci device";
435 dc
->reset
= platform_reset
;
436 dc
->vmsd
= &vmstate_xen_platform
;
439 static const TypeInfo xen_platform_info
= {
440 .name
= TYPE_XEN_PLATFORM
,
441 .parent
= TYPE_PCI_DEVICE
,
442 .instance_size
= sizeof(PCIXenPlatformState
),
443 .class_init
= xen_platform_class_init
,
446 static void xen_platform_register_types(void)
448 type_register_static(&xen_platform_info
);
451 type_init(xen_platform_register_types
)