All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH/RFC v3 00/11] Sub-device pad-level operations
@ 2010-10-05 14:25 Laurent Pinchart
  2010-10-05 14:25 ` [PATCH/RFC v3 01/11] v4l: Move the media/v4l2-mediabus.h header to include/linux Laurent Pinchart
                   ` (11 more replies)
  0 siblings, 12 replies; 26+ messages in thread
From: Laurent Pinchart @ 2010-10-05 14:25 UTC (permalink / raw)
  To: linux-media; +Cc: sakari.ailus

Hi everybody,

Here's the third version of the patch set (I'll try not to send more than a
few dozens versions a day ;-)).

Changes compared to the previous version are the media bus pixel codes sort
order, documentation images being split to a separate patch for ease of review,
and variable renames moved from one patch to another.

There's no change to the API or ABI, so I won't repost a new version of the
OMAP3 ISP driver.

Antti Koskipaa (1):
  v4l: v4l2_subdev userspace crop API

Laurent Pinchart (9):
  v4l: Move the media/v4l2-mediabus.h header to include/linux
  v4l: Rename V4L2_MBUS_FMT_GREY8_1X8 to V4L2_MBUS_FMT_Y8_1X8
  v4l: Group media bus pixel codes by types and sort them
    alphabetically
  v4l: Add 8-bit YUYV on 16-bit bus and SGRBG10 media bus pixel codes
  v4l: Add remaining RAW10 patterns w DPCM pixel code variants
  v4l: v4l2_subdev pad-level operations
  v4l: v4l2_subdev userspace format API - documentation binary files
  v4l: v4l2_subdev userspace format API
  v4l: v4l2_subdev userspace frame interval API

Stanimir Varbanov (1):
  v4l: Create v4l2 subdev file handle structure

 Documentation/DocBook/Makefile                     |    5 +-
 Documentation/DocBook/media-entities.tmpl          |   26 +
 Documentation/DocBook/v4l/bayer.pdf                |  Bin 0 -> 12116 bytes
 Documentation/DocBook/v4l/bayer.png                |  Bin 0 -> 9725 bytes
 Documentation/DocBook/v4l/dev-subdev.xml           |  307 +++++
 Documentation/DocBook/v4l/pipeline.pdf             |  Bin 0 -> 20276 bytes
 Documentation/DocBook/v4l/pipeline.png             |  Bin 0 -> 12130 bytes
 Documentation/DocBook/v4l/subdev-formats.xml       | 1294 ++++++++++++++++++++
 Documentation/DocBook/v4l/v4l2.xml                 |    7 +
 Documentation/DocBook/v4l/vidioc-streamon.xml      |    9 +
 .../v4l/vidioc-subdev-enum-frame-interval.xml      |  146 +++
 .../DocBook/v4l/vidioc-subdev-enum-frame-size.xml  |  148 +++
 .../DocBook/v4l/vidioc-subdev-enum-mbus-code.xml   |  113 ++
 Documentation/DocBook/v4l/vidioc-subdev-g-crop.xml |  143 +++
 Documentation/DocBook/v4l/vidioc-subdev-g-fmt.xml  |  168 +++
 .../DocBook/v4l/vidioc-subdev-g-frame-interval.xml |  135 ++
 drivers/media/video/mt9m001.c                      |    2 +-
 drivers/media/video/mt9v022.c                      |    4 +-
 drivers/media/video/sh_mobile_csi2.c               |    6 +-
 drivers/media/video/soc_mediabus.c                 |    2 +-
 drivers/media/video/v4l2-subdev.c                  |  170 +++-
 include/linux/Kbuild                               |    2 +
 include/linux/v4l2-mediabus.h                      |   96 ++
 include/linux/v4l2-subdev.h                        |  141 +++
 include/media/soc_mediabus.h                       |    3 +-
 include/media/v4l2-mediabus.h                      |   53 +-
 include/media/v4l2-subdev.h                        |   51 +
 27 files changed, 2942 insertions(+), 89 deletions(-)
 create mode 100644 Documentation/DocBook/v4l/bayer.pdf
 create mode 100644 Documentation/DocBook/v4l/bayer.png
 create mode 100644 Documentation/DocBook/v4l/dev-subdev.xml
 create mode 100644 Documentation/DocBook/v4l/pipeline.pdf
 create mode 100644 Documentation/DocBook/v4l/pipeline.png
 create mode 100644 Documentation/DocBook/v4l/subdev-formats.xml
 create mode 100644 Documentation/DocBook/v4l/vidioc-subdev-enum-frame-interval.xml
 create mode 100644 Documentation/DocBook/v4l/vidioc-subdev-enum-frame-size.xml
 create mode 100644 Documentation/DocBook/v4l/vidioc-subdev-enum-mbus-code.xml
 create mode 100644 Documentation/DocBook/v4l/vidioc-subdev-g-crop.xml
 create mode 100644 Documentation/DocBook/v4l/vidioc-subdev-g-fmt.xml
 create mode 100644 Documentation/DocBook/v4l/vidioc-subdev-g-frame-interval.xml
 create mode 100644 include/linux/v4l2-mediabus.h
 create mode 100644 include/linux/v4l2-subdev.h

