|
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 | : | 20.5 GB of 70.42 GB (29.11%) |
|
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/
mips/
include/
asm/
mach-wrppmc/
- drwxr-xr-x
|
Viewing file: mach-gt64120.h (2.4 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* * This is a direct copy of the ev96100.h file, with a global * search and replace. The numbers are the same. * * The reason I'm duplicating this is so that the 64120/96100 * defines won't be confusing in the source code. */ #ifndef __ASM_MIPS_GT64120_H #define __ASM_MIPS_GT64120_H
/* * This is the CPU physical memory map of PPMC Board: * * 0x00000000-0x03FFFFFF - 64MB SDRAM (SCS[0]#) * 0x1C000000-0x1C000000 - LED (CS0) * 0x1C800000-0x1C800007 - UART 16550 port (CS1) * 0x1F000000-0x1F000000 - MailBox (CS3) * 0x1FC00000-0x20000000 - 4MB Flash (BOOT CS) */
#define WRPPMC_SDRAM_SCS0_BASE 0x00000000 #define WRPPMC_SDRAM_SCS0_SIZE 0x04000000
#define WRPPMC_UART16550_BASE 0x1C800000 #define WRPPMC_UART16550_CLOCK 3686400 /* 3.68MHZ */
#define WRPPMC_LED_BASE 0x1C000000 #define WRPPMC_MBOX_BASE 0x1F000000
#define WRPPMC_BOOTROM_BASE 0x1FC00000 #define WRPPMC_BOOTROM_SIZE 0x00400000 /* 4M Flash */
#define WRPPMC_MIPS_TIMER_IRQ 7 /* MIPS compare/count timer interrupt */ #define WRPPMC_UART16550_IRQ 6 #define WRPPMC_PCI_INTA_IRQ 3
/* * PCI Bus I/O and Memory resources allocation * * NOTE: We only have PCI_0 hose interface */ #define GT_PCI_MEM_BASE 0x13000000UL #define GT_PCI_MEM_SIZE 0x02000000UL #define GT_PCI_IO_BASE 0x11000000UL #define GT_PCI_IO_SIZE 0x02000000UL
/* * PCI interrupts will come in on either the INTA or INTD interrupt lines, * which are mapped to the #2 and #5 interrupt pins of the MIPS. On our * boards, they all either come in on IntD or they all come in on IntA, they * aren't mixed. There can be numerous PCI interrupts, so we keep a list of the * "requested" interrupt numbers and go through the list whenever we get an * IntA/D. * * Interrupts < 8 are directly wired to the processor; PCI INTA is 8 and * INTD is 11. */ #define GT_TIMER 4 #define GT_INTA 2 #define GT_INTD 5
#ifndef __ASSEMBLY__
/* * GT64120 internal register space base address */ extern unsigned long gt64120_base;
#define GT64120_BASE (gt64120_base)
/* define WRPPMC_EARLY_DEBUG to enable early output something to UART */ #undef WRPPMC_EARLY_DEBUG
#ifdef WRPPMC_EARLY_DEBUG extern void wrppmc_led_on(int mask); extern void wrppmc_led_off(int mask); extern void wrppmc_early_printk(const char *fmt, ...); #else #define wrppmc_early_printk(fmt, ...) do {} while (0) #endif /* WRPPMC_EARLY_DEBUG */
#endif /* __ASSEMBLY__ */ #endif /* __ASM_MIPS_GT64120_H */
|