public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] DDBridge 0.9.10 driver updates
@ 2013-11-03  0:22 Maik Broemme
  2013-11-03  0:24 ` [PATCH 01/12] dvb-frontends: Support for DVB-C2 to DVB frontends Maik Broemme
                   ` (12 more replies)
  0 siblings, 13 replies; 39+ messages in thread
From: Maik Broemme @ 2013-11-03  0:22 UTC (permalink / raw)
  To: Linux Media Mailing List

I've updated the current DDBridge to latest version 0.9.10 from Ralph
Metzler available at:

http://www.metzlerbros.de/dddvb/dddvb-0.9.10.tar.bz2

I've merged the driver to work with current v4l/dvb tree and I will
maintain the driver for v4l/dvb in future. The coming patch series is
the first version and I explicitly want to get feedback and hints if
some parts are merged at wrong places, etc... The following changes
were made:

  - MSI enabled by default (some issues left with i2c timeouts)
  - no support for Digital Devices Octonet
  - no support for DVB Netstream
  - removed unused module parameters 'tt' and 'vlan' (used by Octonet)
  - removed unused registers to cleanup code (might be added later again
    if needed)

The following devices are supported by the driver update:

  - Octopus DVB adapter
  - Octopus V3 DVB adapter
  - Octopus LE DVB adapter
  - Octopus OEM
  - Octopus Mini
  - Cine S2 V6 DVB adapter
  - Cine S2 V6.5 DVB adapter
  - Octopus CI
  - Octopus CI single
  - DVBCT V6.1 DVB adapter
  - DVB-C modulator
  - SaTiX-S2 V3 DVB adapter

I might merge the Octonet and DVB Netstream drivers from Ralphs source
later once the current committed DDBridge driver updates are merged in
mainline.

Signed-off-by: Maik Broemme <mbroemme@parallels.com>

Maik Broemme (12):
  dvb-frontends: Support for DVB-C2 to DVB frontends
  tda18271c2dd: Fix description of NXP TDA18271C2 silicon tuner
  stv0367dd: Support for STV 0367 DVB-C/T (DD) demodulator
  tda18212dd: Support for NXP TDA18212 (DD) silicon tuner
  cxd2843: Support for CXD2843ER demodulator for DVB-T/T2/C/C2
  dvb-core: export dvb_usercopy and new DVB device constants
  ddbridge: Updated ddbridge registers
  ddbridge: Moved i2c interfaces into separate file
  ddbridge: Support for the Digital Devices Resi DVB-C Modulator card
  ddbridge: Update ddbridge driver to version 0.9.10
  ddbridge: Update ddbridge header for 0.9.10 changes
  ddbridge: Kconfig and Makefile fixes to build latest ddbridge

 drivers/media/dvb-core/dvbdev.c              |    1 
 drivers/media/dvb-core/dvbdev.h              |    2 
 drivers/media/dvb-frontends/Kconfig          |   31 
 drivers/media/dvb-frontends/Makefile         |    3 
 drivers/media/dvb-frontends/cxd2843.c        | 1647 ++++++++++++
 drivers/media/dvb-frontends/cxd2843.h        |   47 
 drivers/media/dvb-frontends/stv0367dd.c      | 2329 ++++++++++++++++++
 drivers/media/dvb-frontends/stv0367dd.h      |   48 
 drivers/media/dvb-frontends/stv0367dd_regs.h | 3442 +++++++++++++++++++++++++++
 drivers/media/dvb-frontends/tda18212dd.c     |  934 +++++++
 drivers/media/dvb-frontends/tda18212dd.h     |   37 
 drivers/media/pci/ddbridge/Kconfig           |   21 
 drivers/media/pci/ddbridge/Makefile          |    2 
 drivers/media/pci/ddbridge/ddbridge-core.c   | 3085 +++++++++++++++++-------
 drivers/media/pci/ddbridge/ddbridge-i2c.c    |  239 +
 drivers/media/pci/ddbridge/ddbridge-mod.c    | 1033 ++++++++
 drivers/media/pci/ddbridge/ddbridge-regs.h   |  273 +-
 drivers/media/pci/ddbridge/ddbridge.h        |  408 ++-
 include/uapi/linux/dvb/frontend.h            |    1 
 19 files changed, 12555 insertions(+), 1028 deletions(-)

