irq.c
来自「是关于linux2.5.1的完全源码」· C语言 代码 · 共 65 行
C
65 行
/* * linux/arch/arm/mach-xscale/irq.c * * Author: Deepak Saxena * Copyright: (C) 2001 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 version 2 as * published by the Free Software Foundation. * * Based on IOP80310 code. Currently there's nothing more than the * 80200 on chip interrupts. That'll change once the hardware adds * support for PCI though. */#include <linux/init.h>#include <linux/sched.h>#include <linux/interrupt.h>#include <asm/mach/irq.h>#include <asm/irq.h>#include <asm/hardware.h>#include <asm/mach-types.h>static void xs80200_irq_mask (unsigned int irq){ long INTCTL; asm ("mrc p13, 0, %0, c0, c0, 0" : "=r" (INTCTL)); switch (irq) { case IRQ_XS80200_BCU: INTCTL &= ~(1<<3); break; case IRQ_XS80200_PMU: INTCTL &= ~(1<<2); break; case IRQ_XS80200_EXTIRQ: INTCTL &= ~(1<<1); break; case IRQ_XS80200_EXTFIQ: INTCTL &= ~(1<<0); break; } asm ("mcr p13, 0, %0, c0, c0, 0" : : "r" (INTCTL));}static void xs80200_irq_unmask (unsigned int irq){ long INTCTL; asm ("mrc p13, 0, %0, c0, c0, 0" : "=r" (INTCTL)); switch (irq) { case IRQ_XS80200_BCU: INTCTL |= (1<<3); break; case IRQ_XS80200_PMU: INTCTL |= (1<<2); break; case IRQ_XS80200_EXTIRQ: INTCTL |= (1<<1); break; case IRQ_XS80200_EXTFIQ: INTCTL |= (1<<0); break; } asm ("mcr p13, 0, %0, c0, c0, 0" : : "r" (INTCTL));}void __init adifcc_init_irq(void){ int i; for (i = 0; i < NR_XS80200_IRQS; i++) { irq_desc[i].valid = 1; irq_desc[i].probe_ok = 0; irq_desc[i].mask_ack = xs80200_irq_mask; irq_desc[i].mask = xs80200_irq_mask; irq_desc[i].unmask = xs80200_irq_unmask; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?