iosapic.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:32k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. ** I/O Sapic Driver - PCI interrupt line support
  3. **
  4. **      (c) Copyright 1999 Grant Grundler
  5. **      (c) Copyright 1999 Hewlett-Packard Company
  6. **
  7. **      This program is free software; you can redistribute it and/or modify
  8. **      it under the terms of the GNU General Public License as published by
  9. **      the Free Software Foundation; either version 2 of the License, or
  10. **      (at your option) any later version.
  11. **
  12. ** The I/O sapic driver manages the Interrupt Redirection Table which is
  13. ** the control logic to convert PCI line based interrupts into a Message
  14. ** Signaled Interrupt (aka Transaction Based Interrupt, TBI).
  15. **
  16. ** Acronyms
  17. ** --------
  18. ** HPA  Hard Physical Address (aka MMIO address)
  19. ** IRQ  Interrupt ReQuest. Implies Line based interrupt.
  20. ** IRT Interrupt Routing Table (provided by PAT firmware)
  21. ** IRdT Interrupt Redirection Table. IRQ line to TXN ADDR/DATA
  22. **      table which is implemented in I/O SAPIC.
  23. ** ISR  Interrupt Service Routine. aka Interrupt handler.
  24. ** MSI Message Signaled Interrupt. PCI 2.2 functionality.
  25. **      aka Transaction Based Interrupt (or TBI).
  26. ** PA   Precision Architecture. HP's RISC architecture.
  27. ** RISC Reduced Instruction Set Computer.
  28. **
  29. **
  30. ** What's a Message Signalled Interrupt?
  31. ** -------------------------------------
  32. ** MSI is a write transaction which targets a processor and is similar
  33. ** to a processor write to memory or MMIO. MSIs can be generated by I/O
  34. ** devices as well as processors and require *architecture* to work.
  35. **
  36. ** PA only supports MSI. So I/O subsystems must either natively generate
  37. ** MSIs (e.g. GSC or HP-PB) or convert line based interrupts into MSIs
  38. ** (e.g. PCI and EISA).  IA64 supports MSIs via a "local SAPIC" which
  39. ** acts on behalf of a processor.
  40. **
  41. ** MSI allows any I/O device to interrupt any processor. This makes
  42. ** load balancing of the interrupt processing possible on an SMP platform.
  43. ** Interrupts are also ordered WRT to DMA data.  It's possible on I/O
  44. ** coherent systems to completely eliminate PIO reads from the interrupt
  45. ** path. The device and driver must be designed and implemented to
  46. ** guarantee all DMA has been issued (issues about atomicity here)
  47. ** before the MSI is issued. I/O status can then safely be read from
  48. ** DMA'd data by the ISR.
  49. **
  50. **
  51. ** PA Firmware
  52. ** -----------
  53. ** PA-RISC platforms have two fundementally different types of firmware.
  54. ** For PCI devices, "Legacy" PDC initializes the "INTERRUPT_LINE" register
  55. ** and BARs similar to a traditional PC BIOS.
  56. ** The newer "PAT" firmware supports PDC calls which return tables.
  57. ** PAT firmware only initializes PCI Console and Boot interface.
  58. ** With these tables, the OS can progam all other PCI devices.
  59. **
  60. ** One such PAT PDC call returns the "Interrupt Routing Table" (IRT).
  61. ** The IRT maps each PCI slot's INTA-D "output" line to an I/O SAPIC
  62. ** input line.  If the IRT is not available, this driver assumes
  63. ** INTERRUPT_LINE register has been programmed by firmware. The latter
  64. ** case also means online addition of PCI cards can NOT be supported
  65. ** even if HW support is present.
  66. **
  67. ** All platforms with PAT firmware to date (Oct 1999) use one Interrupt
  68. ** Routing Table for the entire platform.
  69. **
  70. ** Where's the iosapic?
  71. ** --------------------
  72. ** I/O sapic is part of the "Core Electronics Complex". And on HP platforms
  73. ** it's integrated as part of the PCI bus adapter, "lba".  So no bus walk
  74. ** will discover I/O Sapic. I/O Sapic driver learns about each device
  75. ** when lba driver advertises the presence of the I/O sapic by calling
  76. ** iosapic_register().
  77. **
  78. **
  79. ** IRQ region notes
  80. ** ----------------
  81. ** The data passed to iosapic_interrupt() is per IRQ line.
  82. ** Each IRQ line will get one txn_addr/data pair. Thus each IRQ region,
  83. ** will have several txn_addr/data pairs (up to 7 for current I/O SAPIC
  84. ** implementations).  The IRQ region "sysdata" will NOT be directly passed
  85. ** to the interrupt handler like GSCtoPCI (dino.c).
  86. **
  87. ** iosapic interrupt handler will NOT call do_irq_mask().
  88. ** It doesn't need to read a bit mask to determine which IRQ line was pulled
  89. ** since it already knows based on vector_info passed to iosapic_interrupt().
  90. **
  91. ** One IRQ number represents both an IRQ line and a driver ISR.
  92. ** The I/O sapic driver can't manage shared IRQ lines because
  93. ** additional data besides the IRQ number must be passed via
  94. ** irq_region_ops. do_irq() and request_irq() must manage
  95. ** a sharing a bit in the mask.
  96. **
  97. ** iosapic_interrupt() replaces do_irq_mask() and calls do_irq().
  98. ** Which IRQ line was asserted is already known since each
  99. ** line has unique data associated with it. We could omit
  100. ** iosapic_interrupt() from the calling path if it did NOT need
  101. ** to write EOI. For unshared lines, it really doesn't.
  102. **
  103. ** Unfortunately, can't optimize out EOI if IRQ line isn't "shared".
  104. ** N-class console "device" and some sort of heartbeat actually share
  105. ** one line though only one driver is registered...<sigh>...this was
  106. ** true for HP-UX at least. May not be true for parisc-linux.
  107. **
  108. **
  109. ** Overview of exported iosapic functions
  110. ** --------------------------------------
  111. ** (caveat: code isn't finished yet - this is just the plan)
  112. **
  113. ** iosapic_init:
  114. **   o initialize globals (lock, etc)
  115. **   o try to read IRT. Presence of IRT determines if this is
  116. **     a PAT platform or not.
  117. **
  118. ** iosapic_register():
  119. **   o create iosapic_info instance data structure
  120. **   o allocate vector_info array for this iosapic
  121. **   o initialize vector_info - read corresponding IRdT?
  122. **
  123. ** iosapic_xlate_pin: (only called by fixup_irq for PAT platform)
  124. **   o intr_pin = read cfg (INTERRUPT_PIN);
  125. **   o if (device under PCI-PCI bridge)
  126. **               translate slot/pin
  127. **
  128. ** iosapic_fixup_irq:
  129. **   o if PAT platform (IRT present)
  130. **    intr_pin = iosapic_xlate_pin(isi,pcidev):
  131. **         intr_line = find IRT entry(isi, PCI_SLOT(pcidev), intr_pin)
  132. **         save IRT entry into vector_info later
  133. **         write cfg INTERRUPT_LINE (with intr_line)?
  134. **     else
  135. **         intr_line = pcidev->irq
  136. **         IRT pointer = NULL
  137. **     endif
  138. **   o locate vector_info (needs: isi, intr_line)
  139. **   o allocate processor "irq" and get txn_addr/data
  140. **   o request_irq(processor_irq,  iosapic_interrupt, vector_info,...)
  141. **   o pcidev->irq = isi->isi_region...base + intr_line;
  142. **
  143. ** iosapic_interrupt:
  144. **   o call do_irq(vector->isi->irq_region, vector->irq_line, regs)
  145. **   o assume level triggered and write EOI
  146. **
  147. ** iosapic_enable_irq:
  148. **   o clear any pending IRQ on that line
  149. **   o enable IRdT - call enable_irq(vector[line]->processor_irq)
  150. **   o write EOI in case line is already asserted.
  151. **
  152. ** iosapic_disable_irq:
  153. **   o disable IRdT - call disable_irq(vector[line]->processor_irq)
  154. **
  155. ** FIXME: mask/unmask
  156. */
  157. /* FIXME: determine which include files are really needed */
  158. #include <linux/types.h>
  159. #include <linux/kernel.h>
  160. #include <linux/spinlock.h>
  161. #include <linux/pci.h> /* pci cfg accessor functions  */
  162. #include <linux/init.h>
  163. #include <linux/slab.h>
  164. #include <linux/smp_lock.h>
  165. #include <linux/interrupt.h> /* irqaction */
  166. #include <linux/irq.h> /* irq_region support */
  167. #include <asm/byteorder.h> /* get in-line asm for swab */
  168. #include <asm/pdc.h>
  169. #include <asm/page.h>
  170. #include <asm/segment.h>
  171. #include <asm/system.h>
  172. #include <asm/gsc.h> /* gsc_read/write functions */
  173. #ifdef CONFIG_SUPERIO
  174. #include <asm/superio.h>
  175. #endif
  176. #include <asm/iosapic.h>
  177. #include "./iosapic_private.h"
  178. #define MODULE_NAME "iosapic"
  179. /* "local" compile flags */
  180. #undef PCI_BRIDGE_FUNCS
  181. #undef DEBUG_IOSAPIC
  182. #undef DEBUG_IOSAPIC_IRT
  183. #ifdef DEBUG_IOSAPIC
  184. static char assert_buf[128];
  185. static int
  186. assert_failed (char *a, char *f, int l)
  187. {
  188.         sprintf(assert_buf,
  189. "ASSERT(%s) failed!nline %d in %sn",
  190. a,      /* assertion text */
  191. l,      /* line number */
  192. f);     /* file name */
  193.         panic(assert_buf);
  194. return 0;
  195. }
  196. #undef ASSERT
  197. #define ASSERT(EX) { if (!(EX)) assert_failed(# EX, __FILE__, __LINE__); }
  198. #define DBG(x...) printk(x)
  199. #else /* DEBUG_IOSAPIC */
  200. #define DBG(x...)
  201. #define ASSERT(EX)
  202. #endif /* DEBUG_IOSAPIC */
  203. #ifdef DEBUG_IOSAPIC_IRT
  204. #define DBG_IRT(x...) printk(x)
  205. #else
  206. #define DBG_IRT(x...)
  207. #endif
  208. #define READ_U8(addr)  gsc_readb(addr)
  209. #define READ_U16(addr) le16_to_cpu(gsc_readw((u16 *) (addr)))
  210. #define READ_U32(addr) le32_to_cpu(gsc_readl((u32 *) (addr)))
  211. #define READ_REG16(addr) gsc_readw((u16 *) (addr))
  212. #define READ_REG32(addr) gsc_readl((u32 *) (addr))
  213. #define WRITE_U8(value, addr) gsc_writeb(value, addr)
  214. #define WRITE_U16(value, addr) gsc_writew(cpu_to_le16(value), (u16 *) (addr))
  215. #define WRITE_U32(value, addr) gsc_writel(cpu_to_le32(value), (u32 *) (addr))
  216. #define WRITE_REG16(value, addr) gsc_writew(value, (u16 *) (addr))
  217. #define WRITE_REG32(value, addr) gsc_writel(value, (u32 *) (addr))
  218. #define IOSAPIC_REG_SELECT              0
  219. #define IOSAPIC_REG_WINDOW              0x10
  220. #define IOSAPIC_REG_EOI                 0x40
  221. #define IOSAPIC_REG_VERSION 0x1
  222. #define IOSAPIC_IRDT_ENTRY(idx) (0x10+(idx)*2)
  223. #define IOSAPIC_IRDT_ENTRY_HI(idx) (0x11+(idx)*2)
  224. /*
  225. ** FIXME: revisit which GFP flags we should really be using.
  226. **     GFP_KERNEL includes __GFP_WAIT flag and that may not
  227. **     be acceptable. Since this is boot time, we shouldn't have
  228. **     to wait ever and this code should (will?) never get called
  229. **     from the interrrupt context.
  230. */
  231. #define IOSAPIC_KALLOC(a_type, cnt) 
  232. (a_type *) kmalloc(sizeof(a_type)*(cnt), GFP_KERNEL)
  233. #define IOSAPIC_FREE(addr, f_type, cnt) kfree((void *)addr)
  234. #define IOSAPIC_LOCK(lck) spin_lock_irqsave(lck, irqflags)
  235. #define IOSAPIC_UNLOCK(lck) spin_unlock_irqrestore(lck, irqflags)
  236. #define IOSAPIC_VERSION_MASK            0x000000ff
  237. #define IOSAPIC_VERSION_SHIFT           0x0
  238. #define IOSAPIC_VERSION(ver)
  239. (int) ((ver & IOSAPIC_VERSION_MASK) >> IOSAPIC_VERSION_SHIFT)
  240. #define IOSAPIC_MAX_ENTRY_MASK          0x00ff0000
  241. #define IOSAPIC_MAX_ENTRY_SHIFT         0x10
  242. #define IOSAPIC_IRDT_MAX_ENTRY(ver)
  243. (int) ((ver&IOSAPIC_MAX_ENTRY_MASK) >> IOSAPIC_MAX_ENTRY_SHIFT)
  244. /* bits in the "low" I/O Sapic IRdT entry */
  245. #define IOSAPIC_IRDT_ENABLE       0x10000
  246. #define IOSAPIC_IRDT_PO_LOW       0x02000
  247. #define IOSAPIC_IRDT_LEVEL_TRIG   0x08000
  248. #define IOSAPIC_IRDT_MODE_LPRI    0x00100
  249. /* bits in the "high" I/O Sapic IRdT entry */
  250. #define IOSAPIC_IRDT_ID_EID_SHIFT              0x10
  251. #define IOSAPIC_EOI(eoi_addr, eoi_data) gsc_writel(eoi_data, eoi_addr)
  252. static struct iosapic_info *iosapic_list;
  253. static spinlock_t iosapic_lock;
  254. static int iosapic_count;
  255. /*
  256. ** REVISIT: future platforms may have more than one IRT.
  257. ** If so, the following three fields form a structure which
  258. ** then be linked into a list. Names are chosen to make searching
  259. ** for them easy - not necessarily accurate (eg "cell").
  260. **
  261. ** Alternative: iosapic_info could point to the IRT it's in.
  262. ** iosapic_register() could search a list of IRT's.
  263. */
  264. static struct irt_entry *irt_cell;
  265. static size_t irt_num_entry;
  266. /*
  267. ** iosapic_load_irt
  268. **
  269. ** The "Get PCI INT Routing Table Size" option returns the number of 
  270. ** entries in the PCI interrupt routing table for the cell specified 
  271. ** in the cell_number argument.  The cell number must be for a cell 
  272. ** within the caller's protection domain.
  273. **
  274. ** The "Get PCI INT Routing Table" option returns, for the cell 
  275. ** specified in the cell_number argument, the PCI interrupt routing 
  276. ** table in the caller allocated memory pointed to by mem_addr.
  277. ** We assume the IRT only contains entries for I/O SAPIC and
  278. ** calculate the size based on the size of I/O sapic entries.
  279. **
  280. ** The PCI interrupt routing table entry format is derived from the
  281. ** IA64 SAL Specification 2.4.   The PCI interrupt routing table defines
  282. ** the routing of PCI interrupt signals between the PCI device output
  283. ** "pins" and the IO SAPICs' input "lines" (including core I/O PCI
  284. ** devices).  This table does NOT include information for devices/slots
  285. ** behind PCI to PCI bridges. See PCI to PCI Bridge Architecture Spec.
  286. ** for the architected method of routing of IRQ's behind PPB's.
  287. */
  288. static int __init /* return number of entries as success/fail flag */
  289. iosapic_load_irt(unsigned long cell_num, struct irt_entry **irt)
  290. {
  291. long status;              /* PDC return value status */
  292. struct irt_entry *table;  /* start of interrupt routing tbl */
  293. unsigned long num_entries = 0UL;
  294. ASSERT(NULL != irt);
  295. if (is_pdc_pat()) {
  296. /* Use pat pdc routine to get interrupt routing table size */
  297. DBG("calling get_irt_size (cell %ld)n", cell_num);
  298. status = pdc_pat_get_irt_size(&num_entries, cell_num);
  299. DBG("get_irt_size: %ldn", status);
  300. ASSERT(status == PDC_OK);
  301. /* save the number of entries in the table */
  302. ASSERT(0UL != num_entries);
  303. /*
  304. ** allocate memory for interrupt routing table
  305. ** This interface isn't really right. We are assuming
  306. ** the contents of the table are exclusively
  307. ** for I/O sapic devices.
  308. */
  309. table = IOSAPIC_KALLOC(struct irt_entry, num_entries);
  310. if (table == NULL) {
  311. printk(KERN_WARNING MODULE_NAME ": read_irt : can not alloc mem for IRTn");
  312. return 0;
  313. }
  314. /* get PCI INT routing table */
  315. status = pdc_pat_get_irt(table, cell_num);
  316. DBG("pdc_pat_get_irt: %ldn", status);
  317. ASSERT(status == PDC_OK);
  318. } else {
  319. /*
  320. ** C3000/J5000 (and similar) platforms with Sprockets PDC
  321. ** will return exactly one IRT for all iosapics.
  322. ** So if we have one, don't need to get it again.
  323. */
  324. if (NULL != irt_cell)
  325. return 0;
  326. /* Should be using the Elroy's HPA, but it's ignored anyway */
  327. status = pdc_pci_irt_size(&num_entries, 0);
  328. DBG("pdc_pci_irt_size: %ldn", status);
  329. if (PDC_OK != status) {
  330. /* Not a "legacy" system with I/O SAPIC either */
  331. return 0;
  332. }
  333. ASSERT(0UL != num_entries);
  334. table = IOSAPIC_KALLOC(struct irt_entry, num_entries);
  335. if (table == NULL) {
  336. printk(KERN_WARNING MODULE_NAME ": read_irt : can not alloc mem for IRTn");
  337. return 0;
  338. }
  339. /* HPA ignored by this call too. */
  340. status = pdc_pci_irt(num_entries, 0, table);
  341. ASSERT(PDC_OK == status);
  342. }
  343. /* return interrupt table address */
  344. *irt = table;
  345. #ifdef DEBUG_IOSAPIC_IRT
  346. {
  347. struct irt_entry *p = table;
  348. int i;
  349. printk(KERN_DEBUG MODULE_NAME " Interrupt Routing Table (cell %ld)n", cell_num);
  350. printk(KERN_DEBUG MODULE_NAME " start = 0x%p num_entries %ld entry_size %dn",
  351. table,
  352. num_entries,
  353. (int) sizeof(struct irt_entry));
  354. for (i = 0 ; i < num_entries ; i++, p++) {
  355. printk(KERN_DEBUG MODULE_NAME " %02x %02x %02x %02x %02x %02x %02x %02x %08x%08xn",
  356. p->entry_type, p->entry_length, p->interrupt_type,
  357. p->polarity_trigger, p->src_bus_irq_devno, p->src_bus_id,
  358. p->src_seg_id, p->dest_iosapic_intin,
  359. ((u32 *) p)[2],
  360. ((u32 *) p)[3]
  361. );
  362. }
  363. }
  364. #endif /* DEBUG_IOSAPIC_IRT */
  365. return num_entries;
  366. }
  367. void __init
  368. iosapic_init(void)
  369. {
  370. unsigned long cell = 0;
  371. /* init global data */
  372. iosapic_lock = SPIN_LOCK_UNLOCKED;
  373.         iosapic_list = (struct iosapic_info *) NULL;
  374. iosapic_count = 0;
  375. DBG("iosapic_init()n");
  376. #ifdef __LP64__
  377. if (is_pdc_pat()) {
  378. int status;
  379. struct pdc_pat_cell_num cell_info;
  380. status = pdc_pat_cell_get_number(&cell_info);
  381. if (status == PDC_OK) {
  382. cell = cell_info.cell_num;
  383. }
  384. }
  385. #endif
  386. /*
  387. **  get IRT for this cell.
  388. */
  389. irt_num_entry =  iosapic_load_irt(cell, &irt_cell);
  390. if (0 == irt_num_entry)
  391. irt_cell = NULL; /* old PDC w/o iosapic */
  392. }
  393. /*
  394. ** Return the IRT entry in case we need to look something else up.
  395. */
  396. static struct irt_entry *
  397. irt_find_irqline(struct iosapic_info *isi, u8 slot, u8 intr_pin)
  398. {
  399. struct irt_entry *i = irt_cell;
  400. int cnt; /* track how many entries we've looked at */
  401. u8 irq_devno = (slot << IRT_DEV_SHIFT) | (intr_pin-1);
  402. DBG_IRT("irt_find_irqline() SLOT %d pin %dn", slot, intr_pin);
  403. for (cnt=0; cnt < irt_num_entry; cnt++, i++) {
  404. /*
  405. ** Validate: entry_type, entry_length, interrupt_type
  406. **
  407. ** Difference between validate vs compare is the former
  408. ** should print debug info and is not expected to "fail"
  409. ** on current platforms.
  410. */
  411. if (i->entry_type != IRT_IOSAPIC_TYPE) {
  412. DBG_IRT(KERN_WARNING MODULE_NAME ":find_irqline(0x%p): skipping entry %d type %dn", i, cnt, i->entry_type);
  413. continue;
  414. }
  415. if (i->entry_length != IRT_IOSAPIC_LENGTH) {
  416. DBG_IRT(KERN_WARNING MODULE_NAME ":find_irqline(0x%p): skipping entry %d  length %dn", i, cnt, i->entry_length);
  417. continue;
  418. }
  419. if (i->interrupt_type != IRT_VECTORED_INTR) {
  420. DBG_IRT(KERN_WARNING MODULE_NAME ":find_irqline(0x%p): skipping entry  %d interrupt_type %dn", i, cnt, i->interrupt_type);
  421. continue;
  422. }
  423. /*
  424. ** Compare: dest_iosapic_addr, src_bus_irq_devno
  425. */
  426. if (i->dest_iosapic_addr != (u64) ((long) isi->isi_hpa))
  427. continue;
  428. if ((i->src_bus_irq_devno & IRT_IRQ_DEVNO_MASK) != irq_devno)
  429. continue;
  430. /*
  431. ** Ignore: src_bus_id and rc_seg_id correlate with
  432. **         iosapic_info->isi_hpa on HP platforms.
  433. **         If needed, pass in "PFA" (aka config space addr)
  434. **         instead of slot.
  435. */
  436. /* Found it! */
  437. return i;
  438. }
  439. printk(KERN_WARNING MODULE_NAME ": 0x%lx : no IRT entry for slot %d, pin %dn",
  440. isi->isi_hpa, slot, intr_pin);
  441. return NULL;
  442. }
  443. /*
  444. ** xlate_pin() supports the skewing of IRQ lines done by subsidiary bridges.
  445. ** Legacy PDC already does this translation for us and stores it in INTR_LINE.
  446. **
  447. ** PAT PDC needs to basically do what legacy PDC does:
  448. ** o read PIN
  449. ** o adjust PIN in case device is "behind" a PPB
  450. **     (eg 4-port 100BT and SCSI/LAN "Combo Card")
  451. ** o convert slot/pin to I/O SAPIC input line.
  452. **
  453. ** HP platforms only support:
  454. ** o one level of skewing for any number of PPBs
  455. ** o only support PCI-PCI Bridges.
  456. */
  457. static struct irt_entry *
  458. iosapic_xlate_pin(struct iosapic_info *isi, struct pci_dev *pcidev)
  459. {
  460. u8 intr_pin, intr_slot;
  461. pci_read_config_byte(pcidev, PCI_INTERRUPT_PIN, &intr_pin);
  462. DBG_IRT("iosapic_xlate_pin() SLOT %d pin %dn",
  463. PCI_SLOT(pcidev->devfn), intr_pin);
  464. if (0 == intr_pin) {
  465. /* The device does NOT support/use IRQ lines.  */
  466. return NULL;
  467. }
  468. /* Check if pcidev behind a PPB */
  469. if (NULL != pcidev->bus->self) {
  470. /* Convert pcidev INTR_PIN into something we
  471. ** can lookup in the IRT.
  472. */
  473. #ifdef PCI_BRIDGE_FUNCS
  474. /*
  475. ** Proposal #1:
  476. **
  477. ** call implementation specific translation function
  478. ** This is architecturally "cleaner". HP-UX doesn't
  479. ** support other secondary bus types (eg. E/ISA) directly.
  480. ** May be needed for other processor (eg IA64) architectures
  481. ** or by some ambitous soul who wants to watch TV.
  482. */
  483. if (pci_bridge_funcs->xlate_intr_line) {
  484. intr_pin = pci_bridge_funcs->xlate_intr_line(pcidev);
  485. }
  486. #else /* PCI_BRIDGE_FUNCS */
  487. struct pci_bus *p = pcidev->bus;
  488. /*
  489. ** Proposal #2:
  490. ** The "pin" is skewed ((pin + dev - 1) % 4).
  491. **
  492. ** This isn't very clean since I/O SAPIC must assume:
  493. **   - all platforms only have PCI busses.
  494. **   - only PCI-PCI bridge (eg not PCI-EISA, PCI-PCMCIA)
  495. **   - IRQ routing is only skewed once regardless of
  496. **     the number of PPB's between iosapic and device.
  497. **     (Bit3 expansion chassis follows this rule)
  498. **
  499. ** Advantage is it's really easy to implement.
  500. */
  501. intr_pin = ((intr_pin-1)+PCI_SLOT(pcidev->devfn)) % 4;
  502. intr_pin++; /* convert back to INTA-D (1-4) */
  503. #endif /* PCI_BRIDGE_FUNCS */
  504. /*
  505. ** Locate the host slot the PPB nearest the Host bus
  506. ** adapter.
  507. */
  508. while (NULL != p->parent->self)
  509. p = p->parent;
  510. intr_slot = PCI_SLOT(p->self->devfn);
  511. } else {
  512. intr_slot = PCI_SLOT(pcidev->devfn);
  513. }
  514. DBG_IRT("iosapic_xlate_pin:  bus %d slot %d pin %dn",
  515. pcidev->bus->secondary, intr_slot, intr_pin);
  516. return irt_find_irqline(isi, intr_slot, intr_pin);
  517. }
  518. static void
  519. iosapic_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  520. {
  521. struct vector_info *vi = (struct vector_info *)dev_id;
  522. extern void do_irq(struct irqaction *a, int i, struct pt_regs *p);
  523. int irq_num = vi->vi_ios->isi_region->data.irqbase + vi->vi_irqline;
  524. DBG("iosapic_interrupt(): irq %d line %d eoi %pn",
  525. irq, vi->vi_irqline, vi->vi_eoi_addr);
  526. /* FIXME: Need to mask/unmask? processor IRQ is already masked... */
  527. do_irq(&vi->vi_ios->isi_region->action[vi->vi_irqline], irq_num, regs);
  528. /*
  529. ** PCI only supports level triggered in order to share IRQ lines.
  530. ** I/O SAPIC must always issue EOI.
  531. */
  532. IOSAPIC_EOI(vi->vi_eoi_addr, vi->vi_eoi_data);
  533. }
  534. int
  535. iosapic_fixup_irq(void *isi_obj, struct pci_dev *pcidev)
  536. {
  537. struct iosapic_info *isi = (struct iosapic_info *)isi_obj;
  538. struct irt_entry *irte = NULL;  /* only used if PAT PDC */
  539. struct vector_info *vi;
  540. int isi_line; /* line used by device */
  541. int tmp;
  542. int return_irq;
  543. #ifdef CONFIG_SUPERIO
  544. int superio_irq = -1;
  545. #endif
  546. if (NULL == isi) {
  547. printk(KERN_WARNING MODULE_NAME ": hpa not registered for %sn",
  548. pcidev->name);
  549. return(-1);
  550. }
  551. #ifdef CONFIG_SUPERIO
  552. if (is_superio_device(pcidev)) {
  553. superio_irq = superio_fixup_irq(pcidev);
  554. if (superio_irq == -1)
  555.     return(-1);
  556. if (PCI_FUNC(pcidev->devfn) != SUPERIO_USB_FN) {
  557. /*
  558.  * SuperIO USB controller has an irt entry.
  559.  * Only let the USB controller hookup the rest
  560.  * of the interrupt routing when it comes through.
  561.  * Note that interrupts for all three functions
  562.  * actually come through the PIC's on function 1!
  563.  */
  564. pcidev->irq = superio_irq;
  565. return superio_irq;
  566. }
  567. }
  568. #endif /* CONFIG_SUPERIO */
  569. /* lookup IRT entry for isi/slot/pin set */
  570. irte = iosapic_xlate_pin(isi, pcidev);
  571. if (NULL == irte) {
  572. return(-1);
  573. }
  574. DBG_IRT("iosapic_fixup_irq(): irte %p %x %x %x %x %x %x %x %xn",
  575. irte,
  576. irte->entry_type,
  577. irte->entry_length,
  578. irte->polarity_trigger,
  579. irte->src_bus_irq_devno,
  580. irte->src_bus_id,
  581. irte->src_seg_id,
  582. irte->dest_iosapic_intin,
  583. (u32) irte->dest_iosapic_addr);
  584. isi_line = irte->dest_iosapic_intin;
  585. /* get vector info for this input line */
  586. ASSERT(NULL != isi->isi_vector);
  587. vi = &(isi->isi_vector[isi_line]);
  588. DBG_IRT("iosapic_fixup_irq:  line %d vi 0x%pn", isi_line, vi);
  589. vi->vi_irte = irte;
  590. /* Allocate processor IRQ */
  591. vi->vi_txn_irq = txn_alloc_irq();
  592. /* XXX/FIXME The txn_alloc_irq() code and related code should be moved
  593. ** to enable_irq(). That way we only allocate processor IRQ bits
  594. ** for devices that actually have drivers claiming them.
  595. ** Right now we assign an IRQ to every PCI device present regardless
  596. ** of whether it's used or not.
  597. */
  598. if (vi->vi_txn_irq < 0)
  599. panic("I/O sapic: couldn't get TXN IRQn");
  600. /* enable_irq() will use txn_* to program IRdT */
  601. vi->vi_txn_addr = txn_alloc_addr(vi->vi_txn_irq);
  602. vi->vi_txn_data = txn_alloc_data(vi->vi_txn_irq, 8);
  603.         ASSERT(vi->vi_txn_data < 256);  /* matches 8 above */
  604. tmp = request_irq(vi->vi_txn_irq, iosapic_interrupt, 0,
  605. vi->vi_name, vi);
  606. ASSERT(tmp == 0);
  607. vi->vi_eoi_addr = (u32 *) (isi->isi_hpa + IOSAPIC_REG_EOI);
  608. vi->vi_eoi_data = cpu_to_le32(vi->vi_irqline);
  609. ASSERT(NULL != isi->isi_region);
  610. /* pcidev->irq still needs to be virtualized.  */
  611. return_irq = isi->isi_region->data.irqbase + isi_line;
  612. #ifdef CONFIG_SUPERIO
  613. if (superio_irq != -1) {
  614. superio_inform_irq(return_irq);
  615. return_irq = superio_irq;
  616. }
  617. #endif
  618. pcidev->irq = return_irq;
  619. DBG_IRT("iosapic_fixup_irq() %d:%d %x %x line %d irq %dn",
  620. PCI_SLOT(pcidev->devfn),
  621. PCI_FUNC(pcidev->devfn), pcidev->vendor, pcidev->device, isi_line, return_irq);
  622. return return_irq;
  623. }
  624. static void
  625. iosapic_rd_irt_entry(struct vector_info *vi , u32 *dp0, u32 *dp1)
  626. {
  627. struct iosapic_info *isp = vi->vi_ios;
  628. u8 idx = vi->vi_irqline;
  629. /* point the window register to the lower word */
  630. WRITE_U32(IOSAPIC_IRDT_ENTRY(idx), isp->isi_hpa+IOSAPIC_REG_SELECT);
  631. *dp0 = READ_U32(isp->isi_hpa+IOSAPIC_REG_WINDOW);
  632. /* point the window register to the higher word */
  633. WRITE_U32(IOSAPIC_IRDT_ENTRY_HI(idx), isp->isi_hpa+IOSAPIC_REG_SELECT);
  634. *dp1 = READ_U32(isp->isi_hpa+IOSAPIC_REG_WINDOW);
  635. }
  636. static void
  637. iosapic_wr_irt_entry(struct vector_info *vi, u32 dp0, u32 dp1)
  638. {
  639. struct iosapic_info *isp = vi->vi_ios;
  640. ASSERT(NULL != isp);
  641. ASSERT(0 != isp->isi_hpa);
  642. DBG_IRT("iosapic_wr_irt_entry(): irq %d hpa %p WINDOW %p  0x%x 0x%xn",
  643. vi->vi_irqline,
  644. isp->isi_hpa, isp->isi_hpa+IOSAPIC_REG_WINDOW,
  645. dp0, dp1);
  646. /* point the window register to the lower word */
  647. WRITE_U32(IOSAPIC_IRDT_ENTRY(vi->vi_irqline), isp->isi_hpa+IOSAPIC_REG_SELECT);
  648. WRITE_U32( dp0, isp->isi_hpa+IOSAPIC_REG_WINDOW);
  649. /* Read the window register to flush the writes down to HW  */
  650. dp0 = READ_U32(isp->isi_hpa+IOSAPIC_REG_WINDOW);
  651. /* point the window register to the higher word */
  652. WRITE_U32(IOSAPIC_IRDT_ENTRY_HI(vi->vi_irqline), isp->isi_hpa+IOSAPIC_REG_SELECT);
  653. WRITE_U32( dp1, isp->isi_hpa+IOSAPIC_REG_WINDOW);
  654. /* Read the window register to flush the writes down to HW  */
  655. dp1 = READ_U32(isp->isi_hpa+IOSAPIC_REG_WINDOW);
  656. }
  657. /*
  658. ** set_irt prepares the data (dp0, dp1) according to the vector_info
  659. ** and target cpu (id_eid).  dp0/dp1 are then used to program I/O SAPIC
  660. ** IRdT for the given "vector" (aka IRQ line).
  661. */
  662. static void
  663. iosapic_set_irt_data( struct vector_info *vi, u32 *dp0, u32 *dp1)
  664. {
  665. u32 mode = 0;
  666. struct irt_entry *p = vi->vi_irte;
  667. ASSERT(NULL != vi->vi_irte);
  668. if ((p->polarity_trigger & IRT_PO_MASK) == IRT_ACTIVE_LO)
  669. mode |= IOSAPIC_IRDT_PO_LOW;
  670. if (((p->polarity_trigger >> IRT_EL_SHIFT) & IRT_EL_MASK) == IRT_LEVEL_TRIG)
  671. mode |= IOSAPIC_IRDT_LEVEL_TRIG;
  672. /*
  673. ** IA64 REVISIT
  674. ** PA doesn't support EXTINT or LPRIO bits.
  675. */
  676. ASSERT(vi->vi_txn_data);
  677. *dp0 = mode | (u32) vi->vi_txn_data;
  678. /*
  679. ** Extracting id_eid isn't a real clean way of getting it.
  680. ** But the encoding is the same for both PA and IA64 platforms.
  681. */
  682. if (is_pdc_pat()) {
  683. /*
  684. ** PAT PDC just hands it to us "right".
  685. ** vi_txn_addr comes from cpu_data[x].txn_addr.
  686. */
  687. *dp1 = (u32) (vi->vi_txn_addr);
  688. } else {
  689. /* 
  690. ** eg if base_addr == 0xfffa0000),
  691. **    we want to get 0xa0ff0000.
  692. **
  693. ** eid 0x0ff00000 -> 0x00ff0000
  694. ** id 0x000ff000 -> 0xff000000
  695. */
  696. *dp1 = (((u32)vi->vi_txn_addr & 0x0ff00000) >> 4) |
  697. (((u32)vi->vi_txn_addr & 0x000ff000) << 12);
  698. }
  699. DBG_IRT("iosapic_set_irt_data(): 0x%x 0x%xn", *dp0, *dp1);
  700. }
  701. static void
  702. iosapic_disable_irq(void *irq_dev, int irq)
  703. {
  704. ulong irqflags;
  705. struct vector_info *vi = &(((struct vector_info *) irq_dev)[irq]);
  706. u32 d0, d1;
  707. ASSERT(NULL != vi);
  708. IOSAPIC_LOCK(&iosapic_lock);
  709. #ifdef REVISIT_DESIGN_ISSUE
  710. /* 
  711. ** XXX/FIXME
  712. disable_irq()/enable_irq(): drawback of using IRQ as a "handle"
  713. Current disable_irq interface only allows the irq_region support routines
  714. to manage sharing of "irq" objects.  The problem is the disable_irq()
  715. interface specifies which IRQ line needs to be disabled but does not
  716. identify the particular ISR which needs to be disabled.  IO sapic
  717. (and similar code in Dino) can only support one handler per IRQ
  718. since they don't further encode the meaning of the IRQ number.
  719. irq_region support has to hide it's implementation of "shared IRQ"
  720. behind a function call.
  721. Encoding the IRQ would be possible by I/O SAPIC but makes life really
  722. complicated for the IRQ handler and not help performance.
  723. Need more info on how Linux supports shared IRQ lines on a PC.
  724. */
  725. #endif /* REVISIT_DESIGN_ISSUE */
  726. iosapic_rd_irt_entry(vi, &d0, &d1);
  727. d0 |= IOSAPIC_IRDT_ENABLE;
  728. iosapic_wr_irt_entry(vi, d0, d1);
  729. IOSAPIC_UNLOCK(&iosapic_lock);
  730. /* disable ISR for parent */
  731. disable_irq(vi->vi_txn_irq);
  732. }
  733. static void
  734. iosapic_enable_irq(void *dev, int irq)
  735. {
  736. struct vector_info *vi = &(((struct vector_info *) dev)[irq]);
  737. u32 d0, d1;
  738. ASSERT(NULL != vi);
  739. ASSERT(NULL != vi->vi_irte);
  740. /* data is initialized by fixup_irq */
  741. ASSERT(0 < vi->vi_txn_irq);
  742. ASSERT(0UL != vi->vi_txn_data);
  743. iosapic_set_irt_data(vi, &d0, &d1);
  744. iosapic_wr_irt_entry(vi, d0, d1);
  745. #ifdef DEBUG_IOSAPIC_IRT
  746. {
  747. u32 *t = (u32 *) ((ulong) vi->vi_eoi_addr & ~0xffUL);
  748. printk("iosapic_enable_irq(): regs %p", vi->vi_eoi_addr);
  749. while (t < vi->vi_eoi_addr) printk(" %x", READ_U32(t++));
  750. printk("n");
  751. }
  752. printk("iosapic_enable_irq(): sel ");
  753. {
  754. struct iosapic_info *isp = vi->vi_ios;
  755. for (d0=0x10; d0<0x1e; d0++) {
  756. /* point the window register to the lower word */
  757. WRITE_U32(d0, isp->isi_hpa+IOSAPIC_REG_SELECT);
  758. /* read the word */
  759. d1 = READ_U32(isp->isi_hpa+IOSAPIC_REG_WINDOW);
  760. printk(" %x", d1);
  761. }
  762. }
  763. printk("n");
  764. #endif
  765. /*
  766. ** KLUGE: IRQ should not be asserted when Drivers enabling their IRQ.
  767. **        PCI supports level triggered in order to share IRQ lines.
  768. **
  769. ** Issueing I/O SAPIC an EOI causes an interrupt iff IRQ line is
  770. ** asserted.
  771. */
  772. IOSAPIC_EOI(vi->vi_eoi_addr, vi->vi_eoi_data);
  773. }
  774. static void
  775. iosapic_mask_irq(void *dev, int irq)
  776. {
  777. BUG();
  778. }
  779. static void
  780. iosapic_unmask_irq(void *dev, int irq)
  781. {
  782. BUG();
  783. }
  784. static struct irq_region_ops iosapic_irq_ops = {
  785. disable_irq: iosapic_disable_irq,
  786. enable_irq: iosapic_enable_irq,
  787. mask_irq: iosapic_mask_irq,
  788. unmask_irq: iosapic_unmask_irq
  789. };
  790. /*
  791. ** squirrel away the I/O Sapic Version
  792. */
  793. static unsigned int
  794. iosapic_rd_version(struct iosapic_info *isi)
  795. {
  796. ASSERT(isi);
  797. ASSERT(isi->isi_hpa);
  798. /* point window to the version register */
  799. WRITE_U32(IOSAPIC_REG_VERSION, isi->isi_hpa+IOSAPIC_REG_SELECT);
  800. /* now read the version register */
  801. return (READ_U32(isi->isi_hpa+IOSAPIC_REG_WINDOW));
  802. }
  803. /*
  804. ** iosapic_register() is called by "drivers" with an integrated I/O SAPIC.
  805. ** Caller must be certain they have an I/O SAPIC and know its MMIO address.
  806. **
  807. ** o allocate iosapic_info and add it to the list
  808. ** o read iosapic version and squirrel that away
  809. ** o read size of IRdT.
  810. ** o allocate and initialize isi_vector[]
  811. ** o allocate isi_region (registers region handlers)
  812. */
  813. void *
  814. iosapic_register(unsigned long hpa)
  815. {
  816. struct iosapic_info *isi = NULL;
  817. struct irt_entry *irte = irt_cell;
  818. struct vector_info *vip;
  819. int cnt; /* track how many entries we've looked at */
  820. /*
  821. ** Astro based platforms can't support PCI OLARD if they
  822. ** implement the legacy PDC (not PAT). Though Legacy PDC
  823. ** supports an IRT, LBA's with no device under them
  824. ** are *not* listed in the IRT.
  825. ** Search the IRT and ignore iosapic's which aren't
  826. ** in the IRT.
  827. */
  828. ASSERT(NULL != irte); /* always have built-in devices */
  829. for (cnt=0; cnt < irt_num_entry; cnt++, irte++) {
  830. ASSERT(IRT_IOSAPIC_TYPE == irte->entry_type);
  831. /*
  832. ** We need sign extension of the hpa on 32-bit kernels.
  833. ** The address in the IRT is *always* 64 bit and really
  834. ** is an unsigned quantity (like all physical addresses).
  835. */ 
  836. if (irte->dest_iosapic_addr == (s64) ((long) hpa))
  837. break;
  838. }
  839. if (cnt  >= irt_num_entry)
  840. return (NULL);
  841. if ((isi = IOSAPIC_KALLOC(struct iosapic_info, 1)) == NULL) {
  842. BUG();
  843. return (NULL);
  844. }
  845. memset(isi, 0, sizeof(struct iosapic_info));
  846. isi->isi_hpa         = hpa;
  847. isi->isi_version     = iosapic_rd_version(isi);
  848. isi->isi_num_vectors = IOSAPIC_IRDT_MAX_ENTRY(isi->isi_version) + 1;
  849. vip = isi->isi_vector =
  850.  IOSAPIC_KALLOC(struct vector_info, isi->isi_num_vectors);
  851. if (vip == NULL) {
  852. IOSAPIC_FREE(isi, struct iosapic_info, 1);
  853. return (NULL);
  854. }
  855. memset(vip, 0, sizeof(struct vector_info) * isi->isi_num_vectors);
  856. sprintf(isi->isi_name, "IO-SAPIC%02d", iosapic_count++);
  857. /*
  858. ** Initialize vector array
  859. */
  860. for (cnt=0; cnt < isi->isi_num_vectors; cnt++, vip++) {
  861. vip->vi_irqline = (unsigned char) cnt;
  862. vip->vi_ios = isi;
  863. sprintf(vip->vi_name, "%s-L%d", isi->isi_name, cnt);
  864. }
  865. isi->isi_region = alloc_irq_region(isi->isi_num_vectors,
  866. &iosapic_irq_ops, isi->isi_name,
  867. (void *) isi->isi_vector);
  868. ASSERT(NULL != isi->isi_region);
  869. return ((void *) isi);
  870. }
  871. #ifdef DEBUG_IOSAPIC
  872. static void
  873. iosapic_prt_irt(void *irt, long num_entry)
  874. {
  875. unsigned int i, *irp = (unsigned int *) irt;
  876. ASSERT(NULL != irt);
  877. printk(KERN_DEBUG MODULE_NAME ": Interrupt Routing Table (%lx entries)n", num_entry);
  878. for (i=0; i<num_entry; i++, irp += 4) {
  879. printk(KERN_DEBUG "%p : %2d %.8x %.8x %.8x %.8xn",
  880. irp, i, irp[0], irp[1], irp[2], irp[3]);
  881. }
  882. }
  883. static void
  884. iosapic_prt_vi(struct vector_info *vi)
  885. {
  886. ASSERT(NULL != vi);
  887. printk(KERN_DEBUG MODULE_NAME ": vector_info[%d] is at %pn", vi->vi_irqline, vi);
  888. printk(KERN_DEBUG "ttvi_status:  %.4xn", vi->vi_status);
  889. printk(KERN_DEBUG "ttvi_txn_irq:  %dn",  vi->vi_txn_irq);
  890. printk(KERN_DEBUG "ttvi_txn_addr: %lxn", vi->vi_txn_addr);
  891. printk(KERN_DEBUG "ttvi_txn_data: %lxn", vi->vi_txn_data);
  892. printk(KERN_DEBUG "ttvi_eoi_addr: %pn",  vi->vi_eoi_addr);
  893. printk(KERN_DEBUG "ttvi_eoi_data: %xn",  vi->vi_eoi_data);
  894. }
  895. static void
  896. iosapic_prt_isi(struct iosapic_info *isi)
  897. {
  898. ASSERT(NULL != isi);
  899. printk(KERN_DEBUG MODULE_NAME ": io_sapic_info at %pn", isi);
  900. printk(KERN_DEBUG "ttisi_hpa:       %lxn", isi->isi_hpa);
  901. printk(KERN_DEBUG "ttisi_status:     %xn", isi->isi_status);
  902. printk(KERN_DEBUG "ttisi_version:   %xn", isi->isi_version);
  903. printk(KERN_DEBUG "ttisi_vector:    %pn", isi->isi_vector);
  904. }
  905. #endif /* DEBUG_IOSAPIC */