Fixed (Was:Re: saa7134/2.6.26 regression, noisy output)

2009-05-15 Thread Anders Eriksson
Success! I've tracked down the offending change. switch_addr takes on the wrong value and setting the LNA fails. Here's a i2c dump: saa7133[0]: i2c eeprom e0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff saa7133[0]: i2c eeprom f0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff saa7133[0]:

Re: twinhan cards

2009-05-15 Thread Gregor Fuis
I have here more detailed output from dst module: [9.070205] dst(0) dst_comm_init: Initializing DST. [9.070273] dst(0) dst_gpio_outb: mask=[], enbb=[0001], outhigh=[] [9.072332] dst(0) rdc_reset_state: Resetting state machine [9.072385] dst(0) dst_gpio_outb:

RE: v4l-dvb rev 11757 broke building under Ubuntu Hardy

2009-05-15 Thread chaithrika
Andy, Thanks for the patch. Please see my response below. -Original Message- From: Andy Walls [mailto:awa...@radix.net] Sent: Friday, May 15, 2009 5:24 AM To: david.w...@gatech.edu Cc: Chaithrika U S; linux-media@vger.kernel.org Subject: Re: v4l-dvb rev 11757 broke building under

V4L2 - Capturing uncompressed data

2009-05-15 Thread Guillaume
Hello, I'm a French student and I'm doing an intern ship in a French image processing software company, and I've got some questions about V4L2 and more precisely, the video formats. In the application, I just need to capture frames of webcams and display the result. After research, I found

Re: V4L2 - Capturing uncompressed data

2009-05-15 Thread Laurent Pinchart
Hi Guillaume, On Friday 15 May 2009 15:03:11 Guillaume wrote: Hello, I'm a French student and I'm doing an intern ship in a French image processing software company, and I've got some questions about V4L2 and more precisely, the video formats. In the application, I just need to capture

Re: V4L2 - Capturing uncompressed data

2009-05-15 Thread Guillaume
Laurent Pinchart laurent.pinchart at skynet.be writes: It depends on the camera. If the camera can deliver uncompressed data, you should be able to get that out of the driver. Otherwise you're stuck. [snip] Ok, it's what I was afraid of. That probably means that the camera can't

saa7130 unstable video

2009-05-15 Thread Bartosz Cisek
Hello, I have cheap Chinese noname card with 8 Philips 7130 chips, without eeprom. It's dedicated to CCTV. Has no tv tuner, and I don't need sound. Card looks exacly like http://www.cn-dvr.net/products/enproducts76.html and AOP-8008A from http://www.bttv-gallery.de/ I tried modprobe with all

RE: v4l-dvb rev 11757 broke building under Ubuntu Hardy

2009-05-15 Thread Andy Walls
On Fri, 2009-05-15 at 18:31 +0530, chaithrika wrote: Andy, Thanks for the patch. Please see my response below. -Original Message- From: Andy Walls [mailto:awa...@radix.net] Sent: Friday, May 15, 2009 5:24 AM To: david.w...@gatech.edu Cc: Chaithrika U S;

Re: How to interpret error codes for usb_control_msg()?

2009-05-15 Thread Theodore Kilgore
On Thu, 14 May 2009, Randy Dunlap wrote: Theodore Kilgore wrote: On Thu, 14 May 2009, Randy Dunlap wrote: snip Anyone have any good and clever ideas? I suggest that you ask on the USB mailing list (linux-...@vger.kernel.org). It occurs to me that the problem may not be in the

[PATCH 00/10 v2] soc-camera conversions

2009-05-15 Thread Guennadi Liakhovetski
Hi all, this is the next round of soc-camera conversions. Run-tested on i.MX31, PXA270, SH7722, compile-tested only for i.MX1. It should have been a straight-forward port of the previous version to a more current tree, but then I started converting soc_camera_platform, and things became a bit

[PATCH 01/10 v2] soc-camera: prepare soc_camera_platform.c and its users for conversion

2009-05-15 Thread Guennadi Liakhovetski
soc_camera_platform.c is only used by y SuperH ap325rxa board. This patch converts soc_camera_platform.c and its users for the soc-camera platform- device conversion and also extends soc-camera core to handle non-I2C cameras. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- Paul,

[PATCH 02/10 v2] ARM: convert pcm037 to the new platform-device soc-camera interface

