mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
max96712, run in fixed configuration
1. resolution: 3840x2160
2. FPS: 30
3. data rate 1900Mbps
4. pixel format: RAW10
5. PHY mode: DPHY 4Lane
max96726, run in fixed configuration
1. resolution: 3840x2160
2. FPS: 30
3. data rate: DPHY 2500Mbps, CPHY 4500Msps
4. pixel format: RAW16
Bug 5060621
Change-Id: I0ab8139f3b8e4756b7558653ea516e5fbc2f719d
Signed-off-by: Shawn Bai <xueyuanb@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3447885
GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com>
Reviewed-by: Jukka Kaartinen <jkaartinen@nvidia.com>
Reviewed-by: Narendra Kondapalli <nkondapalli@nvidia.com>
44 lines
1.3 KiB
Makefile
44 lines
1.3 KiB
Makefile
# SPDX-FileCopyrightText: Copyright (c) 2023-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms and conditions of the GNU General Public License,
|
|
# version 2, as published by the Free Software Foundation.
|
|
#
|
|
# This program is distributed in the hope it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
# more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
subdir-ccflags-y += -Werror
|
|
ifneq ($(NV_BUILD_SYSTEM_TYPE),embedded-linux)
|
|
obj-m += max9295.o
|
|
obj-m += max9296.o
|
|
ifndef CONFIG_TEGRA_SYSTEM_TYPE_ACK
|
|
obj-m += max96712.o
|
|
|
|
ifdef CONFIG_MEDIA_SUPPORT
|
|
obj-m += ar1335_common.o
|
|
obj-m += lt6911uxc.o
|
|
obj-m += nv_imx185.o
|
|
obj-m += nv_imx219.o
|
|
obj-m += nv_imx274.o
|
|
obj-m += nv_imx318.o
|
|
obj-m += nv_imx390.o
|
|
obj-m += nv_imx477.o
|
|
obj-m += nv_ov5693.o
|
|
obj-m += nv_ar0234.o
|
|
obj-m += nv_hawk_owl.o
|
|
obj-m += max929x.o
|
|
obj-m += max96712_tpg.o
|
|
obj-m += max96726_tpg.o
|
|
endif
|
|
|
|
obj-m += pca9570.o
|
|
obj-m += virtual_i2c_mux.o
|
|
endif
|
|
endif
|