2022-06-12 16:51:51 -05:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
2008-07-06 14:17:43 -05:00
|
|
|
|
|
|
|
proc proc_exists { NAME } {
|
|
|
|
set n [info commands $NAME]
|
|
|
|
set l [string length $n]
|
2021-04-10 11:28:52 -05:00
|
|
|
return [expr {$l != 0}]
|
2008-07-06 14:17:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
# Give: REGISTER name - must be a global variable.
|
|
|
|
proc show_mmr32_reg { NAME } {
|
2009-09-21 13:48:22 -05:00
|
|
|
|
2008-07-06 14:17:43 -05:00
|
|
|
global $NAME
|
|
|
|
# we want $($NAME)
|
|
|
|
set a [set [set NAME]]
|
|
|
|
|
|
|
|
if ![catch { set v [memread32 $a] } msg ] {
|
2010-11-08 03:23:49 -06:00
|
|
|
echo [format "%15s: (0x%08x): 0x%08x" $NAME $a $v]
|
2008-07-06 14:17:43 -05:00
|
|
|
|
|
|
|
# Was a helper defined?
|
|
|
|
set fn show_${NAME}_helper
|
|
|
|
if [ proc_exists $fn ] {
|
|
|
|
# Then call it
|
|
|
|
$fn $NAME $a $v
|
|
|
|
}
|
|
|
|
return $v;
|
|
|
|
} else {
|
|
|
|
error [format "%s (%s)" $msg $NAME ]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-04-25 18:25:32 -05:00
|
|
|
# Give: NAMES - an array of names accessible
|
2008-07-06 14:17:43 -05:00
|
|
|
# in the callers symbol-scope.
|
|
|
|
# VAL - the bits to display.
|
|
|
|
|
|
|
|
proc show_mmr32_bits { NAMES VAL } {
|
|
|
|
|
|
|
|
upvar $NAMES MYNAMES
|
|
|
|
|
2008-07-20 12:13:08 -05:00
|
|
|
set w 5
|
2008-07-06 14:17:43 -05:00
|
|
|
foreach {IDX N} $MYNAMES {
|
|
|
|
set l [string length $N]
|
|
|
|
if { $l > $w } { set w $l }
|
|
|
|
}
|
2009-09-21 13:48:22 -05:00
|
|
|
|
2008-07-06 14:17:43 -05:00
|
|
|
for { set x 24 } { $x >= 0 } { incr x -8 } {
|
2010-11-08 03:23:49 -06:00
|
|
|
echo -n " "
|
2008-07-06 14:17:43 -05:00
|
|
|
for { set y 7 } { $y >= 0 } { incr y -1 } {
|
2021-04-09 18:23:57 -05:00
|
|
|
set s $MYNAMES([expr {$x + $y}])
|
|
|
|
echo -n [format "%2d: %-*s | " [expr {$x + $y}] $w $s ]
|
2008-07-06 14:17:43 -05:00
|
|
|
}
|
2010-11-08 03:23:49 -06:00
|
|
|
echo ""
|
2008-07-06 14:17:43 -05:00
|
|
|
|
2010-11-08 03:23:49 -06:00
|
|
|
echo -n " "
|
2008-07-06 14:17:43 -05:00
|
|
|
for { set y 7 } { $y >= 0 } { incr y -1 } {
|
2021-04-10 11:28:52 -05:00
|
|
|
echo -n [format " %d%*s | " [expr {!!($VAL & (1 << ($x + $y)))}] [expr {$w -1}] ""]
|
2008-07-06 14:17:43 -05:00
|
|
|
}
|
2010-11-08 03:23:49 -06:00
|
|
|
echo ""
|
2008-07-06 14:17:43 -05:00
|
|
|
}
|
|
|
|
}
|
2008-07-20 12:13:08 -05:00
|
|
|
|
|
|
|
|
|
|
|
proc show_mmr_bitfield { MSB LSB VAL FIELDNAME FIELDVALUES } {
|
2021-04-09 18:23:57 -05:00
|
|
|
set width [expr {(($MSB - $LSB + 1) + 7) / 4}]
|
2008-07-20 12:13:08 -05:00
|
|
|
set nval [show_normalize_bitfield $VAL $MSB $LSB ]
|
|
|
|
set name0 [lindex $FIELDVALUES 0 ]
|
|
|
|
if [ string compare $name0 _NUMBER_ ] {
|
|
|
|
set sval [lindex $FIELDVALUES $nval]
|
|
|
|
} else {
|
|
|
|
set sval ""
|
|
|
|
}
|
2010-11-08 03:23:49 -06:00
|
|
|
echo [format "%-15s: %d (0x%0*x) %s" $FIELDNAME $nval $width $nval $sval ]
|
2008-07-20 12:13:08 -05:00
|
|
|
}
|
2022-06-03 17:25:19 -05:00
|
|
|
|
|
|
|
# Give: ADDR - address of the register.
|
|
|
|
# BIT - bit's number.
|
|
|
|
|
|
|
|
proc get_mmr_bit { ADDR BIT } {
|
|
|
|
set val [memread32 $ADDR]
|
|
|
|
set bit_val [expr {$val & [expr {1 << $BIT}]}]
|
|
|
|
return $bit_val
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# Give: ADDR - address of the register.
|
|
|
|
# MSB - MSB bit's number.
|
|
|
|
# LSB - LSB bit's number.
|
|
|
|
|
|
|
|
proc get_mmr_bitfield { ADDR MSB LSB } {
|
|
|
|
set rval [memread32 $ADDR]
|
|
|
|
return normalize_bitfield $rval $MSB $LSB
|
|
|
|
}
|