iosapic.c

来自「linux 内核源代码」· C语言 代码 · 共 943 行 · 第 1/2 页

C
943
字号
/*** I/O Sapic Driver - PCI interrupt line support****      (c) Copyright 1999 Grant Grundler**      (c) Copyright 1999 Hewlett-Packard Company****      This program is free software; you can redistribute it and/or modify**      it under the terms of the GNU General Public License as published by**      the Free Software Foundation; either version 2 of the License, or**      (at your option) any later version.**** The I/O sapic driver manages the Interrupt Redirection Table which is** the control logic to convert PCI line based interrupts into a Message** Signaled Interrupt (aka Transaction Based Interrupt, TBI).**** Acronyms** --------** HPA  Hard Physical Address (aka MMIO address)** IRQ  Interrupt ReQuest. Implies Line based interrupt.** IRT	Interrupt Routing Table (provided by PAT firmware)** IRdT Interrupt Redirection Table. IRQ line to TXN ADDR/DATA**      table which is implemented in I/O SAPIC.** ISR  Interrupt Service Routine. aka Interrupt handler.** MSI	Message Signaled Interrupt. PCI 2.2 functionality.**      aka Transaction Based Interrupt (or TBI).** PA   Precision Architecture. HP's RISC architecture.** RISC Reduced Instruction Set Computer.****** What's a Message Signalled Interrupt?** -------------------------------------** MSI is a write transaction which targets a processor and is similar** to a processor write to memory or MMIO. MSIs can be generated by I/O** devices as well as processors and require *architecture* to work.**** PA only supports MSI. So I/O subsystems must either natively generate** MSIs (e.g. GSC or HP-PB) or convert line based interrupts into MSIs** (e.g. PCI and EISA).  IA64 supports MSIs via a "local SAPIC" which** acts on behalf of a processor.**** MSI allows any I/O device to interrupt any processor. This makes** load balancing of the interrupt processing possible on an SMP platform.** Interrupts are also ordered WRT to DMA data.  It's possible on I/O** coherent systems to completely eliminate PIO reads from the interrupt** path. The device and driver must be designed and implemented to** guarantee all DMA has been issued (issues about atomicity here)** before the MSI is issued. I/O status can then safely be read from** DMA'd data by the ISR.****** PA Firmware** -----------** PA-RISC platforms have two fundamentally different types of firmware.** For PCI devices, "Legacy" PDC initializes the "INTERRUPT_LINE" register** and BARs similar to a traditional PC BIOS.** The newer "PAT" firmware supports PDC calls which return tables.** PAT firmware only initializes the PCI Console and Boot interface.** With these tables, the OS can program all other PCI devices.**** One such PAT PDC call returns the "Interrupt Routing Table" (IRT).** The IRT maps each PCI slot's INTA-D "output" line to an I/O SAPIC** input line.  If the IRT is not available, this driver assumes** INTERRUPT_LINE register has been programmed by firmware. The latter** case also means online addition of PCI cards can NOT be supported** even if HW support is present.**** All platforms with PAT firmware to date (Oct 1999) use one Interrupt** Routing Table for the entire platform.**** Where's the iosapic?** --------------------** I/O sapic is part of the "Core Electronics Complex". And on HP platforms** it's integrated as part of the PCI bus adapter, "lba".  So no bus walk** will discover I/O Sapic. I/O Sapic driver learns about each device** when lba driver advertises the presence of the I/O sapic by calling** iosapic_register().****** IRQ handling notes** ------------------** The IO-SAPIC can indicate to the CPU which interrupt was asserted.** So, unlike the GSC-ASIC and Dino, we allocate one CPU interrupt per** IO-SAPIC interrupt and call the device driver's handler directly.** The IO-SAPIC driver hijacks the CPU interrupt handler so it can** issue the End Of Interrupt command to the IO-SAPIC.**** Overview of exported iosapic functions** --------------------------------------** (caveat: code isn't finished yet - this is just the plan)**** iosapic_init:**   o initialize globals (lock, etc)**   o try to read IRT. Presence of IRT determines if this is**     a PAT platform or not.**** iosapic_register():**   o create iosapic_info instance data structure**   o allocate vector_info array for this iosapic**   o initialize vector_info - read corresponding IRdT?**** iosapic_xlate_pin: (only called by fixup_irq for PAT platform)**   o intr_pin = read cfg (INTERRUPT_PIN);**   o if (device under PCI-PCI bridge)**               translate slot/pin**** iosapic_fixup_irq:**   o if PAT platform (IRT present)**	   intr_pin = iosapic_xlate_pin(isi,pcidev):**         intr_line = find IRT entry(isi, PCI_SLOT(pcidev), intr_pin)**         save IRT entry into vector_info later**         write cfg INTERRUPT_LINE (with intr_line)?**     else**         intr_line = pcidev->irq**         IRT pointer = NULL**     endif**   o locate vector_info (needs: isi, intr_line)**   o allocate processor "irq" and get txn_addr/data**   o request_irq(processor_irq,  iosapic_interrupt, vector_info,...)**** iosapic_enable_irq:**   o clear any pending IRQ on that line**   o enable IRdT - call enable_irq(vector[line]->processor_irq)**   o write EOI in case line is already asserted.**** iosapic_disable_irq:**   o disable IRdT - call disable_irq(vector[line]->processor_irq)*//* FIXME: determine which include files are really needed */#include <linux/types.h>#include <linux/kernel.h>#include <linux/spinlock.h>#include <linux/pci.h>#include <linux/init.h>#include <linux/slab.h>#include <linux/interrupt.h>#include <asm/byteorder.h>	/* get in-line asm for swab */#include <asm/pdc.h>#include <asm/pdcpat.h>#include <asm/page.h>#include <asm/system.h>#include <asm/io.h>		/* read/write functions */#ifdef CONFIG_SUPERIO#include <asm/superio.h>#endif#include <asm/ropes.h>#include "./iosapic_private.h"#define MODULE_NAME "iosapic"/* "local" compile flags */#undef PCI_BRIDGE_FUNCS#undef DEBUG_IOSAPIC#undef DEBUG_IOSAPIC_IRT#ifdef DEBUG_IOSAPIC#define DBG(x...) printk(x)#else /* DEBUG_IOSAPIC */#define DBG(x...)#endif /* DEBUG_IOSAPIC */#ifdef DEBUG_IOSAPIC_IRT#define DBG_IRT(x...) printk(x)#else#define DBG_IRT(x...)#endif#ifdef CONFIG_64BIT#define COMPARE_IRTE_ADDR(irte, hpa)	((irte)->dest_iosapic_addr == (hpa))#else#define COMPARE_IRTE_ADDR(irte, hpa)	\		((irte)->dest_iosapic_addr == ((hpa) | 0xffffffff00000000ULL))#endif#define IOSAPIC_REG_SELECT              0x00#define IOSAPIC_REG_WINDOW              0x10#define IOSAPIC_REG_EOI                 0x40#define IOSAPIC_REG_VERSION		0x1#define IOSAPIC_IRDT_ENTRY(idx)		(0x10+(idx)*2)#define IOSAPIC_IRDT_ENTRY_HI(idx)	(0x11+(idx)*2)static inline unsigned int iosapic_read(void __iomem *iosapic, unsigned int reg){	writel(reg, iosapic + IOSAPIC_REG_SELECT);	return readl(iosapic + IOSAPIC_REG_WINDOW);}static inline void iosapic_write(void __iomem *iosapic, unsigned int reg, u32 val){	writel(reg, iosapic + IOSAPIC_REG_SELECT);	writel(val, iosapic + IOSAPIC_REG_WINDOW);}#define IOSAPIC_VERSION_MASK	0x000000ff#define	IOSAPIC_VERSION(ver)	((int) (ver & IOSAPIC_VERSION_MASK))#define IOSAPIC_MAX_ENTRY_MASK          0x00ff0000#define IOSAPIC_MAX_ENTRY_SHIFT         0x10#define	IOSAPIC_IRDT_MAX_ENTRY(ver)	\	(int) (((ver) & IOSAPIC_MAX_ENTRY_MASK) >> IOSAPIC_MAX_ENTRY_SHIFT)/* bits in the "low" I/O Sapic IRdT entry */#define IOSAPIC_IRDT_ENABLE       0x10000#define IOSAPIC_IRDT_PO_LOW       0x02000#define IOSAPIC_IRDT_LEVEL_TRIG   0x08000#define IOSAPIC_IRDT_MODE_LPRI    0x00100/* bits in the "high" I/O Sapic IRdT entry */#define IOSAPIC_IRDT_ID_EID_SHIFT              0x10static DEFINE_SPINLOCK(iosapic_lock);static inline void iosapic_eoi(void __iomem *addr, unsigned int data){	__raw_writel(data, addr);}/*** REVISIT: future platforms may have more than one IRT.** If so, the following three fields form a structure which** then be linked into a list. Names are chosen to make searching** for them easy - not necessarily accurate (eg "cell").**** Alternative: iosapic_info could point to the IRT it's in.** iosapic_register() could search a list of IRT's.*/static struct irt_entry *irt_cell;static size_t irt_num_entry;static struct irt_entry *iosapic_alloc_irt(int num_entries){	unsigned long a;	/* The IRT needs to be 8-byte aligned for the PDC call. 	 * Normally kmalloc would guarantee larger alignment, but	 * if CONFIG_DEBUG_SLAB is enabled, then we can get only	 * 4-byte alignment on 32-bit kernels	 */	a = (unsigned long)kmalloc(sizeof(struct irt_entry) * num_entries + 8, GFP_KERNEL);	a = (a + 7UL) & ~7UL;	return (struct irt_entry *)a;}/** * iosapic_load_irt - Fill in the interrupt routing table * @cell_num: The cell number of the CPU we're currently executing on * @irt: The address to place the new IRT at * @return The number of entries found * * The "Get PCI INT Routing Table Size" option returns the number of  * entries in the PCI interrupt routing table for the cell specified  * in the cell_number argument.  The cell number must be for a cell  * within the caller's protection domain. * * The "Get PCI INT Routing Table" option returns, for the cell  * specified in the cell_number argument, the PCI interrupt routing  * table in the caller allocated memory pointed to by mem_addr. * We assume the IRT only contains entries for I/O SAPIC and * calculate the size based on the size of I/O sapic entries. * * The PCI interrupt routing table entry format is derived from the * IA64 SAL Specification 2.4.   The PCI interrupt routing table defines * the routing of PCI interrupt signals between the PCI device output * "pins" and the IO SAPICs' input "lines" (including core I/O PCI * devices).  This table does NOT include information for devices/slots * behind PCI to PCI bridges. See PCI to PCI Bridge Architecture Spec. * for the architected method of routing of IRQ's behind PPB's. */static int __initiosapic_load_irt(unsigned long cell_num, struct irt_entry **irt){	long status;              /* PDC return value status */	struct irt_entry *table;  /* start of interrupt routing tbl */	unsigned long num_entries = 0UL;	BUG_ON(!irt);	if (is_pdc_pat()) {		/* Use pat pdc routine to get interrupt routing table size */		DBG("calling get_irt_size (cell %ld)\n", cell_num);		status = pdc_pat_get_irt_size(&num_entries, cell_num);		DBG("get_irt_size: %ld\n", status);		BUG_ON(status != PDC_OK);		BUG_ON(num_entries == 0);		/*		** allocate memory for interrupt routing table		** This interface isn't really right. We are assuming		** the contents of the table are exclusively		** for I/O sapic devices.		*/		table = iosapic_alloc_irt(num_entries);		if (table == NULL) {			printk(KERN_WARNING MODULE_NAME ": read_irt : can "					"not alloc mem for IRT\n");			return 0;		}		/* get PCI INT routing table */		status = pdc_pat_get_irt(table, cell_num);		DBG("pdc_pat_get_irt: %ld\n", status);		WARN_ON(status != PDC_OK);	} else {		/*		** C3000/J5000 (and similar) platforms with Sprockets PDC		** will return exactly one IRT for all iosapics.		** So if we have one, don't need to get it again.		*/		if (irt_cell)			return 0;		/* Should be using the Elroy's HPA, but it's ignored anyway */		status = pdc_pci_irt_size(&num_entries, 0);		DBG("pdc_pci_irt_size: %ld\n", status);		if (status != PDC_OK) {			/* Not a "legacy" system with I/O SAPIC either */			return 0;		}		BUG_ON(num_entries == 0);		table = iosapic_alloc_irt(num_entries);		if (!table) {			printk(KERN_WARNING MODULE_NAME ": read_irt : can "					"not alloc mem for IRT\n");			return 0;		}		/* HPA ignored by this call too. */		status = pdc_pci_irt(num_entries, 0, table);		BUG_ON(status != PDC_OK);	}	/* return interrupt table address */	*irt = table;#ifdef DEBUG_IOSAPIC_IRT{	struct irt_entry *p = table;	int i;	printk(MODULE_NAME " Interrupt Routing Table (cell %ld)\n", cell_num);	printk(MODULE_NAME " start = 0x%p num_entries %ld entry_size %d\n",		table,		num_entries,		(int) sizeof(struct irt_entry));	for (i = 0 ; i < num_entries ; i++, p++) {		printk(MODULE_NAME " %02x %02x %02x %02x %02x %02x %02x %02x %08x%08x\n",		p->entry_type, p->entry_length, p->interrupt_type,		p->polarity_trigger, p->src_bus_irq_devno, p->src_bus_id,		p->src_seg_id, p->dest_iosapic_intin,		((u32 *) p)[2],		((u32 *) p)[3]		);	}}#endif /* DEBUG_IOSAPIC_IRT */	return num_entries;}void __init iosapic_init(void){	unsigned long cell = 0;	DBG("iosapic_init()\n");#ifdef __LP64__	if (is_pdc_pat()) {		int status;		struct pdc_pat_cell_num cell_info;		status = pdc_pat_cell_get_number(&cell_info);		if (status == PDC_OK) {			cell = cell_info.cell_num;		}	}#endif	/* get interrupt routing table for this cell */	irt_num_entry = iosapic_load_irt(cell, &irt_cell);	if (irt_num_entry == 0)		irt_cell = NULL;	/* old PDC w/o iosapic */}/*** Return the IRT entry in case we need to look something else up.*/static struct irt_entry *irt_find_irqline(struct iosapic_info *isi, u8 slot, u8 intr_pin){	struct irt_entry *i = irt_cell;	int cnt;	/* track how many entries we've looked at */	u8 irq_devno = (slot << IRT_DEV_SHIFT) | (intr_pin-1);	DBG_IRT("irt_find_irqline() SLOT %d pin %d\n", slot, intr_pin);	for (cnt=0; cnt < irt_num_entry; cnt++, i++) {		/*		** Validate: entry_type, entry_length, interrupt_type		**		** Difference between validate vs compare is the former		** should print debug info and is not expected to "fail"		** on current platforms.		*/		if (i->entry_type != IRT_IOSAPIC_TYPE) {			DBG_IRT(KERN_WARNING MODULE_NAME ":find_irqline(0x%p): skipping entry %d type %d\n", i, cnt, i->entry_type);			continue;		}				if (i->entry_length != IRT_IOSAPIC_LENGTH) {			DBG_IRT(KERN_WARNING MODULE_NAME ":find_irqline(0x%p): skipping entry %d  length %d\n", i, cnt, i->entry_length);			continue;		}		if (i->interrupt_type != IRT_VECTORED_INTR) {			DBG_IRT(KERN_WARNING MODULE_NAME ":find_irqline(0x%p): skipping entry  %d interrupt_type %d\n", i, cnt, i->interrupt_type);			continue;		}		if (!COMPARE_IRTE_ADDR(i, isi->isi_hpa))			continue;		if ((i->src_bus_irq_devno & IRT_IRQ_DEVNO_MASK) != irq_devno)			continue;		/*		** Ignore: src_bus_id and rc_seg_id correlate with		**         iosapic_info->isi_hpa on HP platforms.		**         If needed, pass in "PFA" (aka config space addr)		**         instead of slot.		*/		/* Found it! */		return i;	}	printk(KERN_WARNING MODULE_NAME ": 0x%lx : no IRT entry for slot %d, pin %d\n",			isi->isi_hpa, slot, intr_pin);	return NULL;}/*** xlate_pin() supports the skewing of IRQ lines done by subsidiary bridges.** Legacy PDC already does this translation for us and stores it in INTR_LINE.**** PAT PDC needs to basically do what legacy PDC does:** o read PIN** o adjust PIN in case device is "behind" a PPB**     (eg 4-port 100BT and SCSI/LAN "Combo Card")** o convert slot/pin to I/O SAPIC input line.**** HP platforms only support:** o one level of skewing for any number of PPBs** o only support PCI-PCI Bridges.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?