!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/drivers/video/riva/   drwxr-xr-x
Free 318.29 GB of 458.09 GB (69.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     rivafb.h (2.08 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef __RIVAFB_H
#define __RIVAFB_H

#include <linux/config.h>
#include <linux/fb.h>
#include <video/fbcon.h>
#include <video/fbcon-cfb4.h>
#include <video/fbcon-cfb8.h>
#include <video/fbcon-cfb16.h>
#include <video/fbcon-cfb32.h>
#include "riva_hw.h"

/* GGI compatibility macros */
#define NUM_SEQ_REGS        0x05
#define NUM_CRT_REGS        0x41
#define NUM_GRC_REGS        0x09
#define NUM_ATC_REGS        0x15

/* holds the state of the VGA core and extended Riva hw state from riva_hw.c.
 * From KGI originally. */
struct riva_regs {
    u8 attr[NUM_ATC_REGS];
    u8 crtc[NUM_CRT_REGS];
    u8 gra[NUM_GRC_REGS];
    u8 seq[NUM_SEQ_REGS];
    u8 misc_output;
    RIVA_HW_STATE ext;
};

typedef struct {
    unsigned char red, green, blue, transp;
} riva_cfb8_cmap_t;

struct rivafb_info;
struct rivafb_info {
    struct fb_info info;    /* kernel framebuffer info */

    RIVA_HW_INST riva;    /* interface to riva_hw.c */

    const char *drvr_name;    /* Riva hardware board type */

    unsigned long ctrl_base_phys;    /* physical control register base addr */
    unsigned long fb_base_phys;    /* physical framebuffer base addr */

    caddr_t ctrl_base;    /* virtual control register base addr */
    caddr_t fb_base;    /* virtual framebuffer base addr */

    unsigned ram_amount;    /* amount of RAM on card, in bytes */
    unsigned dclk_max;    /* max DCLK */

    struct riva_regs initial_state;    /* initial startup video mode */
    struct riva_regs current_state;

    struct display disp;
    int currcon;
    struct display *currcon_display;

    struct rivafb_info *next;

    struct pci_dev *pd;    /* pointer to board's pci info */
    unsigned base0_region_size;    /* size of control register region */
    unsigned base1_region_size;    /* size of framebuffer region */

    struct riva_cursor *cursor;

    struct display_switch dispsw;

    riva_cfb8_cmap_t palette[256];    /* VGA DAC palette cache */

#if defined(FBCON_HAS_CFB16) || defined(FBCON_HAS_CFB32)
    union {
#ifdef FBCON_HAS_CFB16
        u_int16_t cfb16[16];
#endif
#ifdef FBCON_HAS_CFB32
        u_int32_t cfb32[16];
#endif
    } con_cmap;
#endif                /* FBCON_HAS_CFB16 | FBCON_HAS_CFB32 */
#ifdef CONFIG_MTRR
    struct { int vram; int vram_valid; } mtrr;
#endif
};

#endif /* __RIVAFB_H */

:: 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.0257 ]--