| 
									
										
										
										
											2007-10-07 14:21:26 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU PowerPC 4xx emulation shared definitions | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2007 Jocelyn Mayer | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if !defined(PPC_4XX_H)
 | 
					
						
							|  |  |  | #define PPC_4XX_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-04 15:40:22 +01:00
										 |  |  | #include "hw/pci/pci.h"
 | 
					
						
							| 
									
										
										
										
											2008-12-02 23:53:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-07 14:21:26 +00:00
										 |  |  | /* PowerPC 4xx core initialization */ | 
					
						
							| 
									
										
										
										
											2012-12-01 04:47:33 +01:00
										 |  |  | PowerPCCPU *ppc4xx_init(const char *cpu_model, | 
					
						
							|  |  |  |                         clk_setup_t *cpu_clk, clk_setup_t *tb_clk, | 
					
						
							|  |  |  |                         uint32_t sysclk); | 
					
						
							| 
									
										
										
										
											2007-10-07 14:21:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* PowerPC 4xx universal interrupt controller */ | 
					
						
							|  |  |  | enum { | 
					
						
							|  |  |  |     PPCUIC_OUTPUT_INT = 0, | 
					
						
							|  |  |  |     PPCUIC_OUTPUT_CINT = 1, | 
					
						
							|  |  |  |     PPCUIC_OUTPUT_NB, | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2012-03-14 01:38:23 +01:00
										 |  |  | qemu_irq *ppcuic_init (CPUPPCState *env, qemu_irq *irqs, | 
					
						
							| 
									
										
										
										
											2007-10-07 14:21:26 +00:00
										 |  |  |                        uint32_t dcr_base, int has_ssr, int has_vr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-01 16:12:16 -05:00
										 |  |  | ram_addr_t ppc4xx_sdram_adjust(ram_addr_t ram_size, int nr_banks, | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:27 +03:00
										 |  |  |                                MemoryRegion ram_memories[], | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |                                hwaddr ram_bases[], | 
					
						
							|  |  |  |                                hwaddr ram_sizes[], | 
					
						
							| 
									
										
										
										
											2008-12-15 23:15:56 +00:00
										 |  |  |                                const unsigned int sdram_bank_sizes[]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 01:38:23 +01:00
										 |  |  | void ppc4xx_sdram_init (CPUPPCState *env, qemu_irq irq, int nbanks, | 
					
						
							| 
									
										
										
										
											2011-08-15 17:17:27 +03:00
										 |  |  |                         MemoryRegion ram_memories[], | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |                         hwaddr *ram_bases, | 
					
						
							|  |  |  |                         hwaddr *ram_sizes, | 
					
						
							| 
									
										
										
										
											2008-12-15 22:59:34 +00:00
										 |  |  |                         int do_init); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-20 19:08:02 +02:00
										 |  |  | #define TYPE_PPC4xx_PCI_HOST_BRIDGE "ppc4xx-pcihost"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-14 01:38:23 +01:00
										 |  |  | PCIBus *ppc4xx_pci_init(CPUPPCState *env, qemu_irq pci_irqs[4], | 
					
						
							| 
									
										
										
										
											2012-10-23 12:30:10 +02:00
										 |  |  |                         hwaddr config_space, | 
					
						
							|  |  |  |                         hwaddr int_ack, | 
					
						
							|  |  |  |                         hwaddr special_cycle, | 
					
						
							|  |  |  |                         hwaddr registers); | 
					
						
							| 
									
										
										
										
											2008-12-02 23:53:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-07 14:21:26 +00:00
										 |  |  | #endif /* !defined(PPC_4XX_H) */
 |