aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2021-06-02 11:00:34 +0200
committerJean Delvare <jdelvare@suse.de>2021-06-02 11:00:34 +0200
commit85d8fa835bcc5befb00b0feee2666bb4189e13d6 (patch)
tree4af124abf72f04487a14cdcae6a7f8d4b1305b68
parent06a1909ae1e8ae1edc70dc48dd22a32ba5eceecb (diff)
downloadi2c-tools-85d8fa835bcc5befb00b0feee2666bb4189e13d6.tar.gz
decode-dimms: Actually decode LPDDR3 modules
In commit 78ed68308b58 ("decode-dimms: Decode manufacturing data for LPDDR3") we said we would handle LPDDR3 the same as DDR3, however it was actually only done for the manufacturing data. Extend the idea to the rest of the script. Signed-off-by: Jean Delvare <jdelvare@suse.de>
-rw-r--r--CHANGES1
-rwxr-xr-xeeprom/decode-dimms1
2 files changed, 2 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index f2f01b7..aa46d3a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,7 @@ i2c-tools CHANGES
-----------------
master
+ decode-dimms: Attempt to decode LPDDR3 modules
eeprom, eepromer: removed the tools in favor of eeprog
i2ctransfer: reverted check for returned length from driver
diff --git a/eeprom/decode-dimms b/eeprom/decode-dimms
index b3a2e7e..9842fbd 100755
--- a/eeprom/decode-dimms
+++ b/eeprom/decode-dimms
@@ -2177,6 +2177,7 @@ sub decode_rambus($)
"DDR SDRAM" => \&decode_ddr_sdram,
"DDR2 SDRAM" => \&decode_ddr2_sdram,
"DDR3 SDRAM" => \&decode_ddr3_sdram,
+ "LPDDR3 SDRAM" => \&decode_ddr3_sdram,
"DDR4 SDRAM" => \&decode_ddr4_sdram,
"DDR4E SDRAM" => \&decode_ddr4_sdram,
"LPDDR4 SDRAM" => \&decode_ddr4_sdram,