From patchwork Mon Aug 31 11:19:49 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maximilian Imgrund X-Patchwork-Id: 7099411 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id F3D11BEEC1 for ; Mon, 31 Aug 2015 11:52:45 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 63B3220664 for ; Mon, 31 Aug 2015 11:52:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B067720662 for ; Mon, 31 Aug 2015 11:52:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752772AbbHaLwn (ORCPT ); Mon, 31 Aug 2015 07:52:43 -0400 Received: from imgrunds.de ([176.28.17.15]:36179 "EHLO imgrunds.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752374AbbHaLwm (ORCPT ); Mon, 31 Aug 2015 07:52:42 -0400 X-Greylist: delayed 1967 seconds by postgrey-1.27 at vger.kernel.org; Mon, 31 Aug 2015 07:52:42 EDT Received: from ip-91-214-9-55.4msp.de ([91.214.9.55] helo=[192.168.188.21]) by imgrunds.de with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ZWN7y-0004hH-J6 for linux-media@vger.kernel.org; Mon, 31 Aug 2015 13:19:54 +0200 Message-ID: <55E43855.3060409@imgrunds.de> Date: Mon, 31 Aug 2015 13:19:49 +0200 From: Maximilian Imgrund User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: linux-media@vger.kernel.org Subject: New Terratec Cinergy S2 Box usb-id References: <201508311109.t7VB9utm008834@higgs.fritz.box> In-Reply-To: <201508311109.t7VB9utm008834@higgs.fritz.box> X-Forwarded-Message-Id: <201508311109.t7VB9utm008834@higgs.fritz.box> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, T_RP_MATCHES_RCVD, T_TVD_MIME_EPI, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Dear all, I am currently figuring out how to get the Terratec Cinergy S2 USB Box up and running. I already modified a patch to previous version (see attachment) to include the new ID in the device driver, module is also loading with the ds3000 firmware. However, when using w_scan, the reported frequency range is .95GHz ... 2.15Ghz which is roughly a factor of 10 lower than I expected (Astra is 12.515Ghz e.g.). Since the tuner seems to tune in correctly but in the wrong frequency range, I feel that is the reason for me not getting in any channels. Can you help me with what to change in the driver to get this working ? I feel like an additional .frequency_div should do the job, however I am unable to find further informaion on that... Best Maximilian Imgrund -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iF4EAREIAAYFAlXkOFIACgkQR/X5cR0fI/6sfAD+OVauTyLw0oWSMr8ONzmrguF+ Ci/vg4uO9mxZwzjgGXkA/ipgQ/IuX+8n2CSScHg6CFjt9tIBbFOAVzStuUrOpwx2 =AAXS -----END PGP SIGNATURE----- --- a/drivers/media/usb/dvb-usb/dw2102.c +++ b/drivers/media/usb/dvb-usb/dw2102.c @@ -1657,6 +1657,7 @@ GOTVIEW_SAT_HD, GENIATECH_T220, TECHNOTREND_S2_4600, + TERRATEC_CINERGY_S2_R3, }; static struct usb_device_id dw2102_table[] = { @@ -1682,6 +1683,7 @@ [GENIATECH_T220] = {USB_DEVICE(0x1f4d, 0xD220)}, [TECHNOTREND_S2_4600] = {USB_DEVICE(USB_VID_TECHNOTREND, USB_PID_TECHNOTREND_CONNECT_S2_4600)}, + [TERRATEC_CINERGY_S2_R3] = {USB_DEVICE(USB_VID_TERRATEC, 0x0105)}, { } }; @@ -2085,7 +2087,7 @@ }}, } }, - .num_device_descs = 5, + .num_device_descs = 6, .devices = { { "SU3000HD DVB-S USB2.0", { &dw2102_table[GENIATECH_SU3000], NULL }, @@ -2107,6 +2109,10 @@ { &dw2102_table[GOTVIEW_SAT_HD], NULL }, { NULL }, }, + { "Terratec Cinergy S2 USB HD Rev.3", + { &dw2102_table[TERRATEC_CINERGY_S2_R3], NULL }, + { NULL }, + }, } };