Re: [PATCH] Illuminators and status LED controls

2010-09-08 Thread Peter Korsgaard
> "Hans" == Hans Verkuil writes: Hi, >> - the status LED should be controlled by the LED interface. Hans> I originally was in favor of controlling these through v4l as Hans> well, but people made some good arguments against that. The main Hans> one being: why would you want to show the

Re: [PATCH] Illuminators and status LED controls

2010-09-08 Thread Hans Verkuil
On Tuesday, September 07, 2010 23:14:10 Hans de Goede wrote: > Hi, > > On 09/07/2010 05:30 PM, Hans Verkuil wrote: > > On Tuesday, September 07, 2010 15:04:55 Hans de Goede wrote: > >> Hi, > >> > >> On 09/07/2010 04:50 PM, Hans Verkuil wrote: > > > > Both off > Top on, Bottom off > >>

Re: [PATCH] Illuminators and status LED controls

2010-09-08 Thread Hans Verkuil
On Thursday, September 09, 2010 08:07:02 Jean-Francois Moine wrote: > On Wed, 08 Sep 2010 20:58:18 +0200 > Peter Korsgaard wrote: > > > "Andy" == Andy Walls writes: > > Andy> Incandescent and Halogen lamps that effect an image coming > > Andy> into a camera are *not* LEDs that blink or flas

Re: [PATCH] Illuminators and status LED controls

2010-09-08 Thread Jean-Francois Moine
On Wed, 08 Sep 2010 20:58:18 +0200 Peter Korsgaard wrote: > > "Andy" == Andy Walls writes: > Andy> Incandescent and Halogen lamps that effect an image coming > Andy> into a camera are *not* LEDs that blink or flash automatically > Andy> based on driver or system trigger events. They are c

Re: [PATCH 2/5] rc-core: remove remaining users of the ir-functions keyhandlers

2010-09-08 Thread Jarod Wilson
On Tue, Sep 7, 2010 at 5:51 PM, David Härdeman wrote: > This patch removes the remaining usages of the ir_input_nokey() and > ir_input_keydown() functions provided by drivers/media/IR/ir-functions.c > by using the corresponding functionality in rc-core directly instead. > > Signed-off-by: David Hä

Re: [PATCH 1/5] rc-code: merge and rename ir-core

2010-09-08 Thread Jarod Wilson
On Wed, Sep 8, 2010 at 5:42 PM, David Härdeman wrote: > On Wed, Sep 08, 2010 at 10:42:10AM -0300, Mauro Carvalho Chehab wrote: >> Em 07-09-2010 18:51, David Härdeman escreveu: >> > This patch merges the files which makes up ir-core and renames the >> > resulting module to rc-core. IMHO this makes

Re: [PATCH 4/5] rc-core: make struct rc_dev the primary interface for rc drivers

2010-09-08 Thread Jarod Wilson
On Tue, Sep 7, 2010 at 5:51 PM, David Härdeman wrote: > This patch merges the ir_input_dev and ir_dev_props structs into a single > struct called rc_dev. The drivers and various functions in rc-core used > by the drivers are also changed to use rc_dev as the primary interface > when dealing with r

