/* * arch/ppc/kernel/mv64360_pic.c * * Interrupt controller support for Marvell's MV64360. * * Author: Rabeeh Khoury * Based on MV64360 PIC written by * Chris Zankel * Mark A. Greer * * Copyright 2004 MontaVista Software, Inc. * * 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. */ /* * This file contains the specific functions to support the MV64360 * interrupt controller. * * The MV64360 has two main interrupt registers (high and low) that * summarizes the interrupts generated by the units of the MV64360. * Each bit is assigned to an interrupt number, where the low register * are assigned from IRQ0 to IRQ31 and the high cause register * from IRQ32 to IRQ63 * The GPP (General Purpose Pins) interrupts are assigned from IRQ64 (GPP0) * to IRQ95 (GPP31). * get_irq() returns the lowest interrupt number that is currently asserted. * * Note: * - This driver does not initialize the GPP when used as an interrupt * input. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef CONFIG_IRQ_ALL_CPUS #error "The mv64360 does not support yet distribution of IRQs on all CPUs" #endif /* ========================== forward declaration ========================== */ static void mv64360_unmask_irq(unsigned int); static void mv64360_mask_irq(unsigned int); static irqreturn_t mv64360_cpu_error_int_handler(int, void *, struct pt_regs *); static irqreturn_t mv64360_sram_error_int_handler(int, void *, struct pt_regs *); static irqreturn_t mv64360_pci_error_int_handler(int, void *, struct pt_regs *); /* ========================== local declarations =========================== */ struct hw_interrupt_type mv64360_pic = { .typename = " MV64360_PIC ", /* typename */ .enable = mv64360_unmask_irq, /* enable */ .disable = mv64360_mask_irq, /* disable */ .ack = mv64360_mask_irq, /* ack */ }; #define CPU_INTR_STR "MV64360 CPU interface error" #define SRAM_INTR_STR "MV64360 internal sram error" #define PCI0_INTR_STR "MV64360 PCI 0 error" #define PCI1_INTR_STR "MV64360 PCI 1 error" static mv64x60_handle_t base_bh; u32 mv64360_irq_base = 0; /* MV64360 handles the next 96 IRQs from here */ /* mv64360_init_irq() * * This function initializes the interrupt controller. It assigns * all interrupts from IRQ0 to IRQ95 to the mv64360 interrupt controller. * * Input Variable(s): * None. * * Outpu. Variable(s): * None. * * Returns: * void * * Note: * We register all GPP inputs as interrupt source, but disable them. */ __init void mv64360_init_irq(void) { struct ocp_def *def; int i; if (ppc_md.progress) ppc_md.progress("mv64360_init_irq: enter", 0x0); if ( ppc_md.progress ) ppc_md.progress("mv64360_init_irq: enter", 0x0); if ((def = ocp_get_one_device(OCP_VENDOR_MARVELL, OCP_FUNC_HB, OCP_ANY_INDEX)) == NULL) { /* XXXX SCREAM */ return; } base_bh.v_base = (unsigned long)ioremap(def->paddr, 0x1000); ppc_cached_irq_mask[0] = 0; ppc_cached_irq_mask[1] = 0x0f000000; /* Enable GPP intrs */ ppc_cached_irq_mask[2] = 0; /* disable all interrupts and clear current interrupts */ mv64x60_write(&base_bh, MV64x60_GPP_INTR_CAUSE, 0); mv64x60_write(&base_bh, MV64x60_GPP_INTR_MASK, ppc_cached_irq_mask[2]); mv64x60_write(&base_bh, MV64360_IC_CPU0_INTR_MASK_LO, ppc_cached_irq_mask[0]); mv64x60_write(&base_bh, MV64360_IC_CPU0_INTR_MASK_HI, ppc_cached_irq_mask[1]); /* use the mv64360 for all (possible) interrupt sources */ for (i = mv64360_irq_base; i < (mv64360_irq_base + 96); i++) { /* All interrupts are level interrupts */ irq_desc[i].status |= IRQ_LEVEL; irq_desc[i].handler = &mv64360_pic; } /* Register CPU interface error interrupt handler */ request_irq(MV64x60_IRQ_CPU_ERR, mv64360_cpu_error_int_handler, SA_INTERRUPT, CPU_INTR_STR, 0); mv64x60_write(&base_bh, MV64x60_CPU_ERR_MASK, 0x000000ff); /* Register internal SRAM error interrupt handler */ request_irq(MV64360_IRQ_SRAM_PAR_ERR, mv64360_sram_error_int_handler, SA_INTERRUPT, SRAM_INTR_STR, 0); /* Register PCI 0 error interrupt handler */ request_irq(MV64360_IRQ_PCI0, mv64360_pci_error_int_handler, SA_INTERRUPT, PCI0_INTR_STR, (void *) 0); mv64x60_write(&base_bh, MV64x60_PCI0_ERR_MASK, 0x00a50c25); /* Register PCI 1 error interrupt handler */ request_irq(MV64360_IRQ_PCI1, mv64360_pci_error_int_handler, SA_INTERRUPT, PCI1_INTR_STR, (void *) 1); mv64x60_write(&base_bh, MV64x60_PCI1_ERR_MASK, 0x00a50c25); if (ppc_md.progress) ppc_md.progress("mv64360_init_irq: exit", 0x0); } /* mv64360_get_irq() * * This function returns the lowest interrupt number of all interrupts that * are currently asserted. * * Input Variable(s): * struct pt_regs* not used * * Output Variable(s): * None. * * Returns: * int or -2 (bogus interrupt) * */ int mv64360_get_irq(struct pt_regs *regs) { int irq; int irq_gpp; #ifdef CONFIG_SMP #define BIT28 (1<<28) /* * Second CPU gets only doorbell (message) interrupts. * The doorbell interrupt is BIT28 in the main interrupt low cause reg. */ int cpu_nr = smp_processor_id(); if (cpu_nr == 1) { irq = mv64x60_read(&base_bh, MV64360_IC_MAIN_CAUSE_LO); if (!(irq & BIT28)) return -1; return 28; } #endif irq = mv64x60_read(&base_bh, MV64360_IC_MAIN_CAUSE_LO); irq = __ilog2((irq & 0x3dfffffe) & ppc_cached_irq_mask[0]); if (irq == -1) { irq = mv64x60_read(&base_bh, MV64360_IC_MAIN_CAUSE_HI); irq = __ilog2((irq & 0x1f0003f7) & ppc_cached_irq_mask[1]); if (irq == -1) { irq = -2; /* bogus interrupt, should never happen */ } else { if ((irq >= 24) && (irq < 28)) { irq_gpp = mv64x60_read(&base_bh, MV64x60_GPP_INTR_CAUSE); irq_gpp = __ilog2(irq_gpp & ppc_cached_irq_mask[2]); if (irq_gpp == -1) { irq = -2; } else { irq = irq_gpp + 64; mv64x60_write(&base_bh, MV64x60_GPP_INTR_CAUSE, ~(1 << (irq - 64))); } } else { irq += 32; } } } if (irq < 0) { return (irq); } else { return (mv64360_irq_base + irq); } } /* mv64360_unmask_irq() * * This function enables an interrupt. * * Input Variable(s): * unsigned int interrupt number (IRQ0...IRQ95). * * Output Variable(s): * None. * * Returns: * void */ static void mv64360_unmask_irq(unsigned int irq) { #ifdef CONFIG_SMP /* second CPU gets only doorbell interrupts */ if ((irq - mv64360_irq_base) == 28) { mv64x60_set_bits(&base_bh, MV64360_IC_CPU1_INTR_MASK_LO, BIT28); return; } #endif irq -= mv64360_irq_base; if (irq > 31) { if (irq > 63) { /* unmask GPP irq */ mv64x60_write(&base_bh, MV64x60_GPP_INTR_MASK, ppc_cached_irq_mask[2] |= (1 << (irq - 64))); } else { /* mask high interrupt register */ mv64x60_write(&base_bh, MV64360_IC_CPU0_INTR_MASK_HI, ppc_cached_irq_mask[1] |= (1 << (irq - 32))); } } else { /* mask low interrupt register */ mv64x60_write(&base_bh, MV64360_IC_CPU0_INTR_MASK_LO, ppc_cached_irq_mask[0] |= (1 << irq)); } } /* mv64360_mask_irq() * * This function disables the requested interrupt. * * Input Variable(s): * unsigned int interrupt number (IRQ0...IRQ95). * * Output Variable(s): * None. * * Returns: * void */ static void mv64360_mask_irq(unsigned int irq) { #ifdef CONFIG_SMP if ((irq - mv64360_irq_base) == 28) { mv64x60_clr_bits(&base_bh, MV64360_IC_CPU1_INTR_MASK_LO, BIT28); return; } #endif irq -= mv64360_irq_base; if (irq > 31) { if (irq > 63) { /* mask GPP irq */ mv64x60_write(&base_bh, MV64x60_GPP_INTR_MASK, ppc_cached_irq_mask[2] &= ~(1 << (irq - 64))); } else { /* mask high interrupt register */ mv64x60_write(&base_bh, MV64360_IC_CPU0_INTR_MASK_HI, ppc_cached_irq_mask[1] &= ~(1 << (irq - 32))); } } else { /* mask low interrupt register */ mv64x60_write(&base_bh, MV64360_IC_CPU0_INTR_MASK_LO, ppc_cached_irq_mask[0] &= ~(1 << irq)); } } static irqreturn_t mv64360_cpu_error_int_handler(int irq, void *dev_id, struct pt_regs *regs) { u32 val; val = mv64x60_read(&base_bh, MV64x60_CPU_ERR_CAUSE); printk(KERN_ERR "mv64360_cpu_error_int_handler: Error on CPU interface - Cause regiser 0x%08x\n", val); printk(KERN_ERR "\tCPU error register dump:\n"); printk(KERN_ERR "\tAddress low 0x%08x\n", mv64x60_read(&base_bh, MV64x60_CPU_ERR_ADDR_LO)); printk(KERN_ERR "\tAddress high 0x%08x\n", mv64x60_read(&base_bh, MV64x60_CPU_ERR_ADDR_HI)); printk(KERN_ERR "\tData low 0x%08x\n", mv64x60_read(&base_bh, MV64x60_CPU_ERR_DATA_LO)); printk(KERN_ERR "\tData high 0x%08x\n", mv64x60_read(&base_bh, MV64x60_CPU_ERR_DATA_HI)); printk(KERN_ERR "\tParity 0x%08x\n", mv64x60_read(&base_bh, MV64x60_CPU_ERR_PARITY)); mv64x60_write(&base_bh, MV64x60_CPU_ERR_CAUSE, 0); return IRQ_HANDLED; } static irqreturn_t mv64360_sram_error_int_handler(int irq, void *dev_id, struct pt_regs *regs) { printk(KERN_ERR "mv64360_sram_error_int_handler: Error in internal SRAM - Cause register 0x%08x\n", mv64x60_read(&base_bh, MV64360_SRAM_ERR_CAUSE)); printk(KERN_ERR "\tSRAM error register dump:\n"); printk(KERN_ERR "\tAddress Low 0x%08x\n", mv64x60_read(&base_bh, MV64360_SRAM_ERR_ADDR_LO)); printk(KERN_ERR "\tAddress High 0x%08x\n", mv64x60_read(&base_bh, MV64360_SRAM_ERR_ADDR_HI)); printk(KERN_ERR "\tData Low 0x%08x\n", mv64x60_read(&base_bh, MV64360_SRAM_ERR_DATA_LO)); printk(KERN_ERR "\tData High 0x%08x\n", mv64x60_read(&base_bh, MV64360_SRAM_ERR_DATA_HI)); printk(KERN_ERR "\tParity 0x%08x\n", mv64x60_read(&base_bh, MV64360_SRAM_ERR_PARITY)); mv64x60_write(&base_bh, MV64360_SRAM_ERR_CAUSE, 0); return IRQ_HANDLED; } static irqreturn_t mv64360_pci_error_int_handler(int irq, void *dev_id, struct pt_regs *regs) { u32 val; unsigned int pci_bus = (unsigned int) dev_id; if (pci_bus == 0) { /* Error on PCI 0 */ val = mv64x60_read(&base_bh, MV64x60_PCI0_ERR_CAUSE); printk(KERN_ERR "mv64360_pci_error_int_handler: Error in PCI %d Interface\n", pci_bus); printk(KERN_ERR "\tPCI %d error register dump:\n", pci_bus); printk(KERN_ERR "\tCause register 0x%08x\n", val); printk(KERN_ERR "\tAddress Low 0x%08x\n", mv64x60_read(&base_bh, MV64x60_PCI0_ERR_ADDR_LO)); printk(KERN_ERR "\tAddress High 0x%08x\n", mv64x60_read(&base_bh, MV64x60_PCI0_ERR_ADDR_HI)); printk(KERN_ERR "\tAttribute 0x%08x\n", mv64x60_read(&base_bh, MV64x60_PCI0_ERR_DATA_LO)); printk(KERN_ERR "\tCommand 0x%08x\n", mv64x60_read(&base_bh, MV64x60_PCI0_ERR_CMD)); mv64x60_write(&base_bh, MV64x60_PCI0_ERR_CAUSE, ~val); } if (pci_bus == 1) { /* Error on PCI 1 */ val = mv64x60_read(&base_bh, MV64x60_PCI1_ERR_CAUSE); printk(KERN_ERR "mv64360_pci_error_int_handler: Error in PCI %d Interface\n", pci_bus); printk(KERN_ERR "\tPCI %d error register dump:\n", pci_bus); printk(KERN_ERR "\tCause register 0x%08x\n", val); printk(KERN_ERR "\tAddress Low 0x%08x\n", mv64x60_read(&base_bh, MV64x60_PCI1_ERR_ADDR_LO)); printk(KERN_ERR "\tAddress High 0x%08x\n", mv64x60_read(&base_bh, MV64x60_PCI1_ERR_ADDR_HI)); printk(KERN_ERR "\tAttribute 0x%08x\n", mv64x60_read(&base_bh, MV64x60_PCI1_ERR_DATA_LO)); printk(KERN_ERR "\tCommand 0x%08x\n", mv64x60_read(&base_bh, MV64x60_PCI1_ERR_CMD)); mv64x60_write(&base_bh, MV64x60_PCI1_ERR_CAUSE, ~val); } return IRQ_HANDLED; }