include/spd.h: Fix DDR4_SPD_72B_SO_{R,U}DIMM values

Regarding JEDEC Standard No. 21-C, Release 30, page 13, DDR4_SPD_72B_SO_RDIMM
and DDR4_SPD_72B_SO_UDIMM values are respectively 0x08 and 0x09.
There is no affected board in coreboot tree.

Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: Id4e9c3814e2e7f379917bf93f7975af3aad31dbb
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62647
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
This commit is contained in:
Elyes Haouas 2022-03-07 17:30:02 +01:00 committed by Felix Held
parent e4cf3fa36d
commit ec97e0a29d
1 changed files with 2 additions and 2 deletions

View File

@ -236,8 +236,8 @@ enum ddr4_module_type {
DDR4_SPD_LRDIMM = 0x04, DDR4_SPD_LRDIMM = 0x04,
DDR4_SPD_MINI_RDIMM = 0x05, DDR4_SPD_MINI_RDIMM = 0x05,
DDR4_SPD_MINI_UDIMM = 0x06, DDR4_SPD_MINI_UDIMM = 0x06,
DDR4_SPD_72B_SO_UDIMM = 0x08, DDR4_SPD_72B_SO_RDIMM = 0x08,
DDR4_SPD_72B_SO_RDIMM = 0x09, DDR4_SPD_72B_SO_UDIMM = 0x09,
DDR4_SPD_16B_SO_DIMM = 0x0c, DDR4_SPD_16B_SO_DIMM = 0x0c,
DDR4_SPD_32B_SO_RDIMM = 0x0d, DDR4_SPD_32B_SO_RDIMM = 0x0d,
}; };