-- 
Regards,

Laurent Pinchart


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

end of thread, other threads:[~2010-10-06 10:21 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-05 14:25 [PATCH/RFC v3 00/11] Sub-device pad-level operations Laurent Pinchart
2010-10-05 14:25 ` [PATCH/RFC v3 01/11] v4l: Move the media/v4l2-mediabus.h header to include/linux Laurent Pinchart
2010-10-05 14:43   ` Sakari Ailus
2010-10-05 15:30     ` Guennadi Liakhovetski
2010-10-05 15:34       ` Hans Verkuil
2010-10-05 22:32         ` Sakari Ailus
2010-10-05 22:31       ` Sakari Ailus
2010-10-06  6:23       ` Laurent Pinchart
2010-10-05 14:25 ` [PATCH/RFC v3 02/11] v4l: Rename V4L2_MBUS_FMT_GREY8_1X8 to V4L2_MBUS_FMT_Y8_1X8 Laurent Pinchart
2010-10-05 14:25 ` [PATCH/RFC v3 03/11] v4l: Group media bus pixel codes by types and sort them alphabetically Laurent Pinchart
2010-10-05 15:32   ` Guennadi Liakhovetski
2010-10-06  9:19   ` Hiremath, Vaibhav
2010-10-06 10:13     ` Laurent Pinchart
2010-10-06 10:19       ` Hiremath, Vaibhav
2010-10-05 14:25 ` [PATCH/RFC v3 04/11] v4l: Add 8-bit YUYV on 16-bit bus and SGRBG10 media bus pixel codes Laurent Pinchart
2010-10-06  9:19   ` Hiremath, Vaibhav
2010-10-06 10:18     ` Laurent Pinchart
2010-10-06 10:21       ` Hiremath, Vaibhav
2010-10-05 14:25 ` [PATCH/RFC v3 05/11] v4l: Add remaining RAW10 patterns w DPCM pixel code variants Laurent Pinchart
2010-10-05 14:25 ` [PATCH/RFC v3 06/11] v4l: Create v4l2 subdev file handle structure Laurent Pinchart
2010-10-05 14:25 ` [PATCH/RFC v3 07/11] v4l: v4l2_subdev pad-level operations Laurent Pinchart
2010-10-05 14:25 ` [PATCH/RFC v3 08/11] v4l: v4l2_subdev userspace format API - documentation binary files Laurent Pinchart
2010-10-05 14:25 ` [PATCH/RFC v3 09/11] v4l: v4l2_subdev userspace format API Laurent Pinchart
2010-10-05 14:25 ` [PATCH/RFC v3 10/11] v4l: v4l2_subdev userspace frame interval API Laurent Pinchart
2010-10-05 14:25 ` [PATCH/RFC v3 11/11] v4l: v4l2_subdev userspace crop API Laurent Pinchart
2010-10-05 14:33 ` [PATCH/RFC v3 00/11] Sub-device pad-level operations Hans Verkuil

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.