mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 20:30:01 +00:00 
			
		
		
		
	 8e9c0c079a
			
		
	
	
		8e9c0c079a
		
	
	
	
	
		
			
			The helper generates an acpi dsdt device entry for the xhci sysbus device. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-id: 20201020074844.5304-4-kraxel@redhat.com
		
			
				
	
	
		
			22 lines
		
	
	
		
			487 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			487 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef HW_USB_XHCI_H
 | |
| #define HW_USB_XHCI_H
 | |
| 
 | |
| #define TYPE_XHCI "base-xhci"
 | |
| #define TYPE_NEC_XHCI "nec-usb-xhci"
 | |
| #define TYPE_QEMU_XHCI "qemu-xhci"
 | |
| #define TYPE_XHCI_SYSBUS "sysbus-xhci"
 | |
| 
 | |
| #define XHCI_MAXPORTS_2 15
 | |
| #define XHCI_MAXPORTS_3 15
 | |
| 
 | |
| #define XHCI_MAXPORTS (XHCI_MAXPORTS_2 + XHCI_MAXPORTS_3)
 | |
| #define XHCI_MAXSLOTS 64
 | |
| #define XHCI_MAXINTRS 16
 | |
| 
 | |
| /* must be power of 2 */
 | |
| #define XHCI_LEN_REGS 0x4000
 | |
| 
 | |
| void xhci_sysbus_build_aml(Aml *scope, uint32_t mmio, unsigned int irq);
 | |
| 
 | |
| #endif
 |