Files
linux-nv-oot/include/linux/tegra-gte.h
Manish Bhardwaj a2fdb986b0 nvidia-oot: add nvpps and ptp driver
Using this patch we are adding support for
ptp and nvpps driver in oot kernel.

JIRA ESLC-6885

Signed-off-by: Manish Bhardwaj <mbhardwaj@nvidia.com>
Change-Id: Id47ac5602d11ce417f9d421b4f672578922ca94f
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2785318
Reviewed-by: Bitan Biswas <bbiswas@nvidia.com>
Reviewed-by: David Tao <tehyut@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
2022-10-03 21:31:01 -07:00

97 lines
2.1 KiB
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
*/
#ifndef _LINUX_TEGRA_GTE_ENGINE_H
#define _LINUX_TEGRA_GTE_ENGINE_H
#include <linux/device.h>
struct tegra_gte_ev_desc {
int id;
u32 ev_bit;
u32 slice;
};
/* GTE hardware timestamping event details */
struct tegra_gte_ev_detail {
u64 ts_raw; /* raw counter value */
u64 ts_ns; /* counter value converted into nano seconds */
int dir; /* direction of the event */
};
#ifdef CONFIG_TEGRA_HTS_GTE
/*
* GTE event registration function
*
* Parameters:
*
* Input:
* @np: device node of the interested GTE device
* @ev_id: event id
*
* Returns:
* Returns ERR_PTR in case of failure or valid
* struct tegra_gte_ev_desc for success.
*
* Note: API is not stable and subject to change.
*/
struct tegra_gte_ev_desc *tegra_gte_register_event(struct device_node *np,
u32 ev_id);
/*
* GTE event un-registration function
*
* Parameters:
*
* Input:
* @desc: This parameter should be the same as returned from register
*
* Returns:
* Returns 0 for success and any other value for the failure
*
* Note: API is not stable and subject to change.
*/
int tegra_gte_unregister_event(struct tegra_gte_ev_desc *desc);
/*
* GTE event retrieval function
*
* Parameters:
*
* Input:
* @desc: This parameter should be the same as returned from register
*
* Output:
* @hts: hts event details
*
* Returns:
* Returns 0 for success and any other value for the failure
*
* Note: API is not stable and subject to change.
*/
int tegra_gte_retrieve_event(const struct tegra_gte_ev_desc *desc,
struct tegra_gte_ev_detail *hts);
#else /* ! CONFIG_TEGRA_HTS_GTE */
static inline struct tegra_gte_ev_desc *tegra_gte_register_event(
struct device_node *np, u32 ev_id)
{
return ERR_PTR(-ENOSYS);
}
static inline int tegra_gte_unregister_event(struct tegra_gte_ev_desc *desc)
{
return -ENOSYS;
}
static inline int tegra_gte_retrieve_event(const struct tegra_gte_ev_desc *desc,
struct tegra_gte_ev_detail *hts)
{
return -ENOSYS;
}
#endif /* ! CONFIG_TEGRA_HTS_GTE */
#endif