]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
staging/atomisp: Add support for the Intel IPU v2
authorAlan Cox <alan@linux.intel.com>
Fri, 17 Feb 2017 16:55:17 +0000 (16:55 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 6 Mar 2017 08:39:54 +0000 (09:39 +0100)
commita49d25364dfb9f8a64037488a39ab1f56c5fa419
treebd97382cf06a958cef045e75334fc622500ba209
parent372499b589ae5ec38d3dec88b72f2bde3b3790d4
staging/atomisp: Add support for the Intel IPU v2

This patch adds support for the Intel IPU v2 as found on Android and IoT
Baytrail-T and Baytrail-CR platforms (those with the IPU PCI mapped). You
will also need the firmware files from your device (Android usually puts
them into /etc) - or you can find them in the downloadable restore/upgrade
kits if you blew them away for some reason.

It may be possible to extend the driver to handle the BYT/T windows
platforms such as the ASUS T100TA. These platforms don't expose the IPU via
the PCI interface but via ACPI buried in the GPU description and with the
camera information somewhere unknown so would need a platform driver
interface adding to the codebase *IFF* the firmware works on such devices.

To get good results you also need a suitable support library such as
libxcam. The camera is intended to be driven from Android so it has a lot of
features that many desktop apps don't fully spport.

In theory all the pieces are there to build it with -DISP2401 and some
differing files to get CherryTrail/T support, but unifying the drivers
properlly is a work in progress.

The IPU driver represents the work of a lot of people within Intel over many
years. It's historical goal was portability rather than Linux upstream. Any
queries about the upstream aimed driver should be sent to me not to the
original authors.

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
920 files changed:
drivers/staging/media/Kconfig
drivers/staging/media/Makefile
drivers/staging/media/atomisp/Kconfig [new file with mode: 0644]
drivers/staging/media/atomisp/Makefile [new file with mode: 0644]
drivers/staging/media/atomisp/TODO [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/Kconfig [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/Makefile [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ap1302.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ap1302.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/gc0310.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/gc0310.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/gc2235.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/gc2235.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/Kconfig [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/Makefile [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/ad5816g.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/ad5816g.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/common.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/drv201.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/drv201.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/dw9714.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/dw9714.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/dw9718.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/dw9718.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/dw9719.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/dw9719.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/imx.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/imx.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/imx132.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/imx134.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/imx135.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/imx175.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/imx208.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/imx219.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/imx227.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/otp.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/otp_brcc064_e2prom.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/otp_e2prom.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/otp_imx.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/imx/vcm.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/libmsrlisthelper.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/lm3554.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/mt9m114.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/mt9m114.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov2680.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov2680.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov2722.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov2722.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov5693/Kconfig [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov5693/Makefile [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov5693/ad5823.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov5693/ov5693.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov5693/ov5693.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov8858.c [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov8858.h [new file with mode: 0644]
drivers/staging/media/atomisp/i2c/ov8858_btns.h [new file with mode: 0644]
drivers/staging/media/atomisp/include/asm/intel_mid_pcihelpers.h [new file with mode: 0644]
drivers/staging/media/atomisp/include/linux/atomisp.h [new file with mode: 0644]
drivers/staging/media/atomisp/include/linux/atomisp_gmin_platform.h [new file with mode: 0644]
drivers/staging/media/atomisp/include/linux/atomisp_platform.h [new file with mode: 0644]
drivers/staging/media/atomisp/include/linux/intel_mid_pm.h [new file with mode: 0644]
drivers/staging/media/atomisp/include/linux/libmsrlisthelper.h [new file with mode: 0644]
drivers/staging/media/atomisp/include/linux/vlv2_plat_clock.h [new file with mode: 0644]
drivers/staging/media/atomisp/include/media/lm3554.h [new file with mode: 0644]
drivers/staging/media/atomisp/include/media/lm3642.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/Kconfig [new file with mode: 0644]
drivers/staging/media/atomisp/pci/Makefile [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/Makefile [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp-regs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_acc.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_acc.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_cmd.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_cmd.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_common.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_compat.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_compat_css20.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_compat_css20.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_compat_ioctl32.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_compat_ioctl32.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_csi2.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_csi2.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_dfs_tables.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_drvfs.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_drvfs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_file.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_file.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_fops.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_fops.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_helper.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_internal.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_ioctl.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_ioctl.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_subdev.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_subdev.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_tables.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_tpg.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_tpg.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_trace_event.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_v4l2.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/atomisp_v4l2.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/Makefile [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/base/circbuf/interface/ia_css_circbuf.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/base/circbuf/interface/ia_css_circbuf_comm.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/base/circbuf/interface/ia_css_circbuf_desc.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/base/circbuf/src/circbuf.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/base/refcount/interface/ia_css_refcount.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/base/refcount/src/refcount.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/camera/pipe/interface/ia_css_pipe_binarydesc.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/camera/pipe/interface/ia_css_pipe_stagedesc.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/camera/pipe/interface/ia_css_pipe_util.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/camera/pipe/src/pipe_binarydesc.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/camera/pipe/src/pipe_stagedesc.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/camera/pipe/src/pipe_util.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/camera/util/interface/ia_css_util.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/camera/util/src/util.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hive_isp_css_2400_system_generated/ia_css_isp_configs.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hive_isp_css_2400_system_generated/ia_css_isp_configs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hive_isp_css_2400_system_generated/ia_css_isp_params.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hive_isp_css_2400_system_generated/ia_css_isp_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hive_isp_css_2400_system_generated/ia_css_isp_states.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hive_isp_css_2400_system_generated/ia_css_isp_states.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/bits.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/cell_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/css_receiver_2400_common_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/css_receiver_2400_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/dma_v2_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/gdc_v2_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/gp_regs_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/gp_timer_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/gpio_block_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/hive_isp_css_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/hive_isp_css_host_ids_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/hive_isp_css_irq_types_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/hive_isp_css_streaming_to_mipi_types_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/hive_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/if_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/input_formatter_subsystem_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/input_selector_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/input_switch_2400_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/input_system_ctrl_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/input_system_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/irq_controller_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/isp2400_mamoiada_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/isp2400_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/isp_acquisition_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/isp_capture_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/mmu_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/scalar_processor_2400_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/sp_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/str2mem_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/streaming_to_mipi_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/timed_controller_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/var.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/version.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/spmem_dump.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/csi_rx_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hive_isp_css_2401_system_csi2p_generated/ia_css_isp_configs.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hive_isp_css_2401_system_csi2p_generated/ia_css_isp_configs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hive_isp_css_2401_system_csi2p_generated/ia_css_isp_params.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hive_isp_css_2401_system_csi2p_generated/ia_css_isp_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hive_isp_css_2401_system_csi2p_generated/ia_css_isp_states.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hive_isp_css_2401_system_csi2p_generated/ia_css_isp_states.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/csi_rx.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/csi_rx_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/csi_rx_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/ibuf_ctrl.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/ibuf_ctrl_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/ibuf_ctrl_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/input_system_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/input_system_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/isys_dma.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/isys_dma_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/isys_dma_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/isys_irq.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/isys_irq_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/isys_irq_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/isys_stream2mmio.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/isys_stream2mmio_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/isys_stream2mmio_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/pixelgen_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/pixelgen_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/host/system_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/PixelGen_SysBlock_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/bits.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/cell_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/css_receiver_2400_common_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/css_receiver_2400_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/dma_v2_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/gdc_v2_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/gp_regs_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/gp_timer_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/gpio_block_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/hive_isp_css_2401_irq_types_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/hive_isp_css_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/hive_isp_css_host_ids_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/hive_isp_css_streaming_to_mipi_types_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/hive_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/ibuf_cntrl_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/if_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/input_formatter_subsystem_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/input_selector_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/input_switch_2400_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/input_system_ctrl_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/input_system_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/irq_controller_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/isp2400_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/isp2401_mamoiada_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/isp_acquisition_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/isp_capture_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/mipi_backend_common_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/mipi_backend_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/mmu_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/rx_csi_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/scalar_processor_2400_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/sp_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/str2mem_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/stream2mmio_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/streaming_to_mipi_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/timed_controller_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/var.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/version.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/ibuf_ctrl_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/input_system_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/isys_dma_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/isys_irq_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/isys_stream2mmio_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/pixelgen_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/spmem_dump.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/system_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hive_isp_css_2401_system_generated/ia_css_isp_configs.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hive_isp_css_2401_system_generated/ia_css_isp_configs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hive_isp_css_2401_system_generated/ia_css_isp_params.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hive_isp_css_2401_system_generated/ia_css_isp_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hive_isp_css_2401_system_generated/ia_css_isp_states.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hive_isp_css_2401_system_generated/ia_css_isp_states.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/bits.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/cell_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/css_receiver_2400_common_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/css_receiver_2400_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/dma_v2_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/gdc_v2_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/gp_regs_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/gp_timer_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/gpio_block_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/hive_isp_css_2401_irq_types_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/hive_isp_css_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/hive_isp_css_host_ids_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/hive_isp_css_streaming_to_mipi_types_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/hive_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/if_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/input_formatter_subsystem_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/input_selector_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/input_switch_2400_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/input_system_ctrl_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/input_system_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/irq_controller_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/isp2400_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/isp2401_mamoiada_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/isp_acquisition_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/isp_capture_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/mmu_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/scalar_processor_2400_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/sp_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/str2mem_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/streaming_to_mipi_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/timed_controller_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/var.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/version.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/spmem_dump.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_api_version.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/css_trace.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/debug_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/dma_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/event_fifo_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/fifo_monitor_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/gdc_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/gp_device_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/gp_timer_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/gpio_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/hmem_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/debug.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/debug_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/debug_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/dma.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/dma_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/dma_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/event_fifo.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/event_fifo_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/event_fifo_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/fifo_monitor.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/fifo_monitor_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/fifo_monitor_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gdc.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gdc_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gdc_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gp_device.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gp_device_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gp_device_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gp_timer.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gp_timer_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gp_timer_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gpio_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/gpio_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/hive_isp_css_ddr_hrt_modified.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/hive_isp_css_hrt_modified.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/hmem.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/hmem_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/hmem_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/input_formatter.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/input_formatter_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/input_formatter_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/input_system.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/input_system_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/input_system_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/irq.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/irq_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/irq_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/isp.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/isp_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/isp_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/mmu.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/mmu_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/mmu_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/sp.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/sp_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/sp_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/system_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/timed_ctrl.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/timed_ctrl_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/timed_ctrl_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/vamem_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/vamem_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/vmem.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/vmem_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/host/vmem_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/input_formatter_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/input_system_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/irq_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/isp_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/mmu_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/resource_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/sp_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/system_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/timed_ctrl_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/vamem_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/vmem_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_common/xmem_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/assert_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/bamem.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/bbb_config.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/bitop_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/cpu_mem_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/csi_rx.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/debug.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/device_access/device_access.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/dma.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/error_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/event_fifo.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/fifo_monitor.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/gdc_device.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/gp_device.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/gp_timer.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/gpio.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/hmem.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/csi_rx_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/debug_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/dma_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/event_fifo_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/fifo_monitor_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/gdc_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/gp_device_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/gp_timer_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/gpio_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/hmem_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/ibuf_ctrl_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/input_formatter_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/input_system_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/irq_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp2400_config.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp2500_config.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp2600_config.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp2601_config.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp_config.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp_op1w.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp_op1w_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp_op2w.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp_op2w_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp_op_count.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isp_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isys_dma_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isys_irq_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isys_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/isys_stream2mmio_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/mmu_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/osys_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/pipeline_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/pixelgen_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/ref_vector_func.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/ref_vector_func_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/sp_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/tag_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/timed_ctrl_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/vamem_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/host/vmem_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/ibuf_ctrl.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/input_formatter.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/input_system.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/irq.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/isp.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/isys_dma.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/isys_irq.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/isys_stream2mmio.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/math_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/memory_access/memory_access.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/memory_realloc.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/misc_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/mmu_device.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/mpmath.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/osys.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/pixelgen.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/platform_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/print_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/queue.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/resource.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/socket.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/sp.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/storage_class.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/stream_buffer.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/string_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/system_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/tag.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/timed_ctrl.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/type_support.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/vamem.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/vector_func.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/vector_ops.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/vmem.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_include/xmem.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_shared/host/queue_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_shared/host/queue_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_shared/host/tag.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_shared/host/tag_local.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_shared/host/tag_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_shared/queue_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_shared/socket_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_shared/stream_buffer_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_shared/sw_event_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/hive_isp_css_shared/tag_global.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_3a.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_acc_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_buffer.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_control.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_device_access.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_device_access.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_dvs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_env.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_err.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_event_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_firmware.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_frac.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_frame_format.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_frame_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_host_data.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_input_port.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_irq.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_lace_stat.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_memory_access.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_memory_access.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_metadata.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_mipi.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_mmu.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_mmu_private.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_morph.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_pipe.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_pipe_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_prbs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_properties.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_shading.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_stream.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_stream_format.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_stream_public.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_timer.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_tpg.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_version.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/ia_css_version_data.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/aa/aa_2/ia_css_aa2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/aa/aa_2/ia_css_aa2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/aa/aa_2/ia_css_aa2_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/aa/aa_2/ia_css_aa2_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/aa/aa_2/ia_css_aa2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/anr/anr_1.0/ia_css_anr.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/anr/anr_1.0/ia_css_anr.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/anr/anr_1.0/ia_css_anr_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/anr/anr_1.0/ia_css_anr_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/anr/anr_2/ia_css_anr2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/anr/anr_2/ia_css_anr2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/anr/anr_2/ia_css_anr2_table.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/anr/anr_2/ia_css_anr2_table.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/anr/anr_2/ia_css_anr2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/anr/anr_2/ia_css_anr_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bayer_ls/bayer_ls_1.0/ia_css_bayer_load_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bayer_ls/bayer_ls_1.0/ia_css_bayer_ls_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bayer_ls/bayer_ls_1.0/ia_css_bayer_store_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bh/bh_2/ia_css_bh.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bh/bh_2/ia_css_bh.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bh/bh_2/ia_css_bh_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bh/bh_2/ia_css_bh_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnlm/ia_css_bnlm.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnlm/ia_css_bnlm.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnlm/ia_css_bnlm_default.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnlm/ia_css_bnlm_default.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnlm/ia_css_bnlm_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnlm/ia_css_bnlm_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnlm/ia_css_bnlm_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnr/bnr2_2/ia_css_bnr2_2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnr/bnr2_2/ia_css_bnr2_2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnr/bnr2_2/ia_css_bnr2_2_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnr/bnr2_2/ia_css_bnr2_2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnr/bnr_1.0/ia_css_bnr.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnr/bnr_1.0/ia_css_bnr.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/bnr/bnr_1.0/ia_css_bnr_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/cnr/cnr_1.0/ia_css_cnr.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/cnr/cnr_1.0/ia_css_cnr.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/cnr/cnr_1.0/ia_css_cnr_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/cnr/cnr_1.0/ia_css_cnr_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/cnr/cnr_2/ia_css_cnr2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/cnr/cnr_2/ia_css_cnr2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/cnr/cnr_2/ia_css_cnr2_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/cnr/cnr_2/ia_css_cnr2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/cnr/cnr_2/ia_css_cnr_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/cnr/cnr_2/ia_css_cnr_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/conversion/conversion_1.0/ia_css_conversion.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/conversion/conversion_1.0/ia_css_conversion.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/conversion/conversion_1.0/ia_css_conversion_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/conversion/conversion_1.0/ia_css_conversion_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/copy_output/copy_output_1.0/ia_css_copy_output.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/copy_output/copy_output_1.0/ia_css_copy_output.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/copy_output/copy_output_1.0/ia_css_copy_output_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/crop/crop_1.0/ia_css_crop.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/crop/crop_1.0/ia_css_crop.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/crop/crop_1.0/ia_css_crop_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/crop/crop_1.0/ia_css_crop_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/csc/csc_1.0/ia_css_csc.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/csc/csc_1.0/ia_css_csc.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/csc/csc_1.0/ia_css_csc_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/csc/csc_1.0/ia_css_csc_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc1_5/ia_css_ctc1_5.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc1_5/ia_css_ctc1_5.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc1_5/ia_css_ctc1_5_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc1_5/ia_css_ctc_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc2/ia_css_ctc2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc2/ia_css_ctc2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc2/ia_css_ctc2_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc2/ia_css_ctc2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc_1.0/ia_css_ctc.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc_1.0/ia_css_ctc.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc_1.0/ia_css_ctc_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc_1.0/ia_css_ctc_table.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc_1.0/ia_css_ctc_table.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ctc/ctc_1.0/ia_css_ctc_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_1.0/ia_css_de.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_1.0/ia_css_de.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_1.0/ia_css_de_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_1.0/ia_css_de_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_1.0/ia_css_de_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_2/ia_css_de2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_2/ia_css_de2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_2/ia_css_de2_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_2/ia_css_de2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_2/ia_css_de_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/de/de_2/ia_css_de_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dp/dp_1.0/ia_css_dp.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dp/dp_1.0/ia_css_dp.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dp/dp_1.0/ia_css_dp_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dp/dp_1.0/ia_css_dp_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dp/dp_1.0/ia_css_dp_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dpc2/ia_css_dpc2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dpc2/ia_css_dpc2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dpc2/ia_css_dpc2_default.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dpc2/ia_css_dpc2_default.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dpc2/ia_css_dpc2_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dpc2/ia_css_dpc2_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dpc2/ia_css_dpc2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dvs/dvs_1.0/ia_css_dvs.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dvs/dvs_1.0/ia_css_dvs.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dvs/dvs_1.0/ia_css_dvs_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/dvs/dvs_1.0/ia_css_dvs_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/eed1_8/ia_css_eed1_8.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/eed1_8/ia_css_eed1_8.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/eed1_8/ia_css_eed1_8_default.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/eed1_8/ia_css_eed1_8_default.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/eed1_8/ia_css_eed1_8_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/eed1_8/ia_css_eed1_8_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/eed1_8/ia_css_eed1_8_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fc/fc_1.0/ia_css_formats.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fc/fc_1.0/ia_css_formats.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fc/fc_1.0/ia_css_formats_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fc/fc_1.0/ia_css_formats_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fixedbds/fixedbds_1.0/ia_css_fixedbds_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fpn/fpn_1.0/ia_css_fpn.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fpn/fpn_1.0/ia_css_fpn.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fpn/fpn_1.0/ia_css_fpn_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/fpn/fpn_1.0/ia_css_fpn_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_1.0/ia_css_gc.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_1.0/ia_css_gc.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_1.0/ia_css_gc_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_1.0/ia_css_gc_table.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_1.0/ia_css_gc_table.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_1.0/ia_css_gc_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_2/ia_css_gc2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_2/ia_css_gc2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_2/ia_css_gc2_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_2/ia_css_gc2_table.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_2/ia_css_gc2_table.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/gc/gc_2/ia_css_gc2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/hdr/ia_css_hdr.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/hdr/ia_css_hdr.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/hdr/ia_css_hdr_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/hdr/ia_css_hdr_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/iefd2_6/ia_css_iefd2_6.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/iefd2_6/ia_css_iefd2_6.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/iefd2_6/ia_css_iefd2_6_default.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/iefd2_6/ia_css_iefd2_6_default.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/iefd2_6/ia_css_iefd2_6_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/iefd2_6/ia_css_iefd2_6_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/iefd2_6/ia_css_iefd2_6_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/bayer_io_ls/ia_css_bayer_io.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/bayer_io_ls/ia_css_bayer_io.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/bayer_io_ls/ia_css_bayer_io_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/bayer_io_ls/ia_css_bayer_io_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/common/ia_css_common_io_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/common/ia_css_common_io_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/plane_io_ls/ia_css_plane_io_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/plane_io_ls/ia_css_plane_io_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/yuv420_io_ls/ia_css_yuv420_io_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/yuv420_io_ls/ia_css_yuv420_io_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/yuv444_io_ls/ia_css_yuv444_io_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/io_ls/yuv444_io_ls/ia_css_yuv444_io_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/bayer_io_ls/ia_css_bayer_io.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/bayer_io_ls/ia_css_bayer_io.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/bayer_io_ls/ia_css_bayer_io_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/bayer_io_ls/ia_css_bayer_io_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/common/ia_css_common_io_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/common/ia_css_common_io_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/plane_io_ls/ia_css_plane_io_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/plane_io_ls/ia_css_plane_io_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/yuv420_io_ls/ia_css_yuv420_io_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/yuv420_io_ls/ia_css_yuv420_io_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/yuv444_io_ls/ia_css_yuv444_io.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/yuv444_io_ls/ia_css_yuv444_io.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/yuv444_io_ls/ia_css_yuv444_io_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ipu2_io_ls/yuv444_io_ls/ia_css_yuv444_io_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/iterator/iterator_1.0/ia_css_iterator.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/iterator/iterator_1.0/ia_css_iterator.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/iterator/iterator_1.0/ia_css_iterator_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc1_5/ia_css_macc1_5.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc1_5/ia_css_macc1_5.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc1_5/ia_css_macc1_5_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc1_5/ia_css_macc1_5_table.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc1_5/ia_css_macc1_5_table.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc1_5/ia_css_macc1_5_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc_1.0/ia_css_macc.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc_1.0/ia_css_macc.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc_1.0/ia_css_macc_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc_1.0/ia_css_macc_table.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc_1.0/ia_css_macc_table.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/macc/macc_1.0/ia_css_macc_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/norm/norm_1.0/ia_css_norm.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/norm/norm_1.0/ia_css_norm.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/norm/norm_1.0/ia_css_norm_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/norm/norm_1.0/ia_css_norm_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ob/ob2/ia_css_ob2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ob/ob2/ia_css_ob2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ob/ob2/ia_css_ob2_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ob/ob2/ia_css_ob2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ob/ob_1.0/ia_css_ob.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ob/ob_1.0/ia_css_ob.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ob/ob_1.0/ia_css_ob_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ob/ob_1.0/ia_css_ob_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/output/output_1.0/ia_css_output.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/output/output_1.0/ia_css_output.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/output/output_1.0/ia_css_output_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/output/output_1.0/ia_css_output_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/pdaf/ia_css_pdaf.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/pdaf/ia_css_pdaf.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/pdaf/ia_css_pdaf_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/pdaf/ia_css_pdaf_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/qplane/qplane_2/ia_css_qplane.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/qplane/qplane_2/ia_css_qplane.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/qplane/qplane_2/ia_css_qplane_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/qplane/qplane_2/ia_css_qplane_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/raw/raw_1.0/ia_css_raw.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/raw/raw_1.0/ia_css_raw.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/raw/raw_1.0/ia_css_raw_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/raw/raw_1.0/ia_css_raw_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/raw_aa_binning/raw_aa_binning_1.0/ia_css_raa.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/raw_aa_binning/raw_aa_binning_1.0/ia_css_raa.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ref/ref_1.0/ia_css_ref.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ref/ref_1.0/ia_css_ref.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ref/ref_1.0/ia_css_ref_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ref/ref_1.0/ia_css_ref_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ref/ref_1.0/ia_css_ref_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/s3a/s3a_1.0/ia_css_s3a.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/s3a/s3a_1.0/ia_css_s3a.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/s3a/s3a_1.0/ia_css_s3a_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/s3a/s3a_1.0/ia_css_s3a_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/s3a_stat_ls/ia_css_s3a_stat_ls_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/s3a_stat_ls/ia_css_s3a_stat_store_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/satm/ia_css_satm.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/satm/ia_css_satm.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/satm/ia_css_satm_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/satm/ia_css_satm_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sc/sc_1.0/ia_css_sc.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sc/sc_1.0/ia_css_sc.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sc/sc_1.0/ia_css_sc_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sc/sc_1.0/ia_css_sc_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/scale/scale_1.0/ia_css_scale_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/common/ia_css_sdis_common.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/common/ia_css_sdis_common_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/common/ia_css_sdis_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/sdis_1.0/ia_css_sdis.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/sdis_1.0/ia_css_sdis.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/sdis_1.0/ia_css_sdis_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/sdis_1.0/ia_css_sdis_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/sdis_2/ia_css_sdis2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/sdis_2/ia_css_sdis2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/sdis_2/ia_css_sdis2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/sdis/sdis_2/ia_css_sdis_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tdf/tdf_1.0/ia_css_tdf.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tdf/tdf_1.0/ia_css_tdf.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tdf/tdf_1.0/ia_css_tdf_default.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tdf/tdf_1.0/ia_css_tdf_default.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tdf/tdf_1.0/ia_css_tdf_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tdf/tdf_1.0/ia_css_tdf_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tnr/tnr3/ia_css_tnr3_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tnr/tnr_1.0/ia_css_tnr.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tnr/tnr_1.0/ia_css_tnr.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tnr/tnr_1.0/ia_css_tnr_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tnr/tnr_1.0/ia_css_tnr_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/tnr/tnr_1.0/ia_css_tnr_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/uds/uds_1.0/ia_css_uds.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/uds/uds_1.0/ia_css_uds.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/uds/uds_1.0/ia_css_uds_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/vf/vf_1.0/ia_css_vf.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/vf/vf_1.0/ia_css_vf.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/vf/vf_1.0/ia_css_vf_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/vf/vf_1.0/ia_css_vf_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/wb/wb_1.0/ia_css_wb.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/wb/wb_1.0/ia_css_wb.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/wb/wb_1.0/ia_css_wb_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/wb/wb_1.0/ia_css_wb_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr3_0_11/ia_css_xnr3_0_11.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr3_0_11/ia_css_xnr3_0_11.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr3_0_11/ia_css_xnr3_0_11_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr3_0_11/ia_css_xnr3_0_11_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr3_0_5/ia_css_xnr3_0_5.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr3_0_5/ia_css_xnr3_0_5.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr3_0_5/ia_css_xnr3_0_5_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr3_0_5/ia_css_xnr3_0_5_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_1.0/ia_css_xnr.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_1.0/ia_css_xnr.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_1.0/ia_css_xnr_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_1.0/ia_css_xnr_table.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_1.0/ia_css_xnr_table.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_1.0/ia_css_xnr_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_3.0/ia_css_xnr3.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_3.0/ia_css_xnr3.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_3.0/ia_css_xnr3_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_3.0/ia_css_xnr3_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/xnr/xnr_3.0/ia_css_xnr3_wrapper_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_1.0/ia_css_ynr.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_1.0/ia_css_ynr.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_1.0/ia_css_ynr_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_1.0/ia_css_ynr_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_1.0/ia_css_ynr_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_2/ia_css_ynr2.host.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_2/ia_css_ynr2.host.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_2/ia_css_ynr2_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_2/ia_css_ynr2_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_2/ia_css_ynr_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/ynr/ynr_2/ia_css_ynr_state.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/yuv_ls/yuv_ls_1.0/ia_css_yuv_load_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/yuv_ls/yuv_ls_1.0/ia_css_yuv_ls_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/kernels/yuv_ls/yuv_ls_1.0/ia_css_yuv_store_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/modes/interface/input_buf.isp.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/modes/interface/isp_const.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/modes/interface/isp_exprs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/isp/modes/interface/isp_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/memory_realloc.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/binary/interface/ia_css_binary.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/binary/src/binary.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/bufq/interface/ia_css_bufq.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/bufq/interface/ia_css_bufq_comm.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/bufq/src/bufq.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/debug/interface/ia_css_debug.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/debug/interface/ia_css_debug_internal.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/debug/interface/ia_css_debug_pipe.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/debug/src/ia_css_debug.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/event/interface/ia_css_event.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/event/src/event.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/eventq/interface/ia_css_eventq.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/eventq/src/eventq.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/frame/interface/ia_css_frame.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/frame/interface/ia_css_frame_comm.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/frame/src/frame.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/ifmtr/interface/ia_css_ifmtr.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/ifmtr/src/ifmtr.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/inputfifo/interface/ia_css_inputfifo.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/inputfifo/src/inputfifo.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isp_param/interface/ia_css_isp_param.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isp_param/interface/ia_css_isp_param_types.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isp_param/src/isp_param.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/interface/ia_css_isys.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/interface/ia_css_isys_comm.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/csi_rx_rmgr.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/csi_rx_rmgr.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/ibuf_ctrl_rmgr.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/ibuf_ctrl_rmgr.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/isys_dma_rmgr.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/isys_dma_rmgr.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/isys_init.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/isys_stream2mmio_rmgr.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/isys_stream2mmio_rmgr.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/rx.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/virtual_isys.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/isys/src/virtual_isys.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/pipeline/interface/ia_css_pipeline.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/pipeline/interface/ia_css_pipeline_common.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/pipeline/src/pipeline.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/queue/interface/ia_css_queue.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/queue/interface/ia_css_queue_comm.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/queue/src/queue.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/queue/src/queue_access.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/queue/src/queue_access.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/rmgr/interface/ia_css_rmgr.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/rmgr/interface/ia_css_rmgr_vbuf.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/rmgr/src/rmgr.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/rmgr/src/rmgr_vbuf.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/spctrl/interface/ia_css_spctrl.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/spctrl/interface/ia_css_spctrl_comm.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/spctrl/src/spctrl.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/tagger/interface/ia_css_tagger_common.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/runtime/timer/src/timer.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_defs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_dvs_info.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_firmware.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_firmware.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_frac.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_host_data.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_hrt.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_internal.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_irq.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_lace_stat.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_legacy.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_metadata.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_metrics.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_metrics.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_mipi.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_mipi.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_mmu.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_morph.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_param_dvs.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_param_dvs.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_param_shading.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_param_shading.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_params.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_params.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_params_internal.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_pipe.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_properties.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_shading.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_sp.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_sp.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_stream.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_stream_format.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_stream_format.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_struct.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_uds.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/css2400/sh_css_version.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hmm/hmm.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hmm/hmm_bo.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hmm/hmm_bo_dev.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hmm/hmm_dynamic_pool.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hmm/hmm_reserved_pool.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hmm/hmm_vm.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hrt/device_access.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hrt/hive_isp_css_custom_host_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hrt/hive_isp_css_mm_hrt.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hrt/hive_isp_css_mm_hrt.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/hrt/memory_access.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/include/hmm/hmm.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/include/hmm/hmm_bo.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/include/hmm/hmm_bo_dev.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/include/hmm/hmm_common.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/include/hmm/hmm_pool.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/include/hmm/hmm_vm.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/include/mmu/isp_mmu.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/include/mmu/sh_mmu.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/include/mmu/sh_mmu_mrfld.h [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/list [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/mmu/isp_mmu.c [new file with mode: 0644]
drivers/staging/media/atomisp/pci/atomisp2/mmu/sh_mmu_mrfld.c [new file with mode: 0644]
drivers/staging/media/atomisp/platform/Makefile [new file with mode: 0644]
drivers/staging/media/atomisp/platform/clock/Makefile [new file with mode: 0644]
drivers/staging/media/atomisp/platform/clock/platform_vlv2_plat_clk.c [new file with mode: 0644]
drivers/staging/media/atomisp/platform/clock/platform_vlv2_plat_clk.h [new file with mode: 0644]
drivers/staging/media/atomisp/platform/clock/vlv2_plat_clock.c [new file with mode: 0644]
drivers/staging/media/atomisp/platform/intel-mid/Makefile [new file with mode: 0644]
drivers/staging/media/atomisp/platform/intel-mid/atomisp_gmin_platform.c [new file with mode: 0644]
drivers/staging/media/atomisp/platform/intel-mid/intel_mid_pcihelpers.c [new file with mode: 0644]