__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (C) 2014 NVIDIA Corporation
*/
#ifndef __SOC_TEGRA_COMMON_H__
#define __SOC_TEGRA_COMMON_H__
#include <linux/errno.h>
#include <linux/types.h>
struct device;
/**
* Tegra SoC core device OPP table configuration
*
* @init_state: pre-initialize OPP state of a device
*/
struct tegra_core_opp_params {
bool init_state;
};
#ifdef CONFIG_ARCH_TEGRA
bool soc_is_tegra(void);
int devm_tegra_core_dev_init_opp_table(struct device *dev,
struct tegra_core_opp_params *params);
#else
static inline bool soc_is_tegra(void)
{
return false;
}
static inline int
devm_tegra_core_dev_init_opp_table(struct device *dev,
struct tegra_core_opp_params *params)
{
return -ENODEV;
}
#endif
static inline int
devm_tegra_core_dev_init_opp_table_common(struct device *dev)
{
struct tegra_core_opp_params opp_params = {};
int err;
opp_params.init_state = true;
err = devm_tegra_core_dev_init_opp_table(dev, &opp_params);
if (err != -ENODEV)
return err;
return 0;
}
#endif /* __SOC_TEGRA_COMMON_H__ */
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ahb.h | File | 267 B | 0644 |
|
| bpmp-abi.h | File | 114.74 KB | 0644 |
|
| bpmp.h | File | 4.95 KB | 0644 |
|
| common.h | File | 1.05 KB | 0644 |
|
| cpuidle.h | File | 368 B | 0644 |
|
| flowctrl.h | File | 2.19 KB | 0644 |
|
| fuse.h | File | 2.39 KB | 0644 |
|
| irq.h | File | 386 B | 0644 |
|
| ivc.h | File | 2.73 KB | 0644 |
|
| mc.h | File | 5.96 KB | 0644 |
|
| pm.h | File | 1.54 KB | 0644 |
|
| pmc.h | File | 5.3 KB | 0644 |
|
| tegra-cbb.h | File | 1.31 KB | 0644 |
|