From: Mauro Carvalho Chehab <mchehab@redhat.com>
To: vadim.catana@gmail.com
Cc: linux-media@vger.kernel.org
Subject: Re: [PATCH] TechnoTrend TT-budget T-3000
Date: Tue, 25 May 2010 13:07:03 -0300 [thread overview]
Message-ID: <4BFBF5A7.6070703@redhat.com> (raw)
In-Reply-To: <1273172404.2154.26.camel@xxx>
Vadim Catana wrote:
> Hi,
>
> This patch adds support for TechnoTrend TT-budget T-3000
> DVB-T card.
Please send your Signed-off-by together with the patch. Also,
send just one copy of the patch, not line-wrapped, otherwise, it
will fail when trying to apply on my tree.
Cheers,
Mauro.
>
>
>
> diff -r ee9826bc7106 linux/drivers/media/video/saa7134/saa7134-cards.c
> --- a/linux/drivers/media/video/saa7134/saa7134-cards.c Thu Apr 29
> 23:31:06 2010 -0300
> +++ b/linux/drivers/media/video/saa7134/saa7134-cards.c Thu May 06
> 21:33:14 2010 +0300
> @@ -5411,6 +5411,30 @@
> .gpio = 0x01fc00,
> } },
> },
> + [SAA7134_BOARD_TECHNOTREND_BUDGET_T3000] = {
> + .name = "TechoTrend TT-budget T-3000",
> + .tuner_type = TUNER_PHILIPS_TD1316,
> + .audio_clock = 0x00187de7,
> + .radio_type = UNSET,
> + .tuner_addr = 0x63,
> + .radio_addr = ADDR_UNSET,
> + .tda9887_conf = TDA9887_PRESENT | TDA9887_PORT1_ACTIVE,
> + .mpeg = SAA7134_MPEG_DVB,
> + .inputs = {{
> + .name = name_tv,
> + .vmux = 3,
> + .amux = TV,
> + .tv = 1,
> + }, {
> + .name = name_comp1,
> + .vmux = 0,
> + .amux = LINE2,
> + }, {
> + .name = name_svideo,
> + .vmux = 8,
> + .amux = LINE2,
> + } },
> + },
>
> };
>
> @@ -6568,6 +6592,12 @@
> .subdevice = 0x6655,
> .driver_data = SAA7134_BOARD_LEADTEK_WINFAST_DTV1000S,
> }, {
> + .vendor = PCI_VENDOR_ID_PHILIPS,
> + .device = PCI_DEVICE_ID_PHILIPS_SAA7133,
> + .subvendor = 0x13c2,
> + .subdevice = 0x2804,
> + .driver_data = SAA7134_BOARD_TECHNOTREND_BUDGET_T3000,
> + }, {
> /* --- boards without eeprom + subsystem ID --- */
> .vendor = PCI_VENDOR_ID_PHILIPS,
> .device = PCI_DEVICE_ID_PHILIPS_SAA7134,
> @@ -7277,6 +7307,7 @@
> case SAA7134_BOARD_VIDEOMATE_DVBT_300:
> case SAA7134_BOARD_ASUS_EUROPA2_HYBRID:
> case SAA7134_BOARD_ASUS_EUROPA_HYBRID:
> + case SAA7134_BOARD_TECHNOTREND_BUDGET_T3000:
> {
>
> /* The Philips EUROPA based hybrid boards have the tuner
> diff -r ee9826bc7106 linux/drivers/media/video/saa7134/saa7134-dvb.c
> --- a/linux/drivers/media/video/saa7134/saa7134-dvb.c Thu Apr 29
> 23:31:06 2010 -0300
> +++ b/linux/drivers/media/video/saa7134/saa7134-dvb.c Thu May 06
> 21:33:14 2010 +0300
> @@ -482,6 +482,18 @@
> .request_firmware = philips_tda1004x_request_firmware
> };
>
> +static struct tda1004x_config technotrend_budget_t3000_config = {
> + .demod_address = 0x8,
> + .invert = 1,
> + .invert_oclk = 0,
> + .xtal_freq = TDA10046_XTAL_4M,
> + .agc_config = TDA10046_AGC_DEFAULT,
> + .if_freq = TDA10046_FREQ_3617,
> + .tuner_address = 0x63,
> + .request_firmware = philips_tda1004x_request_firmware
> +};
> +
> +
> /* ------------------------------------------------------------------
> * tda 1004x based cards with philips silicon tuner
> */
> @@ -1169,6 +1181,18 @@
> fe0->dvb.frontend->ops.tuner_ops.set_params =
> philips_td1316_tuner_set_params;
> }
> break;
> + case SAA7134_BOARD_TECHNOTREND_BUDGET_T3000:
> + fe0->dvb.frontend = dvb_attach(tda10046_attach,
> + &technotrend_budget_t3000_config,
> + &dev->i2c_adap);
> + if (fe0->dvb.frontend) {
> + dev->original_demod_sleep = fe0->dvb.frontend->ops.sleep;
> + fe0->dvb.frontend->ops.sleep = philips_europa_demod_sleep;
> + fe0->dvb.frontend->ops.tuner_ops.init = philips_europa_tuner_init;
> + fe0->dvb.frontend->ops.tuner_ops.sleep = philips_europa_tuner_sleep;
> + fe0->dvb.frontend->ops.tuner_ops.set_params =
> philips_td1316_tuner_set_params;
> + }
> + break;
> case SAA7134_BOARD_VIDEOMATE_DVBT_200:
> fe0->dvb.frontend = dvb_attach(tda10046_attach,
> &philips_tu1216_61_config,
> diff -r ee9826bc7106 linux/drivers/media/video/saa7134/saa7134.h
> --- a/linux/drivers/media/video/saa7134/saa7134.h Thu Apr 29 23:31:06
> 2010 -0300
> +++ b/linux/drivers/media/video/saa7134/saa7134.h Thu May 06 21:33:14
> 2010 +0300
> @@ -302,6 +302,7 @@
> #define SAA7134_BOARD_LEADTEK_WINFAST_DTV1000S 175
> #define SAA7134_BOARD_BEHOLD_505RDS_MK3 176
> #define SAA7134_BOARD_HAWELL_HW_404M7 177
> +#define SAA7134_BOARD_TECHNOTREND_BUDGET_T3000 178
>
> #define SAA7134_MAXBOARDS 32
> #define SAA7134_INPUT_MAX 8
>
>
>
> Signed-off-by: Vadim Catana <vadim.catana@gmail.com>
>
>
> Best regards,
> Vadim Catana
>
>
>
--
Cheers,
Mauro
next prev parent reply other threads:[~2010-05-25 16:07 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-06 19:00 [PATCH] TechnoTrend TT-budget T-3000 Vadim Catana
2010-05-25 16:07 ` Mauro Carvalho Chehab [this message]
2010-05-29 15:49 ` Vadim Catana
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=4BFBF5A7.6070703@redhat.com \
--to=mchehab@redhat.com \
--cc=linux-media@vger.kernel.org \
--cc=vadim.catana@gmail.com \
/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 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.