Path: blob/master/arch/arm/mach-gemini/include/mach/irqs.h
10820 views
/*1* Copyright (C) 2001-2006 Storlink, Corp.2* Copyright (C) 2008-2009 Paulius Zaleckas <[email protected]>3*4* This program is free software; you can redistribute it and/or modify5* it under the terms of the GNU General Public License as published by6* the Free Software Foundation; either version 2 of the License, or7* (at your option) any later version.8*/910#ifndef __MACH_IRQS_H__11#define __MACH_IRQS_H__1213#define IRQ_SERIRQ1 3114#define IRQ_SERIRQ0 3015#define IRQ_PCID 2916#define IRQ_PCIC 2817#define IRQ_PCIB 2718#define IRQ_PWR 2619#define IRQ_CIR 2520#define IRQ_GPIO(x) (22 + (x))21#define IRQ_SSP 2122#define IRQ_LPC 2023#define IRQ_LCD 1924#define IRQ_UART 1825#define IRQ_RTC 1726#define IRQ_TIMER3 1627#define IRQ_TIMER2 1528#define IRQ_TIMER1 1429#define IRQ_FLASH 1230#define IRQ_USB1 1131#define IRQ_USB0 1032#define IRQ_DMA 933#define IRQ_PCI 834#define IRQ_IPSEC 735#define IRQ_RAID 636#define IRQ_IDE1 537#define IRQ_IDE0 438#define IRQ_WATCHDOG 339#define IRQ_GMAC1 240#define IRQ_GMAC0 141#define IRQ_IPI 04243#define NORMAL_IRQ_NUM 324445#define GPIO_IRQ_BASE NORMAL_IRQ_NUM46#define GPIO_IRQ_NUM (3 * 32)4748#define ARCH_TIMER_IRQ IRQ_TIMER24950#define NR_IRQS (NORMAL_IRQ_NUM + GPIO_IRQ_NUM)5152#endif /* __MACH_IRQS_H__ */535455