Skip to content

Commit

Permalink
d4xx: Update d4xx.c driver to match RealSense latest development.
Browse files Browse the repository at this point in the history
    RealSense PRQ d4xx version is 1.0.1.13.
    ADL-P - support for sensor vc.
          - support for sensor state.
          - sensor own v4l2 controls.
          - max9296 reset one shot on stop stream.
	  - improved serdes initialization.
          - support ipu6 acpi pdata.
          - correct module unloading.

    Bump version for ADL-P to 1.0.2.14.

Signed-off-by: Dmitry Perchanov <dmitry.perchanov@intel.com>
  • Loading branch information
dmipx committed Mar 27, 2023
1 parent c61e2c8 commit 6286159
Show file tree
Hide file tree
Showing 8 changed files with 3,362 additions and 823 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ obj-y += drivers/media/pci/intel/

export CONFIG_VIDEO_AR0234 = m
export CONFIG_VIDEO_LT6911UXC = m
export CONFIG_I2C_IOEXPANDER_SER_MAX9295 = m
export CONFIG_I2C_IOEXPANDER_DESER_MAX9296 = m

obj-y += drivers/media/i2c/

KERNEL_SRC := /lib/modules/$(shell uname -r)/build
Expand Down
11 changes: 10 additions & 1 deletion drivers/media/i2c/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# SPDX-License-Identifier: GPL-2.0
# Copyright (c) 2021 Intel Corporation.

ifneq ($(EXTERNAL_BUILD), 1)
srcpath := $(srctree)
endif

ccflags-y += -I$(srcpath)/$(src)/../../../include/
ccflags-y += -DCONFIG_VIDEO_D4XX_SERDES

obj-$(CONFIG_VIDEO_AR0234) += ar0234.o
obj-$(CONFIG_VIDEO_LT6911UXC) += lt6911uxc.o
obj-$(CONFIG_VIDEO_D4XX) += d457.o
obj-$(CONFIG_I2C_IOEXPANDER_SER_MAX9295) += max9295.o
obj-$(CONFIG_I2C_IOEXPANDER_DESER_MAX9296) += max9296.o
obj-$(CONFIG_VIDEO_D4XX) += d4xx.o
Loading

0 comments on commit 6286159

Please sign in to comment.