linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/12] Media Controller capture driver for DM365
@ 2012-11-16 14:45 Prabhakar Lad
  2012-11-16 14:45 ` [PATCH v2 01/12] davinci: vpfe: add v4l2 capture driver with media interface Prabhakar Lad
                   ` (15 more replies)
  0 siblings, 16 replies; 23+ messages in thread
From: Prabhakar Lad @ 2012-11-16 14:45 UTC (permalink / raw)
  To: LMML; +Cc: LKML, DLOS, Manjunath Hadli, Prabhakar Lad, Mauro Carvalho Chehab

From: Manjunath Hadli <manjunath.hadli@ti.com>

This patch set adds media controller based capture driver for
DM365.

This driver bases its design on Laurent Pinchart's Media Controller Design
whose patches for Media Controller and subdev enhancements form the base.
The driver also takes copious elements taken from Laurent Pinchart and
others' OMAP ISP driver based on Media Controller. So thank you all the
people who are responsible for the Media Controller and the OMAP ISP driver.

Also, the core functionality of the driver comes from the arago vpfe capture
driver of which the isif capture was based on V4L2, with other drivers like
ipipe, ipipeif and Resizer.

Changes for v2:
1: Migrated the driver for videobuf2 usage pointed Hans.
2: Changed the design as pointed by Laurent, Exposed one more subdevs
   ipipeif and split the resizer subdev into three subdevs.
3: Rearrganed the patch sequence and changed the commit messages.
4: Changed the file architecture as pointed by Laurent.

Manjunath Hadli (12):
  davinci: vpfe: add v4l2 capture driver with media interface
  davinci: vpfe: add v4l2 video driver support
  davinci: vpfe: dm365: add IPIPEIF driver based on media framework
  davinci: vpfe: dm365: add ISIF driver based on media framework
  davinci: vpfe: dm365: add IPIPE support for media controller driver
  davinci: vpfe: dm365: add IPIPE hardware layer support
  davinci: vpfe: dm365: resizer driver based on media framework
  davinci: vpss: dm365: enable ISP registers
  davinci: vpss: dm365: set vpss clk ctrl
  davinci: vpss: dm365: add vpss helper functions to be used in the
    main driver for setting hardware parameters
  davinci: vpfe: dm365: add build infrastructure for capture driver
  davinci: vpfe: Add documentation

 Documentation/video4linux/davinci-vpfe-mc.txt    |  154 ++
 drivers/media/platform/davinci/Kconfig           |   11 +
 drivers/media/platform/davinci/Makefile          |    3 +
 drivers/media/platform/davinci/dm365_ipipe.c     | 1863 +++++++++++++++++++
 drivers/media/platform/davinci/dm365_ipipe.h     |  179 ++
 drivers/media/platform/davinci/dm365_ipipe_hw.c  | 1048 +++++++++++
 drivers/media/platform/davinci/dm365_ipipe_hw.h  |  559 ++++++
 drivers/media/platform/davinci/dm365_ipipeif.c   | 1063 +++++++++++
 drivers/media/platform/davinci/dm365_ipipeif.h   |  233 +++
 drivers/media/platform/davinci/dm365_isif.c      | 2095 ++++++++++++++++++++++
 drivers/media/platform/davinci/dm365_isif.h      |  203 +++
 drivers/media/platform/davinci/dm365_isif_regs.h |  294 +++
 drivers/media/platform/davinci/dm365_resizer.c   | 1999 +++++++++++++++++++++
 drivers/media/platform/davinci/dm365_resizer.h   |  244 +++
 drivers/media/platform/davinci/vpfe_mc_capture.c |  741 ++++++++
 drivers/media/platform/davinci/vpfe_mc_capture.h |   97 +
 drivers/media/platform/davinci/vpfe_video.c      | 1620 +++++++++++++++++
 drivers/media/platform/davinci/vpfe_video.h      |  155 ++
 drivers/media/platform/davinci/vpss.c            |   59 +
 include/media/davinci/vpfe.h                     |   86 +
 include/media/davinci/vpss.h                     |   16 +
 include/uapi/linux/Kbuild                        |    2 +
 include/uapi/linux/davinci_vpfe.h                | 1285 +++++++++++++
 include/uapi/linux/dm365_ipipeif.h               |   93 +
 24 files changed, 14102 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/video4linux/davinci-vpfe-mc.txt
 create mode 100644 drivers/media/platform/davinci/dm365_ipipe.c
 create mode 100644 drivers/media/platform/davinci/dm365_ipipe.h
 create mode 100644 drivers/media/platform/davinci/dm365_ipipe_hw.c
 create mode 100644 drivers/media/platform/davinci/dm365_ipipe_hw.h
 create mode 100644 drivers/media/platform/davinci/dm365_ipipeif.c
 create mode 100644 drivers/media/platform/davinci/dm365_ipipeif.h
 create mode 100644 drivers/media/platform/davinci/dm365_isif.c
 create mode 100644 drivers/media/platform/davinci/dm365_isif.h
 create mode 100644 drivers/media/platform/davinci/dm365_isif_regs.h
 create mode 100644 drivers/media/platform/davinci/dm365_resizer.c
 create mode 100644 drivers/media/platform/davinci/dm365_resizer.h
 create mode 100644 drivers/media/platform/davinci/vpfe_mc_capture.c
 create mode 100644 drivers/media/platform/davinci/vpfe_mc_capture.h
 create mode 100644 drivers/media/platform/davinci/vpfe_video.c
 create mode 100644 drivers/media/platform/davinci/vpfe_video.h
 create mode 100644 include/media/davinci/vpfe.h
 create mode 100644 include/uapi/linux/davinci_vpfe.h
 create mode 100644 include/uapi/linux/dm365_ipipeif.h

-- 
1.7.4.1


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

end of thread, other threads:[~2012-11-26  3:56 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-16 14:45 [PATCH v2 00/12] Media Controller capture driver for DM365 Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 01/12] davinci: vpfe: add v4l2 capture driver with media interface Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 02/12] davinci: vpfe: add v4l2 video driver support Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 03/12] davinci: vpfe: dm365: add IPIPEIF driver based on media framework Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 04/12] davinci: vpfe: dm365: add ISIF " Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 05/12] davinci: vpfe: dm365: add IPIPE support for media controller driver Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 06/12] davinci: vpfe: dm365: add IPIPE hardware layer support Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 07/12] davinci: vpfe: dm365: resizer driver based on media framework Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 08/12] davinci: vpss: dm365: enable ISP registers Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 09/12] davinci: vpss: dm365: set vpss clk ctrl Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 10/12] davinci: vpss: dm365: add vpss helper functions to be used in the main driver for setting hardware parameters Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 11/12] davinci: vpfe: dm365: add build infrastructure for capture driver Prabhakar Lad
2012-11-16 14:45 ` [PATCH v2 12/12] davinci: vpfe: Add documentation Prabhakar Lad
2012-11-16 14:53 ` [PATCH v2 00/12] Media Controller capture driver for DM365 Prabhakar Lad
2012-11-21 20:56 ` Sakari Ailus
2012-11-22 23:53 ` Sakari Ailus
2012-11-23 13:13 ` Sakari Ailus
2012-11-23 13:21   ` Prabhakar Lad
2012-11-23 13:57     ` Sakari Ailus
2012-11-23 14:01       ` Hans Verkuil
2012-11-25 16:27         ` Prabhakar Lad
2012-11-26  0:28           ` Sakari Ailus
2012-11-26  3:55             ` Prabhakar Lad

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