!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/acpi/ospm/include/   drwxr-xr-x
Free 318.28 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:     ec.h (4.62 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*****************************************************************************
 *
 * Module Name: ec.h
 *   $Revision: 19 $
 *
 *****************************************************************************/

/*
 *  Copyright (C) 2000, 2001 Andrew Grover
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


#ifndef __EC_H__
#define __EC_H__

#include <linux/spinlock.h>
#include <asm/semaphore.h>
#include <actypes.h>
#include <acexcep.h>
#include <bm.h>


/*****************************************************************************
 *                            Types & Other Defines
 *****************************************************************************/

#define EC_DEFAULT_TIMEOUT    1000        /* 1 second */
#define EC_GPE_UNKNOWN        0xFFFFFFFF
#define EC_PORT_UNKNOWN        0x00000000
#define EC_BURST_ENABLE_ACKNOWLEDGE 0x90


/*
 * Commands:
 * ---------
 */
typedef u8            EC_COMMAND;

#define EC_COMMAND_UNKNOWN    ((EC_COMMAND) 0x00)
#define EC_COMMAND_READ        ((EC_COMMAND) 0x80)
#define EC_COMMAND_WRITE    ((EC_COMMAND) 0x81)
#define EC_COMMAND_QUERY    ((EC_COMMAND) 0x84)


/*
 * EC_STATUS:
 * ----------
 * The encoding of the EC status register is illustrated below.
 * Note that a set bit (1) indicates the property is TRUE
 * (e.g. if bit 0 is set then the output buffer is full).
 * +-+-+-+-+-+-+-+-+
 * |7|6|5|4|3|2|1|0|
 * +-+-+-+-+-+-+-+-+
 *  | | | | | | | |
 *  | | | | | | | +- Output Buffer Full (OBF)?
 *  | | | | | | +--- Input Buffer Full (IBF)?
 *  | | | | | +----- <reserved>
 *  | | | | +------- data Register is command Byte?
 *  | | | +--------- Burst Mode Enabled?
 *  | | +----------- SCI event?
 *  | +------------- SMI event?
 *  +--------------- <Reserved>
 *
 */
typedef u32            EC_STATUS;

#define EC_FLAG_OUTPUT_BUFFER    ((EC_STATUS) 0x01)
#define EC_FLAG_INPUT_BUFFER    ((EC_STATUS) 0x02)
#define EC_FLAG_BURST_MODE    ((EC_STATUS) 0x10)
#define EC_FLAG_SCI        ((EC_STATUS) 0x20)


/*
 * EC_EVENT:
 * ---------
 */
typedef u32            EC_EVENT;

#define EC_EVENT_UNKNOWN    ((EC_EVENT) 0x00)
#define EC_EVENT_NONE        ((EC_EVENT) 0x00)
#define EC_EVENT_OUTPUT_BUFFER_FULL ((EC_EVENT) 0x01)
#define EC_EVENT_INPUT_BUFFER_EMPTY ((EC_EVENT) 0x02)
#define EC_EVENT_SCI        ((EC_EVENT) 0x03)


/*
 * Hardware IDs:
 * -------------
 */
#define EC_HID_EC        "PNP0C09"


/*
 * EC_REQUEST:
 * -----------
 */
typedef struct
{
    EC_COMMAND              command;
    u8                      address;
    u8                      data;
} EC_REQUEST;


/*
 * Device Context:
 * ---------------
 */
typedef struct
{
    BM_HANDLE               device_handle;
    acpi_handle             acpi_handle;
    u32                     gpe_bit;
    u32            status_port;
    u32            command_port;
    u32            data_port;
    u32            use_global_lock;
    u8                      query_data;
    acpi_handle             mutex;
} EC_CONTEXT;


/*****************************************************************************
 *                             Function Prototypes
 *****************************************************************************/

/* ec.c */

acpi_status
ec_initialize(void);

acpi_status
ec_terminate(void);

acpi_status
ec_notify (
    u32                     notify_type,
    u32                     device,
    void                    **context);

acpi_status
ec_request(
    BM_REQUEST              *request_info,
    void                    *context);

/* ectransx.c */

acpi_status
ec_transaction (
    EC_CONTEXT              *ec,
    EC_REQUEST              *ec_request);

acpi_status
ec_io_read (
    EC_CONTEXT              *ec,
    u32                 io_port,
    u8                      *data,
    EC_EVENT                wait_event);

acpi_status
ec_io_write (
    EC_CONTEXT              *ec,
    u32                 io_port,
    u8                      data,
    EC_EVENT                wait_event);

/* ecgpe.c */

acpi_status
ec_install_gpe_handler (
    EC_CONTEXT              *ec);

acpi_status
ec_remove_gpe_handler (
    EC_CONTEXT              *ec);

/* ecspace.c */

acpi_status
ec_install_space_handler (
    EC_CONTEXT              *ec);

acpi_status
ec_remove_space_handler (
    EC_CONTEXT              *ec);


#endif  /* __EC_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.0046 ]--