mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
Convert existing MIPI code to use operation function pointers, a necessary step for supporting Tegra20/Tegra30 SoCs. All common MIPI configuration that is SoC-independent remains in mipi.c, while all SoC-specific code is moved to tegra114-mipi.c (The naming matches the first SoC generation with a dedicated calibration block). Shared structures and function calls are placed into tegra-mipi-cal.h. Tested-by: Luca Ceresoli <luca.ceresoli@bootlin.com> # tegra20, parallel camera Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com> Acked-by: Mikko Perttunen <mperttunen@nvidia.com> Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
27 lines
428 B
Makefile
27 lines
428 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
host1x-y = \
|
|
bus.o \
|
|
syncpt.o \
|
|
dev.o \
|
|
intr.o \
|
|
cdma.o \
|
|
channel.o \
|
|
job.o \
|
|
debug.o \
|
|
mipi.o \
|
|
tegra114-mipi.o \
|
|
fence.o \
|
|
hw/host1x01.o \
|
|
hw/host1x02.o \
|
|
hw/host1x04.o \
|
|
hw/host1x05.o \
|
|
hw/host1x06.o \
|
|
hw/host1x07.o \
|
|
hw/host1x08.o
|
|
|
|
host1x-$(CONFIG_IOMMU_API) += \
|
|
context.o
|
|
|
|
obj-$(CONFIG_TEGRA_HOST1X) += host1x.o
|
|
obj-$(CONFIG_TEGRA_HOST1X_CONTEXT_BUS) += context_bus.o
|