From: Hans Verkuil <hans.verkuil@xxxxxxxxx> This patch series converts the soc-camera atmel-isi to a standalone V4L2 driver. The same is done for the ov7670 and ov2640 sensor drivers: the ov7670 was used to test the atmel-isi driver. The ov2640 is needed because the em28xx driver has a soc_camera include dependency. Both ov7670 and ov2640 sensors have been tested with the atmel-isi driver. The first 5 patches improve the ov7670 sensor driver, mostly adding modern features such as DT support. The next three convert the atmel-isi and move it out of soc_camera. The following 6 patches convert ov2640 and drop the soc_camera dependency in em28xx. I have tested that this works with my 'SpeedLink Vicious And Divine Laplace webcam', but the picture is all wrong, but it was like that without my patches as well so I am bug-compatible. I've asked Frank Schaefer who authored this if he can test this em28xx code and see if something regressed. The last two patches add isi support to the DT: the first for the ov7670 sensor, the second modifies it for the ov2640 sensor. These two final patches are for demonstration purposes only, I do not plan on merging them. Tested with my sama5d3-Xplained board, the ov2640 sensor and two ov7670 sensors: one with and one without reset/pwdn pins. Also tested with my em28xx-based webcam. I believe I have addressed all comments made by Sakari regarding the v1 patch series. Regards, Hans Changes since v1: - Dropped MC support from atmel-isi and ov7670: not needed to make this work. Only for the ov2640 was it kept since the em28xx driver requires it. - Use devm_clk_get instead of clk_get. - The ov7670 lower limit of the clock speed is 10 MHz instead of 12. Adjust accordingly. Hans Verkuil (16): ov7670: call v4l2_async_register_subdev ov7670: fix g/s_parm ov7670: get xclk ov7670: add devicetree support ov7670: document device tree bindings atmel-isi: remove dependency of the soc-camera framework atmel-isi: move out of soc_camera to atmel atmel-isi: document device tree bindings ov2640: convert from soc-camera to a standard subdev sensor driver. ov2640: enable clock and fix power/reset ov2640: allow use inside em28xx ov2640: add MC support ov2640: update bindings em28xx: drop last soc_camera link sama5d3 dts: enable atmel-isi at91-sama5d3_xplained.dts: select ov2640 .../devicetree/bindings/media/atmel-isi.txt | 91 +- .../devicetree/bindings/media/i2c/ov2640.txt | 22 +- .../devicetree/bindings/media/i2c/ov7670.txt | 44 + MAINTAINERS | 1 + arch/arm/boot/dts/at91-sama5d3_xplained.dts | 61 +- arch/arm/boot/dts/sama5d3.dtsi | 4 +- drivers/media/i2c/Kconfig | 11 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/{soc_camera => }/ov2640.c | 189 +-- drivers/media/i2c/ov7670.c | 71 +- drivers/media/i2c/soc_camera/Kconfig | 6 - drivers/media/i2c/soc_camera/Makefile | 1 - drivers/media/platform/Makefile | 1 + drivers/media/platform/atmel/Kconfig | 11 +- drivers/media/platform/atmel/Makefile | 1 + drivers/media/platform/atmel/atmel-isi.c | 1398 ++++++++++++++++++++ .../platform/{soc_camera => atmel}/atmel-isi.h | 0 drivers/media/platform/soc_camera/Kconfig | 11 - drivers/media/platform/soc_camera/Makefile | 1 - drivers/media/platform/soc_camera/atmel-isi.c | 1167 ---------------- drivers/media/usb/em28xx/em28xx-camera.c | 9 - 21 files changed, 1710 insertions(+), 1391 deletions(-) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov7670.txt rename drivers/media/i2c/{soc_camera => }/ov2640.c (90%) create mode 100644 drivers/media/platform/atmel/atmel-isi.c rename drivers/media/platform/{soc_camera => atmel}/atmel-isi.h (100%) delete mode 100644 drivers/media/platform/soc_camera/atmel-isi.c -- 2.10.2 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html