Re: [PATCH 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-08 Thread Jarod Wilson
On Wed, Sep 8, 2010 at 6:42 PM, Jarod Wilson wrote: > On Wed, Sep 08, 2010 at 06:54:02PM -0300, Mauro Carvalho Chehab wrote: >> Em 06-09-2010 18:26, Maxim Levitsky escreveu: >> > Hi, >> > >> > Here is full overview of my patches: >> > >> > Patch #1 fixes races in ir thread. >> > It fixes the case

Re: [PATCH 2/8] IR: make sure we register the input device when it is safe to do so.

2010-09-08 Thread Jarod Wilson
On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky wrote: > As soon as input device is registered, it might be accessed (and it is) > This can trigger a hardware interrupt that can access > not yet initialized ir->raw, (by sending a sample) > > This can be reproduced by holding down a remote button an

Re: [PATCH 1/8] IR: plug races in IR raw thread.

2010-09-08 Thread Jarod Wilson
On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky wrote: > Unfortunelly (my fault) the kernel thread that now handles IR processing > has classical races in regard to wakeup and stop. > This patch hopefully closes them all. > Tested with module reload running in a loop, while receiver is blasted > wi

Re: [PATCH] Illuminators and status LED controls

2010-09-08 Thread Andy Walls
On Wed, 2010-09-08 at 15:27 -0400, Alex Deucher wrote: > On Wed, Sep 8, 2010 at 2:58 PM, Peter Korsgaard wrote: > >> "Andy" == Andy Walls writes: > > > > Hi, > > > > Andy> Incandescent and Halogen lamps that effect an image coming into a > > Andy> camera are *not* LEDs that blink or flash a

Re: [RFC/PATCH v4 00/11] Media controller (core and V4L2)

2010-09-08 Thread Mauro Carvalho Chehab
Em 20-08-2010 12:29, Laurent Pinchart escreveu: > Hi everybody, > > Here's the fourth version of the media controller patches. All comments > received > so far have hopefully been incorporated. > > Compared to the previous version, the patches have been rebased on top of > 2.6.35 > and a MEDIA_

Re: [RFC/PATCH v4 11/11] v4l: Make v4l2_subdev inherit from media_entity

2010-09-08 Thread Mauro Carvalho Chehab
Em 20-08-2010 12:29, Laurent Pinchart escreveu: > V4L2 subdevices are media entities. As such they need to inherit from > (include) the media_entity structure. > > When registering/unregistering the subdevice, the media entity is > automatically registered/unregistered. The entity is acquired on d

Re: [RFC/PATCH v4 08/11] media: Links setup

2010-09-08 Thread Mauro Carvalho Chehab
Em 20-08-2010 12:29, Laurent Pinchart escreveu: > Create the following ioctl and implement it at the media device level to > setup links. > > - MEDIA_IOC_SETUP_LINK: Modify the properties of a given link > > The only property that can currently be modified is the ACTIVE link flag > to activate/de

Re: [RFC/PATCH v4 05/11] media: Reference count and power handling

2010-09-08 Thread Mauro Carvalho Chehab
Em 20-08-2010 12:29, Laurent Pinchart escreveu: > From: Sakari Ailus > > Basically these are the interface functions: > > media_entity_get() - acquire entity > media_entity_put() - release entity > > If the entity is of node type, the power change is distributed to > all connected e

Re: [RFC/PATCH v4 04/11] media: Entity graph traversal

2010-09-08 Thread Mauro Carvalho Chehab
Em 20-08-2010 12:29, Laurent Pinchart escreveu: > From: Sakari Ailus > > Add media entity graph traversal. The traversal follows active links by > depth first. Traversing graph backwards is prevented by comparing the next > possible entity in the graph with the previous one. Multiply connected >

Re: [RFC/PATCH v4 03/11] media: Entities, pads and links

2010-09-08 Thread Mauro Carvalho Chehab
Em 20-08-2010 12:29, Laurent Pinchart escreveu: > As video hardware pipelines become increasingly complex and > configurable, the current hardware description through v4l2 subdevices > reaches its limits. In addition to enumerating and configuring > subdevices, video camera drivers need a way to di

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread Mauro Carvalho Chehab
Em 08-09-2010 20:02, Andy Walls escreveu: > On Wed, 2010-09-08 at 13:27 -0400, Jarod Wilson wrote: I'd be inclined to simply move duty_cycle out of the union and leave just duration and carrier in it. >>> >>> That's not necessary and it could be confusing depending on where you >>

Re: [PATCH 1/2] V4L/DVB: dib7770: enable the current mirror

2010-09-08 Thread Mauro Carvalho Chehab
Em 07-09-2010 12:58, Patrick Boettcher escreveu: > Hi Mauro, > > On Tuesday 07 September 2010 17:50:45 pboettc...@kernellabs.com wrote: >> From: Olivier Grenie >> >> To improve performance on DiB7770-devices enabling the current mirror >> is needed. >> >> This patch adds an option to the dib7000p

Re: [PATCH 4/6] Input: winbond-cir - switch to using new keycode interface

2010-09-08 Thread Mauro Carvalho Chehab
Em 08-09-2010 20:09, David Härdeman escreveu: > On Wed, Sep 08, 2010 at 04:00:04PM -0700, Dmitry Torokhov wrote: >> On Wed, Sep 08, 2010 at 11:16:17PM +0200, David Härdeman wrote: >>> On Wed, Sep 08, 2010 at 12:42:00AM -0700, Dmitry Torokhov wrote: Switch the code to use new style of getkeycod

Re: [PATCH 4/6] Input: winbond-cir - switch to using new keycode interface

2010-09-08 Thread David Härdeman
On Wed, Sep 08, 2010 at 04:00:04PM -0700, Dmitry Torokhov wrote: > On Wed, Sep 08, 2010 at 11:16:17PM +0200, David Härdeman wrote: > > On Wed, Sep 08, 2010 at 12:42:00AM -0700, Dmitry Torokhov wrote: > > > Switch the code to use new style of getkeycode and setkeycode > > > methods to allow retrievi

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread David Härdeman
On Wed, Sep 08, 2010 at 07:02:33PM -0400, Andy Walls wrote: > On Wed, 2010-09-08 at 13:27 -0400, Jarod Wilson wrote: > > On Wed, Sep 08, 2010 at 12:50:46PM -0400, Andy Walls wrote: > > > On Wed, 2010-09-08 at 11:26 -0400, Jarod Wilson wrote: > > > > On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky >

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread Andy Walls
On Wed, 2010-09-08 at 13:27 -0400, Jarod Wilson wrote: > On Wed, Sep 08, 2010 at 12:50:46PM -0400, Andy Walls wrote: > > On Wed, 2010-09-08 at 11:26 -0400, Jarod Wilson wrote: > > > On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky > > > wrote: > > > > > > I'm generally good with this entire patch

Re: [PATCH 4/6] Input: winbond-cir - switch to using new keycode interface

2010-09-08 Thread Dmitry Torokhov
On Wed, Sep 08, 2010 at 11:16:17PM +0200, David Härdeman wrote: > On Wed, Sep 08, 2010 at 12:42:00AM -0700, Dmitry Torokhov wrote: > > Switch the code to use new style of getkeycode and setkeycode > > methods to allow retrieving and setting keycodes not only by > > their scancodes but also by index

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread Mauro Carvalho Chehab
Em 08-09-2010 19:49, David Härdeman escreveu: > On Wed, Sep 08, 2010 at 07:42:04PM -0300, Mauro Carvalho Chehab wrote: >> Em 06-09-2010 18:26, Maxim Levitsky escreveu: >>> diff --git a/drivers/media/IR/ir-rc6-decoder.c >>> b/drivers/media/IR/ir-rc6-decoder.c >>> index f1624b8..d25da91 100644 >>> -

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread David Härdeman
On Wed, Sep 08, 2010 at 07:42:04PM -0300, Mauro Carvalho Chehab wrote: > Em 06-09-2010 18:26, Maxim Levitsky escreveu: > > Add new event types for timeout & carrier report > > Move timeout handling from ir_raw_event_store_with_filter to > > ir-lirc-codec, where it is really needed. > > Now lirc bri

Re: [PATCH 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 06:54:02PM -0300, Mauro Carvalho Chehab wrote: > Em 06-09-2010 18:26, Maxim Levitsky escreveu: > > Hi, > > > > Here is full overview of my patches: > > > > Patch #1 fixes races in ir thread. > > It fixes the case when ktherad_stop waits forever for the thread. > > This hap

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread Mauro Carvalho Chehab
Em 06-09-2010 18:26, Maxim Levitsky escreveu: > Add new event types for timeout & carrier report > Move timeout handling from ir_raw_event_store_with_filter to > ir-lirc-codec, where it is really needed. > Now lirc bridge ensures proper gap handling. > Extend lirc bridge for carrier & timeout repor

Re: [PATCH 0/8 V5] Many fixes for in-kernel decoding and for the ENE driver

2010-09-08 Thread Mauro Carvalho Chehab
Em 06-09-2010 18:26, Maxim Levitsky escreveu: > Hi, > > Here is full overview of my patches: > > Patch #1 fixes races in ir thread. > It fixes the case when ktherad_stop waits forever for the thread. > This happens on module unload and therefore it never finishes. > Sorry for introducing this bug

Re: [linux-dvb] [Patch] Correct Signal Strength values for STB0899

2010-09-08 Thread Mike Booth
On Thu, 9 Sep 2010 03:51:06 you wrote: > thx Goga and thx to dimka_9 for his great work. > > I hope those guys will include it in the driver > > regards > > Newsy > > --- Goga777 schrieb am Mi, 8.9.2010: > > Von: Goga777 > > Betreff: Re: [linux-dvb] [Patch] Correct Signal Strength values for

Re: [PATCH 1/5] rc-code: merge and rename ir-core

2010-09-08 Thread David Härdeman
On Wed, Sep 08, 2010 at 10:42:10AM -0300, Mauro Carvalho Chehab wrote: > Em 07-09-2010 18:51, David Härdeman escreveu: > > This patch merges the files which makes up ir-core and renames the > > resulting module to rc-core. IMHO this makes it much easier to hack > > on the core module since all code

Re: [PATCH 1/2] ir-core: centralize sysfs raw decoder enabling/disabling

2010-09-08 Thread David Härdeman
On Wed, Sep 08, 2010 at 10:16:13AM -0400, Jarod Wilson wrote: > On Wed, Sep 08, 2010 at 07:04:03AM -0700, Brian Rogers wrote: > > ir_dev->raw is also null. If I check these pointers before using > > them, and bail out if both are null, then I get a working lircd, but > > of course the file /sys/dev

Re: [PATCH 4/6] Input: winbond-cir - switch to using new keycode interface

2010-09-08 Thread David Härdeman
On Wed, Sep 08, 2010 at 12:42:00AM -0700, Dmitry Torokhov wrote: > Switch the code to use new style of getkeycode and setkeycode > methods to allow retrieving and setting keycodes not only by > their scancodes but also by index. > > Signed-off-by: Dmitry Torokhov > --- > > drivers/input/misc/wi

Re: [PATCH 1/5] rc-code: merge and rename ir-core

2010-09-08 Thread David Härdeman
On Wed, Sep 08, 2010 at 11:10:40AM -0400, Andy Walls wrote: > Tag files and a decent editor are all one needs for full code > navigation. The kernel makefile already has a tags target to make the > tags file. If you like to use tags, it won't be affected by many or few files so it's not an a

Re: [PATCH] added support for DM040832731 DVB-S USB BOX - Correction

2010-09-08 Thread Mauro Carvalho Chehab
Em 29-07-2010 15:16, Mauro Carvalho Chehab escreveu: > Em 16-07-2010 10:43, Malcolm Priestley escreveu: >> DVB USB Driver for DM04 LME2510 + LG TDQY - P001F =(TDA8263 + TDA10086H) >> >> Corrected patch error. >> >> Signed-off-by: Malcolm Priestley > > Hi Malcom, > > Please read the developers se

Re: [RFC/PATCH 3/8] drivers:staging:ti-st: Sources for FM TX

2010-09-08 Thread Mauro Carvalho Chehab
Em 02-09-2010 12:57, raja_m...@ti.com escreveu: > From: Raja Mani > > This has implementation of FM TX functionality (for Wl127x and WL128x > chip) which are listed below, > > 1) frequency set. > 2) stereo/nono mode selection. > 3) RDS config. > 4) mute/unmute mode config. > 5) power level confi