2009-05-15 Thread Guennadi Liakhovetski
Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- This is actually a completion to the other single patches I've sent earlier for various boards. As I said, pcm037 doesn't have all its outstanding patches in next yet, so, you'll need to collect them from trees / lists, or get them

[PATCH 03/10 v2] soc_camera_platform: pass device pointer from soc-camera core on .add_device()

2009-05-15 Thread Guennadi Liakhovetski
Add a struct device pointer to struct soc_camera_platform_info and let the user (ap325rxa) pass it down to soc_camera_platform.c in its .add_device() method. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- Paul, another mixed one, should be quite easy to review though:-)

[PATCH 05/10 v2] sh: soc-camera updates

2009-05-15 Thread Guennadi Liakhovetski
Update ap325rxa to specify .bus_id in struct soc_camera_link explicitly, remove unused .iface from struct soc_camera_platform_info. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- Paul, you certainly could take this one, as well as a couple others, but maybe easier to push them

[PATCH 06/10 v2] soc-camera: remove unused .iface from struct soc_camera_platform_info

2009-05-15 Thread Guennadi Liakhovetski
Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- include/media/soc_camera_platform.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/include/media/soc_camera_platform.h b/include/media/soc_camera_platform.h index b144f94..bb70401 100644 ---

[PATCH 07/10 v2] sh: prepare board-ap325rxa.c for v4l2-subdev conversion

2009-05-15 Thread Guennadi Liakhovetski
We will be registering and unregistering the soc_camera_platform platform device multiple times, therefore we need a .release() method and have to nullify the kobj. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- Another one for sh. Again have to synchronise.

[PATCH 08/10 v2] v4l2-subdev: add a v4l2_i2c_subdev_board() function

2009-05-15 Thread Guennadi Liakhovetski
Introduce a function similar to v4l2_i2c_new_subdev() but taking a pointer to a struct i2c_board_info as a parameter instead of a client type and an I2C address, and make v4l2_i2c_new_subdev() a wrapper around it. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- Hans, renamed as

[RFC 09/10 v2] v4l2-subdev: re-add s_standby to v4l2_subdev_core_ops

2009-05-15 Thread Guennadi Liakhovetski
NOT FOR SUBMISSION. Probably, another solution has to be found. soc-camera drivers need an .init() (marked as don't use) and a .halt() methods. Signed-off-by: Guennadi Liakhovetski g.liakhovet...@gmx.de --- Hans, you moved s_standby to tuner_ops, and init is not recommended for new drivers.

Re: [PATCH 00/10 v2] soc-camera conversions

2009-05-15 Thread Guennadi Liakhovetski
it on i.MX31, otherwise the series will not apply cleanly. All available at http://download.open-technology.de/soc-camera/20090515/ As you can see from -base it is still based on next of 20090507, i.e., 9 days ago:-( If you take a newer tree, some of those patches will already be there, so, I

patch: s2255drv: adding V4L2_MODE_HIGHQUALITY

2009-05-15 Thread Dean A.
From: Dean Anderson d...@sensoray.com Adding V4L2_MODE_HIGHQUALITY feature. Signed-off-by: Dean Anderson d...@sensoray.com --- v4l-dvb-0018ed9bbca3/linux/drivers/media/video/s2255drv.c.orig 2009-05-15 10:15:36.0 -0700 +++ v4l-dvb-0018ed9bbca3/linux/drivers/media/video/s2255drv.c

[cron job] v4l-dvb daily build 2.6.22 and up: ERRORS, 2.6.16-2.6.21: ERRORS

2009-05-15 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:Fri May 15 19:00:02 CEST 2009 path:http://www.linuxtv.org/hg/v4l-dvb changeset: 11783:0018ed9bbca3 gcc version: gcc

log of em28xx based KWorld DVB-T310U as requested by driver

2009-05-15 Thread Lars Hansen
Hello, here is the dmesg for the USB tv stick I purchased as Kworld/V-Stream DVB-T310U DVB-T/Analog-Tuner,USB Stick. It indeed seems to be from KWorld according to its labelling :-) Picture works in tvtime. No sound. arecord -l lists no audio capture device other than my audio chips. V4L2

[PATCH 0/9] ARM: DaVinci: Video: DM355/DM6446 VPFE Capture driver

