Message ID | BANLkTinawxhRF2FWBrR=vpfCraM=xLX4mA@mail.gmail.com (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | |
Headers | show |
Hi Javier, On Wed, Jun 15, 2011 at 10:19 AM, javier Martin <javier.martin@vista-silicon.com> wrote: > Hi, > > 1- If I try prebuilt binaries (both for DSP side and userspace) I get > an execution error: ... > DSPNode_GetMessage failed: 0xffffffc2 In this case, sample application is working, however the failures on get_message are unexpected, it seems this arose when the error codes were changed and the precompiled binaries where not updated, I'll fix this, thanks for the heads up. > 3- If I compile both DSP side and MPU side samples it also gives an > execution error: ... > root@beagleboard:/dspbridge# ./ping.out > DSP device detec[ 64.484649] procwrap_detach: deprecated dspbridge ioctl > ted !! > DSPNode_Create failed: 0xffffffe3 > ... > Do you know what combination of DSP bios, TI CGT and xdctools is most > suitable for using with tidspbridge in kernel 2.6.39? This is mentioned in the wiki: bios 5.33.04 and cgt tools 6.0.7 http://omapedia.org/wiki/DSPBridge_Project#Initial_environment_setup This version of the bios already has the xdc tools bundled. BTW I replied to your gforge query in case it gives any information: http://bit.ly/laeJFD I also applied your patch to fix copying the dsp binaries on the build system, thanks! Regards, Omar -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/source/product.mak b/source/product.mak index 892faf5..1996366 100755 --- a/source/product.mak +++ b/source/product.mak @@ -13,12 +13,12 @@ # # DSP BIOS -SABIOS_VER = 5.33.04 -SABIOS_VER_2 = 5_33_04 +SABIOS_VER = 5.41.07.24 +SABIOS_VER_2 = 5_41_07_24 # CodeGen Tools CGT55_VER = 3.2.2 -CGT6X_VER = 6.0.7 +CGT6X_VER = 6.1.17 # Framework components FC_VER = 1_10_04 diff --git a/source/samplemakefile b/source/samplemakefile index 4d11610..ac9f772 100755 --- a/source/samplemakefile +++ b/source/samplemakefile @@ -83,8 +83,8 @@ BRIDGE_EXPORT_PACKAGES = dsp/ti/dspbridge/dsp/bridge_product SAMPLE_PACKAGES = samples/dsp -DLL_FILES=$(wildcard $(SAMPLE_PACKAGES)/*.dll64P)) -DOF_FILES=$(wildcard $(SAMPLE_PACKAGES)/*.dof64P)) +DLL_FILES=$(wildcard $(SAMPLE_PACKAGES)/*.dll64P) +DOF_FILES=$(wildcard $(SAMPLE_PACKAGES)/*.dof64P) .samples: .bridge_samples @@ -144,7 +144,7 @@ ifneq ($(DLL_FILES),) $(CP) -f $(DLL_FILES) $(TARGETDIR)/dspbridge/ endif ifneq ($(DOF_FILES),) - $(CP) -f $(DOF_FILES)/ $(TARGETDIR)/dspbridge/ + $(CP) -f $(DOF_FILES) $(TARGETDIR)/dspbridge/ endif #.execute_version_script: version.ksh $(VERSION_FILE) diff --git a/source/samples/dsp/ddspbase.tci b/source/samples/dsp/ddspbase.tci index 1746adc..d968cab 100755 --- a/source/samples/dsp/ddspbase.tci +++ b/source/samples/dsp/ddspbase.tci @@ -19,6 +19,8 @@ * */ +var chipType = environment["config.chipType"]; + /* bridge default is 512, that's not enough sometimes */ var traceSize = 512;