All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/9] media: i2c: ov5645 driver enhancements
@ 2022-10-26 13:06 ` Prabhakar
  0 siblings, 0 replies; 42+ messages in thread
From: Prabhakar @ 2022-10-26 13:06 UTC (permalink / raw)
  To: Sakari Ailus, Laurent Pinchart, Mauro Carvalho Chehab,
	Rob Herring, Krzysztof Kozlowski, Shawn Guo, Sascha Hauer,
	Pengutronix Kernel Team, Fabio Estevam, NXP Linux Team,
	Geert Uytterhoeven, Magnus Damm, Hans Verkuil
  Cc: Shawn Tu, Jacopo Mondi, linux-media, devicetree, linux-kernel,
	linux-arm-kernel, linux-renesas-soc, Prabhakar, Biju Das,
	Lad Prabhakar

From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>

Hi All,

The main aim of this series is to add Runtime PM support to the sensor
driver alongside some cleanups and fixes.

v2 -> v3
- Included patch#1 [2] as part of this series
- Patched all in-tree DTS for dropping the clock preoperty to
  avoid dt warnings
- Fixed review comments pointed by Sakari and Laurent for the Runtime
  PM patch
- Now sending the error code of first error while stream off.
- Included RB tags from Laurent

v1-> v2
- patch #1 is infact a v3 [1] no changes
- patch #2 fixed review comments pointed by Sakari
- patch #3 [0] no changes 
- patches #4 and #5 are new

[0] https://patchwork.linuxtv.org/project/linux-media/patch/20220927202005.750621-1-prabhakar.mahadev-lad.rj@bp.renesas.com/
[1] https://patchwork.linuxtv.org/project/linux-media/patch/20220919153540.178732-1-prabhakar.mahadev-lad.rj@bp.renesas.com/
[2] https://patchwork.kernel.org/project/linux-media/patch/20220919143350.176746-1-prabhakar.mahadev-lad.rj@bp.renesas.com/

Lad Prabhakar (9):
  media: i2c: ov5645: Drop fetching the clk reference by name
  ARM: dts: imx6qdl-pico: Drop clock-names property
  ARM: dts: imx6qdl-wandboard: Drop clock-names property
  arm64: dts: renesas: aistarvision-mipi-adapter-2.1: Drop clock-names
    property
  media: dt-bindings: ov5645: Convert OV5645 binding to a schema
  media: i2c: ov5645: Use runtime PM
  media: i2c: ov5645: Drop empty comment
  media: i2c: ov5645: Don't return early on failures for s_stream(0)
  media: i2c: ov5645: Call ov5645_entity_init_cfg() before registering
    the subdev

 .../devicetree/bindings/media/i2c/ov5645.txt  |  54 ------
 .../bindings/media/i2c/ovti,ov5645.yaml       | 104 ++++++++++++
 arch/arm/boot/dts/imx6qdl-pico.dtsi           |   1 -
 arch/arm/boot/dts/imx6qdl-wandboard.dtsi      |   1 -
 .../aistarvision-mipi-adapter-2.1.dtsi        |   1 -
 drivers/media/i2c/Kconfig                     |   2 +-
 drivers/media/i2c/ov5645.c                    | 157 +++++++++---------
 7 files changed, 186 insertions(+), 134 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/media/i2c/ov5645.txt
 create mode 100644 Documentation/devicetree/bindings/media/i2c/ovti,ov5645.yaml

-- 
2.25.1


^ permalink raw reply	[flat|nested] 42+ messages in thread

end of thread, other threads:[~2022-10-31  9:57 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-26 13:06 [PATCH v3 0/9] media: i2c: ov5645 driver enhancements Prabhakar
2022-10-26 13:06 ` Prabhakar
2022-10-26 13:06 ` [PATCH v3 1/9] media: i2c: ov5645: Drop fetching the clk reference by name Prabhakar
2022-10-26 13:06   ` Prabhakar
2022-10-26 13:06 ` [PATCH v3 2/9] ARM: dts: imx6qdl-pico: Drop clock-names property Prabhakar
2022-10-26 13:06   ` Prabhakar
2022-10-26 13:06 ` [PATCH v3 3/9] ARM: dts: imx6qdl-wandboard: " Prabhakar
2022-10-26 13:06   ` Prabhakar
2022-10-26 13:06 ` [PATCH v3 4/9] arm64: dts: renesas: aistarvision-mipi-adapter-2.1: " Prabhakar
2022-10-26 13:06   ` Prabhakar
2022-10-27 13:14   ` Geert Uytterhoeven
2022-10-27 13:14     ` Geert Uytterhoeven
2022-10-26 13:06 ` [PATCH v3 5/9] media: dt-bindings: ov5645: Convert OV5645 binding to a schema Prabhakar
2022-10-26 13:06   ` Prabhakar
2022-10-26 20:10   ` Krzysztof Kozlowski
2022-10-26 20:10     ` Krzysztof Kozlowski
2022-10-26 13:06 ` [PATCH v3 6/9] media: i2c: ov5645: Use runtime PM Prabhakar
2022-10-26 13:06   ` Prabhakar
2022-10-27  9:22   ` Sakari Ailus
2022-10-27  9:22     ` Sakari Ailus
2022-10-27  9:48     ` Lad, Prabhakar
2022-10-27  9:48       ` Lad, Prabhakar
2022-10-26 13:06 ` [PATCH v3 7/9] media: i2c: ov5645: Drop empty comment Prabhakar
2022-10-26 13:06   ` Prabhakar
2022-10-26 13:06 ` [PATCH v3 8/9] media: i2c: ov5645: Don't return early on failures for s_stream(0) Prabhakar
2022-10-26 13:06   ` Prabhakar
2022-10-26 17:17   ` Marco Felsch
2022-10-26 17:17     ` Marco Felsch
2022-10-26 17:26     ` Lad, Prabhakar
2022-10-26 17:26       ` Lad, Prabhakar
2022-10-26 17:35       ` Marco Felsch
2022-10-26 17:35         ` Marco Felsch
2022-10-26 18:26         ` Lad, Prabhakar
2022-10-26 18:26           ` Lad, Prabhakar
2022-10-26 13:06 ` [PATCH v3 9/9] media: i2c: ov5645: Call ov5645_entity_init_cfg() before registering the subdev Prabhakar
2022-10-26 13:06   ` Prabhakar
2022-10-27  9:32 ` [PATCH v3 0/9] media: i2c: ov5645 driver enhancements Sakari Ailus
2022-10-27  9:32   ` Sakari Ailus
2022-10-29 12:54   ` Shawn Guo
2022-10-29 12:54     ` Shawn Guo
2022-10-31  9:56     ` Sakari Ailus
2022-10-31  9:56       ` Sakari Ailus

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.