2009-05-15 Thread m-karicheri2
From: Muralidharan Karicheri a0868...@gt516km11.gt.design.ti.com VPFE Capture driver for DaVinci Media SOCs :- DM355 and DM6446 These patches add support for VPFE (Video Processing Front End) based video capture on DM355 and DM6446 EVMs. For more details on the hardware configuration and

[PATCH 2/9] ccdc hw device header file for vpfe capture

2009-05-15 Thread m-karicheri2
From: Muralidharan Karicheri a0868...@gt516km11.gt.design.ti.com CCDC hw device header file Adds ccdc hw device header for vpfe capture driver This has comments incorporated from previous review. Reviewed By Hans Verkuil. Reviewed By Laurent Pinchart. Signed-off-by: Muralidharan Karicheri

[PATCH 4/9] dm644x ccdc module for vpfe capture driver

2009-05-15 Thread m-karicheri2
From: Muralidharan Karicheri a0868...@gt516km11.gt.design.ti.com DM644x CCDC hw module This is the hw module for DM644x CCDC. This registers with the vpfe capture driver and provides a set of hw_ops to configure CCDC for a specific decoder device connected to the VPFE This has the comments

[PATCH 5/9] ccdc types used across ccdc modules for vpfe capture driver

2009-05-15 Thread m-karicheri2
From: Muralidharan Karicheri a0868...@gt516km11.gt.design.ti.com common types used across CCDC modules This has the common types used by all ccdc hw modules This has the comments incorporated from the previous review Reviewed By Hans Verkuil. Reviewed By Laurent Pinchart. Signed-off-by:

[PATCH 7/9] DM355 platform changes for vpfe capture driver

2009-05-15 Thread m-karicheri2
From: Muralidharan Karicheri a0868...@gt516km11.gt.design.ti.com DM355 platform and board setup This has platform and board setup changes to support vpfe capture driver for DM355 EVMs. This has comments incorporated from previous review. Reviewed By Hans Verkuil. Reviewed By Laurent Pinchart.

[PATCH 8/9] DM6446 platform changes for vpfe capture driver

2009-05-15 Thread m-karicheri2
From: Muralidharan Karicheri a0868...@gt516km11.gt.design.ti.com DM644x platform and board setup This adds plarform and board setup changes required to support vpfe capture driver on DM644x This has comments incorporated from previous review. Reviewed By Hans Verkuil. Reviewed By Laurent

[PATCH 9/9] remove outdated video driver files of dm6446

2009-05-15 Thread m-karicheri2
From: Muralidharan Karicheri a0868...@gt516km11.gt.design.ti.com Remove outdated driver files from davinci git tree This has comments incorporated from previous review. Reviewed By Hans Verkuil. Reviewed By Laurent Pinchart. Signed-off-by: Muralidharan Karicheri m-kariche...@ti.com --- Applies

Re: V4L2 - Capturing uncompressed data

2009-05-15 Thread Guennadi Liakhovetski
On Fri, 15 May 2009, Laurent Pinchart wrote: Hi Guillaume, On Friday 15 May 2009 15:03:11 Guillaume wrote: [snip] My problem is, after the VIDIOC_S_FMT, the pixelformat field is set back to JPEG FORMAT (and the colorspace too) and so, I don't get raw data, but compressed jpeg data.

Re: [linux-dvb] Hauppauge WinTV-CI

2009-05-15 Thread Goga777
Is Wintv-CI, the Common Interface from Hauppauge, working on linux now ? not Goga -- 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

Preliminary results with an SN9C2028 camera

2009-05-15 Thread Theodore Kilgore
I decided recently to work on support for the SN9C2028 dual-mode cameras, which are supported as still cameras in libgphoto2/camlibs/sonix. Today, I succeeded in getting three frames out of one of them, using svv -gr, and I was able to convert two of the three frames to nice images using the

Re: Fixed (Was:Re: saa7134/2.6.26 regression, noisy output)

2009-05-15 Thread hermann pitton
Hi Anders, Am Freitag, den 15.05.2009, 11:18 +0200 schrieb Anders Eriksson: Success! I've tracked down the offending change. switch_addr takes on the wrong value and setting the LNA fails. Here's a i2c dump: saa7133[0]: i2c eeprom e0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff