RE: How to know if a udev rule be executed?

2008-09-30 Thread Phil Quiney
Hi, For udev ( anything else on the NFS root filesystem), you can use rpm to tell you the package version. It is a 2 step process, first find a binary or other file you want to find the version of. Then query the rpm database to find which package it belongs to. So for your example of udevd

EVMDM6446 and dvsdk_1_30_00_40

2008-09-30 Thread ketan deshpande
Hello Everybody, I am following the sprue66d.pdf for using the DVEVM with DVSDK_1_30_00_40 But it fails saying *** Encodedecode demo started. Encodedecode Error: Failed FBIOPUT_VSCREENINFO on /dev/fb/3 (Invalid

RE: EVMDM6446 and dvsdk_1_30_00_40

2008-09-30 Thread Phil Quiney
Hi, The problem is the buffer sizes - you are setting the mode to NTSC but are using PAL size buffers. If you change the sizes to 720x480 in the bootargs it should work. With the older kernel this did not cause a problem, however with the 'unified' kernel it matters. At least that is what

What is the easiest way to change the brightness on the TVP5146. Through an ioctl?

2008-09-30 Thread Panchy Rivas
What is the easiest way to change the brightness on the TVP5146. Through an ioctl?? Thanks Panchy Rivas ___ Davinci-linux-open-source mailing list Davinci-linux-open-source@linux.davincidsp.com

Problem with u-boot and flash MT29F16G08DAA

2008-09-30 Thread António Silva
Hi all, The default flash that came with the evmdm355 has been discontinued and the replacement from Micron is MT29F16G08DAA. The flash is very similar, I perform all tests and passes and in fact with CCS I can load UBL and u-boot perfectly. But in u-boot if I try to perform saveenv it cannot

RE: Problem with u-boot and flash MT29F16G08DAA

2008-09-30 Thread Paulraj, Sandeep
The answer is in the e-mail itself. Have a look at the part numbers. MT29F16G08DAA is what it is supposed to be and MT29F16G08QAA is what is getting detected. Thanks, Sandeep From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of António Silva Sent:

RE: FYI - TI patch plan

2008-09-30 Thread Narnakaje, Snehaprabha
Yes, that is the ultimate goal for DaVinci patches as well. Sneha -Original Message- From: Philip Balister [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2008 10:50 AM To: Narnakaje, Snehaprabha Cc: davinci-linux-open-source@linux.davincidsp.com Subject: Re: FYI - TI patch

Re: FYI - TI patch plan

2008-09-30 Thread Philip Balister
Narnakaje, Snehaprabha wrote: Hi, Texas Instruments plans to improve and/or add support for TI's family of DaVinci SoCs. This work is being done by a number of us here and I am coordinating the efforts. Beginning this month, TI will contribute patches to the DaVinci GIT tree, with the goal

RE: What is the easiest way to change the brightness on the TVP5146.Through an ioctl?

2008-09-30 Thread Deepak Shankar-TLS,Chennai.
How about writing directly to the file /sys/class/davinci_display/ch0/brightness. The SPRUEL6.pdf has similar examples but only for mode and output. I think this should be extendable to brightness too - though the LSP SPRUel6.pdf does not say anything about brightness.

RE: What is the easiest way to change the brightness on the TVP5146.Through an ioctl?

2008-09-30 Thread Fredrik Redgård
Hi, I use the following ioctl to set brightness: struct v4l2_control ctrl; ctrl.id = V4L2_CID_BRIGHTNESS; ctrl.value = i; ioctl(capture_fd, VIDIOC_S_CTRL, ctrl); cheers, Fredrik From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Panchy Rivas Sent: den 30 september

RE: What is the easiest way to change the brightness on the TVP5146. Through an ioctl?

2008-09-30 Thread Karicheri, Muralidharan
Hello, You could use VIDIOC_QUERYCTRL, G_CTRL S_CTRL ioctls to change brightness and other control parameters in TVP5146 email: [EMAIL PROTECTED] From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Panchy Rivas Sent: Tuesday, September 30, 2008 10:16

RE: EVMDM6446 and dvsdk_1_30_00_40

2008-09-30 Thread Karicheri, Muralidharan
Hi, Your problem is nothing to do with following logs. It means you need to enable video port to use AEW/AF drivers. For capture this is not an issue. Davici AEW Driver cannot be loaded VIDEO PORT is not enabledData Flow path from CCDC is disabled Davinci AF driver cannot be loaded VIDEO

RE: EVMDM6446 and dvsdk_1_30_00_40

2008-09-30 Thread Karicheri, Muralidharan
Phil, In the kernel bootargs, you always allocate maximum buffers and resolutions. But in FBIOPUT_VSCREENINFO, you can override with NTSC or any other resolution related parameters as long as we have enough buffers allocated for the resolution . The problem that Ketan has is because of

PC/104 boards with DM355?

2008-09-30 Thread John Huang
Hi. I am new to the TI DaVinci world and am glad to have found this group. I am on the business side of a project that plans to use the DM355. I have been searching in vain for a PC/104 board based on the DM355. Is anyone aware of this or any other single board computers already on the market?

RE: PC/104 boards with DM355?

2008-09-30 Thread Joshua Hintze
Not the DM355 but we are using this one http://www.einfochips.com/services/DVPB.html that makes use of the DM6446 and is an all in one board and much smaller than the DVEVM. Josh From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Huang Sent: Tuesday, September 30, 2008

Password locked in dm355 board in NFS mount.

2008-09-30 Thread Deepak Shankar-TLS,Chennai.
Hi, I tried to create ramdisk.gz for applications that I created in the nfs mounts. My host machine was rebooted a couple of times during this experiment. After then I tried to remount the NFS and now I cannot go beyond the login prompt. The system is locked at this stage - and I'm not

Re: EVMDM6446 and dvsdk_1_30_00_40

2008-09-30 Thread ketan deshpande
Hello Murali Phil, Thanks for your suggestions. As mentioned by Murali the space was the issue. I just checked I still those get warning messages but that has no effect on working of those encodedecode demos. regards, -Ketan - Original Message From: Karicheri,