mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-25 12:44:01 +00:00
Add Kconfig and Makefile for the IPU6 driver. Signed-off-by: Bingbu Cao <bingbu.cao@intel.com> Signed-off-by: Andreas Helbech Kleist <andreaskleist@gmail.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
24 lines
507 B
Makefile
24 lines
507 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
intel-ipu6-y := ipu6.o \
|
|
ipu6-bus.o \
|
|
ipu6-dma.o \
|
|
ipu6-mmu.o \
|
|
ipu6-buttress.o \
|
|
ipu6-cpd.o \
|
|
ipu6-fw-com.o
|
|
|
|
obj-$(CONFIG_VIDEO_INTEL_IPU6) += intel-ipu6.o
|
|
|
|
intel-ipu6-isys-y := ipu6-isys.o \
|
|
ipu6-isys-csi2.o \
|
|
ipu6-fw-isys.o \
|
|
ipu6-isys-video.o \
|
|
ipu6-isys-queue.o \
|
|
ipu6-isys-subdev.o \
|
|
ipu6-isys-mcd-phy.o \
|
|
ipu6-isys-jsl-phy.o \
|
|
ipu6-isys-dwc-phy.o
|
|
|
|
obj-$(CONFIG_VIDEO_INTEL_IPU6) += intel-ipu6-isys.o
|