Re: [PATCH RFC] [media] dib0700: remove redundant else

2016-10-10 Thread Patrick Boettcher
On Mon, 10 Oct 2016 06:30:35 -0300 Mauro Carvalho Chehab wrote: > > drivers/media/usb/dvb-usb/dib0700_devices.c | 10 +++--- > > 1 file changed, 3 insertions(+), 7 deletions(-) > > > > diff --git a/drivers/media/usb/dvb-usb/dib0700_devices.c > >

Re: [PATCH 09/26] dibusb: don't do DMA on stack

2016-10-10 Thread Patrick Boettcher
dvb_usb_nec_rc_key_to_event(d, buf, event, state); > + > + if (buf[0] != 0) > + deb_info("key: %*ph\n", 5, buf); > + > + kfree(buf); > + > return 0; > } > EXPORT_SYMBOL(dibusb_rc_query); > diff --git a/drivers/media/usb/dvb-usb/dibusb

Re: [PATCH 07/26] dib0700: be sure that dib0700_ctrl_rd() users can do DMA

2016-10-10 Thread Patrick Boettcher
peat(d->rc_dev); > return 0; > } > > protocol = RC_TYPE_NEC; > - scancode = RC_SCANCODE_NEC(key[3-2], key[3-3]); > + scancode = RC_SCANCODE_NEC(st->buf[3 - 2], st->buf[3 > - 3]); toggle = 0; > b

Re: [PATCH 05/26] cinergyT2-fe: don't do DMA on stack

2016-10-10 Thread Patrick Boettcher
break; > case 700: > - param.bandwidth = 7; > + param->bandwidth = 7; > break; > case 600: > - param.bandwidth = 6; > + param->bandwidth = 6; > break; > } > &g

Re: [PATCH 06/26] cxusb: don't do DMA on stack

2016-10-10 Thread Patrick Boettcher
nsfer size done by I2C transfer functions */ > +#define MAX_XFER_SIZE 80 > + > struct cxusb_state { > u8 gpio_write_state[3]; > struct i2c_client *i2c_client_demod; > struct i2c_client *i2c_client_tuner; > + > + unsigned char data[MAX_XFER_SIZE]; > }; > > #endif Reviewed-By: Patrick Boettcher <patrick.boettc...@posteo.de> -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 02/26] cinergyT2-core: don't do DMA on stack

