diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2007-05-02 20:31:36 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-05-07 01:44:06 -0400 |
commit | 861fe90656b8e20d750d73c57088dc52d316ce7b (patch) | |
tree | 3f7df274478242ecf9f4186637c9cc38f59b5b8a /arch | |
parent | 4cad69174f385c183b2bcb369fb4304d8624ab96 (diff) |
[SPARC64]: SUN4U PCI-E controller support.
Some minor refactoring in the generic code was necessary for
this:
1) This controller requires 8-byte access to the interrupt map
and clear register. They are 64-bits on all the other
SBUS and PCI controllers anyways, so this was easy to cure.
2) The IMAP register has a different layout and some bits that we
need to preserve, so use a read/modify/write when making
changes to the IMAP register in generic code.
3) Flushing the entire IOMMU TLB is best done with a single write
to a register on this PCI controller, add a iommu->iommu_flushinv
for this.
Still lacks MSI support, that will come later.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sparc64/kernel/Makefile | 2 | ||||
-rw-r--r-- | arch/sparc64/kernel/irq.c | 16 | ||||
-rw-r--r-- | arch/sparc64/kernel/pci.c | 9 | ||||
-rw-r--r-- | arch/sparc64/kernel/pci_fire.c | 418 | ||||
-rw-r--r-- | arch/sparc64/kernel/pci_iommu.c | 22 | ||||
-rw-r--r-- | arch/sparc64/kernel/prom.c | 89 |
6 files changed, 534 insertions, 22 deletions
diff --git a/arch/sparc64/kernel/Makefile b/arch/sparc64/kernel/Makefile index eff0c01d3579..6bf6fb65bc20 100644 --- a/arch/sparc64/kernel/Makefile +++ b/arch/sparc64/kernel/Makefile | |||
@@ -17,7 +17,7 @@ obj-y := process.o setup.o cpu.o idprom.o \ | |||
17 | obj-$(CONFIG_STACKTRACE) += stacktrace.o | 17 | obj-$(CONFIG_STACKTRACE) += stacktrace.o |
18 | obj-$(CONFIG_PCI) += ebus.o isa.o pci_common.o pci_iommu.o \ | 18 | obj-$(CONFIG_PCI) += ebus.o isa.o pci_common.o pci_iommu.o \ |
19 | pci_psycho.o pci_sabre.o pci_schizo.o \ | 19 | pci_psycho.o pci_sabre.o pci_schizo.o \ |
20 | pci_sun4v.o pci_sun4v_asm.o | 20 | pci_sun4v.o pci_sun4v_asm.o pci_fire.o |
21 | obj-$(CONFIG_SMP) += smp.o trampoline.o | 21 | obj-$(CONFIG_SMP) += smp.o trampoline.o |
22 | obj-$(CONFIG_SPARC32_COMPAT) += sys32.o sys_sparc32.o signal32.o | 22 | obj-$(CONFIG_SPARC32_COMPAT) += sys32.o sys_sparc32.o signal32.o |
23 | obj-$(CONFIG_BINFMT_ELF32) += binfmt_elf32.o | 23 | obj-$(CONFIG_BINFMT_ELF32) += binfmt_elf32.o |
diff --git a/arch/sparc64/kernel/irq.c b/arch/sparc64/kernel/irq.c index 6241e3dbbd57..3edc18e1b818 100644 --- a/arch/sparc64/kernel/irq.c +++ b/arch/sparc64/kernel/irq.c | |||
@@ -279,7 +279,7 @@ static void sun4u_irq_enable(unsigned int virt_irq) | |||
279 | struct irq_handler_data *data = get_irq_chip_data(virt_irq); | 279 | struct irq_handler_data *data = get_irq_chip_data(virt_irq); |
280 | 280 | ||
281 | if (likely(data)) { | 281 | if (likely(data)) { |
282 | unsigned long cpuid, imap; | 282 | unsigned long cpuid, imap, val; |
283 | unsigned int tid; | 283 | unsigned int tid; |
284 | 284 | ||
285 | cpuid = irq_choose_cpu(virt_irq); | 285 | cpuid = irq_choose_cpu(virt_irq); |
@@ -287,7 +287,11 @@ static void sun4u_irq_enable(unsigned int virt_irq) | |||
287 | 287 | ||
288 | tid = sun4u_compute_tid(imap, cpuid); | 288 | tid = sun4u_compute_tid(imap, cpuid); |
289 | 289 | ||
290 | upa_writel(tid | IMAP_VALID, imap); | 290 | val = upa_readq(imap); |
291 | val &= ~(IMAP_TID_UPA | IMAP_TID_JBUS | | ||
292 | IMAP_AID_SAFARI | IMAP_NID_SAFARI); | ||
293 | val |= tid | IMAP_VALID; | ||
294 | upa_writeq(val, imap); | ||
291 | } | 295 | } |
292 | } | 296 | } |
293 | 297 | ||
@@ -297,10 +301,10 @@ static void sun4u_irq_disable(unsigned int virt_irq) | |||
297 | 301 | ||
298 | if (likely(data)) { | 302 | if (likely(data)) { |
299 | unsigned long imap = data->imap; | 303 | unsigned long imap = data->imap; |
300 | u32 tmp = upa_readl(imap); | 304 | u32 tmp = upa_readq(imap); |
301 | 305 | ||
302 | tmp &= ~IMAP_VALID; | 306 | tmp &= ~IMAP_VALID; |
303 | upa_writel(tmp, imap); | 307 | upa_writeq(tmp, imap); |
304 | } | 308 | } |
305 | } | 309 | } |
306 | 310 | ||
@@ -309,7 +313,7 @@ static void sun4u_irq_end(unsigned int virt_irq) | |||
309 | struct irq_handler_data *data = get_irq_chip_data(virt_irq); | 313 | struct irq_handler_data *data = get_irq_chip_data(virt_irq); |
310 | 314 | ||
311 | if (likely(data)) | 315 | if (likely(data)) |
312 | upa_writel(ICLR_IDLE, data->iclr); | 316 | upa_writeq(ICLR_IDLE, data->iclr); |
313 | } | 317 | } |
314 | 318 | ||
315 | static void sun4v_irq_enable(unsigned int virt_irq) | 319 | static void sun4v_irq_enable(unsigned int virt_irq) |
@@ -465,7 +469,7 @@ unsigned int build_irq(int inofixup, unsigned long iclr, unsigned long imap) | |||
465 | 469 | ||
466 | BUG_ON(tlb_type == hypervisor); | 470 | BUG_ON(tlb_type == hypervisor); |
467 | 471 | ||
468 | ino = (upa_readl(imap) & (IMAP_IGN | IMAP_INO)) + inofixup; | 472 | ino = (upa_readq(imap) & (IMAP_IGN | IMAP_INO)) + inofixup; |
469 | bucket = &ivector_table[ino]; | 473 | bucket = &ivector_table[ino]; |
470 | if (!bucket->virt_irq) { | 474 | if (!bucket->virt_irq) { |
471 | bucket->virt_irq = virt_irq_alloc(__irq(bucket)); | 475 | bucket->virt_irq = virt_irq_alloc(__irq(bucket)); |
diff --git a/arch/sparc64/kernel/pci.c b/arch/sparc64/kernel/pci.c index 9a549547cb2b..a72a3c312d33 100644 --- a/arch/sparc64/kernel/pci.c +++ b/arch/sparc64/kernel/pci.c | |||
@@ -190,6 +190,7 @@ extern void schizo_init(struct device_node *, const char *); | |||
190 | extern void schizo_plus_init(struct device_node *, const char *); | 190 | extern void schizo_plus_init(struct device_node *, const char *); |
191 | extern void tomatillo_init(struct device_node *, const char *); | 191 | extern void tomatillo_init(struct device_node *, const char *); |
192 | extern void sun4v_pci_init(struct device_node *, const char *); | 192 | extern void sun4v_pci_init(struct device_node *, const char *); |
193 | extern void fire_pci_init(struct device_node *, const char *); | ||
193 | 194 | ||
194 | static struct { | 195 | static struct { |
195 | char *model_name; | 196 | char *model_name; |
@@ -207,6 +208,7 @@ static struct { | |||
207 | { "SUNW,tomatillo", tomatillo_init }, | 208 | { "SUNW,tomatillo", tomatillo_init }, |
208 | { "pci108e,a801", tomatillo_init }, | 209 | { "pci108e,a801", tomatillo_init }, |
209 | { "SUNW,sun4v-pci", sun4v_pci_init }, | 210 | { "SUNW,sun4v-pci", sun4v_pci_init }, |
211 | { "pciex108e,80f0", fire_pci_init }, | ||
210 | }; | 212 | }; |
211 | #define PCI_NUM_CONTROLLER_TYPES (sizeof(pci_controller_table) / \ | 213 | #define PCI_NUM_CONTROLLER_TYPES (sizeof(pci_controller_table) / \ |
212 | sizeof(pci_controller_table[0])) | 214 | sizeof(pci_controller_table[0])) |
@@ -436,6 +438,13 @@ struct pci_dev *of_create_pci_dev(struct pci_pbm_info *pbm, | |||
436 | printk(" class: 0x%x device name: %s\n", | 438 | printk(" class: 0x%x device name: %s\n", |
437 | dev->class, pci_name(dev)); | 439 | dev->class, pci_name(dev)); |
438 | 440 | ||
441 | /* I have seen IDE devices which will not respond to | ||
442 | * the bmdma simplex check reads if bus mastering is | ||
443 | * disabled. | ||
444 | */ | ||
445 | if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE) | ||
446 | pci_set_master(dev); | ||
447 | |||
439 | dev->current_state = 4; /* unknown power state */ | 448 | dev->current_state = 4; /* unknown power state */ |
440 | dev->error_state = pci_channel_io_normal; | 449 | dev->error_state = pci_channel_io_normal; |
441 | 450 | ||
diff --git a/arch/sparc64/kernel/pci_fire.c b/arch/sparc64/kernel/pci_fire.c new file mode 100644 index 000000000000..0fe626631e12 --- /dev/null +++ b/arch/sparc64/kernel/pci_fire.c | |||
@@ -0,0 +1,418 @@ | |||
1 | /* pci_fire.c: Sun4u platform PCI-E controller support. | ||
2 | * | ||
3 | * Copyright (C) 2007 David S. Miller (davem@davemloft.net) | ||
4 | */ | ||
5 | #include <linux/kernel.h> | ||
6 | #include <linux/pci.h> | ||
7 | #include <linux/slab.h> | ||
8 | #include <linux/init.h> | ||
9 | |||
10 | #include <asm/pbm.h> | ||
11 | #include <asm/oplib.h> | ||
12 | #include <asm/prom.h> | ||
13 | |||
14 | #include "pci_impl.h" | ||
15 | |||
16 | #define fire_read(__reg) \ | ||
17 | ({ u64 __ret; \ | ||
18 | __asm__ __volatile__("ldxa [%1] %2, %0" \ | ||
19 | : "=r" (__ret) \ | ||
20 | : "r" (__reg), "i" (ASI_PHYS_BYPASS_EC_E) \ | ||
21 | : "memory"); \ | ||
22 | __ret; \ | ||
23 | }) | ||
24 | #define fire_write(__reg, __val) \ | ||
25 | __asm__ __volatile__("stxa %0, [%1] %2" \ | ||
26 | : /* no outputs */ \ | ||
27 | : "r" (__val), "r" (__reg), \ | ||
28 | "i" (ASI_PHYS_BYPASS_EC_E) \ | ||
29 | : "memory") | ||
30 | |||
31 | /* Fire config space address format is nearly identical to | ||
32 | * that of SCHIZO and PSYCHO, except that in order to accomodate | ||
33 | * PCI-E extended config space the encoding can handle 12 bits | ||
34 | * of register address: | ||
35 | * | ||
36 | * 32 28 27 20 19 15 14 12 11 2 1 0 | ||
37 | * ------------------------------------------------- | ||
38 | * |0 0 0 0 0| bus | device | function | reg | 0 0 | | ||
39 | * ------------------------------------------------- | ||
40 | */ | ||
41 | #define FIRE_CONFIG_BASE(PBM) ((PBM)->config_space) | ||
42 | #define FIRE_CONFIG_ENCODE(BUS, DEVFN, REG) \ | ||
43 | (((unsigned long)(BUS) << 20) | \ | ||
44 | ((unsigned long)(DEVFN) << 12) | \ | ||
45 | ((unsigned long)(REG))) | ||
46 | |||
47 | static void *fire_pci_config_mkaddr(struct pci_pbm_info *pbm, | ||
48 | unsigned char bus, | ||
49 | unsigned int devfn, | ||
50 | int where) | ||
51 | { | ||
52 | if (!pbm) | ||
53 | return NULL; | ||
54 | return (void *) | ||
55 | (FIRE_CONFIG_BASE(pbm) | | ||
56 | FIRE_CONFIG_ENCODE(bus, devfn, where)); | ||
57 | } | ||
58 | |||
59 | /* FIRE PCI configuration space accessors. */ | ||
60 | |||
61 | static int fire_read_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, | ||
62 | int where, int size, u32 *value) | ||
63 | { | ||
64 | struct pci_pbm_info *pbm = bus_dev->sysdata; | ||
65 | unsigned char bus = bus_dev->number; | ||
66 | u32 *addr; | ||
67 | u16 tmp16; | ||
68 | u8 tmp8; | ||
69 | |||
70 | if (bus_dev == pbm->pci_bus && devfn == 0x00) | ||
71 | return pci_host_bridge_read_pci_cfg(bus_dev, devfn, where, | ||
72 | size, value); | ||
73 | switch (size) { | ||
74 | case 1: | ||
75 | *value = 0xff; | ||
76 | break; | ||
77 | case 2: | ||
78 | *value = 0xffff; | ||
79 | break; | ||
80 | case 4: | ||
81 | *value = 0xffffffff; | ||
82 | break; | ||
83 | } | ||
84 | |||
85 | addr = fire_pci_config_mkaddr(pbm, bus, devfn, where); | ||
86 | if (!addr) | ||
87 | return PCIBIOS_SUCCESSFUL; | ||
88 | |||
89 | switch (size) { | ||
90 | case 1: | ||
91 | pci_config_read8((u8 *)addr, &tmp8); | ||
92 | *value = tmp8; | ||
93 | break; | ||
94 | |||
95 | case 2: | ||
96 | if (where & 0x01) { | ||
97 | printk("pci_read_config_word: misaligned reg [%x]\n", | ||
98 | where); | ||
99 | return PCIBIOS_SUCCESSFUL; | ||
100 | } | ||
101 | pci_config_read16((u16 *)addr, &tmp16); | ||
102 | *value = tmp16; | ||
103 | break; | ||
104 | |||
105 | case 4: | ||
106 | if (where & 0x03) { | ||
107 | printk("pci_read_config_dword: misaligned reg [%x]\n", | ||
108 | where); | ||
109 | return PCIBIOS_SUCCESSFUL; | ||
110 | } | ||
111 | |||
112 | pci_config_read32(addr, value); | ||
113 | break; | ||
114 | } | ||
115 | return PCIBIOS_SUCCESSFUL; | ||
116 | } | ||
117 | |||
118 | static int fire_write_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, | ||
119 | int where, int size, u32 value) | ||
120 | { | ||
121 | struct pci_pbm_info *pbm = bus_dev->sysdata; | ||
122 | unsigned char bus = bus_dev->number; | ||
123 | u32 *addr; | ||
124 | |||
125 | if (bus_dev == pbm->pci_bus && devfn == 0x00) | ||
126 | return pci_host_bridge_write_pci_cfg(bus_dev, devfn, where, | ||
127 | size, value); | ||
128 | addr = fire_pci_config_mkaddr(pbm, bus, devfn, where); | ||
129 | if (!addr) | ||
130 | return PCIBIOS_SUCCESSFUL; | ||
131 | |||
132 | switch (size) { | ||
133 | case 1: | ||
134 | pci_config_write8((u8 *)addr, value); | ||
135 | break; | ||
136 | |||
137 | case 2: | ||
138 | if (where & 0x01) { | ||
139 | printk("pci_write_config_word: misaligned reg [%x]\n", | ||
140 | where); | ||
141 | return PCIBIOS_SUCCESSFUL; | ||
142 | } | ||
143 | pci_config_write16((u16 *)addr, value); | ||
144 | break; | ||
145 | |||
146 | case 4: | ||
147 | if (where & 0x03) { | ||
148 | printk("pci_write_config_dword: misaligned reg [%x]\n", | ||
149 | where); | ||
150 | return PCIBIOS_SUCCESSFUL; | ||
151 | } | ||
152 | |||
153 | pci_config_write32(addr, value); | ||
154 | } | ||
155 | return PCIBIOS_SUCCESSFUL; | ||
156 | } | ||
157 | |||
158 | static struct pci_ops pci_fire_ops = { | ||
159 | .read = fire_read_pci_cfg, | ||
160 | .write = fire_write_pci_cfg, | ||
161 | }; | ||
162 | |||
163 | static void pbm_scan_bus(struct pci_controller_info *p, | ||
164 | struct pci_pbm_info *pbm) | ||
165 | { | ||
166 | pbm->pci_bus = pci_scan_one_pbm(pbm); | ||
167 | } | ||
168 | |||
169 | static void pci_fire_scan_bus(struct pci_controller_info *p) | ||
170 | { | ||
171 | struct device_node *dp; | ||
172 | |||
173 | if ((dp = p->pbm_A.prom_node) != NULL) | ||
174 | pbm_scan_bus(p, &p->pbm_A); | ||
175 | |||
176 | if ((dp = p->pbm_B.prom_node) != NULL) | ||
177 | pbm_scan_bus(p, &p->pbm_B); | ||
178 | |||
179 | /* XXX register error interrupt handlers XXX */ | ||
180 | } | ||
181 | |||
182 | #define FIRE_IOMMU_CONTROL 0x40000UL | ||
183 | #define FIRE_IOMMU_TSBBASE 0x40008UL | ||
184 | #define FIRE_IOMMU_FLUSH 0x40100UL | ||
185 | #define FIRE_IOMMU_FLUSHINV 0x40100UL | ||
186 | |||
187 | static void pci_fire_pbm_iommu_init(struct pci_pbm_info *pbm) | ||
188 | { | ||
189 | struct iommu *iommu = pbm->iommu; | ||
190 | u32 vdma[2], dma_mask; | ||
191 | u64 control; | ||
192 | int tsbsize; | ||
193 | |||
194 | /* No virtual-dma property on these guys, use largest size. */ | ||
195 | vdma[0] = 0xc0000000; /* base */ | ||
196 | vdma[1] = 0x40000000; /* size */ | ||
197 | dma_mask = 0xffffffff; | ||
198 | tsbsize = 128; | ||
199 | |||
200 | /* Register addresses. */ | ||
201 | iommu->iommu_control = pbm->pbm_regs + FIRE_IOMMU_CONTROL; | ||
202 | iommu->iommu_tsbbase = pbm->pbm_regs + FIRE_IOMMU_TSBBASE; | ||
203 | iommu->iommu_flush = pbm->pbm_regs + FIRE_IOMMU_FLUSH; | ||
204 | iommu->iommu_flushinv = pbm->pbm_regs + FIRE_IOMMU_FLUSHINV; | ||
205 | |||
206 | /* We use the main control/status register of FIRE as the write | ||
207 | * completion register. | ||
208 | */ | ||
209 | iommu->write_complete_reg = pbm->controller_regs + 0x410000UL; | ||
210 | |||
211 | /* | ||
212 | * Invalidate TLB Entries. | ||
213 | */ | ||
214 | fire_write(iommu->iommu_flushinv, ~(u64)0); | ||
215 | |||
216 | pci_iommu_table_init(iommu, tsbsize * 8 * 1024, vdma[0], dma_mask); | ||
217 | |||
218 | fire_write(iommu->iommu_tsbbase, __pa(iommu->page_table) | 0x7UL); | ||
219 | |||
220 | control = fire_read(iommu->iommu_control); | ||
221 | control |= (0x00000400 /* TSB cache snoop enable */ | | ||
222 | 0x00000300 /* Cache mode */ | | ||
223 | 0x00000002 /* Bypass enable */ | | ||
224 | 0x00000001 /* Translation enable */); | ||
225 | fire_write(iommu->iommu_control, control); | ||
226 | } | ||
227 | |||
228 | /* Based at pbm->controller_regs */ | ||
229 | #define FIRE_PARITY_CONTROL 0x470010UL | ||
230 | #define FIRE_PARITY_ENAB 0x8000000000000000UL | ||
231 | #define FIRE_FATAL_RESET_CTL 0x471028UL | ||
232 | #define FIRE_FATAL_RESET_SPARE 0x0000000004000000UL | ||
233 | #define FIRE_FATAL_RESET_MB 0x0000000002000000UL | ||
234 | #define FIRE_FATAL_RESET_CPE 0x0000000000008000UL | ||
235 | #define FIRE_FATAL_RESET_APE 0x0000000000004000UL | ||
236 | #define FIRE_FATAL_RESET_PIO 0x0000000000000040UL | ||
237 | #define FIRE_FATAL_RESET_JW 0x0000000000000004UL | ||
238 | #define FIRE_FATAL_RESET_JI 0x0000000000000002UL | ||
239 | #define FIRE_FATAL_RESET_JR 0x0000000000000001UL | ||
240 | #define FIRE_CORE_INTR_ENABLE 0x471800UL | ||
241 | |||
242 | /* Based at pbm->pbm_regs */ | ||
243 | #define FIRE_TLU_CTRL 0x80000UL | ||
244 | #define FIRE_TLU_CTRL_TIM 0x00000000da000000UL | ||
245 | #define FIRE_TLU_CTRL_QDET 0x0000000000000100UL | ||
246 | #define FIRE_TLU_CTRL_CFG 0x0000000000000001UL | ||
247 | #define FIRE_TLU_DEV_CTRL 0x90008UL | ||
248 | #define FIRE_TLU_LINK_CTRL 0x90020UL | ||
249 | #define FIRE_TLU_LINK_CTRL_CLK 0x0000000000000040UL | ||
250 | #define FIRE_LPU_RESET 0xe2008UL | ||
251 | #define FIRE_LPU_LLCFG 0xe2200UL | ||
252 | #define FIRE_LPU_LLCFG_VC0 0x0000000000000100UL | ||
253 | #define FIRE_LPU_FCTRL_UCTRL 0xe2240UL | ||
254 | #define FIRE_LPU_FCTRL_UCTRL_N 0x0000000000000002UL | ||
255 | #define FIRE_LPU_FCTRL_UCTRL_P 0x0000000000000001UL | ||
256 | #define FIRE_LPU_TXL_FIFOP 0xe2430UL | ||
257 | #define FIRE_LPU_LTSSM_CFG2 0xe2788UL | ||
258 | #define FIRE_LPU_LTSSM_CFG3 0xe2790UL | ||
259 | #define FIRE_LPU_LTSSM_CFG4 0xe2798UL | ||
260 | #define FIRE_LPU_LTSSM_CFG5 0xe27a0UL | ||
261 | #define FIRE_DMC_IENAB 0x31800UL | ||
262 | #define FIRE_DMC_DBG_SEL_A 0x53000UL | ||
263 | #define FIRE_DMC_DBG_SEL_B 0x53008UL | ||
264 | #define FIRE_PEC_IENAB 0x51800UL | ||
265 | |||
266 | static void pci_fire_hw_init(struct pci_pbm_info *pbm) | ||
267 | { | ||
268 | u64 val; | ||
269 | |||
270 | fire_write(pbm->controller_regs + FIRE_PARITY_CONTROL, | ||
271 | FIRE_PARITY_ENAB); | ||
272 | |||
273 | fire_write(pbm->controller_regs + FIRE_FATAL_RESET_CTL, | ||
274 | (FIRE_FATAL_RESET_SPARE | | ||
275 | FIRE_FATAL_RESET_MB | | ||
276 | FIRE_FATAL_RESET_CPE | | ||
277 | FIRE_FATAL_RESET_APE | | ||
278 | FIRE_FATAL_RESET_PIO | | ||
279 | FIRE_FATAL_RESET_JW | | ||
280 | FIRE_FATAL_RESET_JI | | ||
281 | FIRE_FATAL_RESET_JR)); | ||
282 | |||
283 | fire_write(pbm->controller_regs + FIRE_CORE_INTR_ENABLE, ~(u64)0); | ||
284 | |||
285 | val = fire_read(pbm->pbm_regs + FIRE_TLU_CTRL); | ||
286 | val |= (FIRE_TLU_CTRL_TIM | | ||
287 | FIRE_TLU_CTRL_QDET | | ||
288 | FIRE_TLU_CTRL_CFG); | ||
289 | fire_write(pbm->pbm_regs + FIRE_TLU_CTRL, val); | ||
290 | fire_write(pbm->pbm_regs + FIRE_TLU_DEV_CTRL, 0); | ||
291 | fire_write(pbm->pbm_regs + FIRE_TLU_LINK_CTRL, | ||
292 | FIRE_TLU_LINK_CTRL_CLK); | ||
293 | |||
294 | fire_write(pbm->pbm_regs + FIRE_LPU_RESET, 0); | ||
295 | fire_write(pbm->pbm_regs + FIRE_LPU_LLCFG, | ||
296 | FIRE_LPU_LLCFG_VC0); | ||
297 | fire_write(pbm->pbm_regs + FIRE_LPU_FCTRL_UCTRL, | ||
298 | (FIRE_LPU_FCTRL_UCTRL_N | | ||
299 | FIRE_LPU_FCTRL_UCTRL_P)); | ||
300 | fire_write(pbm->pbm_regs + FIRE_LPU_TXL_FIFOP, | ||
301 | ((0xffff << 16) | (0x0000 << 0))); | ||
302 | fire_write(pbm->pbm_regs + FIRE_LPU_LTSSM_CFG2, 3000000); | ||
303 | fire_write(pbm->pbm_regs + FIRE_LPU_LTSSM_CFG3, 500000); | ||
304 | fire_write(pbm->pbm_regs + FIRE_LPU_LTSSM_CFG4, | ||
305 | (2 << 16) | (140 << 8)); | ||
306 | fire_write(pbm->pbm_regs + FIRE_LPU_LTSSM_CFG5, 0); | ||
307 | |||
308 | fire_write(pbm->pbm_regs + FIRE_DMC_IENAB, ~(u64)0); | ||
309 | fire_write(pbm->pbm_regs + FIRE_DMC_DBG_SEL_A, 0); | ||
310 | fire_write(pbm->pbm_regs + FIRE_DMC_DBG_SEL_B, 0); | ||
311 | |||
312 | fire_write(pbm->pbm_regs + FIRE_PEC_IENAB, ~(u64)0); | ||
313 | } | ||
314 | |||
315 | static void pci_fire_pbm_init(struct pci_controller_info *p, | ||
316 | struct device_node *dp, u32 portid) | ||
317 | { | ||
318 | const struct linux_prom64_registers *regs; | ||
319 | struct pci_pbm_info *pbm; | ||
320 | const u32 *ino_bitmap; | ||
321 | const unsigned int *busrange; | ||
322 | |||
323 | if ((portid & 1) == 0) | ||
324 | pbm = &p->pbm_A; | ||
325 | else | ||
326 | pbm = &p->pbm_B; | ||
327 | |||
328 | pbm->portid = portid; | ||
329 | pbm->parent = p; | ||
330 | pbm->prom_node = dp; | ||
331 | pbm->name = dp->full_name; | ||
332 | |||
333 | regs = of_get_property(dp, "reg", NULL); | ||
334 | pbm->pbm_regs = regs[0].phys_addr; | ||
335 | pbm->controller_regs = regs[1].phys_addr - 0x410000UL; | ||
336 | |||
337 | printk("%s: SUN4U PCIE Bus Module\n", pbm->name); | ||
338 | |||
339 | pci_determine_mem_io_space(pbm); | ||
340 | |||
341 | ino_bitmap = of_get_property(dp, "ino-bitmap", NULL); | ||
342 | pbm->ino_bitmap = (((u64)ino_bitmap[1] << 32UL) | | ||
343 | ((u64)ino_bitmap[0] << 0UL)); | ||
344 | |||
345 | busrange = of_get_property(dp, "bus-range", NULL); | ||
346 | pbm->pci_first_busno = busrange[0]; | ||
347 | pbm->pci_last_busno = busrange[1]; | ||
348 | |||
349 | pci_fire_hw_init(pbm); | ||
350 | pci_fire_pbm_iommu_init(pbm); | ||
351 | } | ||
352 | |||
353 | static inline int portid_compare(u32 x, u32 y) | ||
354 | { | ||
355 | if (x == (y ^ 1)) | ||
356 | return 1; | ||
357 | return 0; | ||
358 | } | ||
359 | |||
360 | void fire_pci_init(struct device_node *dp, const char *model_name) | ||
361 | { | ||
362 | struct pci_controller_info *p; | ||
363 | u32 portid = of_getintprop_default(dp, "portid", 0xff); | ||
364 | struct iommu *iommu; | ||
365 | |||
366 | for (p = pci_controller_root; p; p = p->next) { | ||
367 | struct pci_pbm_info *pbm; | ||
368 | |||
369 | if (p->pbm_A.prom_node && p->pbm_B.prom_node) | ||
370 | continue; | ||
371 | |||
372 | pbm = (p->pbm_A.prom_node ? | ||
373 | &p->pbm_A : | ||
374 | &p->pbm_B); | ||
375 | |||
376 | if (portid_compare(pbm->portid, portid)) { | ||
377 | pci_fire_pbm_init(p, dp, portid); | ||
378 | return; | ||
379 | } | ||
380 | } | ||
381 | |||
382 | p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC); | ||
383 | if (!p) | ||
384 | goto fatal_memory_error; | ||
385 | |||
386 | iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); | ||
387 | if (!iommu) | ||
388 | goto fatal_memory_error; | ||
389 | |||
390 | p->pbm_A.iommu = iommu; | ||
391 | |||
392 | iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC); | ||
393 | if (!iommu) | ||
394 | goto fatal_memory_error; | ||
395 | |||
396 | p->pbm_B.iommu = iommu; | ||
397 | |||
398 | p->next = pci_controller_root; | ||
399 | pci_controller_root = p; | ||
400 | |||
401 | p->index = pci_num_controllers++; | ||
402 | |||
403 | p->scan_bus = pci_fire_scan_bus; | ||
404 | /* XXX MSI support XXX */ | ||
405 | p->pci_ops = &pci_fire_ops; | ||
406 | |||
407 | /* Like PSYCHO and SCHIZO we have a 2GB aligned area | ||
408 | * for memory space. | ||
409 | */ | ||
410 | pci_memspace_mask = 0x7fffffffUL; | ||
411 | |||
412 | pci_fire_pbm_init(p, dp, portid); | ||
413 | return; | ||
414 | |||
415 | fatal_memory_error: | ||
416 | prom_printf("PCI_FIRE: Fatal memory allocation error.\n"); | ||
417 | prom_halt(); | ||
418 | } | ||
diff --git a/arch/sparc64/kernel/pci_iommu.c b/arch/sparc64/kernel/pci_iommu.c index 66712772f494..9e405cbbcb0d 100644 --- a/arch/sparc64/kernel/pci_iommu.c +++ b/arch/sparc64/kernel/pci_iommu.c | |||
@@ -37,17 +37,21 @@ | |||
37 | /* Must be invoked under the IOMMU lock. */ | 37 | /* Must be invoked under the IOMMU lock. */ |
38 | static void __iommu_flushall(struct iommu *iommu) | 38 | static void __iommu_flushall(struct iommu *iommu) |
39 | { | 39 | { |
40 | unsigned long tag; | 40 | if (iommu->iommu_flushinv) { |
41 | int entry; | 41 | pci_iommu_write(iommu->iommu_flushinv, ~(u64)0); |
42 | } else { | ||
43 | unsigned long tag; | ||
44 | int entry; | ||
42 | 45 | ||
43 | tag = iommu->iommu_flush + (0xa580UL - 0x0210UL); | 46 | tag = iommu->iommu_flush + (0xa580UL - 0x0210UL); |
44 | for (entry = 0; entry < 16; entry++) { | 47 | for (entry = 0; entry < 16; entry++) { |
45 | pci_iommu_write(tag, 0); | 48 | pci_iommu_write(tag, 0); |
46 | tag += 8; | 49 | tag += 8; |
47 | } | 50 | } |
48 | 51 | ||
49 | /* Ensure completion of previous PIO writes. */ | 52 | /* Ensure completion of previous PIO writes. */ |
50 | (void) pci_iommu_read(iommu->write_complete_reg); | 53 | (void) pci_iommu_read(iommu->write_complete_reg); |
54 | } | ||
51 | } | 55 | } |
52 | 56 | ||
53 | #define IOPTE_CONSISTENT(CTX) \ | 57 | #define IOPTE_CONSISTENT(CTX) \ |
diff --git a/arch/sparc64/kernel/prom.c b/arch/sparc64/kernel/prom.c index 5e1fcd05160d..6625ac8d15fe 100644 --- a/arch/sparc64/kernel/prom.c +++ b/arch/sparc64/kernel/prom.c | |||
@@ -386,11 +386,9 @@ static unsigned int psycho_irq_build(struct device_node *dp, | |||
386 | 386 | ||
387 | /* Now build the IRQ bucket. */ | 387 | /* Now build the IRQ bucket. */ |
388 | imap = controller_regs + imap_off; | 388 | imap = controller_regs + imap_off; |
389 | imap += 4; | ||
390 | 389 | ||
391 | iclr_off = psycho_iclr_offset(ino); | 390 | iclr_off = psycho_iclr_offset(ino); |
392 | iclr = controller_regs + iclr_off; | 391 | iclr = controller_regs + iclr_off; |
393 | iclr += 4; | ||
394 | 392 | ||
395 | if ((ino & 0x20) == 0) | 393 | if ((ino & 0x20) == 0) |
396 | inofixup = ino & 0x03; | 394 | inofixup = ino & 0x03; |
@@ -613,11 +611,9 @@ static unsigned int sabre_irq_build(struct device_node *dp, | |||
613 | 611 | ||
614 | /* Now build the IRQ bucket. */ | 612 | /* Now build the IRQ bucket. */ |
615 | imap = controller_regs + imap_off; | 613 | imap = controller_regs + imap_off; |
616 | imap += 4; | ||
617 | 614 | ||
618 | iclr_off = sabre_iclr_offset(ino); | 615 | iclr_off = sabre_iclr_offset(ino); |
619 | iclr = controller_regs + iclr_off; | 616 | iclr = controller_regs + iclr_off; |
620 | iclr += 4; | ||
621 | 617 | ||
622 | if ((ino & 0x20) == 0) | 618 | if ((ino & 0x20) == 0) |
623 | inofixup = ino & 0x03; | 619 | inofixup = ino & 0x03; |
@@ -679,13 +675,14 @@ static unsigned long schizo_iclr_offset(unsigned long ino) | |||
679 | static unsigned long schizo_ino_to_iclr(unsigned long pbm_regs, | 675 | static unsigned long schizo_ino_to_iclr(unsigned long pbm_regs, |
680 | unsigned int ino) | 676 | unsigned int ino) |
681 | { | 677 | { |
682 | return pbm_regs + schizo_iclr_offset(ino) + 4; | 678 | |
679 | return pbm_regs + schizo_iclr_offset(ino); | ||
683 | } | 680 | } |
684 | 681 | ||
685 | static unsigned long schizo_ino_to_imap(unsigned long pbm_regs, | 682 | static unsigned long schizo_ino_to_imap(unsigned long pbm_regs, |
686 | unsigned int ino) | 683 | unsigned int ino) |
687 | { | 684 | { |
688 | return pbm_regs + schizo_imap_offset(ino) + 4; | 685 | return pbm_regs + schizo_imap_offset(ino); |
689 | } | 686 | } |
690 | 687 | ||
691 | #define schizo_read(__reg) \ | 688 | #define schizo_read(__reg) \ |
@@ -848,6 +845,85 @@ static void pci_sun4v_irq_trans_init(struct device_node *dp) | |||
848 | dp->irq_trans->data = (void *) (unsigned long) | 845 | dp->irq_trans->data = (void *) (unsigned long) |
849 | ((regs->phys_addr >> 32UL) & 0x0fffffff); | 846 | ((regs->phys_addr >> 32UL) & 0x0fffffff); |
850 | } | 847 | } |
848 | |||
849 | struct fire_irq_data { | ||
850 | unsigned long pbm_regs; | ||
851 | u32 portid; | ||
852 | }; | ||
853 | |||
854 | #define FIRE_IMAP_BASE 0x001000 | ||
855 | #define FIRE_ICLR_BASE 0x001400 | ||
856 | |||
857 | static unsigned long fire_imap_offset(unsigned long ino) | ||
858 | { | ||
859 | return FIRE_IMAP_BASE + (ino * 8UL); | ||
860 | } | ||
861 | |||
862 | static unsigned long fire_iclr_offset(unsigned long ino) | ||
863 | { | ||
864 | return FIRE_ICLR_BASE + (ino * 8UL); | ||
865 | } | ||
866 | |||
867 | static unsigned long fire_ino_to_iclr(unsigned long pbm_regs, | ||
868 | unsigned int ino) | ||
869 | { | ||
870 | return pbm_regs + fire_iclr_offset(ino); | ||
871 | } | ||
872 | |||
873 | static unsigned long fire_ino_to_imap(unsigned long pbm_regs, | ||
874 | unsigned int ino) | ||
875 | { | ||
876 | return pbm_regs + fire_imap_offset(ino); | ||
877 | } | ||
878 | |||
879 | static unsigned int fire_irq_build(struct device_node *dp, | ||
880 | unsigned int ino, | ||
881 | void *_data) | ||
882 | { | ||
883 | struct fire_irq_data *irq_data = _data; | ||
884 | unsigned long pbm_regs = irq_data->pbm_regs; | ||
885 | unsigned long imap, iclr; | ||
886 | unsigned long int_ctrlr; | ||
887 | |||
888 | ino &= 0x3f; | ||
889 | |||
890 | /* Now build the IRQ bucket. */ | ||
891 | imap = fire_ino_to_imap(pbm_regs, ino); | ||
892 | iclr = fire_ino_to_iclr(pbm_regs, ino); | ||
893 | |||
894 | /* Set the interrupt controller number. */ | ||
895 | int_ctrlr = 1 << 6; | ||
896 | upa_writeq(int_ctrlr, imap); | ||
897 | |||
898 | /* The interrupt map registers do not have an INO field | ||
899 | * like other chips do. They return zero in the INO | ||
900 | * field, and the interrupt controller number is controlled | ||
901 | * in bits 6 thru 9. So in order for build_irq() to get | ||
902 | * the INO right we pass it in as part of the fixup | ||
903 | * which will get added to the map register zero value | ||
904 | * read by build_irq(). | ||
905 | */ | ||
906 | ino |= (irq_data->portid << 6); | ||
907 | ino -= int_ctrlr; | ||
908 | return build_irq(ino, iclr, imap); | ||
909 | } | ||
910 | |||
911 | static void fire_irq_trans_init(struct device_node *dp) | ||
912 | { | ||
913 | const struct linux_prom64_registers *regs; | ||
914 | struct fire_irq_data *irq_data; | ||
915 | |||
916 | dp->irq_trans = prom_early_alloc(sizeof(struct of_irq_controller)); | ||
917 | dp->irq_trans->irq_build = fire_irq_build; | ||
918 | |||
919 | irq_data = prom_early_alloc(sizeof(struct fire_irq_data)); | ||
920 | |||
921 | regs = of_get_property(dp, "reg", NULL); | ||
922 | dp->irq_trans->data = irq_data; | ||
923 | |||
924 | irq_data->pbm_regs = regs[0].phys_addr; | ||
925 | irq_data->portid = of_getintprop_default(dp, "portid", 0); | ||
926 | } | ||
851 | #endif /* CONFIG_PCI */ | 927 | #endif /* CONFIG_PCI */ |
852 | 928 | ||
853 | #ifdef CONFIG_SBUS | 929 | #ifdef CONFIG_SBUS |
@@ -1069,6 +1145,7 @@ static struct irq_trans pci_irq_trans_table[] = { | |||
1069 | { "SUNW,tomatillo", tomatillo_irq_trans_init }, | 1145 | { "SUNW,tomatillo", tomatillo_irq_trans_init }, |
1070 | { "pci108e,a801", tomatillo_irq_trans_init }, | 1146 | { "pci108e,a801", tomatillo_irq_trans_init }, |
1071 | { "SUNW,sun4v-pci", pci_sun4v_irq_trans_init }, | 1147 | { "SUNW,sun4v-pci", pci_sun4v_irq_trans_init }, |
1148 | { "pciex108e,80f0", fire_irq_trans_init }, | ||
1072 | }; | 1149 | }; |
1073 | #endif | 1150 | #endif |
1074 | 1151 | ||