linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Nibble Max" <nibble.max@gmail.com>
To: "linux-media" <linux-media@vger.kernel.org>
Cc: "Olli Salonen" <olli.salonen@iki.fi>
Subject: Re: [PATCH 1/2] smipcie: add support for TechnoTrend S2-4200 Twin
Date: Thu, 10 Mar 2016 09:28:03 +0800	[thread overview]
Message-ID: <201603100927595467093@gmail.com> (raw)


Reviewed-by: Max Nibble<nibble.max@gmail.com>

On 2016-03-10 06:39:26, Olli Salonen <olli.salonen@iki.fi> wrote:
>Add support for TechnoTrend TT-budget S2-4200 Twin DVB-S2 tuner. The
>device seems to be rather similar to DVBSky S952 V3. This is a PCIe
>card with 2 tuners. SMI PCIe bridge is used and the card has two 
>Montage M88RS6000 demod/tuners.
>
>The M88RS6000 demod/tuner package needs firmware. You can download
>one here:
>http://palosaari.fi/linux/v4l-dvb/firmware/M88RS6000/
>
>Signed-off-by: Olli Salonen <olli.salonen@iki.fi>
>---
> drivers/media/pci/smipcie/smipcie-ir.c   |  5 ++++-
> drivers/media/pci/smipcie/smipcie-main.c | 10 ++++++++++
> drivers/media/pci/smipcie/smipcie.h      |  1 +
> 3 files changed, 15 insertions(+), 1 deletion(-)
>
>diff --git a/drivers/media/pci/smipcie/smipcie-ir.c b/drivers/media/pci/smipcie/smipcie-ir.c
>index d018673..d737b5e 100644
>--- a/drivers/media/pci/smipcie/smipcie-ir.c
>+++ b/drivers/media/pci/smipcie/smipcie-ir.c
>@@ -203,7 +203,10 @@ int smi_ir_init(struct smi_dev *dev)
> 	rc_dev->dev.parent = &dev->pci_dev->dev;
> 
> 	rc_dev->driver_type = RC_DRIVER_SCANCODE;
>-	rc_dev->map_name = RC_MAP_DVBSKY;
>+	if (dev->info->type == SMI_TECHNOTREND_S2_4200)
>+		rc_dev->map_name = RC_MAP_TT_1500;
>+	else
>+		rc_dev->map_name = RC_MAP_DVBSKY;
> 
> 	ir->rc_dev = rc_dev;
> 	ir->dev = dev;
>diff --git a/drivers/media/pci/smipcie/smipcie-main.c b/drivers/media/pci/smipcie/smipcie-main.c
>index b039a22..993a2d1 100644
>--- a/drivers/media/pci/smipcie/smipcie-main.c
>+++ b/drivers/media/pci/smipcie/smipcie-main.c
>@@ -1086,6 +1086,15 @@ static struct smi_cfg_info dvbsky_t9580_cfg = {
> 	.fe_1 = DVBSKY_FE_M88DS3103,
> };
> 
>+static struct smi_cfg_info technotrend_s2_4200_cfg = {
>+	.type = SMI_TECHNOTREND_S2_4200,
>+	.name = "TechnoTrend TT-budget S2-4200 Twin",
>+	.ts_0 = SMI_TS_DMA_BOTH,
>+	.ts_1 = SMI_TS_DMA_BOTH,
>+	.fe_0 = DVBSKY_FE_M88RS6000,
>+	.fe_1 = DVBSKY_FE_M88RS6000,
>+};
>+
> /* PCI IDs */
> #define SMI_ID(_subvend, _subdev, _driverdata) {	\
> 	.vendor      = SMI_VID,    .device    = SMI_PID, \
>@@ -1096,6 +1105,7 @@ static const struct pci_device_id smi_id_table[] = {
> 	SMI_ID(0x4254, 0x0550, dvbsky_s950_cfg),
> 	SMI_ID(0x4254, 0x0552, dvbsky_s952_cfg),
> 	SMI_ID(0x4254, 0x5580, dvbsky_t9580_cfg),
>+	SMI_ID(0x13c2, 0x3016, technotrend_s2_4200_cfg),
> 	{0}
> };
> MODULE_DEVICE_TABLE(pci, smi_id_table);
>diff --git a/drivers/media/pci/smipcie/smipcie.h b/drivers/media/pci/smipcie/smipcie.h
>index 68cdda2..5528e48 100644
>--- a/drivers/media/pci/smipcie/smipcie.h
>+++ b/drivers/media/pci/smipcie/smipcie.h
>@@ -216,6 +216,7 @@ struct smi_cfg_info {
> #define SMI_DVBSKY_S950         1
> #define SMI_DVBSKY_T9580        2
> #define SMI_DVBSKY_T982         3
>+#define SMI_TECHNOTREND_S2_4200 4
> 	int type;
> 	char *name;
> #define SMI_TS_NULL             0
>-- 
>1.9.1
>
>--
>To unsubscribe from this list: send the line "unsubscribe linux-media" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at  http://vger.kernel.org/majordomo-info.html


             reply	other threads:[~2016-03-10  1:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-10  1:28 Nibble Max [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-03-09 22:38 [PATCH 1/2] smipcie: add support for TechnoTrend S2-4200 Twin Olli Salonen

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=201603100927595467093@gmail.com \
    --to=nibble.max@gmail.com \
    --cc=linux-media@vger.kernel.org \
    --cc=olli.salonen@iki.fi \
    /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).