summaryrefslogtreecommitdiff
path: root/tests/sysfs_l3_parity
blob: 6f14b84c0da8401ce542c7710c186358612b02a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash

SOURCE_DIR="$( dirname "${BASH_SOURCE[0]}" )"
. $SOURCE_DIR/drm_lib.sh

if ! find /sys/class/drm/card*/ | grep l3_parity > /dev/null ; then
	echo "no l3_parity interface, skipping test"
	exit $IGT_EXIT_SKIP
fi

$SOURCE_DIR/../tools/intel_l3_parity -r 0 -b 0 -s 0 -e

#Check that we can remap a row
$SOURCE_DIR/../tools/intel_l3_parity -r 0 -b 0 -s 0 -d
disabled=`$SOURCE_DIR/../tools/intel_l3_parity -l | grep -c 'Row 0, Bank 0, Subbank 0 is disabled'`
if [ "$disabled" != "1" ] ; then
	echo "Fail"
	exit $IGT_EXIT_FAILURE
fi

$SOURCE_DIR/../tools/intel_l3_parity -r 0 -b 0 -s 0 -e

#Check that we can clear remaps
if [ `$SOURCE_DIR/../tools/intel_l3_parity -l | wc -l` != 1 ] ; then
	echo "Fail 2"
	exit $IGT_EXIT_FAILURE
fi