All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: linux-media@vger.kernel.org
Cc: sakari.ailus@maxwell.research.nokia.com
Subject: [PATCH v6 00/11] Sub-device pad-level operations
Date: Thu, 27 Jan 2011 13:30:45 +0100	[thread overview]
Message-ID: <1296131456-30000-1-git-send-email-laurent.pinchart@ideasonboard.com> (raw)

Hi everybody,

Here's the sixth version of the sub-device pad-level operations patches.
The patches are just rebased on top of 2.6.37 and some more padding has
been added for future enhancements.

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

Laurent Pinchart (9):
  v4l: Move the media/v4l2-mediabus.h header to include/linux
  v4l: Replace enums with fixed-sized fields in public structure
  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: subdev: Add a new file operations class
  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       | 2416 ++++++++++++++++++++
 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 |  149 ++
 Documentation/DocBook/v4l/vidioc-subdev-g-fmt.xml  |  174 ++
 .../DocBook/v4l/vidioc-subdev-g-frame-interval.xml |  135 ++
 drivers/media/Kconfig                              |    9 +
 drivers/media/video/mt9m001.c                      |    2 +-
 drivers/media/video/mt9v022.c                      |    4 +-
 drivers/media/video/ov6650.c                       |   10 +-
 drivers/media/video/sh_mobile_csi2.c               |    6 +-
 drivers/media/video/soc_mediabus.c                 |    2 +-
 drivers/media/video/v4l2-subdev.c                  |  189 ++-
 include/linux/Kbuild                               |    2 +
 include/linux/v4l2-mediabus.h                      |   94 +
 include/linux/v4l2-subdev.h                        |  141 ++
 include/media/soc_mediabus.h                       |    3 +-
 include/media/v4l2-mediabus.h                      |   61 +-
 include/media/v4l2-subdev.h                        |   65 +
 29 files changed, 4118 insertions(+), 105 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


             reply	other threads:[~2011-01-27 12:30 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-27 12:30 Laurent Pinchart [this message]
2011-01-27 12:30 ` [PATCH v6 01/11] v4l: Move the media/v4l2-mediabus.h header to include/linux Laurent Pinchart
2011-01-27 12:30 ` [PATCH v6 02/11] v4l: Replace enums with fixed-sized fields in public structure Laurent Pinchart
2011-01-27 12:30 ` [PATCH v6 03/11] v4l: Rename V4L2_MBUS_FMT_GREY8_1X8 to V4L2_MBUS_FMT_Y8_1X8 Laurent Pinchart
2011-01-27 12:30 ` [PATCH v6 04/11] v4l: Group media bus pixel codes by types and sort them alphabetically Laurent Pinchart
2011-01-27 12:30 ` [PATCH v6 05/11] v4l: Create v4l2 subdev file handle structure Laurent Pinchart
2011-02-04 10:40   ` Hans Verkuil
2011-02-08 12:52     ` Laurent Pinchart
2011-01-27 12:30 ` [PATCH v6 06/11] v4l: subdev: Add a new file operations class Laurent Pinchart
2011-02-04 10:31   ` Hans Verkuil
2011-01-27 12:30 ` [PATCH v6 07/11] v4l: v4l2_subdev pad-level operations Laurent Pinchart
2011-01-27 12:30 ` [PATCH v6 08/11] v4l: v4l2_subdev userspace format API - documentation binary files Laurent Pinchart
2011-01-27 12:30 ` [PATCH v6 09/11] v4l: v4l2_subdev userspace format API Laurent Pinchart
2011-01-27 12:30 ` [PATCH v6 10/11] v4l: v4l2_subdev userspace frame interval API Laurent Pinchart
2011-01-27 12:30 ` [PATCH v6 11/11] v4l: v4l2_subdev userspace crop API Laurent Pinchart

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1296131456-30000-1-git-send-email-laurent.pinchart@ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=sakari.ailus@maxwell.research.nokia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.