9 my $DATE = '2009-09-04';
10 my $AUTHOR = "Ward Vandewege <ward\@jhvc.com>";
11 my $COPYRIGHT = "2009";
12 my $LICENSE = "GPL v3 - http://www.fsf.org/licenses/gpl.txt";
13 my $URL = "https://coreboot.org";
23 sub version_information
{
24 my ($NAME,$VERSION,$DATE,$COPYRIGHT,$AUTHOR,$LICENSE,$URL) = (shift,shift,shift,shift,shift,shift,shift);
25 print "\nThis is $NAME version $VERSION ($DATE)\n";
26 print "Copyright (c) $COPYRIGHT by $AUTHOR\n";
27 print "License: $LICENSE\n";
28 print "More information at $URL\n\n";
32 sub usage_information
{
33 my $retval = "\n$NAME v$VERSION ($DATE)\n";
34 $retval .= "\nYou have not supplied all required parameters. $NAME takes these arguments:\n";
35 $retval .= " $NAME -f <filename1> -f <filename2>\n\n";
36 $retval .= " -f <filename1> is the name of a file with k8 memory configuration values\n";
37 $retval .= " -f <filename2> is the name of a second file with k8 memory configuration values, to compare with filename1\n";
38 $retval .= " -v (optional) provides version information\n";
39 $retval .= "\nSee the k8-read-mem-settings.sh script for an example of how to generate the input files to this script.\n\n";
49 open(TMP
, $filename) || die "Could not open $filename: $!\n";
52 # Line format - pairs of lines:
53 # 0:18.2 98.l: 80000000
54 # 0:18.2 9C.l: 10111222
55 # First field is pci device. Second field is register offset (hex)
56 # where third field value (in hex) was read from.
58 $tmp[1] =~ s/:$//; # strip optional trailing colon on second field
61 my $packed = pack("H*",$tmp[2]); # Pack our number so we can easily represent it in binary
62 my $binrep = unpack("B*", $packed); # Binary string representation
64 if ($tmp[1] eq '98.l') {
65 $register = ($tmp[2] =~ /(..)$/)[0]; # last 2 digits are (hex) of what we wrote to the register, if second field is 98.l
66 $devreg = "$device $register";
67 if ("$binrep" =~ /^1/) {
68 # bit 31 *must* be 1 if readout is to be correct
69 print "$tmp[0] - $register<br>\n" if ($DEBUG);
71 print "ERROR: we read too fast: $tmp[2] does not have bit 31 set ($binrep)\n";
75 # last field is register value (hex)
76 print "$tmp[2]h ($binrep)<br>\n" if ($DEBUG);
77 $data{$devreg} = {} if (!defined($data{$devreg}));
78 $data{$devreg}{$filename} = $packed;
84 sub interpret_differences
{
86 $reg = sprintf("%02s",$reg);
94 # XOR values together - the positions with 1 after the XOR are the ones with the differences
95 my $xor = $val1 ^ $val2;
97 my @val1 = split(//,unpack("B*",$val1));
98 my @val2 = split(//,unpack("B*",$val2));
99 my @xor = split(//,unpack("B*",$xor));
103 if (!exists($info{$reg})) {
104 print STDERR
"MISSING DATA for register $reg\n";
108 for (my $i=0; $i<=$#xor;$i++) {
110 if ($xor[$i] eq '1') {
111 #print STDERR "REG: $reg INVI: $invi\n";
112 #print STDERR $info{$reg}{'fields'}{$invi} . "\n";
113 #print STDERR $info{$reg}{'fields'}{$invi}{'range'} . "\n";
114 my $r = $info{$reg}{'fields'}{$invi}{'range'};
115 # if (!exists($changed{$r})) {
116 # $changed{$r}{'v1'} = '';
117 # $changed{$r}{'v2'} = '';
119 # $changed{$r}{'v1'} .= $val1[$i];
120 # $changed{$r}{'v2'} .= $val2[$i];
121 $changed{$r}{'v1'} = 1;
122 $changed{$r}{'v2'} = 1;
126 foreach my $r (keys %changed) {
127 my $width = $info{$reg}{'ranges'}{$r}{'width'};
128 #$changed{$r}{'v1'} = sprintf("%0" . $width . "sb",$changed{$r}{'v1'});
129 #$changed{$r}{'v2'} = sprintf("%0" . $width . "sb",$changed{$r}{'v2'});
130 #my $v1 = $changed{$r}{'v1'};
131 #my $v2 = $changed{$r}{'v2'};
132 my $v1 = substr(unpack("B*",$val1),31-$info{$reg}{'ranges'}{$r}{'end'},$info{$reg}{'ranges'}{$r}{'width'}) . 'b';
133 my $v2 = substr(unpack("B*",$val2),31-$info{$reg}{'ranges'}{$r}{'end'},$info{$reg}{'ranges'}{$r}{'width'}) . 'b';
135 my $desc = $info{$reg}{'ranges'}{$r}{'description'};
136 $desc =~ s/\n+/<br>/g;
138 $retval2 .= $info{$reg}{'ranges'}{$r}{'function'} . " (" . $info{$reg}{'ranges'}{$r}{'mnemonic'} . ") - Bits ($r)" . "<br>";
139 $retval2 .= " <i>$desc</i><p>" if ($desc ne '');
141 $v1 = $v1 . " (" . $info{$reg}{'ranges'}{$r}{'values'}{$v1} . ")" if (exists($info{$reg}{'ranges'}{$r}{'values'}{$v1}));
142 $v2 = $v2 . " (" . $info{$reg}{'ranges'}{$r}{'values'}{$v2} . ")" if (exists($info{$reg}{'ranges'}{$r}{'values'}{$v2}));
143 $retval2 .= sprintf("<b><a href=\"$tag1\">%44s</a>: %s</b>\n",$tag1, $v1);
144 $retval2 .= sprintf("<b><a href=\"$tag2\">%44s</a>: %s</b>\n",$tag2, $v2);
149 # this prints out the bitwise differences. TODO: clean up
151 # for (my $i=0; $i<=$#xor;$i++) {
152 # my $invi = 31 - $i;
153 # if ($xor[$i] eq '1') {
154 # my $m = $info{$reg}{'fields'}{$invi}{'mnemonic'};
155 # my $f = $info{$reg}{'fields'}{$invi}{'function'};
156 # my $range = $info{$reg}{'fields'}{$invi}{'range'};
158 # $retval2 .= "Bit $invi ($info{$reg}{'fields'}{$invi}{'mnemonic'} - $info{$reg}{'fields'}{$invi}{'function'}):\n";
159 # $retval2 .= sprintf("%32s: %d\n",$tag1, $val1[$i]);
160 # $retval2 .= sprintf("%32s: %d\n",$tag2, $val2[$i]);
162 # $retval2 .= "Bit $invi:\n";
163 # $retval2 .= sprintf("%32s: %d\n",$tag1, $val1[$i]);
164 # $retval2 .= sprintf("%32s: %d\n",$tag2, $val2[$i]);
170 if ($retval2 ne '') {
171 $retval .= "\n\n$retval2\n";
172 my $n = $info{$reg}{'name'};
173 my $d = $info{$reg}{'description'};
178 $retval .= sprintf("%40s -> %s<br>\n","XOR",unpack("B*",$xor)) if ($DEBUG);
179 $retval .= "\n$n\n" if ($n ne '');
180 $retval .= " $d" if ($d ne '');
185 return "<pre>$retval</pre>";
189 my $file = 'bkdg.data';
193 unless ($return = do $file) {
194 warn "couldn't parse $file: $@" if $@
;
195 warn "couldn't do $file: $!" unless defined $return;
196 warn "couldn't run $file" unless $return;
199 print "Warning: data file '$file' not found - $0 will only report on differing bits without explanation.\n";
209 GetOptions
("filename=s" => \
@filenames, "version" => \
$version);
211 &version_information
($NAME,$VERSION,$DATE,$COPYRIGHT,$AUTHOR,$LICENSE,$URL) if ($version);
213 &usage_information
() if ($#filenames < 1);
217 foreach my $file (@filenames) {
218 print STDERR
"processing $file\n";
219 %data = &parse_file
($file,%data);
222 print "<html>\n<body>\n";
224 foreach my $key (sort keys %data) {
225 my $first = pack("H*",'00000000');
227 foreach my $k2 (reverse sort keys %{$data{$key}}) {
228 if (unpack("H*",$first) eq '00000000') {
229 $first = $data{$key}{$k2};
232 if (unpack("H*",$first) ne unpack("H*",$data{$key}{$k2})) {
233 my $reg = ($key =~ /\s+([a-z0-9]+)$/i)[0];
237 printf("%44s -> %s (%s)\n",$firstfile,unpack("B*",$first),unpack("H*",$first));
238 printf("%44s -> %s (%s)\n",$k2,unpack("B*",$data{$key}{$k2}),unpack("H*",$data{$key}{$k2}));
242 print &interpret_differences
($reg,$firstfile,$first,$k2,$data{$key}{$k2});
246 print "</body>\n</html>\n";