!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/usr/src/linux-headers-5.15.0-151/include/linux/mfd/   drwxr-xr-x
Free 28.66 GB of 117.98 GB (24.3%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     gsc.h (1.78 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0
 *
 * Copyright (C) 2020 Gateworks Corporation
 */
#ifndef __LINUX_MFD_GSC_H_
#define __LINUX_MFD_GSC_H_

#include <linux/regmap.h>

/* Device Addresses */
#define GSC_MISC    0x20
#define GSC_UPDATE    0x21
#define GSC_GPIO    0x23
#define GSC_HWMON    0x29
#define GSC_EEPROM0    0x50
#define GSC_EEPROM1    0x51
#define GSC_EEPROM2    0x52
#define GSC_EEPROM3    0x53
#define GSC_RTC        0x68

/* Register offsets */
enum {
    GSC_CTRL_0    = 0x00,
    GSC_CTRL_1    = 0x01,
    GSC_TIME    = 0x02,
    GSC_TIME_ADD    = 0x06,
    GSC_IRQ_STATUS    = 0x0A,
    GSC_IRQ_ENABLE    = 0x0B,
    GSC_FW_CRC    = 0x0C,
    GSC_FW_VER    = 0x0E,
    GSC_WP        = 0x0F,
};

/* Bit definitions */
#define GSC_CTRL_0_PB_HARD_RESET    0
#define GSC_CTRL_0_PB_CLEAR_SECURE_KEY    1
#define GSC_CTRL_0_PB_SOFT_POWER_DOWN    2
#define GSC_CTRL_0_PB_BOOT_ALTERNATE    3
#define GSC_CTRL_0_PERFORM_CRC        4
#define GSC_CTRL_0_TAMPER_DETECT    5
#define GSC_CTRL_0_SWITCH_HOLD        6

#define GSC_CTRL_1_SLEEP_ENABLE        0
#define GSC_CTRL_1_SLEEP_ACTIVATE    1
#define GSC_CTRL_1_SLEEP_ADD        2
#define GSC_CTRL_1_SLEEP_NOWAKEPB    3
#define GSC_CTRL_1_WDT_TIME        4
#define GSC_CTRL_1_WDT_ENABLE        5
#define GSC_CTRL_1_SWITCH_BOOT_ENABLE    6
#define GSC_CTRL_1_SWITCH_BOOT_CLEAR    7

#define GSC_IRQ_PB            0
#define GSC_IRQ_KEY_ERASED        1
#define GSC_IRQ_EEPROM_WP        2
#define GSC_IRQ_RESV            3
#define GSC_IRQ_GPIO            4
#define GSC_IRQ_TAMPER            5
#define GSC_IRQ_WDT_TIMEOUT        6
#define GSC_IRQ_SWITCH_HOLD        7

int gsc_read(void *context, unsigned int reg, unsigned int *val);
int gsc_write(void *context, unsigned int reg, unsigned int val);

struct gsc_dev {
    struct device *dev;

    struct i2c_client *i2c;        /* 0x20: interrupt controller, WDT */
    struct i2c_client *i2c_hwmon;    /* 0x29: hwmon, fan controller */

    struct regmap *regmap;

    unsigned int fwver;
    unsigned short fwcrc;
};

#endif /* __LINUX_MFD_GSC_H_ */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0038 ]--