All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH REVIEW 00/18] M88DS3103 / M88TS2022 / PCTV 461e
@ 2013-12-08 22:31 Antti Palosaari
  2013-12-08 22:31 ` [PATCH REVIEW 01/18] em28xx: add support for Empia EM28178 Antti Palosaari
                   ` (17 more replies)
  0 siblings, 18 replies; 22+ messages in thread
From: Antti Palosaari @ 2013-12-08 22:31 UTC (permalink / raw)
  To: linux-media; +Cc: Antti Palosaari

I think these patches are now in a rather good shape and I will make PULL request soon.
I decided to convert M88TS2022 RF tuner to Kernel I2C driver model, which is new thing as there is no any other tuner driver using that model.

Testers are still wanted. Git tree is waiting for you:
http://git.linuxtv.org/anttip/media_tree.git/shortlog/refs/heads/pctv_461e

Antti

Antti Palosaari (18):
  em28xx: add support for Empia EM28178
  a8293: add small sleep in order to settle LNB voltage
  Montage M88DS3103 DVB-S/S2 demodulator driver
  Montage M88TS2022 silicon tuner driver
  em28xx: add support for PCTV DVB-S2 Stick (461e) [2013:0258]
  MAINTAINERS: add M88DS3103
  MAINTAINERS: add M88TS2022
  m88ts2022: do not use dynamic stack allocation
  m88ds3103: do not use dynamic stack allocation
  m88ds3103: use I2C mux for tuner I2C adapter
  m88ds3103: use kernel macro to round division
  m88ds3103: fix TS mode config
  m88ts2022: reimplement synthesizer calculations
  m88ds3103: remove unneeded AGC from inittab
  m88ds3103: add default value for reg 56
  m88ds3103: I/O optimize inittab write
  m88ts2022: convert to Kernel I2C driver model
  m88ds3103: fix possible i2c deadlock

 MAINTAINERS                                  |   20 +
 drivers/media/dvb-frontends/Kconfig          |    7 +
 drivers/media/dvb-frontends/Makefile         |    1 +
 drivers/media/dvb-frontends/a8293.c          |    2 +
 drivers/media/dvb-frontends/m88ds3103.c      | 1314 ++++++++++++++++++++++++++
 drivers/media/dvb-frontends/m88ds3103.h      |  118 +++
 drivers/media/dvb-frontends/m88ds3103_priv.h |  219 +++++
 drivers/media/tuners/Kconfig                 |    7 +
 drivers/media/tuners/Makefile                |    1 +
 drivers/media/tuners/m88ts2022.c             |  678 +++++++++++++
 drivers/media/tuners/m88ts2022.h             |   58 ++
 drivers/media/tuners/m88ts2022_priv.h        |   38 +
 drivers/media/usb/em28xx/Kconfig             |    2 +
 drivers/media/usb/em28xx/em28xx-cards.c      |   40 +
 drivers/media/usb/em28xx/em28xx-core.c       |    9 +-
 drivers/media/usb/em28xx/em28xx-dvb.c        |   54 ++
 drivers/media/usb/em28xx/em28xx-input.c      |    2 +
 drivers/media/usb/em28xx/em28xx-reg.h        |    1 +
 drivers/media/usb/em28xx/em28xx.h            |    1 +
 19 files changed, 2569 insertions(+), 3 deletions(-)
 create mode 100644 drivers/media/dvb-frontends/m88ds3103.c
 create mode 100644 drivers/media/dvb-frontends/m88ds3103.h
 create mode 100644 drivers/media/dvb-frontends/m88ds3103_priv.h
 create mode 100644 drivers/media/tuners/m88ts2022.c
 create mode 100644 drivers/media/tuners/m88ts2022.h
 create mode 100644 drivers/media/tuners/m88ts2022_priv.h

-- 
1.8.4.2


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

end of thread, other threads:[~2013-12-18 14:40 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-12-08 22:31 [PATCH REVIEW 00/18] M88DS3103 / M88TS2022 / PCTV 461e Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 01/18] em28xx: add support for Empia EM28178 Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 02/18] a8293: add small sleep in order to settle LNB voltage Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 03/18] Montage M88DS3103 DVB-S/S2 demodulator driver Antti Palosaari
2013-12-09  5:58   ` Matthias Schwarzott
2013-12-18 12:35   ` Mauro Carvalho Chehab
2013-12-18 14:40     ` Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 04/18] Montage M88TS2022 silicon tuner driver Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 05/18] em28xx: add support for PCTV DVB-S2 Stick (461e) [2013:0258] Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 06/18] MAINTAINERS: add M88DS3103 Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 07/18] MAINTAINERS: add M88TS2022 Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 08/18] m88ts2022: do not use dynamic stack allocation Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 09/18] m88ds3103: " Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 10/18] m88ds3103: use I2C mux for tuner I2C adapter Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 11/18] m88ds3103: use kernel macro to round division Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 12/18] m88ds3103: fix TS mode config Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 13/18] m88ts2022: reimplement synthesizer calculations Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 14/18] m88ds3103: remove unneeded AGC from inittab Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 15/18] m88ds3103: add default value for reg 56 Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 16/18] m88ds3103: I/O optimize inittab write Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 17/18] m88ts2022: convert to Kernel I2C driver model Antti Palosaari
2013-12-08 22:31 ` [PATCH REVIEW 18/18] m88ds3103: fix possible i2c deadlock Antti Palosaari

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.