Hi Python is already in the LSP, look in the packages directory (/opt/dm355/mv_pro_4.0.1/montavista/pro/devkit/arm/v5t_le/packages/pro/ on my machine).... python-2.3.94-6.0.0.0600975.arm_v5t_le.mvl python-debuginfo-2.3.94-6.0.0.0600975.arm_v5t_le.mvl python-dev-2.3.94-6.0.0.0600975.arm_v5t_le.mvl python-doc-2.3.94-6.0.0.0600975.arm_v5t_le.mvl python-regrtest-2.3.94-6.0.0.0600975.arm_v5t_le.mvl You probably only need the first package on the target. A little gem if information, the .mvl files are actually .rpm files (confirm using the 'file' command) and the NFS file system is managed by rpm just like a RedHat/Fedora/CentOS host. To install on the target (NFS root filesystem) just use the targets rpm command... rpm -i python-2.3.94-6.0.0.0600975.arm_v5t_le.mvl If you are rolling your own root filesystem you can extract the contents of the .rpm with the following command rpm2cpio python-2.3.94-6.0.0.0600975.arm_v5t_le.mvl|cpio -i --make-directories You will then need to relocate the files as they get created according to the paths in the rpm file.
Regards Phil Q Phil Quiney, Senior Software Engineer Trinity Convergence Cambridge Business Park Cowley Road Cambridge CB4 0WZ, UK T: +44(0)1223-435536 F: +44(0)1223-435560 www.trinityconvergence.com <http://www.trinityconvergence.com/> ________________________________ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of rajasubramaniam Sent: 26 September 2008 11:12 To: 'Naveena M.'; 'Kamoolkar, Mugdha'; [email protected] Subject: Python support for Davinci... Hi, I need to port python to davinci platform. Could you please give me some details of how give python support for davinci. Finally i need to run python scripts in my davinci DM6446 Board. Regards, Raja -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Naveena M. Sent: Friday, September 26, 2008 3:01 PM To: Kamoolkar, Mugdha; [email protected] Subject: RE: To boot DSP and run DSP application from ARM. So what is a possible way to run a non-DSPLink DSP executable from ARM? It will be more helpful if I get a sample program(firmware appln) or linux driver to do the same. Thanks, Naveena. ________________________________ From: Kamoolkar, Mugdha [mailto:[EMAIL PROTECTED] Sent: Friday, September 26, 2008 2:01 PM To: Naveena M.; [email protected] Subject: RE: To boot DSP and run DSP application from ARM. Naveena, Currently, no, this is not supported. While you can build in PROC-only mode, it still expects a DSPLink component on DSP-side, which will do handshake with the ARM-side driver to indicate completion of DSP start. This DSPLink component requires some shared memory. But DSPLink 1.60 (will be out before the end of October), will have support for this feature that you have mentioned. The PROC module can then be used in PROC-only mode, to load and start any non-DSPLink DSP executables also. Regards, Mugdha ________________________________ From: Naveena M. [mailto:[EMAIL PROTECTED] Sent: Friday, September 26, 2008 12:50 PM To: Kamoolkar, Mugdha; [email protected] Subject: RE: To boot DSP and run DSP application from ARM. Thank you. If I am to use PROC section alone (to load and run)and no other communication mechanism (MSGQ, POOL ,CHL...), is there any dependency with memory configuration. ie. Is the DSPLINKMEM needed for PROC? Can I build the Dsplink driver with PROC alone? Regards, Naveena ________________________________ From: Kamoolkar, Mugdha [mailto:[EMAIL PROTECTED] Sent: Friday, September 26, 2008 10:49 AM To: Naveena M.; [email protected] Subject: RE: To boot DSP and run DSP application from ARM. Naveena, You can look into the hal (hardware abstraction layer) code within DSPLink sources as a reference for what you are attempting to do. It will have the right sequence of register settings. Regards, Mugdha ________________________________ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Naveena M. Sent: Friday, September 26, 2008 10:20 AM To: [email protected] Subject: To boot DSP and run DSP application from ARM. Hello, How can I load DSP and run DSP application from ARM. I am not using the TI provided dsplink driver available with montavista. The TI provided driver supports API calls and those use to run DSP application from ARM are PROC_setup ,PROC_Attach ,PROC_Load and PROC_start. Now I am setting registers by running a firmware application and running on ARM side by connecting CCS using JTAG emulator. What I did was, loaded the dsp binary in the desired location from ARM application. Then I set the resest for DSP module by setting PSC_MDCTL for DSP. Then loaded DSPBOOTADDR with the starting address of the loaded code and took of the reset. The concept was, on reset, the DSP will start running from the reset address or DSPBOOTADDR. But the DSP code dint start running. Is there any other configuration that I have to look into or consider while doing this? Or What happens in PROC_start? Regards, Naveena
_______________________________________________ Davinci-linux-open-source mailing list [email protected] http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source
