!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/src/linux-2.4.18-xfs-1.1/include/asm-arm/arch-l7200/   drwxr-xr-x
Free 318.37 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     irq.h (1.9 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * include/asm-arm/arch-l7200/irq.h
 *
 * Copyright (C) 2000 Rob Scott (rscott@mtrob.fdns.ne
 *                    Steve Hill (sjhill@cotw.com)
 *
 * Changelog:
 *   01-02-2000    RS    Created l7200 version, derived from ebsa110 code
 *   04-15-2000 RS      Made dependent on hardware.h
 *   05-05-2000 SJH     Complete rewrite
 */

#include <asm/arch/hardware.h>

/*
 * IRQ base register
 */
#define    IRQ_BASE    (IO_BASE_2 + 0x1000)

/* 
 * Normal IRQ registers
 */
#define IRQ_STATUS    (*(volatile unsigned long *) (IRQ_BASE + 0x000))
#define IRQ_RAWSTATUS    (*(volatile unsigned long *) (IRQ_BASE + 0x004))
#define IRQ_ENABLE    (*(volatile unsigned long *) (IRQ_BASE + 0x008))
#define IRQ_ENABLECLEAR    (*(volatile unsigned long *) (IRQ_BASE + 0x00c))
#define IRQ_SOFT    (*(volatile unsigned long *) (IRQ_BASE + 0x010))
#define IRQ_SOURCESEL    (*(volatile unsigned long *) (IRQ_BASE + 0x018))

/* 
 * Fast IRQ registers
 */
#define FIQ_STATUS    (*(volatile unsigned long *) (IRQ_BASE + 0x100))
#define FIQ_RAWSTATUS    (*(volatile unsigned long *) (IRQ_BASE + 0x104))
#define FIQ_ENABLE    (*(volatile unsigned long *) (IRQ_BASE + 0x108))
#define FIQ_ENABLECLEAR    (*(volatile unsigned long *) (IRQ_BASE + 0x10c))
#define FIQ_SOFT    (*(volatile unsigned long *) (IRQ_BASE + 0x110))
#define FIQ_SOURCESEL    (*(volatile unsigned long *) (IRQ_BASE + 0x118))

#define fixup_irq(x) (x)

static void l7200_mask_irq(unsigned int irq)
{
    IRQ_ENABLECLEAR = 1 << irq;
}

static void l7200_unmask_irq(unsigned int irq)
{
    IRQ_ENABLE = 1 << irq;
}
 
static __inline__ void irq_init_irq(void)
{
    int irq;

    IRQ_ENABLECLEAR = 0xffffffff;    /* clear all interrupt enables */
    FIQ_ENABLECLEAR = 0xffffffff;    /* clear all fast interrupt enables */

    for (irq = 0; irq < NR_IRQS; irq++) {
        irq_desc[irq].valid    = 1;
        irq_desc[irq].probe_ok    = 1;
        irq_desc[irq].mask_ack    = l7200_mask_irq;
        irq_desc[irq].mask    = l7200_mask_irq;
        irq_desc[irq].unmask    = l7200_unmask_irq;
    }

    init_FIQ();
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0344 ]--