 45d8c0520b
			
		
	
	
		45d8c0520b
		
	
	
	
	
		
			
			QEMU side has already imported pvpanic.h from linux, remove bit definitions from include/hw/misc/pvpanic.h, and use include/standard-headers/linux/pvpanic.h instead. Also minor changes for PVPANIC_CRASHLOADED -> PVPANIC_CRASH_LOADED. Signed-off-by: zhenwei pi <pizhenwei@bytedance.com> Message-Id: <20220221122717.1371010-2-pizhenwei@bytedance.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
		
			
				
	
	
		
			46 lines
		
	
	
		
			975 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			975 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU simulated pvpanic device.
 | |
|  *
 | |
|  * Copyright Fujitsu, Corp. 2013
 | |
|  *
 | |
|  * Authors:
 | |
|  *     Wen Congyang <wency@cn.fujitsu.com>
 | |
|  *     Hu Tao <hutao@cn.fujitsu.com>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2 or later.
 | |
|  * See the COPYING file in the top-level directory.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef HW_MISC_PVPANIC_H
 | |
| #define HW_MISC_PVPANIC_H
 | |
| 
 | |
| #include "qom/object.h"
 | |
| 
 | |
| #define TYPE_PVPANIC_ISA_DEVICE "pvpanic"
 | |
| #define TYPE_PVPANIC_PCI_DEVICE "pvpanic-pci"
 | |
| 
 | |
| #define PVPANIC_IOPORT_PROP "ioport"
 | |
| 
 | |
| /*
 | |
|  * PVPanicState for any device type
 | |
|  */
 | |
| typedef struct PVPanicState PVPanicState;
 | |
| struct PVPanicState {
 | |
|     MemoryRegion mr;
 | |
|     uint8_t events;
 | |
| };
 | |
| 
 | |
| void pvpanic_setup_io(PVPanicState *s, DeviceState *dev, unsigned size);
 | |
| 
 | |
| static inline uint16_t pvpanic_port(void)
 | |
| {
 | |
|     Object *o = object_resolve_path_type("", TYPE_PVPANIC_ISA_DEVICE, NULL);
 | |
|     if (!o) {
 | |
|         return 0;
 | |
|     }
 | |
|     return object_property_get_uint(o, PVPANIC_IOPORT_PROP, NULL);
 | |
| }
 | |
| 
 | |
| #endif
 |