diff --git a/drivers/video/tegra/host/capture/capture-support-t264.h b/drivers/video/tegra/host/capture/capture-support-t264.h new file mode 100644 index 00000000..eaa4a2d8 --- /dev/null +++ b/drivers/video/tegra/host/capture/capture-support-t264.h @@ -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, + }, +//} diff --git a/drivers/video/tegra/host/isp/isp5-t264.h b/drivers/video/tegra/host/isp/isp5-t264.h new file mode 100644 index 00000000..bb442e20 --- /dev/null +++ b/drivers/video/tegra/host/isp/isp5-t264.h @@ -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, + }, + +//}