devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFC 00/13] Common video input interfaces bindings and V4L2 OF helpers
@ 2012-12-10 19:41 Sylwester Nawrocki
  2012-12-10 19:41 ` [PATCH RFC 03/13] OF: define of_*_cmp() macros also if CONFIG_OF isn't set Sylwester Nawrocki
                   ` (10 more replies)
  0 siblings, 11 replies; 25+ messages in thread
From: Sylwester Nawrocki @ 2012-12-10 19:41 UTC (permalink / raw)
  To: g.liakhovetski, linux-media
  Cc: grant.likely, rob.herring, thomas.abraham, t.figa, sw0312.kim,
	kyungmin.park, devicetree-discuss, linux-kernel,
	Sylwester Nawrocki

Hi all,

This series is an update of work on common bindings for video capture
interfaces [1], [2] originally started by Guennadi. I took the liberty
of resending the original patches and adding my changes on top of it.

I just noticed there were some comments to the v5 of the bindings
documentation and the example. I might have addressed them in next
iteration, unless the author prefers to take care of that himself.

This series adds a bunch of empty function/macro definitions for
when CONFIG_OF(_DEVICE) is disabled, video capture interfaces common
bindings documentation, related OF helpers and some corrections/
enhancements of them.

Full tree containing this patch series can be browsed at [3].

[1] http://www.spinics.net/lists/linux-sh/msg13391.html
[2] http://www.spinics.net/lists/linux-sh/msg13111.html
[3] http://git.infradead.org/users/kmpark/linux-samsung/shortlog/refs/heads/v3.7-rc8-pq-camera-dt

Guennadi Liakhovetski (6):
  i2c: add dummy inline functions for when CONFIG_OF_I2C(_MODULE) isn't
    defined
  of: add a dummy inline function for when CONFIG_OF is not defined
  OF: define of_*_cmp() macros also if CONFIG_OF isn't set
  OF: make a function pointer argument const
  media: add V4L2 DT binding documentation
  media: add a V4L2 OF parser

Sylwester Nawrocki (7):
  of: Add empty for_each_available_child_of_node() macro definition
  of: Add empty of_find_device_by_node() function definition
  of: Add empty of_get_next_child() function definition
  v4l2-of: Support variable length of data-lanes property
  v4l2-of: Add v4l2_of_parse_data_lanes() function
  v4l2-of: Corrected v4l2_of_parse_link() function declaration
  v4l2-of: Replace "remote" property with "remote-endpoint"

 Documentation/devicetree/bindings/media/v4l2.txt |  162 ++++++++++++++++
 drivers/media/v4l2-core/Makefile                 |    3 +
 drivers/media/v4l2-core/v4l2-of.c                |  217 ++++++++++++++++++++++
 drivers/of/base.c                                |    4 +-
 include/linux/of.h                               |   36 +++-
 include/linux/of_i2c.h                           |   12 ++
 include/linux/of_platform.h                      |    7 +
 include/media/v4l2-of.h                          |   80 ++++++++
 8 files changed, 509 insertions(+), 12 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/media/v4l2.txt
 create mode 100644 drivers/media/v4l2-core/v4l2-of.c
 create mode 100644 include/media/v4l2-of.h

--
1.7.9.5

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

end of thread, other threads:[~2012-12-31 21:55 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-10 19:41 [PATCH RFC 00/13] Common video input interfaces bindings and V4L2 OF helpers Sylwester Nawrocki
2012-12-10 19:41 ` [PATCH RFC 03/13] OF: define of_*_cmp() macros also if CONFIG_OF isn't set Sylwester Nawrocki
     [not found]   ` <1355168499-5847-4-git-send-email-s.nawrocki-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-12-11  8:45     ` Grant Likely
2012-12-10 19:41 ` [PATCH RFC 04/13] OF: make a function pointer argument const Sylwester Nawrocki
2012-12-11  8:51   ` Grant Likely
     [not found] ` <1355168499-5847-1-git-send-email-s.nawrocki-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-12-10 19:41   ` [PATCH RFC 01/13] i2c: add dummy inline functions for when CONFIG_OF_I2C(_MODULE) isn't defined Sylwester Nawrocki
2012-12-11  8:39     ` Grant Likely
2012-12-10 19:41   ` [PATCH RFC 02/13] of: add a dummy inline function for when CONFIG_OF is not defined Sylwester Nawrocki
2012-12-11  8:42     ` Grant Likely
2012-12-10 19:41   ` [PATCH RFC 05/13] of: Add empty for_each_available_child_of_node() macro definition Sylwester Nawrocki
     [not found]     ` <1355168499-5847-6-git-send-email-s.nawrocki-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-12-11  8:57       ` Grant Likely
2012-12-11 16:09         ` Sylwester Nawrocki
2012-12-10 19:41 ` [PATCH RFC 06/13] of: Add empty of_find_device_by_node() function definition Sylwester Nawrocki
2012-12-11  8:59   ` Grant Likely
2012-12-10 19:41 ` [PATCH RFC 07/13] of: Add empty of_get_next_child() " Sylwester Nawrocki
2012-12-10 19:41 ` [PATCH RFC 08/13] media: add V4L2 DT binding documentation Sylwester Nawrocki
2012-12-15 21:13   ` [PATCH] [media] Add common binding documentation for video interfaces Sylwester Nawrocki
2012-12-18 17:14     ` Stephen Warren
     [not found]       ` <50D0A475.7010800-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2012-12-31 19:51         ` Sylwester Nawrocki
2012-12-31 21:55     ` Rob Herring
2012-12-10 19:41 ` [PATCH RFC 09/13] media: add a V4L2 OF parser Sylwester Nawrocki
2012-12-10 19:41 ` [PATCH RFC 10/13] v4l2-of: Support variable length of data-lanes property Sylwester Nawrocki
2012-12-10 19:41 ` [PATCH RFC 11/13] v4l2-of: Add v4l2_of_parse_data_lanes() function Sylwester Nawrocki
2012-12-10 19:41 ` [PATCH RFC 12/13] v4l2-of: Corrected v4l2_of_parse_link() function declaration Sylwester Nawrocki
2012-12-10 19:41 ` [PATCH RFC 13/13] v4l2-of: Replace "remote" property with "remote-endpoint" Sylwester Nawrocki

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).