mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 12:07:31 +00:00 
			
		
		
		
	 d9ff1d35c5
			
		
	
	
		d9ff1d35c5
		
	
	
	
	
		
			
			Use type_init() etc. to adapt the ColdFire UART to the latest QEMU device conventions. Signed-off-by: Thomas Huth <huth@tuxfamily.org> Message-Id: <1485586582-6490-1-git-send-email-huth@tuxfamily.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			706 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			706 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef HW_MCF_H
 | |
| #define HW_MCF_H
 | |
| /* Motorola ColdFire device prototypes.  */
 | |
| 
 | |
| #include "target/m68k/cpu-qom.h"
 | |
| 
 | |
| /* mcf_uart.c */
 | |
| uint64_t mcf_uart_read(void *opaque, hwaddr addr,
 | |
|                        unsigned size);
 | |
| void mcf_uart_write(void *opaque, hwaddr addr,
 | |
|                     uint64_t val, unsigned size);
 | |
| void *mcf_uart_init(qemu_irq irq, Chardev *chr);
 | |
| void mcf_uart_mm_init(hwaddr base, qemu_irq irq, Chardev *chr);
 | |
| 
 | |
| /* mcf_intc.c */
 | |
| qemu_irq *mcf_intc_init(struct MemoryRegion *sysmem,
 | |
|                         hwaddr base,
 | |
|                         M68kCPU *cpu);
 | |
| 
 | |
| /* mcf5206.c */
 | |
| qemu_irq *mcf5206_init(struct MemoryRegion *sysmem,
 | |
|                        uint32_t base, M68kCPU *cpu);
 | |
| 
 | |
| #endif
 |