linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC/PATCH v4 00/11] Media controller (core and V4L2)
@ 2010-08-20 15:29 Laurent Pinchart
  2010-08-20 15:29 ` [RFC/PATCH v4 01/11] media: Media device node support Laurent Pinchart
                   ` (11 more replies)
  0 siblings, 12 replies; 47+ messages in thread
From: Laurent Pinchart @ 2010-08-20 15:29 UTC (permalink / raw)
  To: linux-media; +Cc: sakari.ailus

Hi everybody,

Here's the fourth version of the media controller patches. All comments received
so far have hopefully been incorporated.

Compared to the previous version, the patches have been rebased on top of 2.6.35
and a MEDIA_IOC_DEVICE_INFO ioctl has been added.

I won't submit a rebased version of the V4L2 API additions and OMAP3 ISP patches
right now. I will first clean up (and document) the V4L2 API additions patches,
and I will submit them as a proper RFC instead of sample code.

Laurent Pinchart (9):
  media: Media device node support
  media: Media device
  media: Entities, pads and links
  media: Media device information query
  media: Entities, pads and links enumeration
  media: Links setup
  v4l: Add a media_device pointer to the v4l2_device structure
  v4l: Make video_device inherit from media_entity
  v4l: Make v4l2_subdev inherit from media_entity

Sakari Ailus (2):
  media: Entity graph traversal
  media: Reference count and power handling

 Documentation/media-framework.txt            |  574 ++++++++++++++++++++++++
 Documentation/video4linux/v4l2-framework.txt |   72 +++-
 drivers/media/Makefile                       |    8 +-
 drivers/media/media-device.c                 |  377 ++++++++++++++++
 drivers/media/media-devnode.c                |  310 +++++++++++++
 drivers/media/media-entity.c                 |  614 ++++++++++++++++++++++++++
 drivers/media/video/v4l2-dev.c               |   35 ++-
 drivers/media/video/v4l2-device.c            |   45 ++-
 drivers/media/video/v4l2-subdev.c            |   27 ++-
 include/linux/media.h                        |  105 +++++
 include/media/media-device.h                 |   90 ++++
 include/media/media-devnode.h                |   78 ++++
 include/media/media-entity.h                 |  112 +++++
 include/media/v4l2-dev.h                     |    6 +
 include/media/v4l2-device.h                  |    2 +
 include/media/v4l2-subdev.h                  |    7 +
 16 files changed, 2440 insertions(+), 22 deletions(-)
 create mode 100644 Documentation/media-framework.txt
 create mode 100644 drivers/media/media-device.c
 create mode 100644 drivers/media/media-devnode.c
 create mode 100644 drivers/media/media-entity.c
 create mode 100644 include/linux/media.h
 create mode 100644 include/media/media-device.h
 create mode 100644 include/media/media-devnode.h
 create mode 100644 include/media/media-entity.h

-- 
Regards,

Laurent Pinchart


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

end of thread, other threads:[~2010-09-16 23:05 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-20 15:29 [RFC/PATCH v4 00/11] Media controller (core and V4L2) Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 01/11] media: Media device node support Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 02/11] media: Media device Laurent Pinchart
2010-08-28 10:26   ` Hans Verkuil
2010-09-01 13:51     ` Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 03/11] media: Entities, pads and links Laurent Pinchart
2010-08-28 10:31   ` Hans Verkuil
2010-09-01 13:51     ` Laurent Pinchart
2010-09-09  0:41   ` Mauro Carvalho Chehab
2010-09-14 13:51     ` Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 04/11] media: Entity graph traversal Laurent Pinchart
2010-09-09  0:46   ` Mauro Carvalho Chehab
2010-09-14 13:59     ` Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 05/11] media: Reference count and power handling Laurent Pinchart
2010-09-09  0:58   ` Mauro Carvalho Chehab
2010-09-11 20:38     ` Sakari Ailus
2010-09-16  8:46       ` Laurent Pinchart
2010-09-16 10:35         ` Mauro Carvalho Chehab
2010-09-16 11:11           ` Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 06/11] media: Media device information query Laurent Pinchart
2010-08-28 10:44   ` Hans Verkuil
2010-09-01 13:58     ` Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 07/11] media: Entities, pads and links enumeration Laurent Pinchart
2010-08-28 11:02   ` Hans Verkuil
2010-09-01 14:05     ` Laurent Pinchart
2010-09-06 16:51       ` Hans Verkuil
2010-09-16  9:20         ` Laurent Pinchart
2010-09-16 15:36           ` Sakari Ailus
2010-09-16 23:05             ` Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 08/11] media: Links setup Laurent Pinchart
2010-08-28 11:14   ` Hans Verkuil
2010-09-01 14:08     ` Laurent Pinchart
2010-09-06 17:09       ` Hans Verkuil
2010-09-16  9:02         ` Laurent Pinchart
2010-09-09  1:14   ` Mauro Carvalho Chehab
2010-09-16  9:04     ` Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 09/11] v4l: Add a media_device pointer to the v4l2_device structure Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 10/11] v4l: Make video_device inherit from media_entity Laurent Pinchart
2010-08-20 15:29 ` [RFC/PATCH v4 11/11] v4l: Make v4l2_subdev " Laurent Pinchart
2010-09-09  1:25   ` Mauro Carvalho Chehab
2010-09-16  8:55     ` Laurent Pinchart
2010-09-09  1:44 ` [RFC/PATCH v4 00/11] Media controller (core and V4L2) Mauro Carvalho Chehab
2010-09-14 12:25   ` Laurent Pinchart
2010-09-14 13:24     ` Hans Verkuil
2010-09-14 13:49       ` Laurent Pinchart
2010-09-14 13:34     ` Mauro Carvalho Chehab
2010-09-14 13:48       ` Laurent Pinchart

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