M7350v1_en_gpl

This commit is contained in:
T
2024-09-09 08:52:07 +00:00
commit f9cc65cfda
65988 changed files with 26357421 additions and 0 deletions
@@ -0,0 +1,9 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := platform.sh
LOCAL_SRC_FILES := platform.sh
LOCAL_MODULE_CLASS := EXECUTABLE
LOCAL_MODULE_TAGS := debug
LOCAL_MODULE_PATH := $(TARGET_OUT_DATA)/kernel-tests/coresight/core/platform
include $(BUILD_PREBUILT)
@@ -0,0 +1,107 @@
#! /bin/sh
# Copyright (c) 2013, The Linux Foundation. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials provided
# with the distribution.
# * Neither the name of The Linux Foundation nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
count=0
source "$(dirname $0)/../cs_common.sh"
echo "-----Coresight Platform Test Starting-----"
echo "------------------------------------------"
if [ -d $csrpath ]
then
echo "PASS: coresight-csr driver initialized"
else
echo "FAIL: coresight-csr driver probe failed ****"
fi
cores=`grep -c "processor" $cpuinfo`
while [ $count -lt $cores ]
do
if [ -d $etmpath$count ]
then
echo "PASS: coresight-etm$count driver initialized"
else
echo "FAIL: coresight-etm$count driver probe failed ****"
fi
count=$(( count + 1 ))
done
if [ -d $f0path ]
then
echo "PASS: coresight-funnel-in0 driver initialized"
else
echo "FAIL: coresight-funnel-in0 driver probe failed ****"
fi
if [ -d $f1path ]
then
echo "PASS: coresight-funnel-in1 driver initialized"
else
echo "FAIL: coresight-funnel-in1 driver probe failed ****"
fi
if [ -d $fmergpath ]
then
echo "PASS: coresight-funnel-merg driver initialized"
else
echo "FAIL: coresight-funnel-merg driver probe failed ****"
fi
if [ -d $fkpsspath ]
then
echo "PASS: coresight-funnel-kpss driver initialized"
else
echo "FAIL: coresight-funnel-kpss driver probe failed ****"
fi
if [ -d $fmmsspath ]
then
echo "PASS: coresight-funnel-mmss driver initialized"
else
echo "FAIL: coresight-funnel-mmss driver probe failed ****"
fi
if [ -d $replicatorpath ]
then
echo "PASS: coresight-replicator driver initialized"
else
echo "FAIL: coresight-replicator driver probe failed ****"
fi
if [ -d $stmpath ]
then
echo "PASS: coresight-stm driver initialized"
else
echo "FAIL: coresight-stm driver probe failed ****"
fi
if [ -d $tmcetfpath ] && [ -d $tmcetrpath ]
then
echo "PASS: coresight-tmc driver initialized"
else
echo "FAIL: coresight-tmc driver probe failed ****"
fi
if [ -d $tpiupath ]
then
echo "PASS: coresight-tpu driver initialized"
else
echo "FAIL: coresight-tpu driver probe failed ****"
fi
echo "-----Coresight Platform Test Complete-----"
echo "------------------------------------------"
echo ""