Re: [RFC/PATCH 2/8] include:linux:videodev2: Define new CIDs for FM RX ctls

2010-09-08 Thread Mauro Carvalho Chehab
Em 02-09-2010 12:57, raja_m...@ti.com escreveu: > From: Raja Mani > > Extend V4L2 CID list to support >1) FM RX Tuner controls >2) FM band >3) RSSI Threshold >4) Alternative Frequency Hmm... no DocBooks for RSSI and "Alternative Frequency"... How do you expect me to review new A

Re: [RFC/PATCH 1/8] drivers:media:video: Adding new CIDs for FM RX ctls

2010-09-08 Thread Mauro Carvalho Chehab
Em 02-09-2010 12:57, raja_m...@ti.com escreveu: > From: Raja Mani > > Add support for the following new Control IDs (CID) >V4L2_CID_FM_RX_CLASS- FM RX Tuner controls >V4L2_CID_FM_BAND- FM band Hmm... both you and Matti are adding _the_same_ ioctls on different patchsets? Plea

Re: [RESEND][PATCH 0/2] media, mfd: Add timberdale video-in driver

2010-09-08 Thread Mauro Carvalho Chehab
Em 02-09-2010 08:56, Richard Röjfors escreveu: > To follow are two patches. > > The first adds the timberdale video-in driver to the media tree. > > The second adds it to the timberdale MFD driver. > > Samuel and Mauro hope you can support and solve the potential merge > issue between your two t

