Linux Media Controller development
 help / color / mirror / Atom feed
* [PATCH v8 0/9] Driver for Si476x series of chips
@ 2013-03-27  2:47 Andrey Smirnov
  2013-03-27  2:47 ` [PATCH v8 1/9] mfd: Add commands abstraction layer for SI476X MFD Andrey Smirnov
                   ` (8 more replies)
  0 siblings, 9 replies; 13+ messages in thread
From: Andrey Smirnov @ 2013-03-27  2:47 UTC (permalink / raw)
  To: mchehab; +Cc: andrew.smirnov, hverkuil, sameo, linux-media, linux-kernel

Driver for Si476x series of chips

This is a eight version of the patchset originaly posted here:
https://lkml.org/lkml/2012/9/13/590

Second version of the patch was posted here:
https://lkml.org/lkml/2012/10/5/598

Third version of the patch was posted here:
https://lkml.org/lkml/2012/10/23/510

Fourth version of the patch was posted here:
https://lkml.org/lkml/2013/2/18/572

Fifth version of the patch was posted here:
https://lkml.org/lkml/2013/2/26/45

Sixth version of the patch was posted here:
https://lkml.org/lkml/2013/2/26/257

Seventh version of the patch was posted here:
https://lkml.org/lkml/2013/2/27/22


To save everyone's time I'll repost the original description of it:

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.

v8 of this driver has following changes:
   - checkpatch.pl fixes

Pleas note that patches are not completely warning free, as far as
checkpatch.pl is concerned, because I skipped all the places where
80-character compliance can be acheived only by means of weird
indentation.

Andrey Smirnov (9):
  mfd: Add commands abstraction layer for SI476X MFD
  mfd: Add the main bulk of core driver for SI476x code
  mfd: Add chip properties handling code for SI476X MFD
  mfd: Add header files and Kbuild plumbing for SI476x MFD core
  v4l2: Fix the type of V4L2_CID_TUNE_PREEMPHASIS in the documentation
  v4l2: Add standard controls for FM receivers
  v4l2: Add documentation for the FM RX controls
  v4l2: Add private controls base for SI476X
  v4l2: Add a V4L2 driver for SI476X MFD

 Documentation/DocBook/media/v4l/compat.xml         |    3 +
 Documentation/DocBook/media/v4l/controls.xml       |   74 +-
 .../DocBook/media/v4l/vidioc-g-ext-ctrls.xml       |    9 +
 Documentation/video4linux/si476x.txt               |  187 +++
 drivers/media/radio/Kconfig                        |   17 +
 drivers/media/radio/Makefile                       |    1 +
 drivers/media/radio/radio-si476x.c                 | 1599 ++++++++++++++++++++
 drivers/media/v4l2-core/v4l2-ctrls.c               |   14 +-
 drivers/mfd/Kconfig                                |   12 +
 drivers/mfd/Makefile                               |    4 +
 drivers/mfd/si476x-cmd.c                           | 1554 +++++++++++++++++++
 drivers/mfd/si476x-i2c.c                           |  886 +++++++++++
 drivers/mfd/si476x-prop.c                          |  242 +++
 include/linux/mfd/si476x-core.h                    |  525 +++++++
 include/media/si476x.h                             |  426 ++++++
 include/uapi/linux/v4l2-controls.h                 |   17 +
 16 files changed, 5566 insertions(+), 4 deletions(-)
 create mode 100644 Documentation/video4linux/si476x.txt
 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

-- 
1.7.10.4


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

end of thread, other threads:[~2013-04-09  7:17 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-27  2:47 [PATCH v8 0/9] Driver for Si476x series of chips Andrey Smirnov
2013-03-27  2:47 ` [PATCH v8 1/9] mfd: Add commands abstraction layer for SI476X MFD Andrey Smirnov
2013-04-08 10:16   ` Samuel Ortiz
     [not found]     ` <CAHQ1cqE4aokZA98VfCWwRtkaNPm6dMnegibVz4BHfYW_VrAUBA@mail.gmail.com>
2013-04-08 20:09       ` Samuel Ortiz
     [not found]         ` <CAHQ1cqGytarQ9bkOiq-MdpRbKiHBTRPJy90Cbg=Sr4J7MWNj+g@mail.gmail.com>
2013-04-09  7:17           ` Samuel Ortiz
2013-03-27  2:47 ` [PATCH v8 2/9] mfd: Add the main bulk of core driver for SI476x code Andrey Smirnov
2013-03-27  2:47 ` [PATCH v8 3/9] mfd: Add chip properties handling code for SI476X MFD Andrey Smirnov
2013-03-27  2:47 ` [PATCH v8 4/9] mfd: Add header files and Kbuild plumbing for SI476x MFD core Andrey Smirnov
2013-03-27  2:47 ` [PATCH v8 5/9] v4l2: Fix the type of V4L2_CID_TUNE_PREEMPHASIS in the documentation Andrey Smirnov
2013-03-27  2:47 ` [PATCH v8 6/9] v4l2: Add standard controls for FM receivers Andrey Smirnov
2013-03-27  2:47 ` [PATCH v8 7/9] v4l2: Add documentation for the FM RX controls Andrey Smirnov
2013-03-27  2:47 ` [PATCH v8 8/9] v4l2: Add private controls base for SI476X Andrey Smirnov
2013-03-27  2:47 ` [PATCH v8 9/9] v4l2: Add a V4L2 driver for SI476X MFD Andrey Smirnov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox