Tool/software: Linux
Hello,
When I run ./apps.out on VSDK_3.03 it get stuck when System A15 Init is in progress. Any suggestions how to solve this?
Regards,
Nevena Stojanovic
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Linux
Hello,
When I run ./apps.out on VSDK_3.03 it get stuck when System A15 Init is in progress. Any suggestions how to solve this?
Regards,
Nevena Stojanovic
Hello
Can you please make sure you follow the user guide \vision_sdk\docs\Linux\VisionSDK_Linux_UserGuide.pdf to build and run VSDK demos?
i could see some errors with ./vision_sdk_load.sh command
BTW, did you make any changes on top of VSDK 3.3 release?
regards, Shiju
Hi, I am using custom tda2xx board. I am not using early-boot+late-attach feature on VSDK and we are observing this issue on every boot.
Here you have uenv.txt file :
fdtfile=alpha_amv_board.dtb
args_mmc=part uuid mmc 0:2 uuid; setenv bootargs "console=ttyS0,115200n8 vram=16M root=PARTUUID=${uuid} rw rootwait ip=none mem=1024M"
Also, I tried to run commands as you suggessted but seems like I don't have remoteproc folder under debug :
I don't have any issues with VSDK_3.02 only with VSDK_3.03.
Hi,
Please apply the patch attached on the linux kernel and rebuild (make linux, make linux_install). It should resolve the issue.
Regards
Shravan
From 3fecdc0c83e9d001ccad6baecbfae06a625824d2 Mon Sep 17 00:00:00 2001
From: Shravan Karthik <shravan.karthik@ti.com>
Date: Mon, 9 Apr 2018 17:39:57 +0530
Subject: [PATCH] arm: dts: Update timer entries for remote-cores
VSDK firmwares use the following timers:
IPU-1 -- timer9, timer11
IPU-2 -- timer9, timer11
DSP-1 -- timer5, timer6
DSP-2 -- timer5, timer6
By default on Processor-SDK Linux Automotive IPU-2 binaries use timer3.
Since ipu1 is disabled for all infoadas builds an explicit entry for both
timer9 and timer11 must be specified.
In DRA75x and DRA76x since both DSPs are used no additional changes are needed,
however for DRA72x and DRA71x where only 1 DSP is available, timer5, timer6
entries are specified.
Signed-off-by: Shravan Karthik <shravan.karthik@ti.com>
---
arch/arm/boot/dts/dra7-evm-infoadas.dts | 1 +
arch/arm/boot/dts/dra71-evm-infoadas.dts | 2 ++
arch/arm/boot/dts/dra72-evm-infoadas.dts | 2 ++
arch/arm/boot/dts/dra76-evm-infoadas.dts | 1 +
4 files changed, 6 insertions(+)
diff --git a/arch/arm/boot/dts/dra7-evm-infoadas.dts b/arch/arm/boot/dts/dra7-evm-infoadas.dts
index 83fed99..26ece53 100755
--- a/arch/arm/boot/dts/dra7-evm-infoadas.dts
+++ b/arch/arm/boot/dts/dra7-evm-infoadas.dts
@@ -96,6 +96,7 @@ DISABLE_PRCM(gpio6);
&ipu2 {
/delete-property/ watchdog-timers;
+ timers= <&timer9> , <&timer11>;
};
&dsp1 {
diff --git a/arch/arm/boot/dts/dra71-evm-infoadas.dts b/arch/arm/boot/dts/dra71-evm-infoadas.dts
index bc4496e..8da3da1 100755
--- a/arch/arm/boot/dts/dra71-evm-infoadas.dts
+++ b/arch/arm/boot/dts/dra71-evm-infoadas.dts
@@ -85,8 +85,10 @@ DISABLE_PRCM(gpio6);
&ipu2 {
/delete-property/ watchdog-timers;
+ timers= <&timer9> , <&timer11>;
};
&dsp1 {
/delete-property/ watchdog-timers;
+ timers= <&timer5> , <&timer6>;
};
diff --git a/arch/arm/boot/dts/dra72-evm-infoadas.dts b/arch/arm/boot/dts/dra72-evm-infoadas.dts
index 5d7123a..ed39adc 100755
--- a/arch/arm/boot/dts/dra72-evm-infoadas.dts
+++ b/arch/arm/boot/dts/dra72-evm-infoadas.dts
@@ -85,8 +85,10 @@ DISABLE_PRCM(gpio6);
&ipu2 {
/delete-property/ watchdog-timers;
+ timers= <&timer9> , <&timer11>;
};
&dsp1 {
/delete-property/ watchdog-timers;
+ timers= <&timer5> , <&timer6>;
};
diff --git a/arch/arm/boot/dts/dra76-evm-infoadas.dts b/arch/arm/boot/dts/dra76-evm-infoadas.dts
index a6358d4..7958e81 100755
--- a/arch/arm/boot/dts/dra76-evm-infoadas.dts
+++ b/arch/arm/boot/dts/dra76-evm-infoadas.dts
@@ -98,6 +98,7 @@ DISABLE_PRCM(gpio6);
&ipu2 {
/delete-property/ watchdog-timers;
+ timers= <&timer9> , <&timer11>;
};
&dsp1 {
--
2.7.4
Hi,
here are all files zipped: 8228.files.zip
I have the same problem with dra7-evm-infoadas.dtb .
Regards.