| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License.  See the file "COPYING" in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2006-02-13 05:29:57 -05:00
										 |  |  |  * Copyright (C) 1992-1997,2000-2006 Silicon Graphics, Inc. All rights reserved. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | #ifndef _ASM_IA64_SN_PCI_PCIBR_PROVIDER_H
 | 
					
						
							|  |  |  | #define _ASM_IA64_SN_PCI_PCIBR_PROVIDER_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-06 15:26:51 -07:00
										 |  |  | #include <asm/sn/intr.h>
 | 
					
						
							|  |  |  | #include <asm/sn/pcibus_provider_defs.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* Workarounds */ | 
					
						
							|  |  |  | #define PV907516 (1 << 1) /* TIOCP: Don't write the write buffer flush reg */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define BUSTYPE_MASK                    0x1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Macros given a pcibus structure */ | 
					
						
							|  |  |  | #define IS_PCIX(ps)     ((ps)->pbi_bridge_mode & BUSTYPE_MASK)
 | 
					
						
							|  |  |  | #define IS_PCI_BRIDGE_ASIC(asic) (asic == PCIIO_ASIC_TYPE_PIC || \
 | 
					
						
							|  |  |  |                 asic == PCIIO_ASIC_TYPE_TIOCP) | 
					
						
							|  |  |  | #define IS_PIC_SOFT(ps)     (ps->pbi_bridge_type == PCIBR_BRIDGETYPE_PIC)
 | 
					
						
							| 
									
										
										
										
											2007-04-06 12:04:39 -05:00
										 |  |  | #define IS_TIOCP_SOFT(ps)   (ps->pbi_bridge_type == PCIBR_BRIDGETYPE_TIOCP)
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-06 15:26:51 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * The different PCI Bridge types supported on the SGI Altix platforms | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define PCIBR_BRIDGETYPE_UNKNOWN       -1
 | 
					
						
							|  |  |  | #define PCIBR_BRIDGETYPE_PIC            2
 | 
					
						
							|  |  |  | #define PCIBR_BRIDGETYPE_TIOCP          3
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Bridge 64bit Direct Map Attributes | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define PCI64_ATTR_PREF                 (1ull << 59)
 | 
					
						
							|  |  |  | #define PCI64_ATTR_PREC                 (1ull << 58)
 | 
					
						
							|  |  |  | #define PCI64_ATTR_VIRTUAL              (1ull << 57)
 | 
					
						
							|  |  |  | #define PCI64_ATTR_BAR                  (1ull << 56)
 | 
					
						
							|  |  |  | #define PCI64_ATTR_SWAP                 (1ull << 55)
 | 
					
						
							|  |  |  | #define PCI64_ATTR_VIRTUAL1             (1ull << 54)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PCI32_LOCAL_BASE                0
 | 
					
						
							|  |  |  | #define PCI32_MAPPED_BASE               0x40000000
 | 
					
						
							|  |  |  | #define PCI32_DIRECT_BASE               0x80000000
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | #define IS_PCI32_MAPPED(x)              ((u64)(x) < PCI32_DIRECT_BASE && \
 | 
					
						
							|  |  |  |                                          (u64)(x) >= PCI32_MAPPED_BASE) | 
					
						
							|  |  |  | #define IS_PCI32_DIRECT(x)              ((u64)(x) >= PCI32_MAPPED_BASE)
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Bridge PMU Address Transaltion Entry Attibutes | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define PCI32_ATE_V                     (0x1 << 0)
 | 
					
						
							| 
									
										
										
										
											2007-04-06 12:04:39 -05:00
										 |  |  | #define PCI32_ATE_CO                    (0x1 << 1)	/* PIC ASIC ONLY */
 | 
					
						
							|  |  |  | #define PCI32_ATE_PIO                   (0x1 << 1)	/* TIOCP ASIC ONLY */
 | 
					
						
							| 
									
										
										
										
											2006-04-14 16:03:54 -05:00
										 |  |  | #define PCI32_ATE_MSI                   (0x1 << 2)
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #define PCI32_ATE_PREF                  (0x1 << 3)
 | 
					
						
							|  |  |  | #define PCI32_ATE_BAR                   (0x1 << 4)
 | 
					
						
							|  |  |  | #define PCI32_ATE_ADDR_SHFT             12
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MINIMAL_ATES_REQUIRED(addr, size) \
 | 
					
						
							|  |  |  | 	(IOPG(IOPGOFF(addr) + (size) - 1) == IOPG((size) - 1)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MINIMAL_ATE_FLAG(addr, size) \
 | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | 	(MINIMAL_ATES_REQUIRED((u64)addr, size) ? 1 : 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* bit 29 of the pci address is the SWAP bit */ | 
					
						
							|  |  |  | #define ATE_SWAPSHIFT                   29
 | 
					
						
							|  |  |  | #define ATE_SWAP_ON(x)                  ((x) |= (1 << ATE_SWAPSHIFT))
 | 
					
						
							|  |  |  | #define ATE_SWAP_OFF(x)                 ((x) &= ~(1 << ATE_SWAPSHIFT))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * I/O page size | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #if PAGE_SIZE < 16384
 | 
					
						
							|  |  |  | #define IOPFNSHIFT                      12      /* 4K per mapped page */
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #define IOPFNSHIFT                      14      /* 16K per mapped page */
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define IOPGSIZE                        (1 << IOPFNSHIFT)
 | 
					
						
							|  |  |  | #define IOPG(x)                         ((x) >> IOPFNSHIFT)
 | 
					
						
							|  |  |  | #define IOPGOFF(x)                      ((x) & (IOPGSIZE-1))
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PCIBR_DEV_SWAP_DIR              (1ull << 19)
 | 
					
						
							|  |  |  | #define PCIBR_CTRL_PAGE_SIZE            (0x1 << 21)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * PMU resources. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | struct ate_resource{ | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | 	u64 *ate; | 
					
						
							|  |  |  | 	u64 num_ate; | 
					
						
							|  |  |  | 	u64 lowest_free_index; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct pcibus_info { | 
					
						
							|  |  |  | 	struct pcibus_bussoft	pbi_buscommon;   /* common header */ | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | 	u32                pbi_moduleid; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	short                   pbi_bridge_type; | 
					
						
							|  |  |  | 	short                   pbi_bridge_mode; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	struct ate_resource     pbi_int_ate_resource; | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | 	u64                pbi_int_ate_size; | 
					
						
							| 
									
										
										
										
											2005-07-06 15:26:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | 	u64                pbi_dir_xbase; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	char                    pbi_hub_xid; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | 	u64                pbi_devreg[8]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | 	u32		pbi_valid_devices; | 
					
						
							|  |  |  | 	u32		pbi_enabled_devices; | 
					
						
							| 
									
										
										
										
											2005-07-06 15:30:25 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spinlock_t              pbi_lock; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-25 11:26:03 -07:00
										 |  |  | extern int  pcibr_init_provider(void); | 
					
						
							| 
									
										
										
										
											2005-07-12 16:03:00 -07:00
										 |  |  | extern void *pcibr_bus_fixup(struct pcibus_bussoft *, struct pci_controller *); | 
					
						
							| 
									
										
										
										
											2006-04-14 16:03:54 -05:00
										 |  |  | extern dma_addr_t pcibr_dma_map(struct pci_dev *, unsigned long, size_t, int type); | 
					
						
							|  |  |  | extern dma_addr_t pcibr_dma_map_consistent(struct pci_dev *, unsigned long, size_t, int type); | 
					
						
							| 
									
										
										
										
											2005-04-25 11:26:03 -07:00
										 |  |  | extern void pcibr_dma_unmap(struct pci_dev *, dma_addr_t, int); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * prototypes for the bridge asic register access routines in pcibr_reg.c | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | extern void             pcireg_control_bit_clr(struct pcibus_info *, u64); | 
					
						
							|  |  |  | extern void             pcireg_control_bit_set(struct pcibus_info *, u64); | 
					
						
							|  |  |  | extern u64         pcireg_tflush_get(struct pcibus_info *); | 
					
						
							|  |  |  | extern u64         pcireg_intr_status_get(struct pcibus_info *); | 
					
						
							|  |  |  | extern void             pcireg_intr_enable_bit_clr(struct pcibus_info *, u64); | 
					
						
							|  |  |  | extern void             pcireg_intr_enable_bit_set(struct pcibus_info *, u64); | 
					
						
							|  |  |  | extern void             pcireg_intr_addr_addr_set(struct pcibus_info *, int, u64); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | extern void             pcireg_force_intr_set(struct pcibus_info *, int); | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | extern u64         pcireg_wrb_flush_get(struct pcibus_info *, int); | 
					
						
							|  |  |  | extern void             pcireg_int_ate_set(struct pcibus_info *, int, u64); | 
					
						
							| 
									
										
										
										
											2006-10-10 22:46:27 +01:00
										 |  |  | extern u64 __iomem *	pcireg_int_ate_addr(struct pcibus_info *, int); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | extern void 		pcibr_force_interrupt(struct sn_irq_info *sn_irq_info); | 
					
						
							|  |  |  | extern void 		pcibr_change_devices_irq(struct sn_irq_info *sn_irq_info); | 
					
						
							|  |  |  | extern int 		pcibr_ate_alloc(struct pcibus_info *, int); | 
					
						
							|  |  |  | extern void 		pcibr_ate_free(struct pcibus_info *, int); | 
					
						
							| 
									
										
										
										
											2006-01-16 19:54:40 -08:00
										 |  |  | extern void 		ate_write(struct pcibus_info *, int, int, u64); | 
					
						
							| 
									
										
										
										
											2005-07-06 15:29:53 -07:00
										 |  |  | extern int sal_pcibr_slot_enable(struct pcibus_info *soft, int device, | 
					
						
							| 
									
										
										
										
											2007-01-30 01:17:37 -05:00
										 |  |  | 				 void *resp, char **ssdt); | 
					
						
							| 
									
										
										
										
											2005-07-06 15:29:53 -07:00
										 |  |  | extern int sal_pcibr_slot_disable(struct pcibus_info *soft, int device, | 
					
						
							|  |  |  | 				  int action, void *resp); | 
					
						
							| 
									
										
										
										
											2006-03-08 13:30:18 -05:00
										 |  |  | extern u16 sn_ioboard_to_pci_bus(struct pci_bus *pci_bus); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #endif
 |