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
32 #include "xen_common.h"
34 #include "xen_backend.h"
36 #include "exec-memory.h"
40 //#define DEBUG_PLATFORM
43 #define DPRINTF(fmt, ...) do { \
44 fprintf(stderr, "xen_platform: " fmt, ## __VA_ARGS__); \
47 #define DPRINTF(fmt, ...) do { } while (0)
50 #define PFFLAG_ROM_LOCK 1 /* Sets whether ROM memory area is RW or RO */
52 typedef struct PCIXenPlatformState
{
54 MemoryRegion fixed_io
;
56 MemoryRegion mmio_bar
;
57 uint8_t flags
; /* used only for version_id == 2 */
58 int drivers_blacklisted
;
59 uint16_t driver_product_version
;
61 /* Log from guest drivers */
62 char log_buffer
[4096];
64 } PCIXenPlatformState
;
66 #define XEN_PLATFORM_IOPORT 0x10
68 /* Send bytes to syslog */
69 static void log_writeb(PCIXenPlatformState
*s
, char val
)
71 if (val
== '\n' || s
->log_buffer_off
== sizeof(s
->log_buffer
) - 1) {
73 s
->log_buffer
[s
->log_buffer_off
] = 0;
74 trace_xen_platform_log(s
->log_buffer
);
75 s
->log_buffer_off
= 0;
77 s
->log_buffer
[s
->log_buffer_off
++] = val
;
81 /* Xen Platform, Fixed IOPort */
82 #define UNPLUG_ALL_IDE_DISKS 1
83 #define UNPLUG_ALL_NICS 2
84 #define UNPLUG_AUX_IDE_DISKS 4
86 static void unplug_nic(PCIBus
*b
, PCIDevice
*d
, void *o
)
88 if (pci_get_word(d
->config
+ PCI_CLASS_DEVICE
) ==
89 PCI_CLASS_NETWORK_ETHERNET
) {
94 static void pci_unplug_nics(PCIBus
*bus
)
96 pci_for_each_device(bus
, 0, unplug_nic
, NULL
);
99 static void unplug_disks(PCIBus
*b
, PCIDevice
*d
, void *o
)
101 if (pci_get_word(d
->config
+ PCI_CLASS_DEVICE
) ==
102 PCI_CLASS_STORAGE_IDE
) {
103 qdev_unplug(&(d
->qdev
), NULL
);
107 static void pci_unplug_disks(PCIBus
*bus
)
109 pci_for_each_device(bus
, 0, unplug_disks
, NULL
);
112 static void platform_fixed_ioport_writew(void *opaque
, uint32_t addr
, uint32_t val
)
114 PCIXenPlatformState
*s
= opaque
;
118 /* Unplug devices. Value is a bitmask of which devices to
119 unplug, with bit 0 the IDE devices, bit 1 the network
120 devices, and bit 2 the non-primary-master IDE devices. */
121 if (val
& UNPLUG_ALL_IDE_DISKS
) {
122 DPRINTF("unplug disks\n");
125 pci_unplug_disks(s
->pci_dev
.bus
);
127 if (val
& UNPLUG_ALL_NICS
) {
128 DPRINTF("unplug nics\n");
129 pci_unplug_nics(s
->pci_dev
.bus
);
131 if (val
& UNPLUG_AUX_IDE_DISKS
) {
132 DPRINTF("unplug auxiliary disks not supported\n");
138 DPRINTF("Citrix Windows PV drivers loaded in guest\n");
141 DPRINTF("Guest claimed to be running PV product 0?\n");
144 DPRINTF("Unknown PV product %d loaded in guest\n", val
);
147 s
->driver_product_version
= val
;
152 static void platform_fixed_ioport_writel(void *opaque
, uint32_t addr
,
157 /* PV driver version */
162 static void platform_fixed_ioport_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
164 PCIXenPlatformState
*s
= opaque
;
167 case 0: /* Platform flags */ {
168 hvmmem_type_t mem_type
= (val
& PFFLAG_ROM_LOCK
) ?
169 HVMMEM_ram_ro
: HVMMEM_ram_rw
;
170 if (xc_hvm_set_mem_type(xen_xc
, xen_domid
, mem_type
, 0xc0, 0x40)) {
171 DPRINTF("unable to change ro/rw state of ROM memory area!\n");
173 s
->flags
= val
& PFFLAG_ROM_LOCK
;
174 DPRINTF("changed ro/rw state of ROM memory area. now is %s state.\n",
175 (mem_type
== HVMMEM_ram_ro
? "ro":"rw"));
185 static uint32_t platform_fixed_ioport_readw(void *opaque
, uint32_t addr
)
187 PCIXenPlatformState
*s
= opaque
;
191 if (s
->drivers_blacklisted
) {
192 /* The drivers will recognise this magic number and refuse
196 /* Magic value so that you can identify the interface. */
204 static uint32_t platform_fixed_ioport_readb(void *opaque
, uint32_t addr
)
206 PCIXenPlatformState
*s
= opaque
;
220 static void platform_fixed_ioport_reset(void *opaque
)
222 PCIXenPlatformState
*s
= opaque
;
224 platform_fixed_ioport_writeb(s
, 0, 0);
227 const MemoryRegionPortio xen_platform_ioport
[] = {
228 { 0, 16, 4, .write
= platform_fixed_ioport_writel
, },
229 { 0, 16, 2, .write
= platform_fixed_ioport_writew
, },
230 { 0, 16, 1, .write
= platform_fixed_ioport_writeb
, },
231 { 0, 16, 2, .read
= platform_fixed_ioport_readw
, },
232 { 0, 16, 1, .read
= platform_fixed_ioport_readb
, },
236 static const MemoryRegionOps platform_fixed_io_ops
= {
237 .old_portio
= xen_platform_ioport
,
238 .endianness
= DEVICE_NATIVE_ENDIAN
,
241 static void platform_fixed_ioport_init(PCIXenPlatformState
* s
)
243 memory_region_init_io(&s
->fixed_io
, &platform_fixed_io_ops
, s
,
245 memory_region_add_subregion(get_system_io(), XEN_PLATFORM_IOPORT
,
249 /* Xen Platform PCI Device */
251 static uint32_t xen_platform_ioport_readb(void *opaque
, uint32_t addr
)
254 return platform_fixed_ioport_readb(opaque
, 0);
260 static void xen_platform_ioport_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
262 PCIXenPlatformState
*s
= opaque
;
265 case 0: /* Platform flags */
266 platform_fixed_ioport_writeb(opaque
, 0, val
);
276 static MemoryRegionPortio xen_pci_portio
[] = {
277 { 0, 0x100, 1, .read
= xen_platform_ioport_readb
, },
278 { 0, 0x100, 1, .write
= xen_platform_ioport_writeb
, },
282 static const MemoryRegionOps xen_pci_io_ops
= {
283 .old_portio
= xen_pci_portio
,
286 static void platform_ioport_bar_setup(PCIXenPlatformState
*d
)
288 memory_region_init_io(&d
->bar
, &xen_pci_io_ops
, d
, "xen-pci", 0x100);
291 static uint64_t platform_mmio_read(void *opaque
, target_phys_addr_t addr
,
294 DPRINTF("Warning: attempted read from physical address "
295 "0x" TARGET_FMT_plx
" in xen platform mmio space\n", addr
);
300 static void platform_mmio_write(void *opaque
, target_phys_addr_t addr
,
301 uint64_t val
, unsigned size
)
303 DPRINTF("Warning: attempted write of 0x%"PRIx64
" to physical "
304 "address 0x" TARGET_FMT_plx
" in xen platform mmio space\n",
308 static const MemoryRegionOps platform_mmio_handler
= {
309 .read
= &platform_mmio_read
,
310 .write
= &platform_mmio_write
,
311 .endianness
= DEVICE_NATIVE_ENDIAN
,
314 static void platform_mmio_setup(PCIXenPlatformState
*d
)
316 memory_region_init_io(&d
->mmio_bar
, &platform_mmio_handler
, d
,
317 "xen-mmio", 0x1000000);
320 static int xen_platform_post_load(void *opaque
, int version_id
)
322 PCIXenPlatformState
*s
= opaque
;
324 platform_fixed_ioport_writeb(s
, 0, s
->flags
);
329 static const VMStateDescription vmstate_xen_platform
= {
332 .minimum_version_id
= 4,
333 .minimum_version_id_old
= 4,
334 .post_load
= xen_platform_post_load
,
335 .fields
= (VMStateField
[]) {
336 VMSTATE_PCI_DEVICE(pci_dev
, PCIXenPlatformState
),
337 VMSTATE_UINT8(flags
, PCIXenPlatformState
),
338 VMSTATE_END_OF_LIST()
342 static int xen_platform_initfn(PCIDevice
*dev
)
344 PCIXenPlatformState
*d
= DO_UPCAST(PCIXenPlatformState
, pci_dev
, dev
);
347 pci_conf
= d
->pci_dev
.config
;
349 pci_set_word(pci_conf
+ PCI_COMMAND
, PCI_COMMAND_IO
| PCI_COMMAND_MEMORY
);
351 pci_config_set_prog_interface(pci_conf
, 0);
353 pci_conf
[PCI_INTERRUPT_PIN
] = 1;
355 platform_ioport_bar_setup(d
);
356 pci_register_bar(&d
->pci_dev
, 0, PCI_BASE_ADDRESS_SPACE_IO
, &d
->bar
);
358 /* reserve 16MB mmio address for share memory*/
359 platform_mmio_setup(d
);
360 pci_register_bar(&d
->pci_dev
, 1, PCI_BASE_ADDRESS_MEM_PREFETCH
,
363 platform_fixed_ioport_init(d
);
368 static void platform_reset(DeviceState
*dev
)
370 PCIXenPlatformState
*s
= DO_UPCAST(PCIXenPlatformState
, pci_dev
.qdev
, dev
);
372 platform_fixed_ioport_reset(s
);
375 static void xen_platform_class_init(ObjectClass
*klass
, void *data
)
377 DeviceClass
*dc
= DEVICE_CLASS(klass
);
378 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
380 k
->init
= xen_platform_initfn
;
381 k
->vendor_id
= PCI_VENDOR_ID_XEN
;
382 k
->device_id
= PCI_DEVICE_ID_XEN_PLATFORM
;
383 k
->class_id
= PCI_CLASS_OTHERS
<< 8 | 0x80;
384 k
->subsystem_vendor_id
= PCI_VENDOR_ID_XEN
;
385 k
->subsystem_id
= PCI_DEVICE_ID_XEN_PLATFORM
;
387 dc
->desc
= "XEN platform pci device";
388 dc
->reset
= platform_reset
;
389 dc
->vmsd
= &vmstate_xen_platform
;
392 static TypeInfo xen_platform_info
= {
393 .name
= "xen-platform",
394 .parent
= TYPE_PCI_DEVICE
,
395 .instance_size
= sizeof(PCIXenPlatformState
),
396 .class_init
= xen_platform_class_init
,
399 static void xen_platform_register_types(void)
401 type_register_static(&xen_platform_info
);
404 type_init(xen_platform_register_types
)