Re: Codec Engine Code Overlays with more than one codec?

2008-10-23 Thread Vladimir Pantelic
Itay Chamiel wrote: Hi, The only solution I have found so far is to manually modify the auto-generated linker command file, moving the two data sections into a single UNION with a shared run address. Once I did that, the project linked, and ran correctly (both codecs simultaneously) with a

Re: dm355 spi

2008-10-23 Thread Andrea Gasparini
Hi, BJ Opp spiffera, Thursday 23 October 2008: The only chatter I've seen on this mailing list seems to lean toward people pushing others to use /dev/mtd to talk spi but that really doesn't make any sense unless they mean to use that when trying to talk to a nand or other such block device.

dm644x - fbdev in kernel 2.6.25-davinci1

2008-10-23 Thread Gabriele Filosofi
Hi, By modifying some VPBE registers I was able to display the colorbar on my QVGA LCD, so the hardware setup is ok. Now I have an RGB656 image that is 320x240. What would be the best way to get it statically onto the screen? By copying (cp image /dev/fb/0) or cutting (cat image /dev/fb/0) I

UART1 on DM6467

2008-10-23 Thread Stijn Devriendt
Hi Deepika, I'm trying to get the DM6467 to boot from UART2 and ran into the same problem. I suggest you look at the dm646x_serial_reset() function in arch/arm/mach-davinci/serial.c and draw your conclusions. You'll need to set the SCR register for every UART you want to use. Apart from this

How to disable DHCP requestes and assign a static IP to the board during booting?

2008-10-23 Thread Mohamed AbdElwahed
directly to /dev/fb/0? kindly help me to come out from this problem. Thanks and regards, Gabriele -- next part -- An HTML attachment was scrubbed... URL: http://linux.omap.com/pipermail/davinci-linux-open-source/attachments/20081023/10de5725/attachment.htm

RE: How to disable DHCP requestes and assign a static IP to the board during booting?

2008-10-23 Thread JitendraJain
-- An HTML attachment was scrubbed... URL: http://linux.omap.com/pipermail/davinci-linux-open-source/attachments/20081023/10de5725/attachment.htm -- ___ Davinci-linux-open-source mailing list Davinci-linux-open-source

Re: writing compiling executing arm-dsp hello world program

2008-10-23 Thread Deepak Mundra
Hi , sorry for previous mail I am not able to figure it out why it is not able to start PROC .. in code composer my dsp binary running properly .. After i inserted DEBUG version of dsplinkk.ko i got following extra assertion error

Re: writing compiling executing arm-dsp hello world program

2008-10-23 Thread Deepak Mundra
HI in some site i found this 1.40.xx uses dynamic configuration ($(DSPLINK)/config/all/CFG_PLATFORM.c) instead of static configuration $(DSPLINK)/config/all/CFG_PLATFORM.TXT) and im using 140-05 p1 version .. and there is no txt file in that directory , only .c file exist . and where can i find

RE: dm644x - fbdev in kernel 2.6.25-davinci1

2008-10-23 Thread Phil Quiney
Hi Gabriele, Can you check with 'fbset' what size the frame buffer is set to.. Something like 'fbset -fb /dev/fb/0' If it is not 320x480 then you may find it will work if you use fbset to set the x y resolution to match your LCD - I can't remember what the parameters are, possibly

Video source for DVEVM 6467

2008-10-23 Thread Ondrej Pindroch
Hi I have one question. What are you useing as source for EVM. We have DVD player with full HD, HDMI to COMPONENT converter. But this box turn off output when HDCP detected. Is there any possibility to create component 720p with this gagets? Or should we buy computer and DVI to HDMI cable.

RE: Codec Engine Code Overlays with more than one codec?

2008-10-23 Thread Itay Chamiel
Vladimir Pantelic wrote: what about removing the overlay related stuff from the codecs link.xdt and adding them UNIONised in the servers link.cmd file? Well, that would work, but it would be rather ugly. As far as I have seen with XDC so far, third-party packages are basically a closed unit

EDMA examples?

2008-10-23 Thread Andrea Gasparini
Hi, there are some good examples of how to use EDMA functions with MV kernel? ( the interface implemented in /arch/arm/mach-davinci/dma.c ) I found the mmc driver, that's however quite complex. If someone has a cleaner example, I'll bless him :P Otherwise, I'll continue with mmc. :) Thanks!

R: dm644x - fbdev in kernel 2.6.25-davinci1

2008-10-23 Thread Gabriele Filosofi
Dear Phil, First of all, the reason I did get nothing with was that the colorbar masked the image below. After having disabled the colorbar the linux pinguin appeared on the top-left corner of the blue screen. Then, I sent again the command /# cp image /dev/fb/0 and something very confusing

Re: Davinci-linux-open-source Digest, Vol 34, Issue 105

2008-10-23 Thread e-eo
/20081023/a648aa8a/hat_320x240.bin.bin -- ___ Davinci-linux-open-source mailing list Davinci-linux-open-source@linux.davincidsp.com http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source End of Davinci-linux-open

RE: Davinci-linux-open-source Digest, Vol 34, Issue 105

