Re: DaVinci git updated to 2.6.25-rc6

2008-03-21 Thread Dirk Behme
Kevin Hilman wrote: In addition to the sync w/mainline... The IDE driver used on DaVinci is now in mainline (special thanks to Anton Salnikov [EMAIL PROTECTED]). However, the board-specific platform_data was missing for the dm6446 EVM, so I added it. The driver still doesn't appear to work

Re: [RFC] DaVinci patch submission rules

2008-03-21 Thread Dirk Behme
Caglar Akyuz wrote: Dirk Behme wrote: While discussing with Michael [1] we found that DaVinci patch submission rules are not written down somewhere. So I did it: http://wiki.davincidsp.com/index.php?title=Patch_upstream_sending Most of this is stolen from rules on OMAP list ;) Opinions?

When a decoder process fails

2008-03-21 Thread Vijay Manohar Dogiparthi
Sir, I want to know when a module’s *_process() function fails.. Opening the Codec Engine, Creation of algorithm instance, Control the behavior the way the algorithm instance runs,... were successful even. When I was decoding, the process function of a algorithm fails. Please through some

Re: DaVinci git updated to 2.6.25-rc6

2008-03-21 Thread Dirk Behme
Kevin Hilman wrote: In addition to the sync w/mainline... Hmm, I thought we fixed this with I2C patches (see below)? Did I miss anything? It's a clean recent 2.6.25-rc6-davinci1. Dirk -- cut -- ... Linux video capture interface: v2.00 i2c /dev entries driver i2c_davinci i2c_davinci.1:

Licensing Issues?

2008-03-21 Thread andrew16123
Hi, ?? Does anyone know if the applications I am developing on the Davinci using Montavista Linux is open source too? The project is obviously for a company which will sell the product, but will we have to give source code to those who ask for it? If this is true...wouldn't that be bad for

Facing Error while adding new thread to the demo code........

2008-03-21 Thread manas lenka
Hello, But I am facing a PROBLEM Actually what I am trying is : I am modifying the deocde demo so that it can play .avi file. So I added a new Thread (LoaderThx) to the decode demo. This thread separates the audio and video stream from the .avi file and put them in audio and video queues. I

kernel module makefile.

2008-03-21 Thread Andrea Gasparini
Hi, i'm trying to make a simple kernel module for a montavista kernel running on a dm355. I just copied a makefile from another project (that works on a 'normal' i386 linux). This is the makefile: KERNELDIR=/mnt/montavista/tests/lsp/ti-davinci obj-m += imamodule.c all: $(MAKE)

Re: [RFC] DaVinci patch submission rules

2008-03-21 Thread T Ziomek
On Fri, Mar 21, 2008 at 08:33:42AM +0100, Dirk Behme wrote: Caglar Akyuz wrote: 5) Do you think acking or replying with reviewed by: statements to the submitted patches is a good practice or not? I'm not asking for myself of course. I'm not so familiar with reviewed by:. What do people

RE: kernel module makefile.

2008-03-21 Thread Joshua Hintze
Your make file looks about the same as mine. However I also have this line. MAKE_ENV = ARCH=arm CROSS_COMPILE=$(MVTOOL_PREFIX) Josh -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrea Gasparini Sent: Friday, March 21, 2008 8:23 AM To:

[RFC][PATCH 1/1] I2C: DaVinci: Fix smbus Oops with AIC33 usage

2008-03-21 Thread Dirk Behme
Make sure that in case access to non-exisiting I2C address is done HW is reset afterwards and works properly for next access. Signed-off-by: Dirk Behme [EMAIL PROTECTED] Index: linux-davinci/drivers/i2c/busses/i2c-davinci.c ===

[RFC][PATCH 0/1] I2C: DaVinci: Fix smbus Oops with AIC33 usage

2008-03-21 Thread Dirk Behme
I had a look to Oops [1] you get with recent git if OSS aic33 sound driver is enabled. System oopses because in tlv320aic33_write_value() the variable new_client isn't initialized. This is because aic23_detect_client() is never called. This is because system scans for AIC33 with the both

Davinci git tree issue

2008-03-21 Thread Hunter, Jon
All, I attempted a fresh clone of the davinci git tree today and it failed after some time saying that a particular object was missing. See: Getting index for pack bd1b0e287229918bc6d485a96514b8a052f24901 error: Unable to find 022ab2279d7c85f8bb204526602908580842432e under

RE: When a decoder process fails

2008-03-21 Thread Ring, Chris
Does process() return an error or does it crash? If it returns an error, there is often an extendedError field that contains more details - and often the codec data sheets provide details for codec-specific extendedError values. If it crashes... that's a bit tougher, but here are some ideas.

Re: Davinci git tree issue

2008-03-21 Thread Dirk Behme
Hunter, Jon wrote: All, I attempted a fresh clone of the davinci git tree today and it failed after some time saying that a particular object was missing. See: Getting index for pack bd1b0e287229918bc6d485a96514b8a052f24901 error: Unable to find 022ab2279d7c85f8bb204526602908580842432e under

RE: Davinci git tree issue

2008-03-21 Thread Hunter, Jon
Any special reason why you try http protocol? Normally you will use git-clone git://source.mvista.com/git/linux-davinci-2.6.git linux-davinci-git Some years ago I tried http protocol behind a firewall and it was a pain. Never got it working properly. Don't know if it works today, though.