Re: [RESEND][PATCH 1/2] media: Add timberdale video-in driver

2010-09-08 Thread Mauro Carvalho Chehab
Em 02-09-2010 08:56, Richard Röjfors escreveu: > This patch adds the timberdale video-in driver. > > The video IP of timberdale delivers the video data via DMA. > The driver uses the DMA api to handle DMA transfers, and make use > of the V4L2 video buffers to handle buffers against user space. >

Re: [PATCH] Illuminators and status LED controls

2010-09-08 Thread Alex Deucher
On Wed, Sep 8, 2010 at 2:58 PM, Peter Korsgaard wrote: >> "Andy" == Andy Walls writes: > > Hi, > >  Andy> Incandescent and Halogen lamps that effect an image coming into a >  Andy> camera are *not* LEDs that blink or flash automatically based on >  Andy> driver or system trigger events.  They

Re: [PATCH] DiSEqC bug fixed for stv0288 based interfaces

2010-09-08 Thread Mauro Carvalho Chehab
Em 01-09-2010 09:35, Josef Pavlik escreveu: > Fixed problem with DiSEqC communication. The message was wrongly modulated, > so the DiSEqC switch was not work. > > This patch fixes DiSEqC messages, simple tone burst and tone on/off. > I verified it with osciloscope against the DiSEqC documentatio

Re: [PATCH v9 3/4] V4L2: WL1273 FM Radio: Controls for the FM radio.

2010-09-08 Thread Mauro Carvalho Chehab
Em 30-08-2010 08:38, Matti J. Aaltonen escreveu: > This driver implements V4L2 controls for the Texas Instruments > WL1273 FM Radio. > > Signed-off-by: Matti J. Aaltonen > --- > drivers/media/radio/Kconfig| 15 + > drivers/media/radio/Makefile |1 + > drivers/media/radio/radi

[cron job] v4l-dvb daily build 2.6.26 and up: ERRORS

2010-09-08 Thread Hans Verkuil
This message is generated daily by a cron job that builds v4l-dvb for the kernels and architectures in the list below. Results of the daily build of v4l-dvb: date:Wed Sep 8 19:00:12 CEST 2010 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 15139:6e0befab696a git master:

Re: [PATCH] Illuminators and status LED controls

2010-09-08 Thread Peter Korsgaard
> "Andy" == Andy Walls writes: Hi, Andy> Incandescent and Halogen lamps that effect an image coming into a Andy> camera are *not* LEDs that blink or flash automatically based on Andy> driver or system trigger events. They are components of a video Andy> capture system with which a human

Re: [PATCH v9 2/4] MFD: WL1273 FM Radio: MFD driver for the FM radio.

2010-09-08 Thread Mauro Carvalho Chehab
Em 30-08-2010 08:38, Matti J. Aaltonen escreveu: > This is a parent for two child drivers: a V4L2 driver and > an ALSA codec driver. The MFD part implements I2C communication > to the device and provides a couple of functions that are called > from both children. > > Signed-off-by: Matti J. Aalton

Re: [PATCH v9 4/4] Documentation: v4l: Add hw_seek spacing and FM_RX class

2010-09-08 Thread Mauro Carvalho Chehab
Em 30-08-2010 08:38, Matti J. Aaltonen escreveu: > Add a couple of words about the spacing field in the HW seek struct, > about the V4L2_CAP_RAW_RDS_ONLY capability flag and about the > new FM RX control class. Same comment as patch 1/4: FM bandwidth can already be defined via VIDIOC_[G|S]_TUNER.

