📄 iosapic.c
字号:
/* * I/O SAPIC support. * * Copyright (C) 1999 Intel Corp. * Copyright (C) 1999 Asit Mallick <asit.k.mallick@intel.com> * Copyright (C) 1999-2000 Hewlett-Packard Co. * Copyright (C) 1999-2000 David Mosberger-Tang <davidm@hpl.hp.com> * Copyright (C) 1999 VA Linux Systems * Copyright (C) 1999,2000 Walt Drummond <drummond@valinux.com> * * 00/04/19 D. Mosberger Rewritten to mirror more closely the x86 I/O APIC code. * In particular, we now have separate handlers for edge * and level triggered interrupts. * 00/10/27 Asit Mallick, Goutham Rao <goutham.rao@intel.com> IRQ vector allocation * PCI to vector mapping, shared PCI interrupts. * 00/10/27 D. Mosberger Document things a bit more to make them more understandable. * Clean up much of the old IOSAPIC cruft. *//* * Here is what the interrupt logic between a PCI device and the CPU looks like: * * (1) A PCI device raises one of the four interrupt pins (INTA, INTB, INTC, INTD). The * device is uniquely identified by its bus--, and slot-number (the function * number does not matter here because all functions share the same interrupt * lines). * * (2) The motherboard routes the interrupt line to a pin on a IOSAPIC controller. * Multiple interrupt lines may have to share the same IOSAPIC pin (if they're level * triggered and use the same polarity). Each interrupt line has a unique IOSAPIC * irq number which can be calculated as the sum of the controller's base irq number * and the IOSAPIC pin number to which the line connects. * * (3) The IOSAPIC uses an internal table to map the IOSAPIC pin into the IA-64 interrupt * vector. This interrupt vector is then sent to the CPU. * * In other words, there are two levels of indirections involved: * * pci pin -> iosapic irq -> IA-64 vector * * Note: outside this module, IA-64 vectors are called "irqs". This is because that's * the traditional name Linux uses for interrupt vectors. */#include <linux/config.h>#include <linux/kernel.h>#include <linux/init.h>#include <linux/pci.h>#include <linux/smp.h>#include <linux/smp_lock.h>#include <linux/string.h>#include <linux/irq.h>#include <asm/acpi-ext.h>#include <asm/acpikcfg.h>#include <asm/delay.h>#include <asm/hw_irq.h>#include <asm/io.h>#include <asm/iosapic.h>#include <asm/machvec.h>#include <asm/processor.h>#include <asm/ptrace.h>#include <asm/system.h>#undef DEBUG_IRQ_ROUTINGstatic spinlock_t iosapic_lock = SPIN_LOCK_UNLOCKED;/* PCI pin to IOSAPIC irq routing information. This info typically comes from ACPI. */static struct { int num_routes; struct pci_vector_struct *route;} pci_irq;/* This tables maps IA-64 vectors to the IOSAPIC pin that generates this vector. */static struct iosapic_irq { char *addr; /* base address of IOSAPIC */ unsigned char base_irq; /* first irq assigned to this IOSAPIC */ char pin; /* IOSAPIC pin (-1 => not an IOSAPIC irq) */ unsigned char dmode : 3; /* delivery mode (see iosapic.h) */ unsigned char polarity : 1; /* interrupt polarity (see iosapic.h) */ unsigned char trigger : 1; /* trigger mode (see iosapic.h) */} iosapic_irq[IA64_NUM_VECTORS];/* * Translate IOSAPIC irq number to the corresponding IA-64 interrupt vector. If no * entry exists, return -1. */static intiosapic_irq_to_vector (int irq){ int vector; for (vector = 0; vector < IA64_NUM_VECTORS; ++vector) if (iosapic_irq[vector].base_irq + iosapic_irq[vector].pin == irq) return vector; return -1;}/* * Map PCI pin to the corresponding IA-64 interrupt vector. If no such mapping exists, * return -1. */static intpci_pin_to_vector (int bus, int slot, int pci_pin){ struct pci_vector_struct *r; for (r = pci_irq.route; r < pci_irq.route + pci_irq.num_routes; ++r) if (r->bus == bus && (r->pci_id >> 16) == slot && r->pin == pci_pin) return iosapic_irq_to_vector(r->irq); return -1;}static voidset_rte (unsigned int vector, unsigned long dest){ unsigned long pol, trigger, dmode; u32 low32, high32; char *addr; int pin; pin = iosapic_irq[vector].pin; if (pin < 0) return; /* not an IOSAPIC interrupt */ addr = iosapic_irq[vector].addr; pol = iosapic_irq[vector].polarity; trigger = iosapic_irq[vector].trigger; dmode = iosapic_irq[vector].dmode; low32 = ((pol << IOSAPIC_POLARITY_SHIFT) | (trigger << IOSAPIC_TRIGGER_SHIFT) | (dmode << IOSAPIC_DELIVERY_SHIFT) | vector); /* dest contains both id and eid */ high32 = (dest << IOSAPIC_DEST_SHIFT); writel(IOSAPIC_RTE_HIGH(pin), addr + IOSAPIC_REG_SELECT); writel(high32, addr + IOSAPIC_WINDOW); writel(IOSAPIC_RTE_LOW(pin), addr + IOSAPIC_REG_SELECT); writel(low32, addr + IOSAPIC_WINDOW);}static voidnop (unsigned int vector){ /* do nothing... */}static voidmask_irq (unsigned int irq){ unsigned long flags; char *addr; u32 low32; int pin; ia64_vector vec = irq_to_vector(irq); addr = iosapic_irq[vec].addr; pin = iosapic_irq[vec].pin; if (pin < 0) return; /* not an IOSAPIC interrupt! */ spin_lock_irqsave(&iosapic_lock, flags); { writel(IOSAPIC_RTE_LOW(pin), addr + IOSAPIC_REG_SELECT); low32 = readl(addr + IOSAPIC_WINDOW); low32 |= (1 << IOSAPIC_MASK_SHIFT); /* set only the mask bit */ writel(low32, addr + IOSAPIC_WINDOW); } spin_unlock_irqrestore(&iosapic_lock, flags);}static voidunmask_irq (unsigned int irq){ unsigned long flags; char *addr; u32 low32; int pin; ia64_vector vec = irq_to_vector(irq); addr = iosapic_irq[vec].addr; pin = iosapic_irq[vec].pin; if (pin < 0) return; /* not an IOSAPIC interrupt! */ spin_lock_irqsave(&iosapic_lock, flags); { writel(IOSAPIC_RTE_LOW(pin), addr + IOSAPIC_REG_SELECT); low32 = readl(addr + IOSAPIC_WINDOW); low32 &= ~(1 << IOSAPIC_MASK_SHIFT); /* clear only the mask bit */ writel(low32, addr + IOSAPIC_WINDOW); } spin_unlock_irqrestore(&iosapic_lock, flags);}static voidiosapic_set_affinity (unsigned int irq, unsigned long mask){#ifdef CONFIG_SMP unsigned long flags; u32 high32, low32; int dest, pin; char *addr; mask &= (1UL << smp_num_cpus) - 1; if (!mask || irq >= IA64_NUM_VECTORS) return; dest = cpu_physical_id(ffz(~mask)); pin = iosapic_irq[irq].pin; addr = iosapic_irq[irq].addr; if (pin < 0) return; /* not an IOSAPIC interrupt */ /* dest contains both id and eid */ high32 = dest << IOSAPIC_DEST_SHIFT; spin_lock_irqsave(&iosapic_lock, flags); { /* get current delivery mode by reading the low32 */ writel(IOSAPIC_RTE_LOW(pin), addr + IOSAPIC_REG_SELECT); low32 = readl(addr + IOSAPIC_WINDOW); /* change delivery mode to fixed */ low32 &= ~(7 << IOSAPIC_DELIVERY_SHIFT); low32 |= (IOSAPIC_FIXED << IOSAPIC_DELIVERY_SHIFT); writel(IOSAPIC_RTE_HIGH(pin), addr + IOSAPIC_REG_SELECT); writel(high32, addr + IOSAPIC_WINDOW); writel(IOSAPIC_RTE_LOW(pin), addr + IOSAPIC_REG_SELECT); writel(low32, addr + IOSAPIC_WINDOW); } spin_unlock_irqrestore(&iosapic_lock, flags);#endif}/* * Handlers for level-triggered interrupts. */static unsigned intiosapic_startup_level_irq (unsigned int irq){ unmask_irq(irq); return 0;}static voidiosapic_end_level_irq (unsigned int irq){ ia64_vector vec = irq_to_vector(irq); writel(vec, iosapic_irq[vec].addr + IOSAPIC_EOI);}#define iosapic_shutdown_level_irq mask_irq#define iosapic_enable_level_irq unmask_irq#define iosapic_disable_level_irq mask_irq#define iosapic_ack_level_irq nopstruct hw_interrupt_type irq_type_iosapic_level = { typename: "IO-SAPIC-level", startup: iosapic_startup_level_irq, shutdown: iosapic_shutdown_level_irq, enable: iosapic_enable_level_irq, disable: iosapic_disable_level_irq, ack: iosapic_ack_level_irq, end: iosapic_end_level_irq, set_affinity: iosapic_set_affinity};/* * Handlers for edge-triggered interrupts. */static unsigned intiosapic_startup_edge_irq (unsigned int irq){ unmask_irq(irq); /* * IOSAPIC simply drops interrupts pended while the * corresponding pin was masked, so we can't know if an * interrupt is pending already. Let's hope not... */ return 0;}static voidiosapic_ack_edge_irq (unsigned int irq){ irq_desc_t *idesc = irq_desc(irq); /* * Once we have recorded IRQ_PENDING already, we can mask the * interrupt for real. This prevents IRQ storms from unhandled * devices. */ if ((idesc->status & (IRQ_PENDING|IRQ_DISABLED)) == (IRQ_PENDING|IRQ_DISABLED)) mask_irq(irq);}#define iosapic_enable_edge_irq unmask_irq#define iosapic_disable_edge_irq nop#define iosapic_end_edge_irq nopstruct hw_interrupt_type irq_type_iosapic_edge = { typename: "IO-SAPIC-edge", startup: iosapic_startup_edge_irq, shutdown: iosapic_disable_edge_irq, enable: iosapic_enable_edge_irq, disable: iosapic_disable_edge_irq, ack: iosapic_ack_edge_irq, end: iosapic_end_edge_irq, set_affinity: iosapic_set_affinity};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -