linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v12 00/19] TVP5150 Features and Fixes
@ 2020-03-09 10:14 Marco Felsch
  2020-03-09 10:14 ` [PATCH v12 01/19] dt-bindings: connector: analog: add sdtv standards property Marco Felsch
                   ` (20 more replies)
  0 siblings, 21 replies; 28+ messages in thread
From: Marco Felsch @ 2020-03-09 10:14 UTC (permalink / raw)
  To: mchehab, sakari.ailus, hans.verkuil, jacopo+renesas, robh+dt,
	laurent.pinchart
  Cc: devicetree, kernel, linux-media

Hi all,

here is the new and _hopefully_ last version :) This version contains
the discussion results with Sakari and some minor fixes from the v11.

Each patch has a dedicate log, so I avoid the details here and give only
an overview.

Patch 1-2:
Those where previously one patch.

Patch 3-6:
Prepare and implement the common v4l2-fwnode parsing code. I changed the
code from a single parse_and_add_links/free to parse/add_links/free. I
did the split to allow adding multiple links from different devices to a
_maybe_ coming global connector device. 

Patch 8:
I converted the parsing code to the new v4l2-fwnode-connector parsing
behaviour and fixed a two bugs during remove()

Patch 13:
This one is new due to the switch from the s_power() to the pm_runtime
as Sakari suggested.

Patch 14:
Also a new patch.

Patch 15:
New patch..

I've tested the series on a custom imx6-based board which uses the chip
directly (no-usb). I would appreciate if someone with a usb device can
test this too.

Regards,
  Marco

Javier Martinez Canillas (1):
  partial revert of "[media] tvp5150: add HW input connectors support"

Marco Felsch (17):
  dt-bindings: connector: analog: add sdtv standards property
  dt-bindings: display: add sdtv-standards defines
  media: v4l: link dt-bindings and uapi
  media: v4l2-fwnode: add endpoint id field to v4l2_fwnode_link
  media: v4l2-fwnode: add v4l2_fwnode_connector
  media: v4l2-fwnode: add initial connector parsing support
  media: tvp5150: add input source selection of_graph support
  media: dt-bindings: tvp5150: Add input port connectors DT bindings
  media: tvp5150: fix set_selection rectangle handling
  media: tvp5150: add FORMAT_TRY support for get/set selection handlers
  media: tvp5150: move irq en-/disable into runtime-pm ops
  media: tvp5150: add v4l2-event support
  media: tvp5150: add subdev open/close callbacks
  media: dt-bindings: tvp5150: cleanup bindings stlye
  media: dt-bindings: tvp5150: add optional sdtv standards documentation
  media: tvp5150: add support to limit sdtv standards
  media: tvp5150: make debug output more readable

Michael Tretter (1):
  media: tvp5150: initialize subdev before parsing device tree

 .../display/connector/analog-tv-connector.txt |   6 +
 .../devicetree/bindings/media/i2c/tvp5150.txt | 146 +++-
 drivers/media/i2c/tvp5150.c                   | 802 ++++++++++++++----
 drivers/media/v4l2-core/v4l2-fwnode.c         | 166 ++++
 include/dt-bindings/display/sdtv-standards.h  |  76 ++
 include/dt-bindings/media/tvp5150.h           |   2 -
 include/media/v4l2-fwnode.h                   | 143 ++++
 include/uapi/linux/videodev2.h                |   4 +
 8 files changed, 1146 insertions(+), 199 deletions(-)
 create mode 100644 include/dt-bindings/display/sdtv-standards.h

-- 
2.20.1


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

end of thread, other threads:[~2020-03-11  9:12 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-09 10:14 [PATCH v12 00/19] TVP5150 Features and Fixes Marco Felsch
2020-03-09 10:14 ` [PATCH v12 01/19] dt-bindings: connector: analog: add sdtv standards property Marco Felsch
2020-03-09 10:14 ` [PATCH v12 02/19] dt-bindings: display: add sdtv-standards defines Marco Felsch
2020-03-09 10:14 ` [PATCH v12 03/19] media: v4l: link dt-bindings and uapi Marco Felsch
2020-03-09 10:14 ` [PATCH v12 04/19] media: v4l2-fwnode: add endpoint id field to v4l2_fwnode_link Marco Felsch
2020-03-11  8:15   ` Sakari Ailus
2020-03-11  8:39     ` Marco Felsch
2020-03-09 10:14 ` [PATCH v12 05/19] media: v4l2-fwnode: add v4l2_fwnode_connector Marco Felsch
2020-03-09 10:14 ` [PATCH v12 06/19] media: v4l2-fwnode: add initial connector parsing support Marco Felsch
2020-03-11  8:17   ` Sakari Ailus
2020-03-11  8:43     ` Marco Felsch
2020-03-11  9:03       ` Sakari Ailus
2020-03-11  9:12         ` Marco Felsch
2020-03-09 10:14 ` [PATCH v12 07/19] partial revert of "[media] tvp5150: add HW input connectors support" Marco Felsch
2020-03-09 10:14 ` [PATCH v12 08/19] media: tvp5150: add input source selection of_graph support Marco Felsch
2020-03-09 10:14 ` [PATCH v12 09/19] media: dt-bindings: tvp5150: Add input port connectors DT bindings Marco Felsch
2020-03-09 10:14 ` [PATCH v12 10/19] media: tvp5150: fix set_selection rectangle handling Marco Felsch
2020-03-09 10:14 ` [PATCH v12 11/19] media: tvp5150: add FORMAT_TRY support for get/set selection handlers Marco Felsch
2020-03-09 10:14 ` [PATCH v12 12/19] media: tvp5150: initialize subdev before parsing device tree Marco Felsch
2020-03-09 10:14 ` [PATCH v12 13/19] media: tvp5150: move irq en-/disable into runtime-pm ops Marco Felsch
2020-03-09 10:14 ` [PATCH v12 14/19] media: tvp5150: add v4l2-event support Marco Felsch
2020-03-09 10:14 ` [PATCH v12 15/19] media: tvp5150: add subdev open/close callbacks Marco Felsch
2020-03-09 10:14 ` [PATCH v12 16/19] media: dt-bindings: tvp5150: cleanup bindings stlye Marco Felsch
2020-03-09 10:14 ` [PATCH v12 17/19] media: dt-bindings: tvp5150: add optional sdtv standards documentation Marco Felsch
2020-03-09 10:14 ` [PATCH v12 18/19] media: tvp5150: add support to limit sdtv standards Marco Felsch
2020-03-09 10:14 ` [PATCH v12 19/19] media: tvp5150: make debug output more readable Marco Felsch
2020-03-11  8:33 ` [PATCH v12 00/19] TVP5150 Features and Fixes Sakari Ailus
2020-03-11  9:08 ` Hans Verkuil

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).