!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/i2c/   drwxr-xr-x
Free 318.39 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:     i2c-keywest.h (2.22 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#ifndef __I2C_KEYWEST_H__
#define __I2C_KEYWEST_H__

/* The Tumbler audio equalizer can be really slow sometimes */
#define POLL_TIMEOUT        (2*HZ)

/* Register indices */
typedef enum {
    reg_mode = 0,
    reg_control,
    reg_status,
    reg_isr,
    reg_ier,
    reg_addr,
    reg_subaddr,
    reg_data
} reg_t;


/* Mode register */
#define KW_I2C_MODE_100KHZ    0x00
#define KW_I2C_MODE_50KHZ    0x01
#define KW_I2C_MODE_25KHZ    0x02
#define KW_I2C_MODE_DUMB    0x00
#define KW_I2C_MODE_STANDARD    0x04
#define KW_I2C_MODE_STANDARDSUB    0x08
#define KW_I2C_MODE_COMBINED    0x0C
#define KW_I2C_MODE_MODE_MASK    0x0C
#define KW_I2C_MODE_CHAN_MASK    0xF0

/* Control register */
#define KW_I2C_CTL_AAK        0x01
#define KW_I2C_CTL_XADDR    0x02
#define KW_I2C_CTL_STOP        0x04
#define KW_I2C_CTL_START    0x08

/* Status register */
#define KW_I2C_STAT_BUSY    0x01
#define KW_I2C_STAT_LAST_AAK    0x02
#define KW_I2C_STAT_LAST_RW    0x04
#define KW_I2C_STAT_SDA        0x08
#define KW_I2C_STAT_SCL        0x10

/* IER & ISR registers */
#define KW_I2C_IRQ_DATA        0x01
#define KW_I2C_IRQ_ADDR        0x02
#define KW_I2C_IRQ_STOP        0x04
#define KW_I2C_IRQ_START    0x08
#define KW_I2C_IRQ_MASK        0x0F

/* Physical interface */
struct keywest_iface
{
    unsigned long        base;
    unsigned        bsteps;
    int            irq;
    struct semaphore    sem;
    spinlock_t        lock;
    struct keywest_chan*    channels;
    unsigned        chan_count;
    u8            cur_mode;
    char            read_write;
    u8*            data;
    unsigned        datalen;
    int            state;
    int            result;
    int            stopretry;
    struct timer_list    timeout_timer;
    struct completion    complete;
    struct keywest_iface*    next;
};

enum {
    state_idle,
    state_addr,
    state_read,
    state_write,
    state_stop,
    state_dead
};

/* Channel on an interface */
struct keywest_chan
{
    struct i2c_adapter    adapter;
    struct keywest_iface*    iface;
    unsigned        chan_no;
};

/* Register access */

static inline u8 __read_reg(struct keywest_iface *iface, reg_t reg)
{
    return in_8(((volatile u8 *)iface->base)
        + (((unsigned)reg) << iface->bsteps));
}

static inline void __write_reg(struct keywest_iface *iface, reg_t reg, u8 val)
{
    out_8(((volatile u8 *)iface->base)
        + (((unsigned)reg) << iface->bsteps), val);
    (void)__read_reg(iface, reg);
    udelay(10);
}

#define write_reg(reg, val)    __write_reg(iface, reg, val) 
#define read_reg(reg)        __read_reg(iface, reg) 



#endif /* __I2C_KEYWEST_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.004 ]--