linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Albert Wang <twang13@marvell.com>
To: corbet@lwn.net, g.liakhovetski@gmx.de
Cc: linux-media@vger.kernel.org, Albert Wang <twang13@marvell.com>
Subject: [PATCH V3 00/15] [media] marvell-ccic: add soc camera support on marvell-ccic
Date: Sat, 15 Dec 2012 17:57:49 +0800	[thread overview]
Message-ID: <1355565484-15791-1-git-send-email-twang13@marvell.com> (raw)

The following patches series will add soc_camera support on marvell-ccic

Patch set V3 - Change log:
	- correct and enhance the implementation of some functions
	- replace most of preprocessor instruction with runtime detect
	- use devm_clk_get and devm_gpio_request which were missed in previous version
	- change code format in some funcions: replace if-else with switch
	- change some confused variable names
	- remove unnecessary functions: buf_init, buf_cleanup ...
	- remove unnecessary keyword: inline, extern ...
	- remove unnecessary include header file name
	- remove duplicated and unused code
	- remove unnecessary initialization of ret variable
	- [PATCH 09/15] change description

Patch set V2 - Change log:
	- remove register definition patch
	- split big patch to some small patches
	- split mcam-core.c to mcam-core.c and mcam-core-standard.c
	- add mcam-core-soc.c for soc camera support
	- split 3 frame buffers support patch into 2 patches

Patch set V1:
Log:
	- add mmp register definition
	- add soc_camera support on mcam core and mmp driver
	- add 3 frames buffers support in DMA_CONTIG mode

Thanks
Albert Wang

--
Albert Wang (7):
  [media] marvell-ccic: add get_mcam function for marvell-ccic driver
  [media] marvell-ccic: split mcam-core into 2 parts for soc_camera
    support
  [media] marvell-ccic: add soc_camera support in mcam core
  [media] marvell-ccic: add soc_camera support in mmp driver
  [media] marvell-ccic: add dma burst mode support in marvell-ccic
    driver
  [media] marvell-ccic: use unsigned int type replace int type
  [media] marvell-ccic: add 3 frame buffers support in DMA_CONTIG mode

Libin Yang (8):
  [media] marvell-ccic: use internal variable replace global frame
    stats variable:w
  [media] marvell-ccic: add MIPI support for marvell-ccic driver
  [media] marvell-ccic: add clock tree support for marvell-ccic driver
  [media] marvell-ccic: reset ccic phy when stop streaming for
    stability
  [media] marvell-ccic: refine mcam_set_contig_buffer function
  [media] marvell-ccic: add new formats support for marvell-ccic driver
  [media] marvell-ccic: add SOF / EOF pair check for marvell-ccic
    driver
  [media] marvell-ccic: switch to resource managed allocation and
    request

 drivers/media/platform/Makefile                    |    4 +-
 drivers/media/platform/marvell-ccic/Kconfig        |   22 +
 drivers/media/platform/marvell-ccic/Makefile       |    6 +-
 .../media/platform/marvell-ccic/mcam-core-soc.c    |  416 +++++++
 .../media/platform/marvell-ccic/mcam-core-soc.h    |   19 +
 .../platform/marvell-ccic/mcam-core-standard.c     |  820 +++++++++++++
 .../platform/marvell-ccic/mcam-core-standard.h     |   26 +
 drivers/media/platform/marvell-ccic/mcam-core.c    | 1276 +++++---------------
 drivers/media/platform/marvell-ccic/mcam-core.h    |  155 ++-
 drivers/media/platform/marvell-ccic/mmp-driver.c   |  347 ++++--
 include/media/mmp-camera.h                         |   21 +
 11 files changed, 2071 insertions(+), 1041 deletions(-)
 create mode 100644 drivers/media/platform/marvell-ccic/mcam-core-soc.c
 create mode 100644 drivers/media/platform/marvell-ccic/mcam-core-soc.h
 create mode 100644 drivers/media/platform/marvell-ccic/mcam-core-standard.c
 create mode 100644 drivers/media/platform/marvell-ccic/mcam-core-standard.h

