| Nobuhiro Iwamatsu | c86c5a9 | 2007-03-26 14:27:43 +0900 | [diff] [blame] | 1 | /* | 
|  | 2 | * linux/arch/sh/boards/lboxre2/irq.c | 
|  | 3 | * | 
|  | 4 | * Copyright (C) 2007 Nobuhiro Iwamatsu | 
|  | 5 | * | 
|  | 6 | * NTT COMWARE L-BOX RE2 Support. | 
|  | 7 | * | 
|  | 8 | * This file is subject to the terms and conditions of the GNU General Public | 
|  | 9 | * License.  See the file "COPYING" in the main directory of this archive | 
|  | 10 | * for more details. | 
|  | 11 | * | 
|  | 12 | */ | 
|  | 13 | #include <linux/init.h> | 
|  | 14 | #include <linux/interrupt.h> | 
|  | 15 | #include <linux/irq.h> | 
|  | 16 | #include <asm/irq.h> | 
|  | 17 | #include <asm/io.h> | 
| Paul Mundt | 7639a45 | 2008-10-20 13:02:48 +0900 | [diff] [blame] | 18 | #include <mach/lboxre2.h> | 
| Nobuhiro Iwamatsu | c86c5a9 | 2007-03-26 14:27:43 +0900 | [diff] [blame] | 19 |  | 
|  | 20 | /* | 
|  | 21 | * Initialize IRQ setting | 
|  | 22 | */ | 
|  | 23 | void __init init_lboxre2_IRQ(void) | 
|  | 24 | { | 
|  | 25 | make_imask_irq(IRQ_CF1); | 
|  | 26 | make_imask_irq(IRQ_CF0); | 
|  | 27 | make_imask_irq(IRQ_INTD); | 
|  | 28 | make_imask_irq(IRQ_ETH1); | 
|  | 29 | make_imask_irq(IRQ_ETH0); | 
|  | 30 | make_imask_irq(IRQ_INTA); | 
|  | 31 | } |