Re: [PATCH v9 1/4] V4L2: Add seek spacing and FM RX class.

2010-09-08 Thread Mauro Carvalho Chehab
Em 30-08-2010 08:38, Matti J. Aaltonen escreveu: > Add spacing field to v4l2_hw_freq_seek, add V4L2_CAP_RAW_RDS_ONLY > to driver capabilities and also add FM RX class to control classes. > > Signed-off-by: Matti J. Aaltonen > --- > drivers/media/video/v4l2-ctrls.c | 12 > include/

Kernel Oops with Kernel 2.6.32

2010-09-08 Thread Christoph Pleger
Hello, I am running a Debian 2.6.32-Kernel (which by the way contains a lot of unresolved symbols in many dvb modules). As this kernel does not support my WinTV Nova-T USB-Stick, I downloaded the latest sources via the web interface from linuxtv.org, compiled the sources and installed the resul

Re: [linux-dvb] [Patch] Correct Signal Strength values for STB0899

2010-09-08 Thread Goga777
Приветствую, Newsy no, I'm not author of patch , no need to include me in drivers. btw - can anybody else test this patch ? Igor Liplianin is waiting for additional feedback Goga > thx Goga and thx to dimka_9 for his great work. > > I hope those guys will include it in the driver > > regar

Re: [linux-dvb] [Patch] Correct Signal Strength values for STB0899

2010-09-08 Thread Newsy Paper
thx Goga and thx to dimka_9 for his great work. I hope those guys will include it in the driver regards Newsy --- Goga777 schrieb am Mi, 8.9.2010: > Von: Goga777 > Betreff: Re: [linux-dvb] [Patch] Correct Signal Strength values for STB0899 > An: linux-...@linuxtv.org > CC: linux-media@vger.k

Re: [linux-dvb] [Patch] Correct Signal Strength values for STB0899

2010-09-08 Thread Goga777
> first of all I have to say that this patch is not from me. > It's from rotor-0.1.4mh-v1.2.tar.gz > Thx to the author of that patch and the modified rotor Plugin. I think he's a > friend of Mike Booth > > I think it should be included into s2-liplianin. > With this patch all dvb-s and dvb-s2 sig

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 09:56:07AM -0700, Dmitry Torokhov wrote: > On Wed, Sep 08, 2010 at 12:09:08PM -0400, Jarod Wilson wrote: > > On Wed, Sep 08, 2010 at 05:25:13PM +0200, Jiri Kosina wrote: > > > On Wed, 8 Sep 2010, Jarod Wilson wrote: > > > > > > > > > It'll conflict a little bith with the ti

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 12:50:46PM -0400, Andy Walls wrote: > On Wed, 2010-09-08 at 11:26 -0400, Jarod Wilson wrote: > > On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky > > wrote: > > > Add new event types for timeout & carrier report > > > Move timeout handling from ir_raw_event_store_with_filter

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Dmitry Torokhov
On Wed, Sep 08, 2010 at 12:09:08PM -0400, Jarod Wilson wrote: > On Wed, Sep 08, 2010 at 05:25:13PM +0200, Jiri Kosina wrote: > > On Wed, 8 Sep 2010, Jarod Wilson wrote: > > > > > > > It'll conflict a little bith with the tivo slide patch I posted > > > > > yesterday, > > > > > but mostly just min

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread Andy Walls
On Wed, 2010-09-08 at 11:26 -0400, Jarod Wilson wrote: > On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky > wrote: > > Add new event types for timeout & carrier report > > Move timeout handling from ir_raw_event_store_with_filter to > > ir-lirc-codec, where it is really needed. > > Now lirc bridge

Re: [PATCH] Illuminators and status LED controls

2010-09-08 Thread Andy Walls
On Wed, 2010-09-08 at 10:59 +0300, Eduardo Valentin wrote: > Hello, > > On Wed, Sep 08, 2010 at 04:16:48AM +0200, ext Eino-Ville Talvala wrote: > > > > This is probably a bit OT, but these sorts of indicator LEDs can get quite > > complicated. > > > > As part of our FCamera sample program on t

Re: IR code autorepeat issue?

2010-09-08 Thread Mauro Carvalho Chehab
Em 29-08-2010 12:44, Mauro Carvalho Chehab escreveu: > Em 29-08-2010 03:40, Anton Blanchard escreveu: >> >> I'm seeing double IR events on 2.6.36-rc2 and a DViCO FusionHDTV DVB-T Dual >> Express. > There's one issue on touching on this constant: it is currently just one > global > timeout value t

[PATCH] V4L/DVB: rc-core: increase repeat time

2010-09-08 Thread Mauro Carvalho Chehab
As reported by Anton Blanchard , double IR events on 2.6.36-rc2 and a DViCO FusionHDTV DVB-T Dual Express are happening: [ 1351.032084] ir_keydown: i2c IR (FusionHDTV): key down event, key 0x0067, scancode 0x0051 [ 1351.281284] ir_keyup: keyup key 0x0067 ie one key down event and one key up even

[PATCH] V4L/DVB: rc-core: increase repeat time

