From 78ed68308b586b8acd3d58b0e46b73580e34667f Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Wed, 2 Oct 2019 13:47:17 +0200 Subject: [PATCH] decode-dimms: Decode manufacturing data for LPDDR3 I assume the manufacturing data format for LPDDR3 is the same as regular DDR3. Signed-off-by: Jean Delvare --- eeprom/decode-dimms | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eeprom/decode-dimms b/eeprom/decode-dimms index b1e4107..a752a47 100755 --- a/eeprom/decode-dimms +++ b/eeprom/decode-dimms @@ -2719,7 +2719,8 @@ for $current (0 .. $#dimm) { $decode_callback{$type}->(\@bytes) if exists $decode_callback{$type}; - if ($type eq "DDR3 SDRAM") { + if ($type eq "DDR3 SDRAM" || + $type eq "LPDDR3 SDRAM") { # Decode DDR3-specific manufacturing data in bytes # 117-149 if (@bytes >= 150) {