1 /* pci_fire.c: Sun4u platform PCI-E controller support.
3 * Copyright (C) 2007 David S. Miller (davem@davemloft.net)
5 #include <linux/kernel.h>
7 #include <linux/slab.h>
8 #include <linux/init.h>
10 #include <linux/irq.h>
12 #include <asm/oplib.h>
18 #define fire_read(__reg) \
20 __asm__ __volatile__("ldxa [%1] %2, %0" \
22 : "r" (__reg), "i" (ASI_PHYS_BYPASS_EC_E) \
26 #define fire_write(__reg, __val) \
27 __asm__ __volatile__("stxa %0, [%1] %2" \
29 : "r" (__val), "r" (__reg), \
30 "i" (ASI_PHYS_BYPASS_EC_E) \
33 static void pci_fire_scan_bus(struct pci_pbm_info *pbm)
35 pbm->pci_bus = pci_scan_one_pbm(pbm);
37 /* XXX register error interrupt handlers XXX */
40 #define FIRE_IOMMU_CONTROL 0x40000UL
41 #define FIRE_IOMMU_TSBBASE 0x40008UL
42 #define FIRE_IOMMU_FLUSH 0x40100UL
43 #define FIRE_IOMMU_FLUSHINV 0x40108UL
45 static int pci_fire_pbm_iommu_init(struct pci_pbm_info *pbm)
47 struct iommu *iommu = pbm->iommu;
48 u32 vdma[2], dma_mask;
52 /* No virtual-dma property on these guys, use largest size. */
53 vdma[0] = 0xc0000000; /* base */
54 vdma[1] = 0x40000000; /* size */
55 dma_mask = 0xffffffff;
58 /* Register addresses. */
59 iommu->iommu_control = pbm->pbm_regs + FIRE_IOMMU_CONTROL;
60 iommu->iommu_tsbbase = pbm->pbm_regs + FIRE_IOMMU_TSBBASE;
61 iommu->iommu_flush = pbm->pbm_regs + FIRE_IOMMU_FLUSH;
62 iommu->iommu_flushinv = pbm->pbm_regs + FIRE_IOMMU_FLUSHINV;
64 /* We use the main control/status register of FIRE as the write
65 * completion register.
67 iommu->write_complete_reg = pbm->controller_regs + 0x410000UL;
70 * Invalidate TLB Entries.
72 fire_write(iommu->iommu_flushinv, ~(u64)0);
74 err = iommu_table_init(iommu, tsbsize * 8 * 1024, vdma[0], dma_mask);
78 fire_write(iommu->iommu_tsbbase, __pa(iommu->page_table) | 0x7UL);
80 control = fire_read(iommu->iommu_control);
81 control |= (0x00000400 /* TSB cache snoop enable */ |
82 0x00000300 /* Cache mode */ |
83 0x00000002 /* Bypass enable */ |
84 0x00000001 /* Translation enable */);
85 fire_write(iommu->iommu_control, control);
91 struct pci_msiq_entry {
93 #define MSIQ_WORD0_RESV 0x8000000000000000UL
94 #define MSIQ_WORD0_FMT_TYPE 0x7f00000000000000UL
95 #define MSIQ_WORD0_FMT_TYPE_SHIFT 56
96 #define MSIQ_WORD0_LEN 0x00ffc00000000000UL
97 #define MSIQ_WORD0_LEN_SHIFT 46
98 #define MSIQ_WORD0_ADDR0 0x00003fff00000000UL
99 #define MSIQ_WORD0_ADDR0_SHIFT 32
100 #define MSIQ_WORD0_RID 0x00000000ffff0000UL
101 #define MSIQ_WORD0_RID_SHIFT 16
102 #define MSIQ_WORD0_DATA0 0x000000000000ffffUL
103 #define MSIQ_WORD0_DATA0_SHIFT 0
105 #define MSIQ_TYPE_MSG 0x6
106 #define MSIQ_TYPE_MSI32 0xb
107 #define MSIQ_TYPE_MSI64 0xf
110 #define MSIQ_WORD1_ADDR1 0xffffffffffff0000UL
111 #define MSIQ_WORD1_ADDR1_SHIFT 16
112 #define MSIQ_WORD1_DATA1 0x000000000000ffffUL
113 #define MSIQ_WORD1_DATA1_SHIFT 0
118 /* All MSI registers are offset from pbm->pbm_regs */
119 #define EVENT_QUEUE_BASE_ADDR_REG 0x010000UL
120 #define EVENT_QUEUE_BASE_ADDR_ALL_ONES 0xfffc000000000000UL
122 #define EVENT_QUEUE_CONTROL_SET(EQ) (0x011000UL + (EQ) * 0x8UL)
123 #define EVENT_QUEUE_CONTROL_SET_OFLOW 0x0200000000000000UL
124 #define EVENT_QUEUE_CONTROL_SET_EN 0x0000100000000000UL
126 #define EVENT_QUEUE_CONTROL_CLEAR(EQ) (0x011200UL + (EQ) * 0x8UL)
127 #define EVENT_QUEUE_CONTROL_CLEAR_OF 0x0200000000000000UL
128 #define EVENT_QUEUE_CONTROL_CLEAR_E2I 0x0000800000000000UL
129 #define EVENT_QUEUE_CONTROL_CLEAR_DIS 0x0000100000000000UL
131 #define EVENT_QUEUE_STATE(EQ) (0x011400UL + (EQ) * 0x8UL)
132 #define EVENT_QUEUE_STATE_MASK 0x0000000000000007UL
133 #define EVENT_QUEUE_STATE_IDLE 0x0000000000000001UL
134 #define EVENT_QUEUE_STATE_ACTIVE 0x0000000000000002UL
135 #define EVENT_QUEUE_STATE_ERROR 0x0000000000000004UL
137 #define EVENT_QUEUE_TAIL(EQ) (0x011600UL + (EQ) * 0x8UL)
138 #define EVENT_QUEUE_TAIL_OFLOW 0x0200000000000000UL
139 #define EVENT_QUEUE_TAIL_VAL 0x000000000000007fUL
141 #define EVENT_QUEUE_HEAD(EQ) (0x011800UL + (EQ) * 0x8UL)
142 #define EVENT_QUEUE_HEAD_VAL 0x000000000000007fUL
144 #define MSI_MAP(MSI) (0x020000UL + (MSI) * 0x8UL)
145 #define MSI_MAP_VALID 0x8000000000000000UL
146 #define MSI_MAP_EQWR_N 0x4000000000000000UL
147 #define MSI_MAP_EQNUM 0x000000000000003fUL
149 #define MSI_CLEAR(MSI) (0x028000UL + (MSI) * 0x8UL)
150 #define MSI_CLEAR_EQWR_N 0x4000000000000000UL
152 #define IMONDO_DATA0 0x02C000UL
153 #define IMONDO_DATA0_DATA 0xffffffffffffffc0UL
155 #define IMONDO_DATA1 0x02C008UL
156 #define IMONDO_DATA1_DATA 0xffffffffffffffffUL
158 #define MSI_32BIT_ADDR 0x034000UL
159 #define MSI_32BIT_ADDR_VAL 0x00000000ffff0000UL
161 #define MSI_64BIT_ADDR 0x034008UL
162 #define MSI_64BIT_ADDR_VAL 0xffffffffffff0000UL
164 static int pci_fire_get_head(struct pci_pbm_info *pbm, unsigned long msiqid,
167 *head = fire_read(pbm->pbm_regs + EVENT_QUEUE_HEAD(msiqid));
171 static int pci_fire_dequeue_msi(struct pci_pbm_info *pbm, unsigned long msiqid,
172 unsigned long *head, unsigned long *msi)
174 unsigned long type_fmt, type, msi_num;
175 struct pci_msiq_entry *base, *ep;
177 base = (pbm->msi_queues + ((msiqid - pbm->msiq_first) * 8192));
180 if ((ep->word0 & MSIQ_WORD0_FMT_TYPE) == 0)
183 type_fmt = ((ep->word0 & MSIQ_WORD0_FMT_TYPE) >>
184 MSIQ_WORD0_FMT_TYPE_SHIFT);
185 type = (type_fmt >> 3);
186 if (unlikely(type != MSIQ_TYPE_MSI32 &&
187 type != MSIQ_TYPE_MSI64))
190 *msi = msi_num = ((ep->word0 & MSIQ_WORD0_DATA0) >>
191 MSIQ_WORD0_DATA0_SHIFT);
193 fire_write(pbm->pbm_regs + MSI_CLEAR(msi_num),
196 /* Clear the entry. */
197 ep->word0 &= ~MSIQ_WORD0_FMT_TYPE;
199 /* Go to next entry in ring. */
201 if (*head >= pbm->msiq_ent_count)
207 static int pci_fire_set_head(struct pci_pbm_info *pbm, unsigned long msiqid,
210 fire_write(pbm->pbm_regs + EVENT_QUEUE_HEAD(msiqid), head);
214 static int pci_fire_msi_setup(struct pci_pbm_info *pbm, unsigned long msiqid,
215 unsigned long msi, int is_msi64)
219 val = fire_read(pbm->pbm_regs + MSI_MAP(msi));
220 val &= ~(MSI_MAP_EQNUM);
222 fire_write(pbm->pbm_regs + MSI_MAP(msi), val);
224 fire_write(pbm->pbm_regs + MSI_CLEAR(msi),
227 val = fire_read(pbm->pbm_regs + MSI_MAP(msi));
228 val |= MSI_MAP_VALID;
229 fire_write(pbm->pbm_regs + MSI_MAP(msi), val);
234 static int pci_fire_msi_teardown(struct pci_pbm_info *pbm, unsigned long msi)
236 unsigned long msiqid;
239 val = fire_read(pbm->pbm_regs + MSI_MAP(msi));
240 msiqid = (val & MSI_MAP_EQNUM);
242 val &= ~MSI_MAP_VALID;
244 fire_write(pbm->pbm_regs + MSI_MAP(msi), val);
249 static int pci_fire_msiq_alloc(struct pci_pbm_info *pbm)
251 unsigned long pages, order, i;
253 order = get_order(512 * 1024);
254 pages = __get_free_pages(GFP_KERNEL | __GFP_COMP, order);
256 printk(KERN_ERR "MSI: Cannot allocate MSI queues (o=%lu).\n",
260 memset((char *)pages, 0, PAGE_SIZE << order);
261 pbm->msi_queues = (void *) pages;
263 fire_write(pbm->pbm_regs + EVENT_QUEUE_BASE_ADDR_REG,
264 (EVENT_QUEUE_BASE_ADDR_ALL_ONES |
265 __pa(pbm->msi_queues)));
267 fire_write(pbm->pbm_regs + IMONDO_DATA0,
269 fire_write(pbm->pbm_regs + IMONDO_DATA1, 0);
271 fire_write(pbm->pbm_regs + MSI_32BIT_ADDR,
273 fire_write(pbm->pbm_regs + MSI_64BIT_ADDR,
276 for (i = 0; i < pbm->msiq_num; i++) {
277 fire_write(pbm->pbm_regs + EVENT_QUEUE_HEAD(i), 0);
278 fire_write(pbm->pbm_regs + EVENT_QUEUE_TAIL(i), 0);
284 static void pci_fire_msiq_free(struct pci_pbm_info *pbm)
286 unsigned long pages, order;
288 order = get_order(512 * 1024);
289 pages = (unsigned long) pbm->msi_queues;
291 free_pages(pages, order);
293 pbm->msi_queues = NULL;
296 static int pci_fire_msiq_build_irq(struct pci_pbm_info *pbm,
297 unsigned long msiqid,
298 unsigned long devino)
300 unsigned long cregs = (unsigned long) pbm->pbm_regs;
301 unsigned long imap_reg, iclr_reg, int_ctrlr;
302 unsigned int virt_irq;
306 imap_reg = cregs + (0x001000UL + (devino * 0x08UL));
307 iclr_reg = cregs + (0x001400UL + (devino * 0x08UL));
309 /* XXX iterate amongst the 4 IRQ controllers XXX */
310 int_ctrlr = (1UL << 6);
312 val = fire_read(imap_reg);
313 val |= (1UL << 63) | int_ctrlr;
314 fire_write(imap_reg, val);
316 fixup = ((pbm->portid << 6) | devino) - int_ctrlr;
318 virt_irq = build_irq(fixup, iclr_reg, imap_reg);
322 fire_write(pbm->pbm_regs +
323 EVENT_QUEUE_CONTROL_SET(msiqid),
324 EVENT_QUEUE_CONTROL_SET_EN);
329 static const struct sparc64_msiq_ops pci_fire_msiq_ops = {
330 .get_head = pci_fire_get_head,
331 .dequeue_msi = pci_fire_dequeue_msi,
332 .set_head = pci_fire_set_head,
333 .msi_setup = pci_fire_msi_setup,
334 .msi_teardown = pci_fire_msi_teardown,
335 .msiq_alloc = pci_fire_msiq_alloc,
336 .msiq_free = pci_fire_msiq_free,
337 .msiq_build_irq = pci_fire_msiq_build_irq,
340 static void pci_fire_msi_init(struct pci_pbm_info *pbm)
342 sparc64_pbm_msi_init(pbm, &pci_fire_msiq_ops);
344 #else /* CONFIG_PCI_MSI */
345 static void pci_fire_msi_init(struct pci_pbm_info *pbm)
348 #endif /* !(CONFIG_PCI_MSI) */
350 /* Based at pbm->controller_regs */
351 #define FIRE_PARITY_CONTROL 0x470010UL
352 #define FIRE_PARITY_ENAB 0x8000000000000000UL
353 #define FIRE_FATAL_RESET_CTL 0x471028UL
354 #define FIRE_FATAL_RESET_SPARE 0x0000000004000000UL
355 #define FIRE_FATAL_RESET_MB 0x0000000002000000UL
356 #define FIRE_FATAL_RESET_CPE 0x0000000000008000UL
357 #define FIRE_FATAL_RESET_APE 0x0000000000004000UL
358 #define FIRE_FATAL_RESET_PIO 0x0000000000000040UL
359 #define FIRE_FATAL_RESET_JW 0x0000000000000004UL
360 #define FIRE_FATAL_RESET_JI 0x0000000000000002UL
361 #define FIRE_FATAL_RESET_JR 0x0000000000000001UL
362 #define FIRE_CORE_INTR_ENABLE 0x471800UL
364 /* Based at pbm->pbm_regs */
365 #define FIRE_TLU_CTRL 0x80000UL
366 #define FIRE_TLU_CTRL_TIM 0x00000000da000000UL
367 #define FIRE_TLU_CTRL_QDET 0x0000000000000100UL
368 #define FIRE_TLU_CTRL_CFG 0x0000000000000001UL
369 #define FIRE_TLU_DEV_CTRL 0x90008UL
370 #define FIRE_TLU_LINK_CTRL 0x90020UL
371 #define FIRE_TLU_LINK_CTRL_CLK 0x0000000000000040UL
372 #define FIRE_LPU_RESET 0xe2008UL
373 #define FIRE_LPU_LLCFG 0xe2200UL
374 #define FIRE_LPU_LLCFG_VC0 0x0000000000000100UL
375 #define FIRE_LPU_FCTRL_UCTRL 0xe2240UL
376 #define FIRE_LPU_FCTRL_UCTRL_N 0x0000000000000002UL
377 #define FIRE_LPU_FCTRL_UCTRL_P 0x0000000000000001UL
378 #define FIRE_LPU_TXL_FIFOP 0xe2430UL
379 #define FIRE_LPU_LTSSM_CFG2 0xe2788UL
380 #define FIRE_LPU_LTSSM_CFG3 0xe2790UL
381 #define FIRE_LPU_LTSSM_CFG4 0xe2798UL
382 #define FIRE_LPU_LTSSM_CFG5 0xe27a0UL
383 #define FIRE_DMC_IENAB 0x31800UL
384 #define FIRE_DMC_DBG_SEL_A 0x53000UL
385 #define FIRE_DMC_DBG_SEL_B 0x53008UL
386 #define FIRE_PEC_IENAB 0x51800UL
388 static void pci_fire_hw_init(struct pci_pbm_info *pbm)
392 fire_write(pbm->controller_regs + FIRE_PARITY_CONTROL,
395 fire_write(pbm->controller_regs + FIRE_FATAL_RESET_CTL,
396 (FIRE_FATAL_RESET_SPARE |
397 FIRE_FATAL_RESET_MB |
398 FIRE_FATAL_RESET_CPE |
399 FIRE_FATAL_RESET_APE |
400 FIRE_FATAL_RESET_PIO |
401 FIRE_FATAL_RESET_JW |
402 FIRE_FATAL_RESET_JI |
403 FIRE_FATAL_RESET_JR));
405 fire_write(pbm->controller_regs + FIRE_CORE_INTR_ENABLE, ~(u64)0);
407 val = fire_read(pbm->pbm_regs + FIRE_TLU_CTRL);
408 val |= (FIRE_TLU_CTRL_TIM |
411 fire_write(pbm->pbm_regs + FIRE_TLU_CTRL, val);
412 fire_write(pbm->pbm_regs + FIRE_TLU_DEV_CTRL, 0);
413 fire_write(pbm->pbm_regs + FIRE_TLU_LINK_CTRL,
414 FIRE_TLU_LINK_CTRL_CLK);
416 fire_write(pbm->pbm_regs + FIRE_LPU_RESET, 0);
417 fire_write(pbm->pbm_regs + FIRE_LPU_LLCFG,
419 fire_write(pbm->pbm_regs + FIRE_LPU_FCTRL_UCTRL,
420 (FIRE_LPU_FCTRL_UCTRL_N |
421 FIRE_LPU_FCTRL_UCTRL_P));
422 fire_write(pbm->pbm_regs + FIRE_LPU_TXL_FIFOP,
423 ((0xffff << 16) | (0x0000 << 0)));
424 fire_write(pbm->pbm_regs + FIRE_LPU_LTSSM_CFG2, 3000000);
425 fire_write(pbm->pbm_regs + FIRE_LPU_LTSSM_CFG3, 500000);
426 fire_write(pbm->pbm_regs + FIRE_LPU_LTSSM_CFG4,
427 (2 << 16) | (140 << 8));
428 fire_write(pbm->pbm_regs + FIRE_LPU_LTSSM_CFG5, 0);
430 fire_write(pbm->pbm_regs + FIRE_DMC_IENAB, ~(u64)0);
431 fire_write(pbm->pbm_regs + FIRE_DMC_DBG_SEL_A, 0);
432 fire_write(pbm->pbm_regs + FIRE_DMC_DBG_SEL_B, 0);
434 fire_write(pbm->pbm_regs + FIRE_PEC_IENAB, ~(u64)0);
437 static int pci_fire_pbm_init(struct pci_controller_info *p,
438 struct device_node *dp, u32 portid)
440 const struct linux_prom64_registers *regs;
441 struct pci_pbm_info *pbm;
444 if ((portid & 1) == 0)
449 pbm->next = pci_pbm_root;
452 pbm->scan_bus = pci_fire_scan_bus;
453 pbm->pci_ops = &sun4u_pci_ops;
454 pbm->config_space_reg_bits = 12;
456 pbm->index = pci_num_pbms++;
458 pbm->portid = portid;
461 pbm->name = dp->full_name;
463 regs = of_get_property(dp, "reg", NULL);
464 pbm->pbm_regs = regs[0].phys_addr;
465 pbm->controller_regs = regs[1].phys_addr - 0x410000UL;
467 printk("%s: SUN4U PCIE Bus Module\n", pbm->name);
469 pci_determine_mem_io_space(pbm);
471 pci_get_pbm_props(pbm);
473 pci_fire_hw_init(pbm);
475 err = pci_fire_pbm_iommu_init(pbm);
479 pci_fire_msi_init(pbm);
484 static inline int portid_compare(u32 x, u32 y)
491 void fire_pci_init(struct device_node *dp, const char *model_name)
493 struct pci_controller_info *p;
494 u32 portid = of_getintprop_default(dp, "portid", 0xff);
496 struct pci_pbm_info *pbm;
498 for (pbm = pci_pbm_root; pbm; pbm = pbm->next) {
499 if (portid_compare(pbm->portid, portid)) {
500 if (pci_fire_pbm_init(pbm->parent, dp, portid))
501 goto fatal_memory_error;
506 p = kzalloc(sizeof(struct pci_controller_info), GFP_ATOMIC);
508 goto fatal_memory_error;
510 iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC);
512 goto fatal_memory_error;
514 p->pbm_A.iommu = iommu;
516 iommu = kzalloc(sizeof(struct iommu), GFP_ATOMIC);
518 goto fatal_memory_error;
520 p->pbm_B.iommu = iommu;
522 if (pci_fire_pbm_init(p, dp, portid))
523 goto fatal_memory_error;
528 prom_printf("PCI_FIRE: Fatal memory allocation error.\n");