mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 02:01:36 +03:00
video: tegra: isp: Add T264 nvhost client support
Extends ISP5 nvhost client driver to support T264 ISP device instances. Jira: CT26X-464 Signed-off-by: Kirill Artamonov <kartamonov@nvidia.com> Change-Id: I14eb6812b9af0f1c748a9683940478104d75841a Reviewed-on: https://git-master.nvidia.com/r/c/linux-t264/+/3006537 Tested-by: Akihiro Mizusawa <amizusawa@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-by: Chinniah Poosapadi <cpoosapadi@nvidia.com> GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com> Reviewed-by: Akihiro Mizusawa <amizusawa@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3232409 Tested-by: Laxman Dewangan <ldewangan@nvidia.com>
This commit is contained in:
committed by
Jon Hunter
parent
7ce3d4734a
commit
de16c140ff
22
drivers/video/tegra/host/capture/capture-support-t264.h
Normal file
22
drivers/video/tegra/host/capture/capture-support-t264.h
Normal file
@@ -0,0 +1,22 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
||||
*/
|
||||
|
||||
/*
|
||||
* struct of_device_id initialization for capture support on T264
|
||||
*/
|
||||
|
||||
//static struct of_device_id capture_support_of_match[] = {
|
||||
|
||||
{
|
||||
.name = "isp-thi",
|
||||
.compatible = "nvidia,tegra264-isp-thi",
|
||||
.data = &t264_isp0_thi_info,
|
||||
},
|
||||
{
|
||||
.name = "isp1-thi",
|
||||
.compatible = "nvidia,tegra264-isp-thi",
|
||||
.data = &t264_isp1_thi_info,
|
||||
},
|
||||
//}
|
||||
23
drivers/video/tegra/host/isp/isp5-t264.h
Normal file
23
drivers/video/tegra/host/isp/isp5-t264.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
/*
|
||||
* Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
||||
*/
|
||||
|
||||
/*
|
||||
* struct of_device_id initialization for ISP on T264
|
||||
*/
|
||||
|
||||
//static const struct of_device_id tegra_isp5_of_match[] = {
|
||||
|
||||
{
|
||||
.name = "isp0",
|
||||
.compatible = "nvidia,tegra264-isp",
|
||||
.data = &t264_isp0_info,
|
||||
},
|
||||
{
|
||||
.name = "isp1",
|
||||
.compatible = "nvidia,tegra264-isp",
|
||||
.data = &t264_isp1_info,
|
||||
},
|
||||
|
||||
//}
|
||||
Reference in New Issue
Block a user