summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVijay Dandiga <vijay.dandiga@linaro.org>2014-12-10 20:43:40 +0530
committerVijay Dandiga <vijay.dandiga@linaro.org>2014-12-10 20:45:24 +0530
commit407660c8ee0ea2cd6fb161aa7a29b483a824a58c (patch)
treed081dde644d779117d5fd582edff2e0e7bacf227
parent370d8c6d1459a9feecee624ae60cdeca72c0b64a (diff)
Add coresight test script working version
-rw-r--r--common/scripts/coresight-test1.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/common/scripts/coresight-test1.sh b/common/scripts/coresight-test1.sh
new file mode 100644
index 0000000..f6b24af
--- /dev/null
+++ b/common/scripts/coresight-test1.sh
@@ -0,0 +1,32 @@
+#!/bin/bash
+# Script to test coresight
+
+CORESIGHT_PATH="/sys/bus/coresight/devices"
+
+echo -e "SOURCE\tSINK\tRESULT"
+echo -e "------\t----\t------"
+for SOURCE in `ls $CORESIGHT_PATH | egrep "etm|ptm"` ; do
+ for SINK in `ls $CORESIGHT_PATH | grep etb` ; do
+
+ echo 1 > $CORESIGHT_PATH/$SINK/enable_sink
+
+ wrt_ptr1=`cat $CORESIGHT_PATH/$SINK/status | grep wrt | awk '{print $NF}'`
+ echo 1 > $CORESIGHT_PATH/$SOURCE/enable_source
+ sleep 1
+ echo 0 > $CORESIGHT_PATH/$SOURCE/enable_source
+ wrt_ptr2=`cat $CORESIGHT_PATH/$SINK/status | grep wrt | awk '{print $NF}'`
+
+ echo 0 > $CORESIGHT_PATH/$SINK/enable_sink
+
+ if [ $wrt_ptr1 == $wrt_ptr2 ];
+ then
+ RES="FAIL"
+ else
+ RES="SUCCESS"
+ fi
+
+ echo -e "$SOURCE\t$SINK\t$RES"
+ done
+ echo
+done
+