mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 01:31:30 +03:00
media: camera: Build tegra-camera as OOT module
Port camera drivers below from /kenrel/nvidia to /kernel/nvidia-oot as OOT modules: - Fusa-capture driver - Tegra V4L2 framework driver - vi/csi driver - tegra camera platform driver Change-Id: I390af27096425bb11e0934201dd1a90f001bb3fa Signed-off-by: Frank Chen <frankc@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2780698 Reviewed-by: FNU Raunak <fraunak@nvidia.com> Reviewed-by: Ankur Pawar <ankurp@nvidia.com> Reviewed-by: Shiva Dubey <sdubey@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
e2b55e1a2c
commit
92ac7bc35a
290
include/uapi/linux/nvhost_events.h
Normal file
290
include/uapi/linux/nvhost_events.h
Normal file
@@ -0,0 +1,290 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Eventlib interface for PVA
|
||||
*
|
||||
* Copyright (c) 2016-2022, NVIDIA Corporation. All rights reserved.
|
||||
*/
|
||||
|
||||
#ifndef NVHOST_EVENTS_H
|
||||
#define NVHOST_EVENTS_H
|
||||
|
||||
enum {
|
||||
NVHOST_SCHEMA_VERSION = 1
|
||||
};
|
||||
|
||||
#define NVHOST_EVENT_PROVIDER_NAME "nv_mm_nvhost"
|
||||
|
||||
/* Marks that the task is submitted to hardware */
|
||||
struct nvhost_task_submit {
|
||||
/* Engine class ID */
|
||||
__u32 class_id;
|
||||
|
||||
/* Syncpoint ID */
|
||||
__u32 syncpt_id;
|
||||
|
||||
/* Threshold for task completion */
|
||||
__u32 syncpt_thresh;
|
||||
|
||||
/* PID */
|
||||
__u32 pid;
|
||||
|
||||
/* TID */
|
||||
__u32 tid;
|
||||
|
||||
/* Channel ID */
|
||||
__u32 channel_id;
|
||||
} __packed;
|
||||
|
||||
/* Marks that the task is moving to execution */
|
||||
struct nvhost_task_begin {
|
||||
/* Engine class ID */
|
||||
__u32 class_id;
|
||||
|
||||
/* Syncpoint ID */
|
||||
__u32 syncpt_id;
|
||||
|
||||
/* Threshold for task completion */
|
||||
__u32 syncpt_thresh;
|
||||
|
||||
/* Channel ID */
|
||||
__u32 channel_id;
|
||||
} __packed;
|
||||
|
||||
/* Marks that the task is completed */
|
||||
struct nvhost_task_end {
|
||||
/* Engine class ID */
|
||||
__u32 class_id;
|
||||
|
||||
/* Syncpoint ID */
|
||||
__u32 syncpt_id;
|
||||
|
||||
/* Threshold for task completion */
|
||||
__u32 syncpt_thresh;
|
||||
|
||||
/* Channel ID */
|
||||
__u32 channel_id;
|
||||
} __packed;
|
||||
|
||||
struct nvhost_vpu_perf_counter {
|
||||
/* Engine class ID */
|
||||
__u32 class_id;
|
||||
|
||||
/* Syncpoint ID */
|
||||
__u32 syncpt_id;
|
||||
|
||||
/* Threshold for task completion */
|
||||
__u32 syncpt_thresh;
|
||||
|
||||
/* Identifier for the R5/VPU algorithm executed */
|
||||
__u32 operation;
|
||||
|
||||
/* Algorithm specific identifying tag for the perf counter */
|
||||
__u32 tag;
|
||||
|
||||
__u32 count;
|
||||
__u32 average;
|
||||
__u64 variance;
|
||||
__u32 minimum;
|
||||
__u32 maximum;
|
||||
} __packed;
|
||||
|
||||
/* Marks the pre/postfence associated with the task */
|
||||
struct nvhost_task_fence {
|
||||
/* Engine class ID */
|
||||
__u32 class_id;
|
||||
|
||||
/* Kind (prefence or postfence) */
|
||||
__u32 kind;
|
||||
|
||||
/* Fence-specific type (see nvdev_fence.h) */
|
||||
__u32 fence_type;
|
||||
|
||||
/* Valid for NVDEV_FENCE_TYPE_SYNCPT only */
|
||||
__u32 syncpt_id;
|
||||
__u32 syncpt_thresh;
|
||||
|
||||
/* The task this fence is associated with */
|
||||
__u32 task_syncpt_id;
|
||||
__u32 task_syncpt_thresh;
|
||||
|
||||
/* Valid for NVDEV_FENCE_TYPE_SYNC_FD only */
|
||||
__u32 sync_fd;
|
||||
|
||||
/* Valid for NVDEV_FENCE_TYPE_SEMAPHORE
|
||||
and NVDEV_FENCE_TYPE_SEMAPHORE_TS */
|
||||
__u32 semaphore_handle;
|
||||
__u32 semaphore_offset;
|
||||
__u32 semaphore_value;
|
||||
} __packed;
|
||||
|
||||
struct nvhost_pva_task_state {
|
||||
/* Engine class ID */
|
||||
__u32 class_id;
|
||||
|
||||
/* Syncpoint ID */
|
||||
__u32 syncpt_id;
|
||||
|
||||
/* Threshold for task completion */
|
||||
__u32 syncpt_thresh;
|
||||
|
||||
/** ID of the VPU on which task was run. 0 or 1 */
|
||||
__u8 vpu_id;
|
||||
|
||||
/** ID of the FW Queue on which the task was run. [0, 7] */
|
||||
__u8 queue_id;
|
||||
|
||||
/* Identifier for the R5/VPU algorithm executed */
|
||||
__u64 iova;
|
||||
} __packed;
|
||||
|
||||
|
||||
|
||||
|
||||
/* Marks that the task is submitted to hardware */
|
||||
struct nv_camera_task_submit {
|
||||
/* Engine class ID */
|
||||
__u32 class_id;
|
||||
|
||||
/* Syncpoint ID */
|
||||
__u32 syncpt_id;
|
||||
|
||||
/* Threshold for task completion */
|
||||
__u32 syncpt_thresh;
|
||||
|
||||
/* PID */
|
||||
__u32 pid;
|
||||
|
||||
/* TID */
|
||||
__u32 tid;
|
||||
} __packed;
|
||||
|
||||
/* Marks that the task is moving to execution */
|
||||
struct nv_camera_task_begin {
|
||||
/* Engine class ID */
|
||||
__u32 class_id;
|
||||
|
||||
/* Syncpoint ID */
|
||||
__u32 syncpt_id;
|
||||
|
||||
/* Threshold for task completion */
|
||||
__u32 syncpt_thresh;
|
||||
} __packed;
|
||||
|
||||
/* Marks that the task is completed */
|
||||
struct nv_camera_task_end {
|
||||
/* Engine class ID */
|
||||
__u32 class_id;
|
||||
|
||||
/* Syncpoint ID */
|
||||
__u32 syncpt_id;
|
||||
|
||||
/* Threshold for task completion */
|
||||
__u32 syncpt_thresh;
|
||||
} __packed;
|
||||
|
||||
/* Marks that we are logging a general task */
|
||||
struct nv_camera_task_log {
|
||||
|
||||
/* Engine class ID */
|
||||
__u32 class_id;
|
||||
|
||||
/* PID */
|
||||
__u32 pid;
|
||||
|
||||
/* TID */
|
||||
__u32 tid;
|
||||
} __packed;
|
||||
|
||||
enum {
|
||||
/* struct nvhost_task_submit */
|
||||
NVHOST_TASK_SUBMIT = 0,
|
||||
|
||||
/* struct nvhost_task_begin */
|
||||
NVHOST_TASK_BEGIN = 1,
|
||||
|
||||
/* struct nvhost_task_end */
|
||||
NVHOST_TASK_END = 2,
|
||||
|
||||
/* struct nvhost_task_fence */
|
||||
NVHOST_TASK_FENCE = 3,
|
||||
|
||||
NVHOST_VPU_PERF_COUNTER_BEGIN = 4,
|
||||
NVHOST_VPU_PERF_COUNTER_END = 5,
|
||||
|
||||
/* struct nvhost_pva_task_state */
|
||||
NVHOST_PVA_QUEUE_BEGIN = 6,
|
||||
NVHOST_PVA_QUEUE_END = 7,
|
||||
NVHOST_PVA_PREPARE_BEGIN = 8,
|
||||
NVHOST_PVA_PREPARE_END = 9,
|
||||
NVHOST_PVA_VPU0_BEGIN = 10,
|
||||
NVHOST_PVA_VPU0_END = 11,
|
||||
NVHOST_PVA_VPU1_BEGIN = 12,
|
||||
NVHOST_PVA_VPU1_END = 13,
|
||||
NVHOST_PVA_POST_BEGIN = 14,
|
||||
NVHOST_PVA_POST_END = 15,
|
||||
|
||||
/* struct nv_camera_vi_capture_setup */
|
||||
NVHOST_CAMERA_VI_CAPTURE_SETUP = 16,
|
||||
|
||||
/* struct nv_camera_vi_capture_reset */
|
||||
NVHOST_CAMERA_VI_CAPTURE_RESET = 17,
|
||||
|
||||
/* struct nv_camera_vi_capture_release */
|
||||
NVHOST_CAMERA_VI_CAPTURE_RELEASE = 18,
|
||||
|
||||
/* struct nv_camera_vi_capture_get_info */
|
||||
NVHOST_CAMERA_VI_CAPTURE_GET_INFO = 19,
|
||||
|
||||
/* struct nv_camera_vi_capture_set_config */
|
||||
NVHOST_CAMERA_VI_CAPTURE_SET_CONFIG = 20,
|
||||
|
||||
/* struct nv_camera_vi_capture_request */
|
||||
NVHOST_CAMERA_VI_CAPTURE_REQUEST = 21,
|
||||
|
||||
/* struct nv_camera_vi_capture_status */
|
||||
NVHOST_CAMERA_VI_CAPTURE_STATUS = 22,
|
||||
|
||||
/* struct nv_camera_vi_capture_set_progress_status */
|
||||
NVHOST_CAMERA_VI_CAPTURE_SET_PROGRESS_STATUS = 24,
|
||||
|
||||
/* struct nv_camera_isp_capture_setup */
|
||||
NVHOST_CAMERA_ISP_CAPTURE_SETUP = 25,
|
||||
|
||||
/* struct nv_camera_isp_capture_reset */
|
||||
NVHOST_CAMERA_ISP_CAPTURE_RESET = 26,
|
||||
|
||||
/* struct nv_camera_isp_capture_release */
|
||||
NVHOST_CAMERA_ISP_CAPTURE_RELEASE = 27,
|
||||
|
||||
/* struct nv_camera_isp_capture_get_info */
|
||||
NVHOST_CAMERA_ISP_CAPTURE_GET_INFO = 28,
|
||||
|
||||
/* struct nv_camera_isp_capture_request */
|
||||
NVHOST_CAMERA_ISP_CAPTURE_REQUEST = 29,
|
||||
|
||||
/* struct nv_camera_isp_capture_status */
|
||||
NVHOST_CAMERA_ISP_CAPTURE_STATUS = 30,
|
||||
|
||||
/* struct nv_camera_isp_capture_program_request */
|
||||
NVHOST_CAMERA_ISP_CAPTURE_PROGRAM_REQUEST = 31,
|
||||
|
||||
/* struct nv_camera_isp_capture_program_status */
|
||||
NVHOST_CAMERA_ISP_CAPTURE_PROGRAM_STATUS = 32,
|
||||
|
||||
/* struct nv_camera_isp_capture_request_ex */
|
||||
NVHOST_CAMERA_ISP_CAPTURE_REQUEST_EX = 33,
|
||||
|
||||
/* struct nv_camera_isp_capture_set_progress_status */
|
||||
NVHOST_CAMERA_ISP_CAPTURE_SET_PROGRESS_STATUS = 34,
|
||||
|
||||
/* struct nv_camera_task_log */
|
||||
NVHOST_CAMERA_TASK_LOG = 35,
|
||||
|
||||
NVHOST_NUM_EVENT_TYPES = 36
|
||||
};
|
||||
|
||||
enum {
|
||||
NVHOST_NUM_CUSTOM_FILTER_FLAGS = 0
|
||||
};
|
||||
|
||||
#endif /* NVHOST_EVENTS_H */
|
||||
Reference in New Issue
Block a user