2010-09-08 Thread Mauro Carvalho Chehab
As reported by Anton Blanchard , double IR events on 2.6.36-rc2 and a DViCO FusionHDTV DVB-T Dual Express are happening: [ 1351.032084] ir_keydown: i2c IR (FusionHDTV): key down event, key 0x0067, scancode 0x0051 [ 1351.281284] ir_keyup: keyup key 0x0067 ie one key down event and one key up even

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 05:25:13PM +0200, Jiri Kosina wrote: > On Wed, 8 Sep 2010, Jarod Wilson wrote: > > > > > It'll conflict a little bith with the tivo slide patch I posted > > > > yesterday, > > > > but mostly just minor context changes. I can redo that patch on top of > > > > these changes

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Dmitry Torokhov
On Wed, Sep 08, 2010 at 11:48:50AM +0200, Jiri Kosina wrote: > On Wed, 8 Sep 2010, Dmitry Torokhov wrote: > > > Hi Mauro, > > > > I guess I better get off my behind and commit the changes to support large > > scancodes, or they will not make to 2.6.37 either... There isn't much > > changes, excep

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Dmitry Torokhov
On Wed, Sep 08, 2010 at 05:25:13PM +0200, Jiri Kosina wrote: > On Wed, 8 Sep 2010, Jarod Wilson wrote: > > > > > It'll conflict a little bith with the tivo slide patch I posted > > > > yesterday, > > > > but mostly just minor context changes. I can redo that patch on top of > > > > these changes

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Dmitry Torokhov
On Wed, Sep 08, 2010 at 10:31:21AM -0400, Jarod Wilson wrote: > On Wed, Sep 08, 2010 at 12:41:38AM -0700, Dmitry Torokhov wrote: > > Hi Mauro, > > > > I guess I better get off my behind and commit the changes to support large > > scancodes, or they will not make to 2.6.37 either... There isn't muc

Re: [PATCH 7/8] IR: extend ir_raw_event and do refactoring

2010-09-08 Thread Jarod Wilson
On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky wrote: > Add new event types for timeout & carrier report > Move timeout handling from ir_raw_event_store_with_filter to > ir-lirc-codec, where it is really needed. > Now lirc bridge ensures proper gap handling. > Extend lirc bridge for carrier & time

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jiri Kosina
On Wed, 8 Sep 2010, Jarod Wilson wrote: > > > It'll conflict a little bith with the tivo slide patch I posted yesterday, > > > but mostly just minor context changes. I can redo that patch on top of > > > these changes if that's preferred. > > > > I can handle those context changes when merging th

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Mauro Carvalho Chehab
Em 08-09-2010 04:41, Dmitry Torokhov escreveu: > Hi Mauro, > > I guess I better get off my behind and commit the changes to support large > scancodes, or they will not make to 2.6.37 either... There isn't much > changes, except I followed David's suggestion and changed boolean index > field into u

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 12:15:06PM -0300, Mauro Carvalho Chehab wrote: > Em 08-09-2010 11:24, Jarod Wilson escreveu: > > On Wed, Sep 08, 2010 at 11:48:50AM +0200, Jiri Kosina wrote: > >> On Wed, 8 Sep 2010, Dmitry Torokhov wrote: > >> > >>> Hi Mauro, > >>> > >>> I guess I better get off my behind a

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Mauro Carvalho Chehab
Em 08-09-2010 11:24, Jarod Wilson escreveu: > On Wed, Sep 08, 2010 at 11:48:50AM +0200, Jiri Kosina wrote: >> On Wed, 8 Sep 2010, Dmitry Torokhov wrote: >> >>> Hi Mauro, >>> >>> I guess I better get off my behind and commit the changes to support large >>> scancodes, or they will not make to 2.6.37

Re: [PATCH 1/5] rc-code: merge and rename ir-core

