public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@redhat.com>
To: Andrey Smirnov <andrey.smirnov@convergeddevices.net>
Cc: linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 0/3] A driver for Si476x series of chips
Date: Tue, 25 Sep 2012 08:39:29 -0300	[thread overview]
Message-ID: <20120925083929.3b4fa97b@redhat.com> (raw)
In-Reply-To: <1347576013-28832-1-git-send-email-andrey.smirnov@convergeddevices.net>

Hi Andrey,

Em Qui, 2012-09-13 às 15:40 -0700, Andrey Smirnov escreveu:
This patchset contains a driver for a Silicon Laboratories 476x series
> of radio tuners. The driver itself is implemented as an MFD devices
> comprised of three parts:
>  1. Core device that provides all the other devices with basic
>  functionality and locking scheme.
>  2. Radio device that translates between V4L2 subsystem requests into
>  Core device commands.
>  3. Codec device that does similar to the earlier described task, but
>  for ALSA SoC subsystem.
> 
As this driver touches on 3 sub-systems (mfd, media and alsa), you need to copy not only media ML, but also mfd and alsa ones, as you'll need that one of the 3 involved maintainers to submit your patches with the ack of the other two ones, for the parts that are under their umbrella.

As the main functionality here is related to media, I suspect that I'll be the one that will be submitting the driver. So, you'll need to c/c the MFD maintainer for the stuff under drivers/mfd/, and the alsa maintainer, for the stuff under sound/[1].

Regards,
Mauro

[1] From MAINTAINERS file:

MULTIFUNCTION DEVICES (MFD)
M:	Samuel Ortiz <sameo@linux.intel.com>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
S:	Supported
F:	drivers/mfd/

SOUND
M:	Jaroslav Kysela <perex@perex.cz>
M:	Takashi Iwai <tiwai@suse.de>
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
W:	http://www.alsa-project.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
T:	git git://git.alsa-project.org/alsa-kernel.git
S:	Maintained
F:	Documentation/sound/
F:	include/sound/
F:	sound/




> This driver has been tested to work in two different sytems:
>  1. A custom Tegra-based ARM board(design is based on Harmony board)
>  running linux kernel 3.1.10 kernel
>  2. A standalone USB-connected board that has a dedicated Cortex M3
>  working as a transparent USB to I2C bridge which was connected to a
>  off-the-shelf x86-64 laptop running Ubuntu with 3.2.0 kernel.
> 
> As far as SubmitChecklist is concerned following criteria should be
> satisfied: 2b, 3, 5, 7, 9, 10
> 
> Andrey Smirnov (3):
>   Add a core driver for SI476x MFD
>   Add a V4L2 driver for SI476X MFD
>   Add a codec driver for SI476X MFD
> 
>  drivers/media/radio/Kconfig        |   17 +
>  drivers/media/radio/radio-si476x.c | 1307 +++++++++++++++++++++++++++++++
>  drivers/mfd/Kconfig                |   14 +
>  drivers/mfd/Makefile               |    3 +
>  drivers/mfd/si476x-cmd.c           | 1509 ++++++++++++++++++++++++++++++++++++
>  drivers/mfd/si476x-i2c.c           | 1033 ++++++++++++++++++++++++
>  drivers/mfd/si476x-prop.c          |  477 ++++++++++++
>  include/linux/mfd/si476x-core.h    |  532 +++++++++++++
>  include/media/si476x.h             |  461 +++++++++++
>  sound/soc/codecs/Kconfig           |    4 +
>  sound/soc/codecs/Makefile          |    2 +
>  sound/soc/codecs/si476x.c          |  346 +++++++++
>  12 files changed, 5705 insertions(+)
>  create mode 100644 drivers/media/radio/radio-si476x.c
>  create mode 100644 drivers/mfd/si476x-cmd.c
>  create mode 100644 drivers/mfd/si476x-i2c.c
>  create mode 100644 drivers/mfd/si476x-prop.c
>  create mode 100644 include/linux/mfd/si476x-core.h
>  create mode 100644 include/media/si476x.h
>  create mode 100644 sound/soc/codecs/si476x.c
> 
> 

      parent reply	other threads:[~2012-09-25 11:39 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-13 22:40 [PATCH 0/3] A driver for Si476x series of chips Andrey Smirnov
2012-09-13 22:40 ` [PATCH 1/3] Add a core driver for SI476x MFD Andrey Smirnov
2012-09-14  6:44   ` Hans Verkuil
2012-09-21  1:05     ` andrey.smirnov
2012-09-21  7:31       ` Hans Verkuil
2012-09-21 16:33         ` andrey.smirnov
2012-09-21 16:46           ` Hans Verkuil
2012-10-01 17:20   ` Mark Brown
2012-09-13 22:40 ` [PATCH 2/3] Add a V4L2 driver for SI476X MFD Andrey Smirnov
2012-09-14  7:17   ` Hans Verkuil
2012-09-13 22:40 ` [PATCH 3/3] Add a codec " Andrey Smirnov
2012-10-01 17:29   ` Mark Brown
2012-09-25 11:39 ` Mauro Carvalho Chehab [this message]

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=20120925083929.3b4fa97b@redhat.com \
    --to=mchehab@redhat.com \
    --cc=andrey.smirnov@convergeddevices.net \
    --cc=linux-kernel@vger.kernel.org \
    --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