Questions about codec engine

2008-07-31 Thread minhong
Hi, all, I've several questions that need your help. 1. If I have two applications said A1(used to encode MPEG4) and A2(used to decode JPEG), I think I'll have CERuntime_init() called in each application. When I execute A2 after A1 is executed and still running, the

RE: Size of NAND flash on DM355 EVM

2008-07-31 Thread Phil Quiney
Hi, If you want you can change the partition scheme by editing the partition table in arch/arm/mach-davinci/board-dm355-evm.c Be warned - do not change the 'bootloader', 'params' or 'kernel' partitions. You probably could make the 'kernel' partition a bit smaller but at 4M you can fit a

Re: Measuring MPEG4 system latency on DM355

2008-07-31 Thread Tonald DL
Hi Kumar, One thing more. I am not sure whether the idea works on DM355. I thought the idea before while I worked on my DM6437, after several days thinking about it. I give up the idea. The reason is I have to switch processing between my h.264 encoder and the UDP/IP network processing,

RE: Questions about codec engine

2008-07-31 Thread Ring, Chris
Multiple process support (which includes your multiple application use case) was added in Codec Engine 2.00. Prior to that release, you're limited to a single process (multiple threads within that process is supported). Also, when using multiple processes, if you're running remote algorithms

git kernel for DM6467

2008-07-31 Thread Hougui, Yair
Hi All, Does anyone know if there is a version on the git tree which supports DM6467 and is 2.6.20 or later? Thanks, Yair -- Yair Hougui [EMAIL PROTECTED]mailto:[EMAIL PROTECTED] Phone : +972-9-7906599 Mobile: +972-54-6663797

SDIO interface on DM6446

2008-07-31 Thread sandeep sheriker
Hi,   I am working on wifi which have a SDIO interface for Davinci DM6446. The SDIO driver works fine when booted for first time and after working for 10-15 minutes, when I do a hard reset, the SDIO driver load fails. while

problem with NFS

2008-07-31 Thread Panchy Rivas
When I try to boot the NFS after following the instructions on the getting started guide I get DaVinci EVM # boot ## Booting image at 0205 ... Bad Magic Number Here is my printenv from Teraterm terminal window. DaVinci EVM # printenv bootdelay=3 baudrate=115200

Re: problem with NFS

2008-07-31 Thread Jeff Cooper
Panchy, Your problem isn't with NFS. U-boot is complaining that you don't have a kernel at memory address 0x0205 (bootm 0x205). Jeff Cooper Panchy Rivas wrote: When I try to boot the NFS after following the instructions on the getting started guide I get DaVinci EVM # boot

Infrared device on DM6446

2008-07-31 Thread Rodolfo Leffa
Hello, i am new on the list and i have a doubt. Does anybody know to which device the infrared receiver on DM6446 board is mapped in the linux filesystem? Does the infrared device need some especific driver to work? I'm trying to integrate lirc with vlc player on this board. Any help would be

Re: problem with NFS

2008-07-31 Thread Albert Burbea
guys sorry for the stupid question but... how do i set up an nfs server on a linux machine? can this be done also on a windows one? Albert On 7/31/08, Jeff Cooper [EMAIL PROTECTED] wrote: Panchy, Your problem isn't with NFS. U-boot is complaining that you don't have a kernel at memory

[PATCH 1/9] This patch replaces occurrences of dm350 with dm355

2008-07-31 Thread h-geng
This patch replaces occurrences of dm350 with dm355. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- arch/arm/tools/mach-types |2 +- include/asm-arm/arch-davinci/cpu.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/tools/mach-types

[PATCH 4/9] This patch adds the DM355 cpu type.

2008-07-31 Thread h-geng
This patch adds the DM355 cpu type. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- arch/arm/mach-davinci/id.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-davinci/id.c b/arch/arm/mach-davinci/id.c index 679547c..e05a168 100644 ---

[PATCH 3/9] This patch adds the defines for the interrupt number assignments on DM355.

2008-07-31 Thread h-geng
This patch adds the defines for the interrupt number assignments on DM355. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- include/asm-arm/arch-davinci/irqs.h | 51 +++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git

[PATCH 5/9] This patch adds the DM355 board support.

2008-07-31 Thread h-geng
This patch adds the DM355 board support. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- arch/arm/mach-davinci/Kconfig | 11 ++ arch/arm/mach-davinci/Makefile |1 + arch/arm/mach-davinci/board-dm355-evm.c | 221 +++

[PATCH 6/9] This patch adds the device initialization support for DM355.

2008-07-31 Thread h-geng
This patch adds the device initialization support for DM355. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- arch/arm/mach-davinci/devices.c |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-davinci/devices.c b/arch/arm/mach-davinci/devices.c index

[PATCH 7/9] This patch adds the clock and LPSC related changes for DM355.

2008-07-31 Thread h-geng
This patch adds the clock and LPSC related changes for DM355. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- arch/arm/mach-davinci/clock.c | 225 +--- include/asm-arm/arch-davinci/psc.h |5 + 2 files changed, 212 insertions(+), 18 deletions(-) diff --git

[PATCH 8/9] This patch updates serial.c with DM355 support.

2008-07-31 Thread h-geng
This patch updates serial.c with DM355 support. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- arch/arm/mach-davinci/serial.c | 75 +-- 1 files changed, 33 insertions(+), 42 deletions(-) diff --git a/arch/arm/mach-davinci/serial.c

Re: [PATCH 2/9] This patch defines the base addresses for DM355.

2008-07-31 Thread Troy Kisky
[EMAIL PROTECTED] wrote: This patch defines the base addresses for DM355. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- include/asm-arm/arch-davinci/hardware.h | 37 +++ 1 files changed, 37 insertions(+), 0 deletions(-) diff --git

Re: [PATCH 3/9] This patch adds the defines for the interrupt number assignments on DM355.

2008-07-31 Thread Troy Kisky
[EMAIL PROTECTED] wrote: This patch adds the defines for the interrupt number assignments on DM355. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- include/asm-arm/arch-davinci/irqs.h | 51 +++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git

Re: [PATCH 6/9] This patch adds the device initialization support for DM355.

2008-07-31 Thread Troy Kisky
[EMAIL PROTECTED] wrote: This patch adds the device initialization support for DM355. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- arch/arm/mach-davinci/devices.c |9 +++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-davinci/devices.c

Doubt about the cmemk.ko dsplinkk.ko for DM6446

2008-07-31 Thread Ramesh Rajagopal
Hi all, I have a problem in running my code on DM6446. When I compile the DSP and ARM code, I have got the *.x64 and .out file. and loadmodules.sh But I am not sure from where to get the dsplinkk and cmemk.ko files. If these files are need to get it from the board( file system) , then I have

Re: [PATCH 9/9] This patch adds the default configuration file for DM355.

2008-07-31 Thread Jaswinder Singh
Hello Hui Geng, On Fri, Aug 1, 2008 at 3:44 AM, [EMAIL PROTECTED] wrote: This patch adds the default configuration file for DM355. Signed-off-by: Hui Geng [EMAIL PROTECTED] --- You should also add option for option for CONFIG_720P or CONFIG_HD for DM355. Thank you, Jaswinder Singh.