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