summaryrefslogtreecommitdiffstats
path: root/sim-scripts/lm32_evr.in
blob: 788320a8ac4e1ab5a04efc36c5048ab657745b15 (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
#  lm32/lm32_evr Support Using Simulator in GDB
#

runARGS()
{
#  echo '--hw-device lm32cpu
#       --hw-device "lm32uart/reg 0x80006000 0x100"
#       --hw-device "/lm32uart > int int0 /lm32cpu"
#       --hw-device "lm32timer/reg 0x80002000 0x80"
#       --hw-device "/lm32timer > int int1 /lm32cpu"
#       --memory-region 0x08000000,0x4000000' ${1}
cat >lm32_evr.conf <<EOF
lm32cpu
lm32uart/reg 0x80006000 0x100
/lm32uart > int int0 /lm32cpu
lm32timer/reg 0x80002000 0x80
/lm32timer > int int1 /lm32cpu
--memory-region  0x08000000,0x4000000
EOF
  echo "--hw-file lm32_evr.conf ${1}"
}

bspGeneratesGDBCommands="yes"

bspGenerateGDBCommands()
{
cat <<EOF
tar sim --hw-device lm32cpu \\
  --hw-device "lm32uart/reg 0x80006000 0x100" \\
  --hw-device "/lm32uart > int int0 /lm32cpu" \\
  --hw-device "lm32timer/reg 0x80002000 0x80" \\
  --hw-device "/lm32timer > int int1 /lm32cpu" \\
  --memory-region 0x08000000,0x4000000
load
EOF
}

checkBSPFaults()
{
  return 0
}

bspLimit()
{
  testname=$1
  case ${testname} in
    *stackchk*)limit=5 ;;
    *fatal*)   limit=1 ;;
    *minimum*) limit=1 ;;
    *psxtime*) limit=180 ;;
    *)         limit=60 ;;
  esac
  echo ${limit}
}