2016-10-10 Thread Patrick Boettcher
13 +175,13 @@ static int cinergyt2_rc_query(struct > dvb_usb_device *d, u32 *event, int *state) } > > /* hack to pass checksum on the custom field */ > - key[2] = ~key[1]; > - dvb_usb_nec_rc_key_to_event(d, key, event, state); > - if (key[0] != 0) { > + st->data[2]

Re: [PATCH 08/26] dib0700_core: don't use stack on I2C reads

2016-10-10 Thread Patrick Boettcher
buf, msg[i].len); > > /* write/read request */ > @@ -299,6 +319,11 @@ static int dib0700_i2c_xfer_legacy(struct > i2c_adapter *adap, break; > } > > + if (msg[i + 1].len > sizeof(st->buf)) { > + deb_info("i2c

Re: [PATCH 11/26] digitv: don't do DMA on stack

2016-10-10 Thread Patrick Boettcher
drivers/media/usb/dvb-usb/digitv.h index 908c09f4966b..cf104689bdff > 100644 --- a/drivers/media/usb/dvb-usb/digitv.h > +++ b/drivers/media/usb/dvb-usb/digitv.h > @@ -6,6 +6,9 @@ > > struct digitv_state { > int is_nxt6000; > + > +unsigned char sndbuf[7]; >

Re: [PATCH 14/26] dtt200u: don't do DMA on stack

2016-10-10 Thread Patrick Boettcher
rmware = "dvb-usb-wt220u-fc03.fw", > > + .size_of_priv = sizeof(struct dtt200u_state), > + > .num_adapters = 1, > .adapter = { > { > @@ -290,6 +311,8 @@ static struct dvb_usb_device_properties > wt220u_zl0353_properties = { .usb_c

Re: [PATCH 19/26] nova-t-usb2: don't do DMA on stack

2016-10-10 Thread Patrick Boettcher
deb_rc("raw key code 0x%02x, 0x%02x, 0x%02x > to c: %02x d: %02x toggle: %d\n", > +buf[1], buf[2], buf[3], custom, data, > toggle); > for (i = 0; i < > ARRAY_SIZE(rc_map_haupp_table); i++) { if

Re: [PATCH 20/26] pctv452e: don't do DMA on stack

2016-10-10 Thread Patrick Boettcher
return ret; > > if (debug > 3) { > - info("%s: read: %2d: %*ph: ", __func__, ret, 3, rx); > - for (i = 0; (i < rx[3]) && ((i+3) < > PCTV_ANSWER_LEN); i++) > - info(" %02x", rx[i+3]); > + info("%s: read: %2d:

Re: [PATCH 22/26] technisat-usb2: use DMA buffers for I2C transfers

2016-10-10 Thread Patrick Boettcher
goto err; > } > > deb_i2c("status: %d, ", b[0]); > @@ -154,7 +158,9 @@ static int technisat_usb2_i2c_access(struct > usb_device *udev, > deb_i2c("\n"); > > - return 0; > +err: > + kfree(b); > + return ret; > }

Re: RFC - unclear change in "[media] DiBxxxx: Codingstype updates"

2016-10-10 Thread Patrick Boettcher
Hi, der Herr Hofrat ;-) On Sat, 8 Oct 2016 13:57:14 + Nicholas Mc Guire wrote: > - lo6 |= (1 << 2) | 2; > - else > - lo6 |= (1 << 2) | 1; > + lo6 |= (1 << 2) | 2;//SigmaDelta and Dither > + else { > +

dvb-usb stack-memory used for URB-buffers (was: Re: Problem with VMAP_STACK=y)

2016-10-05 Thread Patrick Boettcher
Hi, On Tue, 4 Oct 2016 15:26:28 +0200 (CEST) Jiri Kosina wrote: > On Tue, 4 Oct 2016, Jörg Otte wrote: > > > With kernel 4.8.0-01558-g21f54dd I get thousands of > > "dvb-usb: bulk message failed: -11 (1/0)" > > messages in the logs and the DVB adapter is not working. > > > >

Re: Problem with VMAP_STACK=y

2016-10-05 Thread Patrick Boettcher
On Wed, 5 Oct 2016 09:26:29 +0200 (CEST) Jiri Kosina wrote: > On Tue, 4 Oct 2016, Jörg Otte wrote: > > > Thanks for the quick response. > > Drivers are: > > dvb_core, dvb_usb, dbv_usb_cynergyT2 > > This dbv_usb_cynergyT2 is not from Linus' tree, is it? I don't seem > to be

Re: [PATCH 13/19] dib0090: comment out the unused tables

2016-06-26 Thread Patrick Boettcher
Hi Mauro, On Fri, 24 Jun 2016 12:31:54 -0300 Mauro Carvalho Chehab wrote: > Those tables are currently unused, so comment them out: We actually could remove these tables. It is very, very unlikely that this device will ever be used for S-Band in the future. Extremely

Re:

2015-11-13 Thread Patrick Boettcher
On Thu, 12 Nov 2015 15:41:50 -0200 Mauro Carvalho Chehab wrote: > > Is putting the patch in an attachment OK? > > No, because it doesn't make easy for people to reply with comments. Except if you are using claws. With which you can select text in a text attachment and

Re: PCTV Triplestick and Raspberry Pi B+

2015-07-08 Thread Patrick Boettcher
On Tue, 7 Jul 2015 18:51:16 +0200 (SST) Peter Fassberg p...@leissner.se wrote: On Tue, 7 Jul 2015, Patrick Boettcher wrote: Might be the RF frequency that is truncated on 32bit platforms somewhere. That could explain that there is no crash but simply not tuning. This is the current

Re: PCTV Triplestick and Raspberry Pi B+

2015-07-07 Thread Patrick Boettcher
On Tue, 7 Jul 2015 17:33:01 +0200 (SST) Peter Fassberg p...@leissner.se wrote: On Sun, 5 Jul 2015, Patrick Boettcher wrote: Your Intel platform is 64bit. I don't know the TripleStick nor the SI or the EM28xx-driver but _maybe_ there is a problem with it on 32-bit platforms. A long shot

Re: PCTV Triplestick and Raspberry Pi B+

2015-07-07 Thread Patrick Boettcher
On Tue, 7 Jul 2015 17:38:25 +0200 (SST) Peter Fassberg p...@leissner.se wrote: On Tue, 7 Jul 2015, Patrick Boettcher wrote: I installed the 32-bit version of the same OS (Debian 8, kernel 3.16.0, i386) and the result was a bit suprising. In 32-bit I couldn't even scan a DVT-T

Re: PCTV Triplestick and Raspberry Pi B+

2015-07-07 Thread Patrick Boettcher
On Tue, 7 Jul 2015 18:25:41 +0200 Patrick Boettcher patrick.boettc...@posteo.de wrote: [ 301.275434] si2168 1-0064: firmware version: 4.0.4 [ 301.284625] si2157 2-0060: found a 'Silicon Labs Si2157-A30' [ 301.340643] si2157 2-0060: firmware version: 3.0.5 Can you easily try more

Re: PCTV Triplestick and Raspberry Pi B+

2015-07-05 Thread Patrick Boettcher
Hi, On Sat, 4 Jul 2015 13:07:17 +0200 (SST) Peter Fassberg p...@leissner.se wrote: Hi all! I'm trying to get PCTV TripleStick 292e working in a Raspberry Pi B+ environment. I have no problem getting DVB-T to work, but I can't tune to any DVB-T2 channels. I have tried with three

Re: [PATCH v2 1/4] b2c2: Add option to skip the first 6 pid filters

2015-06-01 Thread Patrick Boettcher
Hi all, On Mon, 01 Jun 2015 09:08:03 +0100 Jemma Denson jden...@gmail.com wrote: Yes, that might work, I hadn't though of just swapping them around - thanks. It would however assume that the 0x PAT feed is requested early on enough that it always sits within the bank of 32 and nothing

Re: [PATCH 3/4] cx24120: Take control of b2c2 receive stream

2015-05-26 Thread Patrick Boettcher
Hi Jemma, On Fri, 22 May 2015 21:28:27 +0100 Jemma Denson jden...@gmail.com wrote: Now that b2c2 has an option to allow us to do so, turn off the flexcop receive stream when we turn off mpeg output whilst tuning. Does this not fix (and your '[PATCH 2/4]') the problem of receiving PAT from the

[PULL v3] for 4.2: add support for cx24120/Technisat SkyStar S2

2015-05-20 Thread Patrick Boettcher
cx24120: constify static data Patrick Boettcher (6): [media] cx24120: minor checkpatch fixes cx24120: i2c-max-write-size is now configurable [media] MAINTAINERS: add cx24120-maintainer cx24120: fix codingstyle issue first round cx24120: fix strict checkpatch-errors

Re: [PULL v3] for 4.2: add support for cx24120/Technisat SkyStar S2

2015-05-20 Thread Patrick Boettcher
On Wed, 20 May 2015 09:07:27 -0300 Mauro Carvalho Chehab mche...@osg.samsung.com wrote: Hi Patrick/Jemma, Em Wed, 20 May 2015 12:46:45 +0100 Jemma Denson jden...@gmail.com escreveu: On 20/05/15 09:05, Patrick Boettcher wrote: Hi Mauro, This is an updated version (v3) of the pull

Re: [PULL] For 4.2 (or even 4.1?) add support for cx24120/Technisat SkyStar S2

2015-05-19 Thread Patrick Boettcher
On Tue, 19 May 2015 12:25:19 +0100 Jemma Denson jden...@gmail.com wrote: On 19/05/15 11:57, Mauro Carvalho Chehab wrote: The only thing left now is moving UCB BER over to DVBv5 stats - we haven't got anything close to any specs for this demod so I'm struggling to work out how to handle

Re: [PATCH 1/3] cx24120: don't initialize a var that won't be used

2015-05-19 Thread Patrick Boettcher
Hi Mauro, On Tue, 19 May 2015 08:23:36 -0300 Mauro Carvalho Chehab mche...@osg.samsung.com wrote: As reported by smatch: drivers/media/dvb-frontends/cx24120.c: In function 'cx24120_message_send': drivers/media/dvb-frontends/cx24120.c:368:6: warning: variable 'ret' set but not used

[PULL v2] for 4.2: add support for cx24120/Technisat SkyStar S2

2015-05-18 Thread Patrick Boettcher
: Jemma Denson jden...@gmail.com +M: Patrick Boettcher patrick.boettc...@posteo.de +L: linux-media@vger.kernel.org +W: http://linuxtv.org/ +Q: http://patchwork.linuxtv.org/project/linux-media/list/ +S: Maintained +F: drivers/media/dvb-frontends/cx24120* + CX88 VIDEO4LINUX

Re: [PULL] For 4.2 (or even 4.1?) add support for cx24120/Technisat SkyStar S2

2015-05-15 Thread Patrick Boettcher
Hi Mauro, On Thu, 14 May 2015 18:40:40 -0300 Mauro Carvalho Chehab mche...@osg.samsung.com wrote: Em Wed, 29 Apr 2015 08:55:26 -0300 Mauro Carvalho Chehab mche...@osg.samsung.com escreveu: Em Wed, 29 Apr 2015 13:35:01 +0200 Patrick Boettcher patrick.boettc...@posteo.de escreveu: Hi

Re: [PULL] For 4.2 (or even 4.1?) add support for cx24120/Technisat SkyStar S2

2015-04-29 Thread Patrick Boettcher
Hi Mauro, On Mon, 27 Apr 2015 21:40:22 -0300 Mauro Carvalho Chehab mche...@osg.samsung.com wrote: Could we send an additional patch for coding-style or would you prefer a new patch which has everything inside? This would maintain the author-attribution of the initial commit. An

Re: [PULL] For 4.2 (or even 4.1?) add support for cx24120/Technisat SkyStar S2

2015-04-27 Thread Patrick Boettcher
: Em Mon, 20 Apr 2015 09:27:20 +0200 Patrick Boettcher patrick.boettc...@posteo.de escreveu: Hi Mauro, Would you please pull the following two patches for finally mainlining the Technisat SkyStar S2 (and its frontend cx24120). Ideally for 4.1, but I assume it is too late. So for 4.2

Re: [media-workshop] [DRAFT 1] Linux Media Summit report - March, 26 2015 - San Jose - CA - USA

2015-04-23 Thread Patrick Boettcher
Hi Mauro, On Thu, 23 Apr 2015 07:40:46 -0300 Mauro Carvalho Chehab mche...@osg.samsung.com wrote: What about demod-diversity: demods of some manufacturers can be used to combine their demodulated symbols and, due to their different antennas and RF-paths, improve the overall reception

Re: [DRAFT 1] Linux Media Summit report - March, 26 2015 - San Jose - CA - USA

2015-04-23 Thread Patrick Boettcher
Hi Mauro, I could not participate at your Summit, but may have an input to the media-controller in DVB - see below. On Wed, 22 Apr 2015 15:31:46 -0300 Mauro Carvalho Chehab mche...@osg.samsung.com wrote: This is the first draft for the Linux Media Summit Report. Please note that the items

Re: [PATCH] Add support for TechniSat Skystar S2

2015-04-20 Thread Patrick Boettcher
Hi Johannes, On Mon, 20 Apr 2015 10:20:47 +0200 Johannes Stezenbach j...@linuxtv.org wrote: (add Mauro) On Sun, Apr 19, 2015 at 11:19:43PM +0200, Patrick Boettcher wrote: On Fri, 17 Apr 2015 11:06:30 +0200 Patrick Boettcher patrick.boettc...@posteo.de wrote: http://git.linuxtv.org

[PULL] For 4.2 (or even 4.1?) add support for cx24120/Technisat SkyStar S2

2015-04-20 Thread Patrick Boettcher
(1): [media] Add support for TechniSat Skystar S2 Patrick Boettcher (1): [media] cx24120: minor checkpatch fixes drivers/media/common/b2c2/Kconfig|1 + drivers/media/common/b2c2/flexcop-fe-tuner.c | 51 +- drivers/media/common/b2c2/flexcop-misc.c |1 + drivers

Re: [PATCH] Add support for TechniSat Skystar S2

2015-04-20 Thread Patrick Boettcher
Hi Jemma, On Fri, 17 Apr 2015 12:47:50 +0100 Jemma Denson jden...@gmail.com wrote: To prepare an integration into 4.2 (or at least 4.3) I suggest using my media_tree on linuxtv.org . http://git.linuxtv.org/cgit.cgi/pb/media_tree.git/ cx24120-v2 I added a checkpatch-patch on top of

Re: [PATCH] Add support for TechniSat Skystar S2

2015-04-19 Thread Patrick Boettcher
Hi, On Fri, 17 Apr 2015 11:06:30 +0200 Patrick Boettcher patrick.boettc...@posteo.de wrote: http://git.linuxtv.org/cgit.cgi/pb/media_tree.git/ cx24120-v2 Jannis pointed out, that my repository on linuxtv.org was not fetchable... I put one onto github, this should work: https://github.com

Re: [PATCH] Add support for TechniSat Skystar S2

2015-04-17 Thread Patrick Boettcher
Hi Jemma, Thanks for taking this one. I had this on my list for years. On Mon, 13 Apr 2015 07:32:15 +0100 Jemma Denson jden...@gmail.com wrote: Oh, I was doing this the wrong way then. I did have some preamble to this but it seems to have been stripped. Anyway, this patch adds support for

Re: technisat-usb2: i2c-error

2014-10-11 Thread Patrick Boettcher
On Fri, 10 Oct 2014 12:09:12 +0200 JPT j-...@gmx.net wrote: Hi Patrick, Am 09.10.2014 um 17:26 schrieb Patrick Boettcher: Hi Jan, What exactly do the i2c-errors mean? I can't tell you exactly what happens in the device, but I can tell you that I have the same problem with my

Re: technisat-usb2: i2c-error

2014-10-09 Thread Patrick Boettcher
Hi Jan, On Tue, 07 Oct 2014 19:27:07 +0200 JPT j-...@gmx.net wrote: 01:14:52 VDR fails to start because there is no recording device. I was able to get things running by unloading the modules and loading them again. After that I started VDR. What exactly do the i2c-errors mean? Find

Re: [[PATCH v2] 00/14] Fix ISDB-T tuning issues

2014-07-07 Thread Patrick Boettcher
Hi Mauro, I like all of your changes. Acked-By: Patrick Boettcher pboettc...@kernellabs.com regards, Patrick. On Fri, 4 Jul 2014 14:15:26 -0300 Mauro Carvalho Chehab m.che...@samsung.com wrote: While testing two dvb devices: - Mygica S870 (dib8096 based); - Pixelview PV

Re: dib0700 NEC scancode question

2014-03-27 Thread Patrick Boettcher
Hi David, On Thursday 27 March 2014 22:40:41 David Härdeman wrote: On Thu, Mar 27, 2014 at 01:07:28PM +0100, David Härdeman wrote: Hi Patrick, a quick question regarding the dib0700 driver: in ./media/usb/dvb-usb/dib0700_core.c the RC RX packet is defined as: ... The NEC protocol

Re: [PATCH] media: usb: b2c2: Kconfig: add PCI dependancy to DVB_B2C2_FLEXCOP_USB

2013-08-30 Thread Patrick Boettcher
Hi (sending again due to HTML-nonsense in Mail), On Friday 30 August 2013 10:23:24 Chen Gang wrote: DVB_B2C2_FLEXCOP_USB need depend on PCI, or can not pass compiling with allmodconfig for h8300. The related error: drivers/media/usb/b2c2/flexcop-usb.c: In function

Re: Diversity support?

2013-06-04 Thread Patrick Boettcher
On Tuesday 04 June 2013 13:17:49 Antti Palosaari wrote: On 06/04/2013 10:29 AM, Luca Olivetti wrote: Al 04/06/13 01:17, En/na Antti Palosaari ha escrit: I'm not easily discouraged :-) so here's the question again: is there some dvb-t usb stick (possibly available on the EU market) with

Re: Diversity support?

2013-06-04 Thread Patrick Boettcher
On Monday 03 June 2013 17:14:18 Luca Olivetti wrote: So, what's the real status of diversity support? Nobody knows? I'm not easily discouraged :-) so here's the question again: is there some dvb-t usb stick (possibly available on the EU market) with diversity support under Linux?

[GIT PULL FOR 3.10] DiBxxxx: fixes and improvements

2013-04-22 Thread Patrick Boettcher
] dib8000: enhancement [media] dib7000p: enhancement [media] dib0090: enhancement [media] dib8096: enhancement [media] dib7090p: remove the support for the dib7090E [media] dib7090p: improve the support of the dib7090 and dib7790 Patrick Boettcher (1): [media] dib8000

Re: request for linux driver for Analogix ANX9804/ANX9805

2012-12-12 Thread Patrick Boettcher
On Wednesday 12 December 2012 13:20:46 Fricke, Silvio wrote: Hi, We have developed a prototype of an i.mx6 CPU-module connected to an ANALOGIX AN9804 chip. This is a DisplayPort/HDMI-Transmitter [1]. This is a converter for simple rgb-signals to DisplayPort and HDMI signals. The ANX is

Re: Linux DVB Explained..

2012-11-19 Thread Patrick Boettcher
Hi Richard, I can maybe answer some of your questions with semi-complete answers in the hope it helps you further. On Saturday 17 November 2012 13:35:18 Richard wrote: struct dvb_demux : This has a start_feed and a stop feed. What feed is this? ... the RAW 188 byte packets from the device

Re: Sony PlayTV: tuning on second tuner causing reception issues on first tuner

2012-10-15 Thread Patrick Boettcher
Hi Torgeir, On Sunday 14 October 2012 00:25:26 Torgeir Veimo wrote: When background EIT scanning is enabled on my VDR setup, I am getting signal disruption about every 20-21 seconds, with my sony playtv USB dual DVB-T tuner. In the VDR-ML-thread you said that you have 2 of those devices? I

[GIT PULL] for 3.7 (technisat-usb2)

2012-10-03 Thread Patrick Boettcher
to e196a346d5d2e4695a587ca2f99da5e5491d4e95: [media]: add MODULE_DEVICE_TABLE to technisat-usb2 Patrick Boettcher (1): [media]: add MODULE_DEVICE_TABLE to technisat-usb2 drivers/media/usb/dvb-usb/technisat-usb2.c |1 + 1 file

[media/usb] Trivial fix for 3.7 if not too late

2012-10-01 Thread Patrick Boettcher
Hi Mauro, If it is not too late could you please incorporate the following patch to 3.7. It fixed the autoloading of the technisat-ubs2-module when the device is actually detected. - [PATCH] [media]: add MODULE_DEVICE_TABLE to technisat-usb2 best regards, -- Patrick. - -- To unsubscribe

[PATCH] [media]: add MODULE_DEVICE_TABLE to technisat-usb2

2012-10-01 Thread Patrick Boettcher
This patch adds a module-device-table-entry to the technisat-usb2-driver which will help udev to on-demand load the driver. This was obviously forgotten during initial commit. Signed-off-by: Patrick Boettcher pboettc...@kernellabs.com --- drivers/media/usb/dvb-usb/technisat-usb2.c |1 + 1

Compiling v4l-dvb.git-modules for stock kernel without media_build

2012-08-25 Thread Patrick Boettcher
Hi list, Not so long ago I used a special version of v4l-dvb.git (v3,2 + a patch) on my system together with a debian stock kernel. It worked. Now I update my system and thus the kernel and what I did last time doesn't seem to work any longer: 1) checkout v3.2 of v4l-dvb.git and apply my path

Re: DVB core enhancements - comments please?

2012-06-29 Thread Patrick Boettcher
On Friday 29 June 2012 13:24:52 Patrick Boettcher wrote: That said, IMO, the rtl-sdr driver should sit on the DVB-API. Maybe V4L2 *argl* I wanted to say, ... should _not_ sit on the DVB-API... -- Patrick. Kernel Labs Inc. http://www.kernellabs.com/ -- To unsubscribe from this list: send

Re: DVB USB issues we has currently

2012-05-03 Thread Patrick Boettcher
On Thursday 03 May 2012 16:20:23 Antti Palosaari wrote: Hello, Here we are, that's the first part I am going to fix as a GSoC project. Work is planned to start after two weeks but better to discuss beforehand. And wish-list is now open! I see two big DVB USB issues including multiple

Re: [PATCH 07/10] dvb-demux: add functionality to send raw payload to the dvr device

2012-05-02 Thread Patrick Boettcher
Hi Mike, On Tuesday 01 May 2012 06:12:22 Michael Krufky wrote: From: Michael Krufky mkru...@kernellabs.com If your driver needs to deliver the raw payload to userspace without passing through the kernel demux, use function: dvb_dmx_swfilter_raw I like this one very much. I had a background

Re: Module dvb-usb

2012-03-30 Thread Patrick Boettcher
Hi Matias, On Friday 30 March 2012 09:42:14 Matias Aguirre wrote: My name is Matias and im a programmer. I need to ask some things to you about the creation of new modules into the kernel for TV adapters. I have a new TV adapter with the chipset DM1305. I have the firmware of this chipset..

Re: update to file fr-Paris for DVB-T

2012-03-28 Thread Patrick Boettcher
joined Are you sure that the frequency you give for R8 is 700MHz? 700 MHz is not a fitting into the 8MHz structured sprectrum. To make it fix it should be either 698 or 706. best regards, -- Patrick Boettcher Kernel Labs Inc. http://www.kernellabs.com/ -- To unsubscribe from this list: send

Re: SDR FM demodulation

2012-02-09 Thread Patrick Boettcher
I saw in gnuradio there should be everything to make a FM-demod based on the data. regards, -- Patrick Boettcher Kernel Labs Inc. http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More

Re: [PATCH 2/2] [media] dvb_frontend: Require FE_HAS_PARAMETERS for get_frontend()

2012-01-19 Thread Patrick Boettcher
not able to report the parameters (USB-firmware-based frontends might be poorly implemented). And so on... regards, -- Patrick Boettcher Kernel Labs Inc. http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord

Re: v4l-utils migrated to autotools

2012-01-18 Thread Patrick Boettcher
cmake and can't understand why people are not preferring it over autotools for user-space applications and conditional+configurable builds. I hope my mail is not too off-topic. regards, -- Patrick Boettcher Kernel Labs Inc. http://www.kernellabs.com/ -- To unsubscribe from this list: send

Re: [PATCH] [RFC] dib8000: return an error if the TMCC is not locked

2012-01-18 Thread Patrick Boettcher
be if not integrated to the status locks. Also those parameters can change over time and signal a reconfiguration of the transmission. So, for me I would vote against this kind of implementation in favor a better one. Unfortunately I don't have a much better idea at hand right now. -- Patrick

Re: [PATCH] [RFC] dib8000: return an error if the TMCC is not locked

2012-01-18 Thread Patrick Boettcher
On Wednesday 18 January 2012 14:40:09 Mauro Carvalho Chehab wrote: Em 18-01-2012 10:49, Patrick Boettcher escreveu: On Tuesday 17 January 2012 19:45:28 you wrote: On ISDB-T, a few carriers are reserved for TMCC decoding (1 to 20 carriers, depending on the mode). Those carriers use

Re: V4L/DVB (12892): DVB-API: add support for ISDB-T and ISDB-Tsb (version 5.1)

2012-01-17 Thread Patrick Boettcher
On Friday 13 January 2012 13:37:57 Dan Carpenter wrote: Hello Patrick Boettcher, I know this patch is really old but I was hoping you still might be able to take a look at it. The patch b6e760f30975: V4L/DVB (12892): DVB-API: add support for ISDB-T and ISDB-Tsb (version 5.1) from Aug 3

PULL request: remove superfluous DTV_CMDs

2012-01-17 Thread Patrick Boettcher
: Properly retrieve symbol rate are available in the git repository at: http://linuxtv.org/git/pb/media_tree.git staging/for_v3.3 Patrick Boettcher (1): [media] DVB-CORE: remove superfluous DTV_CMDs drivers/media/dvb/dvb-core/dvb_frontend.c | 19 --- 1 files changed, 0

Re: [PATCH 1/4] DVB: dib0700, move Nova-TD Stick to a separate set

2012-01-17 Thread Patrick Boettcher
will be added in further patches. Signed-off-by: Jiri Slaby jsl...@suse.cz --- [..] Thanks. I reviewed and added those commits to my tree (apparently Mike did the same and asked Mauro to pull as well). We will see how it turns out. :) best regards, -- Patrick Boettcher Kernel Labs Inc. http

Re: [PATCH RFCv2] add DTMB support for DVB API

2012-01-16 Thread Patrick Boettcher
On Saturday 14 January 2012 16:31:16 Antti Palosaari wrote: Version 2. I have made some changes from feedback got and what I myself found better. I will add documentation later after API issues are resolved. Thanks to Andreas, Patrick and Mauro. Cc: Patrick Boettcher pboettc

Re: [RFCv1] add DTMB support for DVB API

2011-12-25 Thread Patrick Boettcher
that Tuesday next week if no one else corrects me before. -- Patrick Boettcher - KernelLabs http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo

Re: [RFCv1] add DTMB support for DVB API

2011-12-25 Thread Patrick Boettcher
this inside DiBcom and it would simplify the integration of our drivers for this standard. This is planned to be done during the first half of 2012. Comments? -- Patrick Boettcher - KernelLabs http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body

Re: Add support for new Terratec DVB USB IDs

2011-12-25 Thread Patrick Boettcher
On Friday, December 23, 2011 12:44:46 AM Jonathan Nieder wrote: Hi, Eduard Bloch wrote[1]: current revision of the Cinergy S2 USB box from Terratec seems to use another USB-IDs. The manufacturer provides patches at http://linux.terratec.de/tv_en.html and it seems like the only

Re: [GIT PULL FOR 3.3] HDIC HD29L2 DMB-TH demodulator driv

2011-12-21 Thread Patrick Boettcher
On Tuesday 20 December 2011 19:09:14 Mauro Carvalho Chehab wrote: On 20-12-2011 16:01, Antti Palosaari wrote: On 12/20/2011 07:16 PM, Antti Palosaari wrote: On 12/20/2011 06:25 PM, Patrick Boettcher wrote: Hi all, On Tuesday 20 December 2011 16:42:53 Antti Palosaari wrote: Adding

Re: [GIT PULL FOR 3.3] HDIC HD29L2 DMB-TH demodulator driver

2011-12-20 Thread Patrick Boettcher
Hi all, On Tuesday 20 December 2011 16:42:53 Antti Palosaari wrote: Adding those to API is not mission impossible. Interleaver is only new parameter and all the rest are just extending values. But my time is limited... and I really would like to finally got Anysee smart card reader integrated

Communication misunderstanding? (was: Re: [RFC] vtunerc: virtual DVB device - is it ok to NACK driver because of worrying about possible misusage?)

2011-12-01 Thread Patrick Boettcher
individuals in our decisions and views. I think it's better to limit public discussions in a professional technical environment to technical problems - saying that I would want to encourage you discuss with us off-list or in our blog what makes you generalize in such a way? -- Patrick

Re: PULL request for 3.2 (fixes 'n' features)

2011-11-24 Thread Patrick Boettcher
Hi Mauro, On Tue, 4 Oct 2011, Patrick Boettcher wrote: Hi Mauro, if it's not too late for 3.2 could you please pull from git://linuxtv.org/pb/media_tree.git staging/for_v3.2 for [media] dib9090: limit the I2C speed [media] dib8096P: add the reference board [media] add the support

Re: Nova-T Stick 2 on kernel 3.0

2011-11-21 Thread Patrick Boettcher
Hi Jos, On Monday 21 November 2011 14:14:25 Jos Lemmens wrote: Hello Patrick, I have a Device 008: ID 2040:7060 Hauppauge Nova-T Stick 2 dvb adapter. It worked great with your driver in Linux kernel 2. But since kernel 3.0 it doesn't work anymore. When I try to start the tv with the tzap

FE_CAN-bits (was: Re: PATCH: Query DVB frontend capabilities)

2011-11-11 Thread Patrick Boettcher
which aren't done. But is this a case we want to support within the official API. regards, -- Patrick Boettcher - KernelLabs http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info

Re: FX2 FW: conversion from Intel HEX to DVB USB hexline

2011-11-06 Thread Patrick Boettcher
-firmware.c int usb_cypress_load_firmware() I'm sure that you have found something yourself in the meantime, but I used the attached script to convert .hex to binaries. HTH, -- Patrick Boettcher - KernelLabs http://www.kernellabs.com/ hex2bin.pl Description: Perl program

Re: FX2 FW: conversion from Intel HEX to DVB USB hexline

2011-11-06 Thread Patrick Boettcher
sure be done within 300 bytes (the size of the perl script). Also the .bin is smaller in term of size compared to the .hex. -- Patrick Boettcher - KernelLabs http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord

Re: MediaController support in LinuxDVB demux

2011-11-04 Thread Patrick Boettcher
://www.linuxtv.org/events.php (at the very bottom). Thanks in advance. best regards -- Patrick Boettcher Kernel Labs Inc. http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http

PULL request for 3.2 (fixes 'n' features)

2011-10-04 Thread Patrick Boettcher
Hi Mauro, if it's not too late for 3.2 could you please pull from git://linuxtv.org/pb/media_tree.git staging/for_v3.2 for [media] dib9090: limit the I2C speed [media] dib8096P: add the reference board [media] add the support for DiBcom [media] dib7090: add the reference board [media]

Re: DiBxxxx: fixes for 3.1/3.0

2011-09-05 Thread Patrick Boettcher
On Mon, 5 Sep 2011, Mauro Carvalho Chehab wrote: Em 05-09-2011 05:11, Olivier Grenie escreveu: Hello Mauro, I agree with you but when I wrote this patch, my concern was that the read register function (dib0070_read_reg) returns a u16 and so I could not propagate the error. That's why I

Re: Bug#639161: linux-image-3.0.0-1-686-pae: Upgrade 2.6.39 - 3.0.0 breaks playback on DiBcom 7000PC

2011-08-25 Thread Patrick Boettcher
Hi, Afaik, this is fixed with those commits: [media] dib0700: correct error message for_v3.0 [media] dib0700: protect the dib0700 buffer access [media] DiBcom: protect the I2C bufer access from http://git.linuxtv.org/pb/media_tree.git/shortlog/refs/heads/for_v3.0 A pull request has been sent

Re: DiBxxxx: fixes for 3.1/3.0

2011-08-05 Thread Patrick Boettcher
Hi Mauro, On Wed, 3 Aug 2011, Patrick Boettcher wrote: Would you please pull from git://linuxtv.org/pb/media_tree.git for_v3.0 for the following to changesets: [media] dib0700: protect the dib0700 buffer access [media] DiBcom: protect the I2C bufer access I added a patch from Olivier which

Re: vp702x

2011-08-03 Thread Patrick Boettcher
that will be :). regards, -- Patrick Boettcher - Kernel Labs http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

DiBxxxx: fixes for 3.1/3.0

2011-08-03 Thread Patrick Boettcher
. thanks and best regards, -- Patrick Boettcher - Kernel Labs http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH 2/3] dvb-usb: multi-frontend support (MFE)

2011-07-31 Thread Patrick Boettcher
something like plug device = probe1 = download FW = probe2 = attach demod If I had more time I'd add * handle suspend/resume calls properly for buggy USB firmwares (iow: all devices I saw) -- Patrick Boettcher - KernelLabs http://www.kernellabs.com/ -- To unsubscribe from this list: send the line

Re: [media] dib0700: get rid of on-stack dma buffers

2011-04-04 Thread Patrick Boettcher
Hi Florian, On Sun, 3 Apr 2011, Florian Mickler wrote: Hi, since I got no reaction[1] on the vp702x driver, I proceed with the dib0700. There are multiple drivers in drivers/media/dvb/dvb-usb/ which use usb_control_msg to perform dma to stack-allocated buffers. This is a bad idea because of

Re: dibusb device with lock problems

2011-04-03 Thread Patrick Boettcher
Hi Mr Tux, On Saturday 02 April 2011 15:45:22 Mr Tux wrote: Hi list, hello Patrick, A locking problem with specific dib3000mb devices is still present in kernel 2.6.38. Now people upgrading from lenny to squeeze are also affected - see: [1] Please have a look at my previous post in [2]

Re: Skystar 2 2.6 broken in kernel 2.6.38

2011-04-03 Thread Patrick Boettcher
somewhere on the road. I hope this time it will make it. best regards, -- Patrick Boettcher - KernelLabs http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http

Re: [PATCH] [media] dib0700: fix possible NULL pointer dereference

2011-04-03 Thread Patrick Boettcher
On Saturday 26 March 2011 19:23:56 Mariusz Kozlowski wrote: Seems like 'adap-fe' test for NULL was meant to be before we dereference that pointer. Signed-off-by: Mariusz Kozlowski m...@lab.zgora.pl Thanks, applied. -- Patrick Boettcher - KernelLabs http://www.kernellabs.com

[2.6.39] fixes - pull request

2011-04-03 Thread Patrick Boettcher
-S/S2 [PATCH] [media] dib0700: fix possible NULL pointer... FLEXCOP-PCI: fix __xlate_proc_name-warning for flexcop-pci DIB0700: fix typo in dib0700_devices.c Thanks, -- Patrick Boettcher - KernelLabs http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media

Re: Dib7000/mt2266 help

2011-03-12 Thread Patrick Boettcher
Hi Peter, (adding back the list to CC) On Saturday 12 March 2011 11:48:38 Peter Tilley wrote: Hi Patrick, My sincerest apologies for coming to you directly but I have tried the Linux mailing list and received no response and noticed you seem to have been heavily involved with much of the

Re: [PULL] request for 2.6.38-rc1

2011-01-19 Thread Patrick Boettcher
Hi Mauro, On Sun, 16 Jan 2011, Mauro Carvalho Chehab wrote: Em 14-01-2011 12:51, Patrick Boettcher escreveu: Hi Mauro, if it is not too late, here is a pull request for some new devices from DiBcom. It would be nice to have it in 2.6.38-rc1. Pull from git://linuxtv.org/pb/media_tree.git

Re: [PATCH] dib7000m/p: struct alignment fix

2011-01-14 Thread Patrick Boettcher
exists. We are currently creating a proper fix for it. best regards, -- Patrick Boettcher - Kernel Labs http://www.kernellabs.com/ -- To unsubscribe from this list: send the line unsubscribe linux-media in the body of a message to majord...@vger.kernel.org More majordomo info at http

Re: [PATCH] dib7000m/p: struct alignment fix

2011-01-14 Thread Patrick Boettcher
Hi again, On Wed, 12 Jan 2011, Mauro Carvalho Chehab wrote: Em 12-01-2011 11:17, Robin Humble escreveu: Hi, this is basically a re-post of http://www.linuxtv.org/pipermail/linux-dvb/2010-September/032744.html which fixes an Oops when tuning eg. AVerMedia DVB-T Volar, Hauppauge Nova-T,

[FIX for 2.6.37]

2010-11-28 Thread Patrick Boettcher
Hi Mauro, please pull from git://github.com/pboettch/linux-2.6.git v2.6.37-fixes for flexcop-pci: sanitize driver name to avoid warning on load It fixes https://bugzilla.kernel.org/show_bug.cgi?id=15826 . thanks and best regards, -- Patrick Boettcher - KernelLabs http://www.kernellabs.com

Re: tuner demodulator: Montage versus STMicroelectronics

2010-11-27 Thread Patrick Boettcher
On Saturday 27 November 2010 03:12:32 Zbigniew Luszpinski wrote: Hello, I'm going to buy my first DVB-S2 USB tuner. I see that there are two best demod/tuner solutions: 1. Montage Technology M88TS2020/2 tuner and M88DS3000/2 demodulator 2. STMicroelectronics STB6100 tuner and STV0903BAC

Re: [GIT PULL request for 2.6.37] Add Technisat SkyStar HD USB driver

2010-10-31 Thread Patrick Boettcher
On Sunday 17 October 2010 14:23:03 Mauro Carvalho Chehab wrote: Em 17-10-2010 10:50, Patrick Boettcher escreveu: Hi Mauro, please git pull git://github.com/pboettch/linux-2.6.git for_mauro for the following changes: technisat-usb2: added driver for Technisat's USB2.0 DVB-S

[GIT PULL request for 2.6.37] Add Technisat SkyStar HD USB driver

2010-10-17 Thread Patrick Boettcher
for 2.6.37 and have been rebased today on linuxtv's staging/2.6.37-branch. The development of the new technisat-usb2-driver has been sponsored by Technisat UK. Thanks in advance for pulling and commenting, -- Patrick Boettcher - KernelLabs http://www.kernellabs.com/ -- To unsubscribe from

  1   2   >