!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/arch/mips/include/asm/mach-rc32434/   drwxr-xr-x
Free 83.23 GB of 96.73 GB (86.05%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     dma_v.h (1.19 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright 2002 Integrated Device Technology, Inc.
 *        All rights reserved.
 *
 * DMA register definition.
 *
 * Author : [email protected]
 * Date      : 20011005
 */

#ifndef _ASM_RC32434_DMA_V_H_
#define _ASM_RC32434_DMA_V_H_

#include  <asm/mach-rc32434/dma.h>
#include  <asm/mach-rc32434/rc32434.h>

#define DMA_CHAN_OFFSET        0x14
#define IS_DMA_USED(X)        (((X) & \
                (DMA_DESC_FINI | DMA_DESC_DONE | DMA_DESC_TERM)) \
                != 0)
#define DMA_COUNT(count)    ((count) & DMA_DESC_COUNT_MSK)

#define DMA_HALT_TIMEOUT    500

static inline int rc32434_halt_dma(struct dma_reg *ch)
{
    int timeout = 1;
    if (__raw_readl(&ch->dmac) & DMA_CHAN_RUN_BIT) {
        __raw_writel(0, &ch->dmac);
        for (timeout = DMA_HALT_TIMEOUT; timeout > 0; timeout--) {
            if (__raw_readl(&ch->dmas) & DMA_STAT_HALT) {
                __raw_writel(0, &ch->dmas);
                break;
            }
        }
    }

    return timeout ? 0 : 1;
}

static inline void rc32434_start_dma(struct dma_reg *ch, u32 dma_addr)
{
    __raw_writel(0, &ch->dmandptr);
    __raw_writel(dma_addr, &ch->dmadptr);
}

static inline void rc32434_chain_dma(struct dma_reg *ch, u32 dma_addr)
{
    __raw_writel(dma_addr, &ch->dmandptr);
}

#endif    /* _ASM_RC32434_DMA_V_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.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0044 ]--