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

Software: Apache/2.4.18 (Ubuntu). PHP/7.0.33-0ubuntu0.16.04.16 

uname -a: Linux digifus 3.13.0-57-generic #95-Ubuntu SMP Fri Jun 19 09:28:15 UTC 2015 x86_64 

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

Safe-mode: OFF (not secure)

/usr/src/linux-headers-4.4.0-210/include/soc/tegra/   drwxr-xr-x
Free 9.58 GB of 29.4 GB (32.59%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     mc.h (2.3 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * Copyright (C) 2014 NVIDIA Corporation
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#ifndef __SOC_TEGRA_MC_H__
#define __SOC_TEGRA_MC_H__

#include <linux/types.h>

struct clk;
struct device;
struct page;

struct tegra_smmu_enable {
    unsigned int reg;
    unsigned int bit;
};

struct tegra_mc_timing {
    unsigned long rate;

    u32 *emem_data;
};

/* latency allowance */
struct tegra_mc_la {
    unsigned int reg;
    unsigned int shift;
    unsigned int mask;
    unsigned int def;
};

struct tegra_mc_client {
    unsigned int id;
    const char *name;
    unsigned int swgroup;

    unsigned int fifo_size;

    struct tegra_smmu_enable smmu;
    struct tegra_mc_la la;
};

struct tegra_smmu_swgroup {
    const char *name;
    unsigned int swgroup;
    unsigned int reg;
};

struct tegra_smmu_soc {
    const struct tegra_mc_client *clients;
    unsigned int num_clients;

    const struct tegra_smmu_swgroup *swgroups;
    unsigned int num_swgroups;

    bool supports_round_robin_arbitration;
    bool supports_request_limit;

    unsigned int num_tlb_lines;
    unsigned int num_asids;
};

struct tegra_mc;
struct tegra_smmu;

#ifdef CONFIG_TEGRA_IOMMU_SMMU
struct tegra_smmu *tegra_smmu_probe(struct device *dev,
                    const struct tegra_smmu_soc *soc,
                    struct tegra_mc *mc);
void tegra_smmu_remove(struct tegra_smmu *smmu);
#else
static inline struct tegra_smmu *
tegra_smmu_probe(struct device *dev, const struct tegra_smmu_soc *soc,
         struct tegra_mc *mc)
{
    return NULL;
}

static inline void tegra_smmu_remove(struct tegra_smmu *smmu)
{
}
#endif

struct tegra_mc_soc {
    const struct tegra_mc_client *clients;
    unsigned int num_clients;

    const unsigned long *emem_regs;
    unsigned int num_emem_regs;

    unsigned int num_address_bits;
    unsigned int atom_size;

    u8 client_id_mask;

    const struct tegra_smmu_soc *smmu;

    u32 intmask;
};

struct tegra_mc {
    struct device *dev;
    struct tegra_smmu *smmu;
    void __iomem *regs;
    struct clk *clk;
    int irq;

    const struct tegra_mc_soc *soc;
    unsigned long tick;

    struct tegra_mc_timing *timings;
    unsigned int num_timings;
};

void tegra_mc_write_emem_configuration(struct tegra_mc *mc, unsigned long rate);
unsigned int tegra_mc_get_emem_device_count(struct tegra_mc *mc);

#endif /* __SOC_TEGRA_MC_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 KaizenLouie | C99Shell Github | Generation time: 0.0055 ]--