ShellBanner
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.89 GB of 70.42 GB (29.66%)
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,

/ usr/ src/ linux-headers-3.0.0-14/ arch/ arm/ mach-ks8695/ include/ mach/ - drwxr-xr-x

Directory:
Viewing file:     regs-mem.h (3.78 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * arch/arm/mach-ks8695/include/mach/regs-mem.h
 *
 * Copyright (C) 2006 Andrew Victor
 *
 * KS8695 - Memory Controller registers and bit definitions
 *
 * This file is licensed under  the terms of the GNU General Public
 * License version 2. This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#ifndef KS8695_MEM_H
#define KS8695_MEM_H

#define KS8695_MEM_OFFSET    (0xF0000 + 0x4000)
#define KS8695_MEM_VA        (KS8695_IO_VA + KS8695_MEM_OFFSET)
#define KS8695_MEM_PA        (KS8695_IO_PA + KS8695_MEM_OFFSET)


/*
 * Memory Controller Registers
 */
#define KS8695_EXTACON0        (0x00)        /* External I/O 0 Access Control */
#define KS8695_EXTACON1        (0x04)        /* External I/O 1 Access Control */
#define KS8695_EXTACON2        (0x08)        /* External I/O 2 Access Control */
#define KS8695_ROMCON0        (0x10)        /* ROM/SRAM/Flash 1 Control Register */
#define KS8695_ROMCON1        (0x14)        /* ROM/SRAM/Flash 2 Control Register */
#define KS8695_ERGCON        (0x20)        /* External I/O and ROM/SRAM/Flash General Register */
#define KS8695_SDCON0        (0x30)        /* SDRAM Control Register 0 */
#define KS8695_SDCON1        (0x34)        /* SDRAM Control Register 1 */
#define KS8695_SDGCON        (0x38)        /* SDRAM General Control */
#define KS8695_SDBCON        (0x3c)        /* SDRAM Buffer Control */
#define KS8695_REFTIM        (0x40)        /* SDRAM Refresh Timer */


/* External I/O Access Control Registers */
#define EXTACON_EBNPTR        (0x3ff << 22)        /* Last Address Pointer */
#define EXTACON_EBBPTR        (0x3ff << 12)        /* Base Pointer */
#define EXTACON_EBTACT        (7     <<  9)        /* Write Enable/Output Enable Active Time */
#define EXTACON_EBTCOH        (7     <<  6)        /* Chip Select Hold Time */
#define EXTACON_EBTACS        (7     <<  3)        /* Address Setup Time before ECSN */
#define EXTACON_EBTCOS        (7     <<  0)        /* Chip Select Time before OEN */

/* ROM/SRAM/Flash Control Register */
#define ROMCON_RBNPTR        (0x3ff << 22)        /* Next Pointer */
#define ROMCON_RBBPTR        (0x3ff << 12)        /* Base Pointer */
#define ROMCON_RBTACC        (7     <<  4)        /* Access Cycle Time */
#define ROMCON_RBTPA        (3     <<  2)        /* Page Address Access Time */
#define ROMCON_PMC        (3     <<  0)        /* Page Mode Configuration */
#define        PMC_NORMAL        (0 << 0)
#define        PMC_4WORD        (1 << 0)
#define        PMC_8WORD        (2 << 0)
#define        PMC_16WORD        (3 << 0)

/* External I/O and ROM/SRAM/Flash General Register */
#define ERGCON_TMULT        (3 << 28)        /* Time Multiplier */
#define ERGCON_DSX2        (3 << 20)        /* Data Width (External I/O Bank 2) */
#define ERGCON_DSX1        (3 << 18)        /* Data Width (External I/O Bank 1) */
#define ERGCON_DSX0        (3 << 16)        /* Data Width (External I/O Bank 0) */
#define ERGCON_DSR1        (3 <<  2)        /* Data Width (ROM/SRAM/Flash Bank 1) */
#define ERGCON_DSR0        (3 <<  0)        /* Data Width (ROM/SRAM/Flash Bank 0) */

/* SDRAM Control Register */
#define SDCON_DBNPTR        (0x3ff << 22)        /* Last Address Pointer */
#define SDCON_DBBPTR        (0x3ff << 12)        /* Base Pointer */
#define SDCON_DBCAB        (3     <<  8)        /* Column Address Bits */
#define SDCON_DBBNUM        (1     <<  3)        /* Number of Banks */
#define SDCON_DBDBW        (3     <<  1)        /* Data Bus Width */

/* SDRAM General Control Register */
#define SDGCON_SDTRC        (3 << 2)        /* RAS to CAS latency */
#define SDGCON_SDCAS        (3 << 0)        /* CAS latency */

/* SDRAM Buffer Control Register */
#define SDBCON_SDESTA        (1 << 31)        /* SDRAM Engine Status */
#define SDBCON_RBUFBDIS        (1 << 24)        /* Read Buffer Burst Enable */
#define SDBCON_WFIFOEN        (1 << 23)        /* Write FIFO Enable */
#define SDBCON_RBUFEN        (1 << 22)        /* Read Buffer Enable */
#define SDBCON_FLUSHWFIFO    (1 << 21)        /* Flush Write FIFO */
#define SDBCON_RBUFINV        (1 << 20)        /* Read Buffer Invalidate */
#define SDBCON_SDINI        (3 << 16)        /* SDRAM Initialization Control */
#define SDBCON_SDMODE        (0x3fff << 0)        /* SDRAM Mode Register Value Program */

/* SDRAM Refresh Timer Register */
#define REFTIM_REFTIM        (0xffff << 0)        /* Refresh Timer Value */


#endif
Command:
Quick Commands:
Upload:
[Read-Only] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [Read-Only]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.5718 seconds