--Maik

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

end of thread, other threads:[~2013-11-04 13:04 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-03  0:22 [PATCH 00/12] DDBridge 0.9.10 driver updates Maik Broemme
2013-11-03  0:24 ` [PATCH 01/12] dvb-frontends: Support for DVB-C2 to DVB frontends Maik Broemme
2013-11-03  9:23   ` Mauro Carvalho Chehab
2013-11-03 10:47     ` Ralph Metzler
2013-11-03 11:22       ` Mauro Carvalho Chehab
2013-11-03 12:20       ` Maik Broemme
2013-11-03  0:25 ` [PATCH 02/12] tda18271c2dd: Fix description of NXP TDA18271C2 silicon tuner Maik Broemme
2013-11-03  9:27   ` Mauro Carvalho Chehab
2013-11-03 12:17     ` Maik Broemme
2013-11-04 12:13       ` Mauro Carvalho Chehab
2013-11-03  0:28 ` [PATCH 03/12] stv0367dd: Support for STV 0367 DVB-C/T (DD) demodulator Maik Broemme
2013-11-03  9:29   ` Mauro Carvalho Chehab
2013-11-03  0:31 ` [PATCH 04/12] tda18212dd: Support for NXP TDA18212 (DD) silicon tuner Maik Broemme
2013-11-03  9:56   ` Mauro Carvalho Chehab
2013-11-03 17:00     ` Antti Palosaari
2013-11-04 12:12       ` Mauro Carvalho Chehab
2013-11-04 12:49         ` Maik Broemme
2013-11-04 13:04           ` Antti Palosaari
2013-11-03  0:32 ` [PATCH 05/12] cxd2843: Support for CXD2843ER demodulator for DVB-T/T2/C/C2 Maik Broemme
2013-11-03 10:11   ` Mauro Carvalho Chehab
2013-11-03  0:33 ` [PATCH 06/12] dvb-core: export dvb_usercopy and new DVB device constants Maik Broemme
2013-11-03 10:16   ` Mauro Carvalho Chehab
2013-11-03  0:35 ` [PATCH 07/12] ddbridge: Updated ddbridge registers Maik Broemme
2013-11-03 10:17   ` Mauro Carvalho Chehab
2013-11-03  0:40 ` [PATCH 08/12] ddbridge: Moved i2c interfaces into separate file Maik Broemme
2013-11-03 10:23   ` Mauro Carvalho Chehab
2013-11-03  0:41 ` [PATCH 09/12] ddbridge: Support for the Digital Devices Resi DVB-C Modulator card Maik Broemme
2013-11-03 10:44   ` Mauro Carvalho Chehab
2013-11-03  0:44 ` [PATCH 10/12] ddbridge: Update ddbridge driver to version 0.9.10 Maik Broemme
2013-11-03 10:49   ` Mauro Carvalho Chehab
2013-11-03  0:45 ` [PATCH 11/12] ddbridge: Update ddbridge header for 0.9.10 changes Maik Broemme
2013-11-03 10:50   ` Mauro Carvalho Chehab
2013-11-03  0:46 ` [PATCH 12/12] ddbridge: Kconfig and Makefile fixes to build latest ddbridge Maik Broemme
2013-11-03 10:51   ` Mauro Carvalho Chehab
2013-11-03 10:58 ` [PATCH 00/12] DDBridge 0.9.10 driver updates Mauro Carvalho Chehab
2013-11-03 12:46   ` Maik Broemme
2013-11-03 13:11     ` Ralph Metzler
2013-11-03 13:19       ` Maik Broemme
2013-11-04 12:19     ` Mauro Carvalho Chehab

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