| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2008-08-02 10:55:55 +01:00
										 |  |  |  *  arch/arm/include/asm/mach/pci.h | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (C) 2000 Russell King | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-19 13:20:49 +01:00
										 |  |  | #ifndef __ASM_MACH_PCI_H
 | 
					
						
							|  |  |  | #define __ASM_MACH_PCI_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct pci_sys_data; | 
					
						
							|  |  |  | struct pci_bus; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct hw_pci { | 
					
						
							| 
									
										
										
										
											2010-04-19 13:20:49 +01:00
										 |  |  | #ifdef CONFIG_PCI_DOMAINS
 | 
					
						
							|  |  |  | 	int		domain; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct list_head buses; | 
					
						
							|  |  |  | 	int		nr_controllers; | 
					
						
							|  |  |  | 	int		(*setup)(int nr, struct pci_sys_data *); | 
					
						
							|  |  |  | 	struct pci_bus *(*scan)(int nr, struct pci_sys_data *); | 
					
						
							|  |  |  | 	void		(*preinit)(void); | 
					
						
							|  |  |  | 	void		(*postinit)(void); | 
					
						
							|  |  |  | 	u8		(*swizzle)(struct pci_dev *dev, u8 *pin); | 
					
						
							|  |  |  | 	int		(*map_irq)(struct pci_dev *dev, u8 slot, u8 pin); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Per-controller structure | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct pci_sys_data { | 
					
						
							| 
									
										
										
										
											2010-04-19 13:20:49 +01:00
										 |  |  | #ifdef CONFIG_PCI_DOMAINS
 | 
					
						
							|  |  |  | 	int		domain; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct list_head node; | 
					
						
							|  |  |  | 	int		busnr;		/* primary bus number			*/ | 
					
						
							| 
									
										
										
										
											2006-06-12 17:06:02 -07:00
										 |  |  | 	u64		mem_offset;	/* bus->cpu memory mapping offset	*/ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned long	io_offset;	/* bus->cpu IO mapping offset		*/ | 
					
						
							|  |  |  | 	struct pci_bus	*bus;		/* PCI bus				*/ | 
					
						
							|  |  |  | 	struct resource *resource[3];	/* Primary PCI bus resources		*/ | 
					
						
							|  |  |  | 					/* Bridge swizzling			*/ | 
					
						
							|  |  |  | 	u8		(*swizzle)(struct pci_dev *, u8 *); | 
					
						
							|  |  |  | 					/* IRQ mapping				*/ | 
					
						
							|  |  |  | 	int		(*map_irq)(struct pci_dev *, u8, u8); | 
					
						
							|  |  |  | 	struct hw_pci	*hw; | 
					
						
							| 
									
										
										
										
											2010-06-03 14:58:46 +03:00
										 |  |  | 	void		*private_data;	/* platform controller private data	*/ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This is the standard PCI-PCI bridge swizzling algorithm. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-12-16 21:37:05 -07:00
										 |  |  | #define pci_std_swizzle pci_common_swizzle
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Call this with your hw_pci struct to initialise the PCI system. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | void pci_common_init(struct hw_pci *); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * PCI controllers | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2006-09-18 23:16:23 +01:00
										 |  |  | extern int iop3xx_pci_setup(int nr, struct pci_sys_data *); | 
					
						
							|  |  |  | extern struct pci_bus *iop3xx_pci_scan_bus(int nr, struct pci_sys_data *); | 
					
						
							|  |  |  | extern void iop3xx_pci_preinit(void); | 
					
						
							| 
									
										
										
										
											2008-03-26 19:12:38 -07:00
										 |  |  | extern void iop3xx_pci_preinit_cond(void); | 
					
						
							| 
									
										
										
										
											2006-09-18 23:16:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | extern int dc21285_setup(int nr, struct pci_sys_data *); | 
					
						
							|  |  |  | extern struct pci_bus *dc21285_scan_bus(int nr, struct pci_sys_data *); | 
					
						
							|  |  |  | extern void dc21285_preinit(void); | 
					
						
							|  |  |  | extern void dc21285_postinit(void); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int via82c505_setup(int nr, struct pci_sys_data *); | 
					
						
							|  |  |  | extern struct pci_bus *via82c505_scan_bus(int nr, struct pci_sys_data *); | 
					
						
							|  |  |  | extern void via82c505_init(void *sysdata); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern int pci_v3_setup(int nr, struct pci_sys_data *); | 
					
						
							|  |  |  | extern struct pci_bus *pci_v3_scan_bus(int nr, struct pci_sys_data *); | 
					
						
							|  |  |  | extern void pci_v3_preinit(void); | 
					
						
							|  |  |  | extern void pci_v3_postinit(void); | 
					
						
							| 
									
										
										
										
											2010-04-19 13:20:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* __ASM_MACH_PCI_H */
 |