From 85d8fa835bcc5befb00b0feee2666bb4189e13d6 Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Wed, 2 Jun 2021 11:00:34 +0200 Subject: [PATCH] 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 --- CHANGES | 1 + eeprom/decode-dimms | 1 + 2 files changed, 2 insertions(+) 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,