-- 
1.7.9.5


             reply	other threads:[~2012-12-15  9:59 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-15  9:57 Albert Wang [this message]
2012-12-15  9:57 ` [PATCH V3 01/15] [media] marvell-ccic: use internal variable replace global frame stats variable Albert Wang
2012-12-16 15:36   ` Jonathan Corbet
2012-12-27 20:07     ` Mauro Carvalho Chehab
2013-01-01 14:56   ` Guennadi Liakhovetski
2012-12-15  9:57 ` [PATCH V3 02/15] [media] marvell-ccic: add MIPI support for marvell-ccic driver Albert Wang
2012-12-16 15:54   ` Jonathan Corbet
2012-12-16 21:45     ` Albert Wang
2013-01-01 15:28   ` Guennadi Liakhovetski
2013-01-01 19:31     ` Albert Wang
2012-12-15  9:57 ` [PATCH V3 03/15] [media] marvell-ccic: add clock tree " Albert Wang
2012-12-16 16:03   ` Jonathan Corbet
2012-12-16 21:51     ` Albert Wang
2013-01-03 17:37       ` Nicolas THERY
2013-01-03 19:27         ` Albert Wang
2013-01-01 16:05   ` Guennadi Liakhovetski
2013-01-01 19:36     ` Albert Wang
2013-01-04  5:42     ` Libin Yang
2013-01-04 10:25       ` Guennadi Liakhovetski
2013-01-05  3:12         ` Libin Yang
2012-12-15  9:57 ` [PATCH V3 04/15] [media] marvell-ccic: reset ccic phy when stop streaming for stability Albert Wang
2012-12-16 16:04   ` Jonathan Corbet
2013-01-01 16:13   ` Guennadi Liakhovetski
2012-12-15  9:57 ` [PATCH V3 05/15] [media] marvell-ccic: refine mcam_set_contig_buffer function Albert Wang
2012-12-16 16:06   ` Jonathan Corbet
2012-12-16 21:54     ` Albert Wang
2012-12-15  9:57 ` [PATCH V3 06/15] [media] marvell-ccic: add new formats support for marvell-ccic driver Albert Wang
2012-12-16 16:16   ` Jonathan Corbet
2012-12-16 21:58     ` Albert Wang
2013-01-01 16:56   ` Guennadi Liakhovetski
2013-01-01 19:42     ` Albert Wang
2013-01-01 20:03       ` Guennadi Liakhovetski
2013-01-04  9:32     ` Libin Yang
2013-01-10  7:53     ` Libin Yang
2012-12-15  9:57 ` [PATCH V3 07/15] [media] marvell-ccic: add SOF / EOF pair check " Albert Wang
2012-12-16 16:19   ` Jonathan Corbet
2012-12-16 22:00     ` Albert Wang
2013-01-02  7:48   ` Guennadi Liakhovetski
2012-12-15  9:57 ` [PATCH V3 08/15] [media] marvell-ccic: switch to resource managed allocation and request Albert Wang
2012-12-16 16:20   ` Jonathan Corbet
2013-01-02  8:00   ` Guennadi Liakhovetski
2012-12-15  9:57 ` [PATCH V3 09/15] [media] marvell-ccic: add get_mcam function for marvell-ccic driver Albert Wang
2012-12-16 16:24   ` Jonathan Corbet
2012-12-16 22:04     ` Albert Wang
2013-01-02  8:16     ` Guennadi Liakhovetski
2012-12-15  9:57 ` [PATCH V3 10/15] [media] marvell-ccic: split mcam-core into 2 parts for soc_camera support Albert Wang
2012-12-16 16:37   ` Jonathan Corbet
2012-12-16 22:12     ` Albert Wang
2012-12-17 15:28       ` Jonathan Corbet
2012-12-18  3:04         ` Albert Wang
2012-12-18 19:15           ` Jonathan Corbet
2012-12-18 20:48             ` Albert Wang
2013-01-31  8:29             ` Albert Wang
2013-02-05  3:14               ` Jonathan Corbet
2013-02-06  3:21                 ` Albert Wang
2012-12-15  9:58 ` [PATCH V3 11/15] [media] marvell-ccic: add soc_camera support in mcam core Albert Wang
2012-12-15  9:58 ` [PATCH V3 12/15] [media] marvell-ccic: add soc_camera support in mmp driver Albert Wang
2012-12-16 16:46   ` Jonathan Corbet
2012-12-16 22:19     ` Albert Wang
2012-12-15  9:58 ` [PATCH V3 13/15] [media] marvell-ccic: add dma burst mode support in marvell-ccic driver Albert Wang
2012-12-16 16:49   ` Jonathan Corbet
2012-12-16 22:22     ` Albert Wang
2012-12-15  9:58 ` [PATCH V3 14/15] [media] marvell-ccic: use unsigned int type replace int type Albert Wang
2012-12-16 16:50   ` Jonathan Corbet
2012-12-15  9:58 ` [PATCH V3 15/15] [media] marvell-ccic: add 3 frame buffers support in DMA_CONTIG mode Albert Wang
2012-12-16 16:56   ` Jonathan Corbet
2012-12-16 22:34     ` Albert Wang
2012-12-16 22:55       ` Jonathan Corbet
2012-12-17  5:06         ` Albert Wang
2012-12-16 16:57 ` [PATCH V3 00/15] [media] marvell-ccic: add soc camera support on marvell-ccic Jonathan Corbet
2012-12-16 22:34   ` Albert Wang

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=1355565484-15791-1-git-send-email-twang13@marvell.com \
    --to=twang13@marvell.com \
    --cc=corbet@lwn.net \
    --cc=g.liakhovetski@gmx.de \
    --cc=linux-media@vger.kernel.org \
    /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 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).