From: Antti Palosaari <crope@iki.fi>
To: gennarone@gmail.com, Hans Verkuil <hverkuil@xs4all.nl>
Cc: linux-media@vger.kernel.org
Subject: Re: [REVIEW PATCH 00/86] SDR tree
Date: Mon, 10 Feb 2014 12:27:07 +0200 [thread overview]
Message-ID: <52F8A97B.9080401@iki.fi> (raw)
In-Reply-To: <52F8A4A2.9080106@gmail.com>
On 10.02.2014 12:06, Gianluca Gennari wrote:
> Hi Hans,
>
>> First of all, would this work for a rtl2838 as well or is this really 2832u
>> specific? I've got a 2838... If it is 2832u specific, then do you know which
>> product has it? It would be useful for me to have a usb stick with which I can
>> test SDR.
>
> regarding this question, 2838 is just another USB Id for rtl2832u
> devices based on reference design. I have one with rtl2832u + e4000
> tuner, so probably your stick is fine for SDR.
>
> Realtek makes several different demodulators with similar codenames:
> - 2830/2832 DVB-T
> - 2836 DTMB
> - 2840 DVB-C
>
> see here for more info:
> http://www.realtek.com.tw/products/productsView.aspx?Langid=1&PNid=7&PFid=22&Level=3&Conn=2
Yeah, demod chips are just like that. Then these are integrated like that:
RT2831U = USB-interface + RTL2830 DVB-T demod
RT2832U = USB-interface + RTL2832 DVB-T demod
RT2832P = USB-interface + RTL2832 DVB-T demod + TS interface
USB-interface used is pretty same for all these, thus it is split to own
driver named dvb_usb_rtl28xxu.
SDR functionality is property of RTL2832 demodulator, but I decided to
split it to own driver too.
Currently that SDR driver has support for devices having following RF
tuners: e4000, r820t, fc0012 and fc0013. So if Hans has a device having
some of those tuners, it should work.
regards
Antti
--
http://palosaari.fi/
prev parent reply other threads:[~2014-02-10 10:27 UTC|newest]
Thread overview: 91+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-09 8:48 [REVIEW PATCH 00/86] SDR tree Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 01/86] rtl2832_sdr: Realtek RTL2832 SDR driver module Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 02/86] rtl28xxu: attach SDR extension module Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 03/86] rtl2832_sdr: use config struct from rtl2832 module Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 04/86] rtl2832_sdr: initial support for R820T tuner Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 05/86] rtl2832_sdr: use get_if_frequency() Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 06/86] rtl2832_sdr: implement sampling rate Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 07/86] rtl2832_sdr: initial support for FC0012 tuner Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 08/86] rtl2832_sdr: initial support for FC0013 tuner Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 09/86] rtl28xxu: constify demod config structs Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 10/86] rtl2832: remove unused if_dvbt config parameter Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 11/86] rtl2832: style changes and minor cleanup Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 12/86] rtl2832_sdr: pixel format for SDR Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 13/86] rtl2832_sdr: implement FMT IOCTLs Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 14/86] msi3101: add signed 8-bit pixel format for SDR Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 15/86] msi3101: implement FMT IOCTLs Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 16/86] msi3101: move format 384 conversion to libv4lconvert Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 17/86] msi3101: move format 336 " Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 18/86] msi3101: move format 252 " Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 19/86] rtl28xxu: add module parameter to disable IR Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 20/86] rtl2832_sdr: increase USB buffers Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 21/86] rtl2832_sdr: convert to SDR API Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 22/86] msi3101: " Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 23/86] msi3101: add u8 sample format Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 24/86] msi3101: add u16 LE " Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 25/86] msi3101: tons of small changes Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 26/86] rtl2832_sdr: return NULL on rtl2832_sdr_attach failure Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 27/86] rtl2832_sdr: calculate bandwidth if not set by user Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 28/86] rtl2832_sdr: clamp ADC frequency to valid range always Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 29/86] rtl2832_sdr: improve ADC device programming logic Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 30/86] rtl2832_sdr: remove FMT buffer type checks Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 31/86] rtl2832_sdr: switch FM to DAB mode Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 32/86] msi3101: calculate tuner filters Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 33/86] msi3101: remove FMT buffer type checks Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 34/86] msi3101: improve ADC config stream format selection Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 35/86] msi3101: clamp ADC and RF to valid range Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 36/86] msi3101: disable all but u8 and u16le formats Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 37/86] v4l: add RF tuner gain controls Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 38/86] msi3101: use standard V4L " Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 39/86] e4000: convert DVB tuner to I2C driver model Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 40/86] e4000: add manual gain controls Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 41/86] rtl2832_sdr: expose E4000 gain controls to user space Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 42/86] r820t: add manual gain controls Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 43/86] rtl2832_sdr: expose R820 gain controls to user space Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 44/86] e4000: fix PLL calc to allow higher frequencies Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 45/86] msi3101: fix device caps to advertise SDR receiver Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 46/86] rtl2832_sdr: " Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 47/86] msi3101: add default FMT and ADC frequency Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 48/86] msi3101: sleep USB ADC and tuner when streaming is stopped Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 49/86] DocBook: document RF tuner gain controls Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 50/86] DocBook: V4L: add V4L2_SDR_FMT_CU8 - 'CU08' Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 51/86] DocBook: V4L: add V4L2_SDR_FMT_CU16LE - 'CU16' Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 52/86] DocBook: media: document V4L2_CTRL_CLASS_RF_TUNER Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 53/86] xc2028: silence compiler warnings Antti Palosaari
2014-02-09 8:48 ` [REVIEW PATCH 54/86] v4l: add RF tuner channel bandwidth control Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 55/86] msi3101: implement tuner " Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 56/86] rtl2832_sdr: " Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 57/86] msi001: Mirics MSi001 silicon tuner driver Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 58/86] msi3101: use msi001 " Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 59/86] MAINTAINERS: add msi001 driver Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 60/86] MAINTAINERS: add msi3101 driver Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 61/86] MAINTAINERS: add rtl2832_sdr driver Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 62/86] rtl28xxu: attach SDR module later Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 63/86] e4000: implement controls via v4l2 control framework Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 64/86] rtl2832_sdr: use E4000 tuner controls via V4L framework Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 65/86] e4000: remove .set_config() which was for controls Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 66/86] rtl28xxu: fix switch-case style issue Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 67/86] v4l: reorganize RF tuner control ID numbers Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 68/86] DocBook: document RF tuner bandwidth controls Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 69/86] v4l: uapi: add SDR formats CU8 and CU16LE Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 70/86] msi3101: use formats defined in V4L2 API Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 71/86] rtl2832_sdr: " Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 72/86] v4l: add enum_freq_bands support to tuner sub-device Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 73/86] msi001: implement .enum_freq_bands() Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 74/86] msi3101: provide RF tuner bands from sub-device Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 75/86] r820t/rtl2832u_sdr: implement gains using v4l2 controls Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 76/86] v4l: add control for RF tuner PLL lock flag Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 77/86] e4000: implement PLL lock v4l control Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 78/86] DocBook: media: document PLL lock control Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 79/86] rtl2832: provide muxed I2C adapter Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 80/86] rtl2832: add muxed I2C adapter for demod itself Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 81/86] rtl2832: Fix deadlock on i2c mux select function Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 82/86] rtl2832: implement delayed I2C gate close Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 83/86] rtl28xxu: use muxed RTL2832 I2C adapters for E4000 and RTL2832_SDR Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 84/86] e4000: get rid of DVB i2c_gate_ctrl() Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 85/86] rtl2832_sdr: do not init tuner when only freq is changed Antti Palosaari
2014-02-09 8:49 ` [REVIEW PATCH 86/86] e4000: convert to Regmap API Antti Palosaari
2014-02-09 17:08 ` [REVIEW PATCH 00/86] SDR tree Anca Emanuel
2014-02-10 9:43 ` Hans Verkuil
2014-02-10 10:06 ` Gianluca Gennari
2014-02-10 10:27 ` Antti Palosaari [this message]
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=52F8A97B.9080401@iki.fi \
--to=crope@iki.fi \
--cc=gennarone@gmail.com \
--cc=hverkuil@xs4all.nl \
--cc=linux-media@vger.kernel.org \
/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