Path: blob/master/arch/mn10300/unit-asb2364/include/unit/irq.h
15159 views
/* ASB2364 FPGA irq numbers1*2* Copyright (C) 2010 Red Hat, Inc. All Rights Reserved.3* Written by David Howells ([email protected])4*5* This program is free software; you can redistribute it and/or6* modify it under the terms of the GNU General Public Licence7* as published by the Free Software Foundation; either version8* 2 of the Licence, or (at your option) any later version.9*/10#ifndef _UNIT_IRQ_H11#define _UNIT_IRQ_H1213#ifndef __ASSEMBLY__1415#ifdef CONFIG_SMP16#define NR_CPU_IRQS GxICR_NUM_EXT_IRQS17#else18#define NR_CPU_IRQS GxICR_NUM_IRQS19#endif2021enum {22FPGA_LAN_IRQ = NR_CPU_IRQS,23FPGA_UART_IRQ,24FPGA_I2C_IRQ,25FPGA_USB_IRQ,26FPGA_RESERVED_IRQ,27FPGA_FPGA_IRQ,28NR_IRQS29};3031extern void __init irq_fpga_init(void);3233#endif /* !__ASSEMBLY__ */34#endif /* _UNIT_IRQ_H */353637