2010-09-08 Thread Andy Walls
Tag files and a decent editor are all one needs for full code navigation. The kernel makefile already has a tags target to make the tags file. Smaller files make for better logical isolation of functions, limiting visibilty/scope, and faster compilation of a file (but maybe at the expense of

Re: [PATCH 5/8] IR: extend MCE keymap.

2010-09-08 Thread Jarod Wilson
On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky wrote: > These keys are found on remote bundled with > Toshiba Qosmio F50-10q. > > Found and tested by, Sami R > > Signed-off-by: Maxim Levitsky > --- >  drivers/media/IR/keymaps/rc-rc6-mce.c |    3 +++ >  1 files changed, 3 insertions(+), 0 deletio

Re: [PATCH 4/8] IR: fix keys beeing stuck down forever.

2010-09-08 Thread Jarod Wilson
On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky wrote: > The logic in ir_timer_keyup was inverted. > > In case that values aren't equal, > the meaning of the time_is_after_eq_jiffies(ir->keyup_jiffies) is that > ir->keyup_jiffies is after the the jiffies or equally that > that jiffies are before th

Re: [PATCH 3/8] IR: fix duty cycle capability

2010-09-08 Thread Jarod Wilson
On Mon, Sep 6, 2010 at 5:26 PM, Maxim Levitsky wrote: > Due to typo lirc bridge enabled wrong capability. > > Signed-off-by: Maxim Levitsky > --- >  drivers/media/IR/ir-lirc-codec.c |    2 +- >  1 files changed, 1 insertions(+), 1 deletions(-) Acked-by: Jarod Wilson -- Jarod Wilson ja...@wils

budget-ci.c : Wrong IR map for bundled Technotrend S2-3200 remote

2010-09-08 Thread Newsy Paper
Hi! in budget-ci.c RC_MAP_TT_3200 is set for a Technotrend S2-3200. But this RC map doesn't seems to be 100% correct. case 0x1019: /* For the TT 3200 bundled remote */ ir_codes = RC_MAP_TT_3200; break; if I set ir_codes = RC_MAP_TT_1500 a

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 12:41:38AM -0700, Dmitry Torokhov wrote: > Hi Mauro, > > I guess I better get off my behind and commit the changes to support large > scancodes, or they will not make to 2.6.37 either... There isn't much > changes, except I followed David's suggestion and changed boolean in

Re: [PATCH] af9015: add USB ID for Terratec Cinergy T Stick RC MKII

2010-09-08 Thread Mauro Carvalho Chehab
Em 25-08-2010 10:58, Antti Palosaari escreveu: > Heissan Stefan, > > On 08/25/2010 04:08 PM, Stefan Lippers-Hollmann wrote: >> Adding the USB ID for my TerraTec Electronic GmbH Cinergy T RC MKII >> [0ccd:0097] and hooking it up into af9015, on top of your new NXP TDA18218 >> patches, makes it work

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 11:48:50AM +0200, Jiri Kosina wrote: > On Wed, 8 Sep 2010, Dmitry Torokhov wrote: > > > Hi Mauro, > > > > I guess I better get off my behind and commit the changes to support large > > scancodes, or they will not make to 2.6.37 either... There isn't much > > changes, excep

[Patch] Correct Signal Strength values for STB0899

2010-09-08 Thread Newsy Paper
Hi, first of all I have to say that this patch is not from me. It's from rotor-0.1.4mh-v1.2.tar.gz Thx to the author of that patch and the modified rotor Plugin. I think he's a friend of Mike Booth I think it should be included into s2-liplianin. With this patch all dvb-s and dvb-s2 signal stren

Re: [PATCH 1/2] ir-core: centralize sysfs raw decoder enabling/disabling

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 07:04:03AM -0700, Brian Rogers wrote: > On 06/13/2010 01:29 PM, David Härdeman wrote: > >diff --git a/drivers/media/IR/ir-sysfs.c b/drivers/media/IR/ir-sysfs.c > >index daf33c1..7ae5662 100644 > >--- a/drivers/media/IR/ir-sysfs.c > >+++ b/drivers/media/IR/ir-sysfs.c > >@@ -

Re: [PATCH 1/5] rc-code: merge and rename ir-core

2010-09-08 Thread Jarod Wilson
On Wed, Sep 08, 2010 at 10:42:10AM -0300, Mauro Carvalho Chehab wrote: > Em 07-09-2010 18:51, David Härdeman escreveu: > > This patch merges the files which makes up ir-core and renames the > > resulting module to rc-core. IMHO this makes it much easier to hack > > on the core module since all code

Re: [PATCH 1/2] ir-core: centralize sysfs raw decoder enabling/disabling

2010-09-08 Thread Brian Rogers
On 06/13/2010 01:29 PM, David Härdeman wrote: diff --git a/drivers/media/IR/ir-sysfs.c b/drivers/media/IR/ir-sysfs.c index daf33c1..7ae5662 100644 --- a/drivers/media/IR/ir-sysfs.c +++ b/drivers/media/IR/ir-sysfs.c @@ -33,122 +33,178 @@ static struct class ir_input_class = { }; /** - * show

Re: [PATCH 1/5] rc-code: merge and rename ir-core

2010-09-08 Thread Mauro Carvalho Chehab
Em 07-09-2010 18:51, David Härdeman escreveu: > This patch merges the files which makes up ir-core and renames the > resulting module to rc-core. IMHO this makes it much easier to hack > on the core module since all code is in one file. > > This also allows some simplification of ir-core-priv.h as

[PATCH 1/2] V4L/DVB: cx88: Fix some gcc warnings

2010-09-08 Thread Mauro Carvalho Chehab
drivers/media/video/cx88/cx88-dsp.c: In function ‘detect_a2_a2m_eiaj’: drivers/media/video/cx88/cx88-dsp.c:158: warning: ‘carrier_freq’ may be used uninitialized in this function drivers/media/video/cx88/cx88-dsp.c:158: warning: ‘stereo_freq’ may be used uninitialized in this function drivers/med

[PATCH 2/2] V4L/DVB: cx25821: fix gcc warning when compiled with allyesconfig

2010-09-08 Thread Mauro Carvalho Chehab
drivers/staging/cx25821/cx25821-alsa.c:632: warning: ‘cx25821_audio_pci_tbl’ defined but not used Signed-off-by: Mauro Carvalho Chehab diff --git a/drivers/staging/cx25821/cx25821-alsa.c b/drivers/staging/cx25821/cx25821-alsa.c index a43b188..095562c 100644 --- a/drivers/staging/cx25821/cx2582

Re: [PATCH 2/2] V4L/DVB: radio-si4713: Add regulator framework support

2010-09-08 Thread Jarkko Nikula
On Wed, 8 Sep 2010 15:11:36 +0300 Eduardo Valentin wrote: > The background here you are probably missing is that the split between > i2c and platform drivers. That has been done because we were thinking also > in the situation where the si4713 i2c driver could be used without the > platform drive

[PATCH] Don't identify PV SBTVD Hybrid as a DibCom device

2010-09-08 Thread Mauro Carvalho Chehab
As reported by Carlos, Prolink Pixelview SBTVD Hybrid is based on Conexant cx231xx + Fujitsu 86A20S demodulator. However, both shares the same USB ID. So, we need to use USB bcdDevice, in order to properly discover what's the board. We know for sure that bcd 0x100 is used for a dib0700 device, whi

Re: [PATCH 2/2] V4L/DVB: radio-si4713: Add regulator framework support

2010-09-08 Thread Eduardo Valentin
Hello, On Wed, Sep 08, 2010 at 07:59:38AM +0200, Jarkko Nikula wrote: > Hi > > On Tue, 7 Sep 2010 22:49:49 +0300 > Eduardo Valentin wrote: > > > Hello Jarkko, > > > > On Sun, Jun 13, 2010 at 08:09:28PM +0200, Jarkko Nikula wrote: > > > Convert the driver to use regulator framework instead of s

First DVB-T2 tuner announced - Hauppauge PCTV Nanostick T2 290e

2010-09-08 Thread Steve Kerrison
Hauppauge has released details of its first DVB-T2 tuner at IFA. Some scarce details are here: http://www.wegotserved.com/2010/09/04/ifa-2010-hauppauge-announces-freeview-hd-dvbt2-tuner-pc/ along with a "datasheet" (without very much data) here: http://www.wegotserved.com/2010/09/06/ifa-2010-pct

Re: [PATCH 0/6] Large scancode handling

2010-09-08 Thread Jiri Kosina
On Wed, 8 Sep 2010, Dmitry Torokhov wrote: > Hi Mauro, > > I guess I better get off my behind and commit the changes to support large > scancodes, or they will not make to 2.6.37 either... There isn't much > changes, except I followed David's suggestion and changed boolean index > field into u8 f

Re: [PATCH] Illuminators and status LED controls

2010-09-08 Thread Eduardo Valentin
Hello, On Wed, Sep 08, 2010 at 04:16:48AM +0200, ext Eino-Ville Talvala wrote: > > This is probably a bit OT, but these sorts of indicator LEDs can get quite > complicated. > > As part of our FCamera sample program on the Nokia N900 (which uses V4L2 way > down there), we wanted to reprogram t

[PATCH 6/6] Input: media/IR - switch to using new keycode interface

2010-09-08 Thread Dmitry Torokhov
Switch the code to use new style of getkeycode and setkeycode methods to allow retrieving and setting keycodes not only by their scancodes but also by index. Signed-off-by: Dmitry Torokhov --- drivers/media/IR/ir-keytable.c | 393 +++- include/media/rc-map.h

[PATCH 5/6] Input: ati-remote2 - switch to using new keycode interface

2010-09-08 Thread Dmitry Torokhov
Switch the code to use new style of getkeycode and setkeycode methods to allow retrieving and setting keycodes not only by their scancodes but also by index. Signed-off-by: Dmitry Torokhov --- drivers/input/misc/ati_remote2.c | 93 +++--- 1 files changed, 65 in

[PATCH 4/6] Input: winbond-cir - switch to using new keycode interface

2010-09-08 Thread Dmitry Torokhov
Switch the code to use new style of getkeycode and setkeycode methods to allow retrieving and setting keycodes not only by their scancodes but also by index. Signed-off-by: Dmitry Torokhov --- drivers/input/misc/winbond-cir.c | 248 +- 1 files changed, 163 i

[PATCH 3/6] Input: hid-input - switch to using new keycode interface

2010-09-08 Thread Dmitry Torokhov
Switch HID code to use new style of getkeycode and setkeycode methods to allow retrieving and setting keycodes not only by their scancodes but also by index. Signed-off-by: Dmitry Torokhov --- drivers/hid/hid-input.c | 103 --- 1 files changed, 70 in

[PATCH 2/6] Input: sparse-keymap - switch to using new keycode interface

2010-09-08 Thread Dmitry Torokhov
Switch sparse keymap library to use new style of getkeycode and setkeycode methods to allow retrieving and setting keycodes not only by their scancodes but also by index. Signed-off-by: Dmitry Torokhov --- drivers/input/sparse-keymap.c | 81 + 1 files c

[PATCH 1/6] Input: add support for large scancodes

2010-09-08 Thread Dmitry Torokhov
From: Mauro Carvalho Chehab Several devices use a high number of bits for scancodes. One important group is the Remote Controllers. Some new protocols like RC-6 define a scancode space of 64 bits. The current EVIO[CS]GKEYCODE ioctls allow replace the scancode/keycode translation tables, but it i

[PATCH 0/6] Large scancode handling

2010-09-08 Thread Dmitry Torokhov
Hi Mauro, I guess I better get off my behind and commit the changes to support large scancodes, or they will not make to 2.6.37 either... There isn't much changes, except I followed David's suggestion and changed boolean index field into u8 flags field. Still, please glance it over once again and