1 /* $Id: pbm.h,v 1.27 2001/08/12 13:18:23 davem Exp $
2 * pbm.h: UltraSparc PCI controller software state.
4 * Copyright (C) 1997, 1998, 1999 David S. Miller (davem@redhat.com)
7 #ifndef __SPARC64_PBM_H
8 #define __SPARC64_PBM_H
10 #include <linux/types.h>
11 #include <linux/pci.h>
12 #include <linux/ioport.h>
13 #include <linux/spinlock.h>
17 #include <asm/oplib.h>
19 #include <asm/iommu.h>
21 /* The abstraction used here is that there are PCI controllers,
22 * each with one (Sabre) or two (PSYCHO/SCHIZO) PCI bus modules
23 * underneath. Each PCI bus module uses an IOMMU (shared by both
24 * PBMs of a controller, or per-PBM), and if a streaming buffer
25 * is present, each PCI bus module has it's own. (ie. the IOMMU
26 * might be shared between PBMs, the STC is never shared)
27 * Furthermore, each PCI bus module controls it's own autonomous
31 struct pci_controller_info
;
33 /* This contains the software state necessary to drive a PCI
36 struct pci_iommu_arena
{
43 /* This protects the controller's IOMMU and all
44 * streaming buffers underneath.
48 struct pci_iommu_arena arena
;
50 /* IOMMU page table, a linear array of ioptes. */
51 iopte_t
*page_table
; /* The page table itself. */
53 /* Base PCI memory space address where IOMMU mappings
56 u32 page_table_map_base
;
58 /* IOMMU Controller Registers */
59 unsigned long iommu_control
; /* IOMMU control register */
60 unsigned long iommu_tsbbase
; /* IOMMU page table base register */
61 unsigned long iommu_flush
; /* IOMMU page flush register */
62 unsigned long iommu_ctxflush
; /* IOMMU context flush register */
64 /* This is a register in the PCI controller, which if
65 * read will have no side-effects but will guarantee
66 * completion of all previous writes into IOMMU/STC.
68 unsigned long write_complete_reg
;
70 /* In order to deal with some buggy third-party PCI bridges that
71 * do wrong prefetching, we never mark valid mappings as invalid.
72 * Instead we point them at this dummy page.
74 unsigned long dummy_page
;
75 unsigned long dummy_page_pa
;
78 unsigned long ctx_lowest_free
;
79 unsigned long ctx_bitmap
[IOMMU_NUM_CTXS
/ (sizeof(unsigned long) * 8)];
81 /* Here a PCI controller driver describes the areas of
82 * PCI memory space where DMA to/from physical memory
83 * are addressed. Drivers interrogate the PCI layer
84 * if their device has addressing limitations. They
85 * do so via pci_dma_supported, and pass in a mask of
86 * DMA address bits their device can actually drive.
88 * The test for being usable is:
89 * (device_mask & dma_addr_mask) == dma_addr_mask
94 extern void pci_iommu_table_init(struct pci_iommu
*iommu
, int tsbsize
, u32 dma_offset
, u32 dma_addr_mask
);
96 /* This describes a PCI bus module's streaming buffer. */
98 int strbuf_enabled
; /* Present and using it? */
100 /* Streaming Buffer Control Registers */
101 unsigned long strbuf_control
; /* STC control register */
102 unsigned long strbuf_pflush
; /* STC page flush register */
103 unsigned long strbuf_fsync
; /* STC flush synchronization reg */
104 unsigned long strbuf_ctxflush
; /* STC context flush register */
105 unsigned long strbuf_ctxmatch_base
; /* STC context flush match reg */
106 unsigned long strbuf_flushflag_pa
; /* Physical address of flush flag */
107 volatile unsigned long *strbuf_flushflag
; /* The flush flag itself */
109 /* And this is the actual flush flag area.
110 * We allocate extra because the chips require
111 * a 64-byte aligned area.
113 volatile unsigned long __flushflag_buf
[(64 + (64 - 1)) / sizeof(long)];
116 #define PCI_STC_FLUSHFLAG_INIT(STC) \
117 (*((STC)->strbuf_flushflag) = 0UL)
118 #define PCI_STC_FLUSHFLAG_SET(STC) \
119 (*((STC)->strbuf_flushflag) != 0UL)
121 /* There can be quite a few ranges and interrupt maps on a PCI
124 #define PROM_PCIRNG_MAX 64
125 #define PROM_PCIIMAP_MAX 64
127 struct pci_pbm_info
{
128 /* PCI controller we sit under. */
129 struct pci_controller_info
*parent
;
131 /* Physical address base of controller registers. */
132 unsigned long controller_regs
;
134 /* Physical address base of PBM registers. */
135 unsigned long pbm_regs
;
137 /* Physical address of DMA sync register, if any. */
138 unsigned long sync_reg
;
140 /* Opaque 32-bit system bus Port ID. */
143 /* Opaque 32-bit handle used for hypervisor calls. */
146 /* Chipset version information. */
148 #define PBM_CHIP_TYPE_SABRE 1
149 #define PBM_CHIP_TYPE_PSYCHO 2
150 #define PBM_CHIP_TYPE_SCHIZO 3
151 #define PBM_CHIP_TYPE_SCHIZO_PLUS 4
152 #define PBM_CHIP_TYPE_TOMATILLO 5
156 /* Name used for top-level resources. */
159 /* OBP specific information. */
160 struct device_node
*prom_node
;
161 struct linux_prom_pci_ranges
*pbm_ranges
;
163 struct linux_prom_pci_intmap
*pbm_intmap
;
165 struct linux_prom_pci_intmask
*pbm_intmask
;
168 /* PBM I/O and Memory space resources. */
169 struct resource io_space
;
170 struct resource mem_space
;
172 /* Base of PCI Config space, can be per-PBM or shared. */
173 unsigned long config_space
;
175 /* State of 66MHz capabilities on this PBM. */
176 int is_66mhz_capable
;
179 /* This PBM's streaming buffer. */
180 struct pci_strbuf stc
;
182 /* IOMMU state, potentially shared by both PBM segments. */
183 struct pci_iommu
*iommu
;
185 /* PCI slot mapping. */
186 unsigned int pci_first_slot
;
188 /* Now things for the actual PCI bus probes. */
189 unsigned int pci_first_busno
;
190 unsigned int pci_last_busno
;
191 struct pci_bus
*pci_bus
;
194 struct pci_controller_info
{
195 /* List of all PCI controllers. */
196 struct pci_controller_info
*next
;
198 /* Each controller gets a unique index, used mostly for
199 * error logging purposes.
203 /* Do the PBMs both exist in the same PCI domain? */
204 int pbms_same_domain
;
206 /* The PCI bus modules controlled by us. */
207 struct pci_pbm_info pbm_A
;
208 struct pci_pbm_info pbm_B
;
210 /* Operations which are controller specific. */
211 void (*scan_bus
)(struct pci_controller_info
*);
212 unsigned int (*irq_build
)(struct pci_pbm_info
*, struct pci_dev
*, unsigned int);
213 void (*base_address_update
)(struct pci_dev
*, int);
214 void (*resource_adjust
)(struct pci_dev
*, struct resource
*, struct resource
*);
216 /* Now things for the actual PCI bus probes. */
217 struct pci_ops
*pci_ops
;
218 unsigned int pci_first_busno
;
219 unsigned int pci_last_busno
;
222 /* PCI devices which are not bridges have this placed in their pci_dev
223 * sysdata member. This makes OBP aware PCI device drivers easier to
226 struct pcidev_cookie
{
227 struct pci_pbm_info
*pbm
;
228 struct device_node
*prom_node
;
229 struct linux_prom_pci_registers prom_regs
[PROMREG_MAX
];
231 struct linux_prom_pci_registers prom_assignments
[PROMREG_MAX
];
232 int num_prom_assignments
;
235 /* Currently these are the same across all PCI controllers
236 * we support. Someday they may not be...
238 #define PCI_IRQ_IGN 0x000007c0 /* Interrupt Group Number */
239 #define PCI_IRQ_INO 0x0000003f /* Interrupt Number */
241 #endif /* !(__SPARC64_PBM_H) */