Changeset 5560
- Timestamp:
- 12/11/08 17:23:46 (4 years ago)
- Files:
-
- 1 modified
-
i2c-tools/trunk/eeprom/decode-dimms (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
i2c-tools/trunk/eeprom/decode-dimms
r5559 r5560 524 524 printl("Module Configuration Type", $temp); 525 525 526 if ($bytes->[12] > 126) { $temp = "Self Refreshing"; }526 if ($bytes->[12] & 0x80) { $temp = "Self Refreshing"; } 527 527 else { $temp = "Not Self Refreshing"; } 528 528 printl("Refresh Type", $temp); … … 538 538 printl("Refresh Rate", $temp); 539 539 540 if ($bytes->[13] > 126) { $temp = "Bank2 = 2 x Bank1"; }540 if ($bytes->[13] & 0x80) { $temp = "Bank2 = 2 x Bank1"; } 541 541 else { $temp = "No Bank2 OR Bank2 = Bank1 width"; } 542 542 printl("Primary SDRAM Component Bank Config", $temp); … … 544 544 value_or_undefined($bytes->[13] & 0x7f)); 545 545 546 if ($bytes->[14] > 126) { $temp = "Bank2 = 2 x Bank1"; }546 if ($bytes->[14] & 0x80) { $temp = "Bank2 = 2 x Bank1"; } 547 547 else { $temp = "No Bank2 OR Bank2 = Bank1 width"; } 548 548 printl("Error Checking SDRAM Component Bank Config", $temp);
