Re: CCDC and debugging...

2008-11-06 Thread Andrea Gasparini
About that: - why 0x30?? when the DDR EMIF offset should be only 0x8000 ?? Shouldn't it be 0x600 ? Am i missing some steps? Someone could explain me that statement: include/media/davinci/ccdc_dm355.h - line 851: static inline void ccdc_setfbaddr(unsigned long paddr){ regw((paddr

physical addresses

2008-11-06 Thread Andrea Gasparini
Hi, is there a way to bypass MMU and read at a fixed address in SDRAM? I'd like to read at a physical address in RAM, but i'm not able to do it Thanks, bye! -- Andrea Gasparini ImaVis S.r.l. web: www.imavis.com ___

Re: Video/Imaging Co-Processor (VICP), help request !

2008-11-06 Thread Albert Burbea
hi I think you have to get a license from TI - and documentation There is a library that operates the VICP in the h264 codec library, but I am not aware of an API documentation... TI guys - correct me if I am wrong Albert 2008/11/6 Mohamed AbdElwahed [EMAIL PROTECTED] How could I use

Re: physical addresses

2008-11-06 Thread Andrea Gasparini
Albert Burbea spiffera, alle Thursday 06 November 2008 circa: what about mmapio? Uhm, are you talking about kernel side functions? In fact i've not specified I'm trying a userspace way [1], but without results. (it segfaults) Perhaps I could try also with mmapio. (it's a little more tedious,

CCDC window size settings for 1080p mode

2008-11-06 Thread ashish pareek
Hi , What CCDC window settings are required to get a 1080p and 720p mode jpg image over Dm355 ? How these CCDC window settings are done ? Ashish___ Davinci-linux-open-source mailing list Davinci-linux-open-source@linux.davincidsp.com

Re: physical addresses

2008-11-06 Thread Albert Burbea
Hi what about mmapio? Albert On Thu, Nov 6, 2008 at 1:12 PM, Andrea Gasparini [EMAIL PROTECTED]wrote: Hi, is there a way to bypass MMU and read at a fixed address in SDRAM? I'd like to read at a physical address in RAM, but i'm not able to do it Thanks, bye! -- Andrea Gasparini

Re: Image on OSDWIN0 shakes when used in Interlace mode

2008-11-06 Thread Vladimir Pantelic
suhas wrote: Hi All, I am facing a strange problem. I am using OSDWIN0 in RGB 565 mode as display window. I have set the Frame Mode and Interlace is enabled. It seems that displayed image has some flicker when used in Interlace mode. this effect is expected and it is called flicker.

RE: Serial Loader poll.

2008-11-06 Thread Gorwood, Steve
The utility should work under either Windows or Linux. If run under Linux, it requires that Mono be installed. There have been a few reports of problems using it under some versions of Linux when a USB to Serial adaptor is used instead of a serial port. Regards, Steven Gorwood

Video/Imaging Co-Processor (VICP), help request !

2008-11-06 Thread Mohamed AbdElwahed
How could I use Video/Imaging Co-Processor (VICP) peripheral in the DM6446 SOC? -- any help is highly appreciated, thanks in advance _ Explore the seven wonders of

Re: Can we decode video clips in fast-forward mode?

2008-11-06 Thread Vladimir Pantelic
Deepika Makhija wrote: Hi All, I am working on DM355 evm board. I am developing application using TI DVSDK framework. I am end application will be: .264 Clip decode - display But in this I want to provide facility of forward/rewind video clip as per user selection through GUI.

RE: Error: Failed to create h264 video encoder

2008-11-06 Thread Maupin, Chase
Craig, I noticed that the encode data sheet says that the input width and height must be multiples of 16. In the case of 1920x1080 the 1080 is not a multiple of 16. However, I have seen sample code where 8 is added to the height so that the input resolution is 1920x1088 which is now a

RE: Serial Loader poll.

2008-11-06 Thread Hugo Villeneuve
[EMAIL PROTECTED] wrote: The utility should work under either Windows or Linux. If run under Linux, it requires that Mono be installed. There have been a few reports of problems using it under some versions of Linux when a USB to Serial adaptor is used instead of a serial port. DVFlasher

Serial Loader poll.

2008-11-06 Thread Andrea Gasparini
Hi, I want to insert into the wiki page[1] a list of all system in which the TI Serial Loader is 'certified' to work. I'm stuck of using Windows _only_ for starting my boards, so: in which environmente are you running Serial Loader/Flasher Utilities?? ( at least it'd be fine to specify distro

RE: physical addresses

2008-11-06 Thread Maupin, Chase
Andrea, I haven't tried this myself, but would it be possible to use the memmap command line parameter to reserve a chunk of memory that the kernel will not try to manage. I think this will bypass the MMU as I have seen that you can limit the kernel to using less memory and then use the DDR

Re: Serial Loader poll.

2008-11-06 Thread Nishanth Menon
On Thu, Nov 6, 2008 at 8:25 AM, Hugo Villeneuve [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: The utility should work under either Windows or Linux. If run under Linux, it requires that Mono be installed. There have been a few reports of problems using it under some versions of Linux

Image on OSDWIN0 shakes when used in Interlace mode

2008-11-06 Thread suhas
Hi All, I am facing a strange problem. I am using OSDWIN0 in RGB 565 mode as display window. I have set the Frame Mode and Interlace is enabled. It seems that displayed image has some flicker when used in Interlace mode. Due to this image becomes unclear and seems blurred. I have tried

Davinci DMS355 - Video Decoder TVP5150 8bit BT 656 Embedded Sync

2008-11-06 Thread Prabhaharan R-TLS,Chennai
Hello All, Currently I am working on the Video decoder driver for Davinci DMS 355. The driver is being implemented using the Montavista TI Linux code. We are using tvp5150 with 8-bit BT 656 embedded sync output. We have programmed the TVp5150 output as 8-bit embedded sync. We are getting the

Re: Davinci DMS355 - Video Decoder TVP5150 8bit BT 656 Embedded Sync

2008-11-06 Thread Andrea Gasparini
Hi, Prabhaharan R-TLS,Chennai spiffera, alle Thursday 06 November 2008 circa: We have used printk in all the driver functions and the tvp5150 related changes in the code is getting called properly. We have registered the VDINT0 interrupt in the vpfe code. But, the vpfe_isr is not getting

RE: CCDC and debugging...

2008-11-06 Thread Karicheri, Muralidharan
include/media/davinci/ccdc_dm355.h - line 851: static inline void ccdc_setfbaddr(unsigned long paddr){ regw((paddr 21) 0x007f, STADRH); regw((paddr 5) 0x0, STADRL); } I don't catch why should be shifted low part of the address... well, I don't catch the high part as

Re: CCDC and debugging...

2008-11-06 Thread Andrea Gasparini
Hi, thanks for yor reply. :) regw((paddr 5) 0x0, STADRL); take lower 16 bit and shift right by 5 regw((paddr 21) 0x007f, STADRH); shift upper by 16 to get it to lower 16 bits and then shift it by additional 5 to get the value to be in units of 32 bytes (total shift 5 + 16 = 21)

RE: Davinci DMS355 - Video Decoder TVP5150 8bit BT 656 Embedded Sync

2008-11-06 Thread Karicheri, Muralidharan
Check the response inline. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Prabhaharan R-TLS,Chennai Sent: Thursday, November 06, 2008 9:59 AM To: davinci-linux-open-source Subject: Davinci DMS355 - Video Decoder TVP5150 8bit BT 656 Embedded Sync

RE: Davinci DMS355 - Video Decoder TVP5150 8bit BT 656 Embedded Sync

2008-11-06 Thread Karicheri, Muralidharan
Did you develop the module TVP5150 from scratch or borrowed from open source? Also dump the ccdc registers and make sure the settings are as per my email below. Let me know once you confirm the ccdc settings are correct. Murali From: Prabhaharan R-TLS,Chennai

RE: CCDC and debugging...

2008-11-06 Thread Karicheri, Muralidharan
Andrea, If you are using BT656, then your CCDC register settings are not right. They have value 0. I am using TVP5146 input. Are you using sensor input? Here is a sample from my setup... Probably this helps... ../readl 1c70600 0 60 Pay attention to MODESET, REC656IF and 0 0003

Re: Davinci DMS355 - Video Decoder TVP5150 8bit BT 656 Embedded Sync

2008-11-06 Thread Stephen Berry
This is what I use to set up 656: /* * setup656sync */ /* This function will configure TVP5150 output data formatting */ static int setup656sync(tvp5150_params * tvp5150params) { int output1, output2, output4; int ret = 0; dev_dbg(tvp5150_i2c_dev, \nStarting

RE: Davinci DMS355 - Video Decoder TVP5150 8bit BT 656 Embedded Sync

2008-11-06 Thread Prabhaharan R-TLS,Chennai
Hello Murali, I used the tvp5146 code as reference for tvp5150. The I2C Communication is success from processor to tvp5150. I can able to read and write the I2C register settings. The default values read from the tvp5150 is same. Apart from these changes, I have set only two below (mail)

RE: VPFE raw mode status in the git tree

2008-11-06 Thread Karicheri, Muralidharan
Chris, TI has plan to up port the driver to the git tree which will add raw mode. We are using v4l2-int-device for the interface to attach decoders to the front end master driver. There are some finer details being worked out before pushing the patch to the tree. You may check the v4l2

Re: VPFE raw mode status in the git tree

2008-11-06 Thread Chris Douglass
Muralidharan, Thank you for the update. I'll start tracking the v4l2 list. On Thu, Nov 6, 2008 at 2:03 PM, Karicheri, Muralidharan [EMAIL PROTECTED] wrote: Chris, TI has plan to up port the driver to the git tree which will add raw mode. We are using v4l2-int-device for the interface

Re: Davinci-linux-open-source Digest, Vol 35, Issue 11

2008-11-06 Thread BlackSword
will try this bootargs, Thankx On Thu, Nov 6, 2008 at 2:22 AM, Chu, Owen [EMAIL PROTECTED] wrote: David, Fbset should display correct settings of fbdev window configuration. For LSP1.20, you can set the following as part of your bootargs to set bootup output and display mode:

staging tree for dm6467 and dm355 support

2008-11-06 Thread Kevin Hilman
Hello, While I review the dm6467 and dm355 patches, and prepare for an update to newer kernels, I've created a temporary staging branch[1] where I've applied the dm646x and dm355 patches. On top of that, I've added a small series of rework patches where I've reworked how and where base addresses

RE: WIFI againt DMA mode in USB host driver

2008-11-06 Thread Stephane Cerveau
Hi, I'm currently using a WIFI key on DaVinci but I'm experiencing crash and lock in the DaVinci USB driver in DMA mode. Is there anybody who experienced this kind of problem and can help me using WIFI dongle ? I'm using the July latest patch from TI integrated. Cheers.