mirror of
				https://git.proxmox.com/git/qemu
				synced 2025-10-31 18:49:42 +00:00 
			
		
		
		
	 75dd595b2e
			
		
	
	
		75dd595b2e
		
	
	
	
	
		
			
			Wire up the system-on-chip devices present on 440EP chips. This patch is a little unusual in that qemu doesn't actually emulate the 440 core, but we use this board code with KVM (which does). If/when 440 core emulation is supported, the kvm_enabled() hack can be removed. Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6066 c046a42c-6fe2-441c-8c8c-71466251a162
		
			
				
	
	
		
			21 lines
		
	
	
		
			465 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			465 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Qemu PowerPC 440 board emualtion
 | |
|  *
 | |
|  * Copyright 2007 IBM Corporation.
 | |
|  * Authors: Jerone Young <jyoung5@us.ibm.com>
 | |
|  * 	    Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
 | |
|  *
 | |
|  * This work is licensed under the GNU GPL licence version 2 or later
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef QEMU_PPC440_H
 | |
| #define QEMU_PPC440_H
 | |
| 
 | |
| #include "hw.h"
 | |
| 
 | |
| CPUState *ppc440ep_init(ram_addr_t *ram_size, PCIBus **pcip,
 | |
|                         const unsigned int pci_irq_nrs[4], int do_init);
 | |
| 
 | |
| #endif
 |