2008-10-23 Thread Phil Quiney
-text attachment was scrubbed... Name: hat_320x240.bin.gz Type: application/x-gzip Size: 77743 bytes Desc: hat_320x240.bin.gz Url : http://linux.omap.com/pipermail/davinci-linux-open-source/attachments/20081023/a648aa8a/hat_320x240.bin.bin

RE: [PATCH] Add Right-Justified mode and Codec clock master todavinci-i2s driver

2008-10-23 Thread Hugo Villeneuve
[EMAIL PROTECTED] wrote: Add Right-Justified mode and Codec clock master to davinci-i2s driver The EVM board uses the SND_SOC_DAIFMT_CBM_CFM I2S formats, but the SFFSDR board uses the SND_SOC_DAIFMT_CBM_CFS RIGHT-JUSTIFIED formats Signed-off-by: Hugo Villeneuve [EMAIL PROTECTED] ---

RE: Codec Engine Code Overlays with more than one codec?

2008-10-23 Thread Ring, Chris
From the XDCtools team: The linker command file is generated using a template that is provided by the platform, IF the user does not explicitly provide one. You can supply a linker command file template via: 1. The -linkTemplate option to the configuro

How can i print DSP/Debug prints in codecs ??

2008-10-23 Thread Deepak Mundra
Dear all, I a trying to work around with codecs and modify according to my needs .. I have compiled dsplink with following options GPP OS = Linux DSP OS = DspBios GPPDISTRIBUTION= davinci_mvlpro4.0 GPPOSVERSION = 2.6 DSPDISTRIBUTION=

Re: EDMA examples?

2008-10-23 Thread Eric Nelson
Andrea Gasparini wrote: Hi, there are some good examples of how to use EDMA functions with MV kernel? ( the interface implemented in /arch/arm/mach-davinci/dma.c ) I found the mmc driver, that's however quite complex. If someone has a cleaner example, I'll bless him :P Otherwise, I'll

USB gadget mode

2008-10-23 Thread yoni l
I have problem using the USB in gadget mode with TI kernel version 1.20 while every thing work fine with TI linux kernel version 1.30. My application already works with kernel 1.20 and I want to stay with this kernel. The problem occurred when I'm trying to load g_file_storage.ko. In kernel

RE: writing compiling executing arm-dsp hello world program

2008-10-23 Thread Kamoolkar, Mugdha
Deepak, You can try using DSPLink 1.51 if you want. That's the current latest GA release out there. But if you are going to use it with Codec Engine also, please be sure to pick up the correct Codec Engine version that is compatible with DSPLink 1.51 GA. The release is available at:

RE: writing compiling executing arm-dsp hello world program

2008-10-23 Thread Kamoolkar, Mugdha
Can you also disable PROBE and try once more? PROBE is not supported anymore, and we have even removed it from the configurations in recent releases. Regards, Mugdha From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kamoolkar, Mugdha Sent:

Re: RTSC Server Package Wizard

2008-10-23 Thread Alan Campbell
hello, I am trying to build a codec/server bundle. I succeed to run the example viddec provided in ceutils_1_06. when I try to build the h264dec provided from TI, I succeed to build the codec, but when I build the server I consistenly encounter the following error: Package,

Multiple codecs in single server package linker error

2008-10-23 Thread Joshua Hintze
I am trying to compile multiple codecs to use on the davinci that get compiled into a single server package (.x64P). There are several functions and global variables defined and used individually by each codec that have the same names. This worked fine when I had 2 codecs working, but when I

Deep sleep on the DM355‏ ?

2008-10-23 Thread amingaming
hi all: I used LSP 1.2 (mvl_4_0_1_demo_lsp_setuplinux_01_20_00_014.bin) ,how to Deep sleep on the DM355‏ ? thx aming _ 谈话枯燥无味?让MSN魔法书来点缀您的MSN!

RE: USB gadget mode

2008-10-23 Thread Subbrathnam, Swaminathan
From the perspective of g_file_storage there should not be any difference between 1.3 of 1.2 both should work just fine and it has beeen verified. In any case pl. do apply the latest patches (if any) from the updater site on 1.2. On which platform are you experiencing the issue DM355 or DM644x

Re: writing compiling executing arm-dsp hello world program

2008-10-23 Thread Deepak Mundra
Hi I tried with that also ,but no luck.. Is there any hello world dsp side source code ? and now i switched over to codec engine .. i am trying to edit viddec_copy codec and use it in video_copy application provided in example .. I just wanted to know 2 things .. if i edit

Re: DM355: MPEG4 + MJPEG together

2008-10-23 Thread Peter Sommerfeld
Yes I can run MJPEG alone or MPEG4 alone but not one after the other. I found one source of hanging. Setting the MPEG4 instance to CBR with bitrate results in the MJPEG hanging. Pretty wierd (although this is obviously not a valid MPEG4 configuration). But the problem remains that if I run the

Re: DM355: MPEG4 + MJPEG together

2008-10-23 Thread Peter Sommerfeld
Actually, I let the program hang around a little longer and it does in fact still do MJPEG encodes - except that one encode takes 26 seconds! CE_DEBUG=3 does not provide any print-out at all, and I've made sure I have plenty of CMEM buffer pools. -- Pete On Fri, Oct 24, 2008 at 12:34 AM, Peter