Files
linux-nv-oot/drivers/video/tegra/host/isp/isp5.h
Frank Chen 5f087cb0ed video: host: Build nvhost camera as OOT modules
Port the nvhost driver below from /kernel/nvidia to
/kernel/nvidia-oot as OOT modules and switching from
using downstream nvhost driver to upstream host1x
driver:
- capture support driver
- nvcsi driver
- vi driver
- isp driver

Change-Id: I31814f202816230029bd8454b8ff58530a96f436
Signed-off-by: Frank Chen <frankc@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2797339
Reviewed-by: Ankur Pawar <ankurp@nvidia.com>
Reviewed-by: Shiva Dubey <sdubey@nvidia.com>
GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
2022-12-13 06:15:46 -08:00

23 lines
476 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Tegra ISP5
*
* Copyright (c) 2017-2022 NVIDIA Corporation. All rights reserved.
*/
#ifndef __NVHOST_ISP5_H__
#define __NVHOST_ISP5_H__
#include <linux/platform_device.h>
extern const struct file_operations tegra194_isp5_ctrl_ops;
struct t194_isp5_file_private {
struct platform_device *pdev;
};
int isp5_priv_early_probe(struct platform_device *pdev);
int isp5_priv_late_probe(struct platform_device *pdev);
#endif