Kevin Chiu has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/35149 )
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
mb/google/kahlee/variants/careena: override DRAM SPD table
override DRAM SPD and add new 4 DRAM: Samsung (TH) K4AAG165WA-BCTD Hynix (TG) H5ANAG6NCMR-XNC Micron (TF) MT40A1G16RC-062E:B Samsung (TH) K4AAG165WA-BCWE
BUG=b:139912383 BRANCH=master TEST=emerge-grunt coreboot chromeos-bootimage Change-Id: Ie1b2c1bae5ffe9f3a6a6560348f6e1b117ffd457 Signed-off-by: Kevin Chiu Kevin.Chiu@quantatw.com --- M src/mainboard/google/kahlee/variants/careena/Makefile.inc A src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc A src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc_bak A src/mainboard/google/kahlee/variants/careena/spd/empty.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NAFR-UH.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NCJR-VKC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NAMR-UH.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-VKC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-XNC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16KNR-075-E.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16RC-062E-B.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16JY-083E-B.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16LY-075-E.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16TB-062E-J.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WB-BCRC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WC-BCTD.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCTD.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCWE.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCRC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCTD.spd.hex 20 files changed, 630 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/49/35149/1
diff --git a/src/mainboard/google/kahlee/variants/careena/Makefile.inc b/src/mainboard/google/kahlee/variants/careena/Makefile.inc index 0579e18..17ea78e 100644 --- a/src/mainboard/google/kahlee/variants/careena/Makefile.inc +++ b/src/mainboard/google/kahlee/variants/careena/Makefile.inc @@ -13,7 +13,7 @@ # GNU General Public License for more details. #
-subdirs-y += ../baseboard/spd +subdirs-y += ./spd
romstage-y += ../baseboard/romstage.c
diff --git a/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc b/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc new file mode 100644 index 0000000..d9489fd --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc @@ -0,0 +1,34 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2014 Google Inc. +## Copyright (C) 2015 Intel Corporation. +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; version 2 of the License. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## + +LIB_SPD_DEPS = $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/variants/$(CONFIG_VARIANT_DIR)/spd/$(f).spd.hex) + +SPD_SOURCES = empty # 0b0000 +SPD_SOURCES += empty # 0b0001 +SPD_SOURCES += empty # 0b0010 +SPD_SOURCES += empty # 0b0011 +SPD_SOURCES += empty # 0b0100 +SPD_SOURCES += empty # 0b0101 +SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 +SPD_SOURCES += empty # 0b0111 +SPD_SOURCES += empty # 0b1000 +SPD_SOURCES += empty # 0b1001 +SPD_SOURCES += empty # 0b1010 +SPD_SOURCES += empty # 0b1011 +SPD_SOURCES += samsung-K4AAG165WA-BCTD # 0b1100 +SPD_SOURCES += hynix-H5ANAG6NCMR-XNC # 0b1101 +SPD_SOURCES += micron-MT40A1G16RC-062E-B # 0b1110 +SPD_SOURCES += samsung-K4AAG165WA-BCWE # 0b1111 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc_bak b/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc_bak new file mode 100644 index 0000000..6bb4193 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc_bak @@ -0,0 +1,34 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2014 Google Inc. +## Copyright (C) 2015 Intel Corporation. +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; version 2 of the License. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## + +LIB_SPD_DEPS = $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/variants/$(CONFIG_VARIANT_DIR)/spd/$(f).spd.hex) + +SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 +SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 +SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 +SPD_SOURCES += micron-MT40A1G16KNR-075-E # 0b0011 +SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 +SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101 +SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 +SPD_SOURCES += hynix-H5ANAG6NCMR-VKC # 0b0111 +SPD_SOURCES += hynix-H5AN8G6NCJR-VKC # 0b1000 +SPD_SOURCES += samsung-K4A8G165WC-BCTD # 0b1001 +SPD_SOURCES += samsung-K4AAG165WB-MCTD # 0b1010 +SPD_SOURCES += micron-MT40A512M16TB-062E-J # 0b1011 +SPD_SOURCES += samsung-K4AAG165WA-BCTD # 0b1100 +SPD_SOURCES += hynix-H5ANAG6NCMR-XNC # 0b1101 +SPD_SOURCES += micron-MT40A1G16RC-062E-B # 0b1110 +SPD_SOURCES += samsung-K4AAG165WA-BCWE # 0b1111 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/empty.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/empty.spd.hex new file mode 100644 index 0000000..0d22dd0 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/empty.spd.hex @@ -0,0 +1,33 @@ +#Empty SPD - placeholder file +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NAFR-UH.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NAFR-UH.spd.hex new file mode 100644 index 0000000..a32a067 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NAFR-UH.spd.hex @@ -0,0 +1,33 @@ +# H5AN8G6NAFR-UH +23 11 0C 03 45 21 00 08 00 60 00 03 02 03 00 00 +00 00 07 0D F8 0F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 D6 0B E3 +0F 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 C0 E2 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 AD 01 00 00 00 00 00 00 48 35 41 4E 38 47 36 +4E 41 46 52 2D 55 48 43 20 20 20 20 20 00 80 AD +FF 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NCJR-VKC.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NCJR-VKC.spd.hex new file mode 100644 index 0000000..3d046a3 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NCJR-VKC.spd.hex @@ -0,0 +1,33 @@ +# H5AN8G6NCJR-VKC +23 11 0C 03 45 21 00 08 00 60 00 03 02 03 00 00 +00 00 06 0D F8 3F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 87 2E +0F 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 C0 E2 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 AD 01 00 00 00 00 00 00 48 35 41 4E 38 47 36 +4E 43 4A 52 2D 56 4B 43 20 20 20 20 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NAMR-UH.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NAMR-UH.spd.hex new file mode 100644 index 0000000..390940f --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NAMR-UH.spd.hex @@ -0,0 +1,33 @@ +# hynix-H5ANAG6NAMR +23 11 0C 03 85 21 00 08 00 60 00 03 01 03 00 00 +00 00 07 0D F8 0F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 A8 1B 28 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 D6 89 02 +0F 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 C0 E2 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 AD 01 00 00 00 00 00 00 48 35 41 4E 41 47 36 +4E 41 4D 52 2D 55 48 43 20 20 20 20 20 00 80 AD +FF 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-VKC.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-VKC.spd.hex new file mode 100644 index 0000000..e75e4c1 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-VKC.spd.hex @@ -0,0 +1,33 @@ +# Hynix H5ANAG6NCMR-VKC +23 11 0C 03 85 21 91 08 00 60 00 03 01 03 00 00 +00 00 06 0D F8 3F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 A8 18 28 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 0C 2B 2D 04 +16 35 23 0D 00 00 2C 0B 03 24 35 0C 03 2D 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C 00 00 00 00 00 E7 00 43 CE +0F 11 20 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 EF 55 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 AD 01 00 00 00 00 00 00 48 4D 41 41 31 47 53 +36 43 4D 52 38 4E 2D 56 4B 20 20 20 20 00 80 AD +FF 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 DD 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-XNC.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-XNC.spd.hex new file mode 100644 index 0000000..9ecff21 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-XNC.spd.hex @@ -0,0 +1,33 @@ +# Hynix H5ANAG6NCMR-XNC +23 11 0C 03 85 21 91 08 00 60 00 03 01 03 00 00 +00 00 05 0D F8 FF 02 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 A8 14 28 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C 00 00 00 00 00 E7 00 C0 6E +0F 01 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 7D 21 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 AD 01 00 00 00 00 00 00 48 35 41 4E 41 47 36 +4E 43 4D 52 2D 58 4E 43 20 20 20 20 20 00 80 AD +FF 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 DD 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \ No newline at end of file diff --git a/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16KNR-075-E.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16KNR-075-E.spd.hex new file mode 100644 index 0000000..231598b --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16KNR-075-E.spd.hex @@ -0,0 +1,33 @@ +# MT40A1G16KNR-075:E +23 11 0C 03 85 21 00 08 00 60 00 03 01 03 00 00 +00 00 06 0D F8 FF 01 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 A8 18 28 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C 00 00 00 00 00 E7 00 60 8D +0F 01 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 7D 21 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 2C 00 00 00 00 00 00 00 4D 54 34 30 41 31 47 +31 36 4B 4E 52 2D 30 37 35 3A 45 20 20 31 80 2C +45 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16RC-062E-B.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16RC-062E-B.spd.hex new file mode 100644 index 0000000..0013b66 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16RC-062E-B.spd.hex @@ -0,0 +1,33 @@ +# MT40A1G16RC-062E:B +23 11 0C 03 46 29 00 08 00 60 00 03 02 03 00 00 +00 00 05 0D F8 FF 2B 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 40 36 +0F 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 C0 E2 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 2C 00 00 00 00 00 00 00 4D 54 34 30 41 31 47 +31 36 52 43 2D 30 36 32 45 3A 42 20 20 31 80 2C +42 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16JY-083E-B.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16JY-083E-B.spd.hex new file mode 100644 index 0000000..ee6a4a6 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16JY-083E-B.spd.hex @@ -0,0 +1,33 @@ +# MT40A512M16JY-083E:B +23 11 0C 03 45 21 00 08 00 60 00 03 02 03 00 00 +00 00 07 0D F8 7F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 D6 55 A7 +0F 01 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 7D 21 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 2C 00 00 00 00 00 00 00 4D 54 34 30 41 35 31 +32 4D 31 36 4A 59 2D 30 38 33 45 3A 42 32 80 2C +42 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16LY-075-E.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16LY-075-E.spd.hex new file mode 100644 index 0000000..1b39e3e --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16LY-075-E.spd.hex @@ -0,0 +1,33 @@ +# MT40A512M16LY-075:E +23 11 0C 03 45 21 00 08 00 60 00 03 02 03 00 00 +00 00 06 0D F8 FF 01 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 60 5B +0F 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 C0 E2 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 2C 00 00 00 00 00 00 00 4D 54 34 30 41 35 31 +32 4D 31 36 4C 59 2D 30 37 35 3A 45 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16TB-062E-J.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16TB-062E-J.spd.hex new file mode 100644 index 0000000..67640fe --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16TB-062E-J.spd.hex @@ -0,0 +1,33 @@ +# MT40A512M16TB-062E:J +23 11 0C 03 45 21 00 08 00 60 00 03 02 03 00 00 +00 00 05 0D F8 FF 2B 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 30 53 +0F 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 C0 E2 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 2C 00 00 00 00 00 00 00 4D 54 34 30 41 35 31 +32 4D 31 36 54 42 2D 30 36 32 45 3A 4A 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WB-BCRC.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WB-BCRC.spd.hex new file mode 100644 index 0000000..36b85a2 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WB-BCRC.spd.hex @@ -0,0 +1,33 @@ +# K4A8G165WB-BCRC +23 11 0C 03 45 21 00 08 00 60 00 03 02 03 00 00 +00 00 07 0D F8 0F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 D6 0B E3 +0F 11 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 DB 08 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 CE 00 00 00 00 00 00 00 4D 34 37 31 41 35 32 +34 34 42 42 30 2D 43 52 43 20 20 20 20 00 80 CE +FF 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WC-BCTD.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WC-BCTD.spd.hex new file mode 100644 index 0000000..d03dc5b --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WC-BCTD.spd.hex @@ -0,0 +1,33 @@ +# Samsung K4A8G165WC-BCTD +23 11 0C 03 45 21 00 08 00 60 00 03 02 03 00 00 +00 00 06 0D F8 3F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 87 2E +0F 11 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 DB 08 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 CE 00 00 00 00 00 00 00 4B 34 41 38 47 31 36 +35 57 43 2D 42 43 54 44 20 20 20 20 20 00 80 CE +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCTD.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCTD.spd.hex new file mode 100644 index 0000000..494cc2a --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCTD.spd.hex @@ -0,0 +1,33 @@ +# Samsung K4AAG165WA-BCTD +23 11 0C 03 46 29 00 08 00 60 00 03 02 03 00 00 +00 00 06 0D F8 3F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 F7 4B +0F 11 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 DB 08 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 CE 00 00 00 00 00 00 00 4B 34 41 41 47 31 36 +35 57 41 2D 42 43 54 44 20 20 20 20 20 00 80 CE +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCWE.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCWE.spd.hex new file mode 100644 index 0000000..f71f630 --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCWE.spd.hex @@ -0,0 +1,33 @@ +# Samsung K4AAG165WA-BCWE +23 11 0C 03 46 29 00 08 00 60 00 03 02 03 00 00 +00 00 05 0D F8 FF 01 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 E8 F5 +0F 11 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 DB 08 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 CE 00 00 00 00 00 00 00 4B 34 41 41 47 31 36 +35 57 41 2D 42 43 57 45 20 20 20 20 20 00 80 CE +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCRC.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCRC.spd.hex new file mode 100644 index 0000000..53808ac --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCRC.spd.hex @@ -0,0 +1,33 @@ +# K4AAG165WB-MCRC +23 11 0C 03 85 21 00 08 00 60 00 03 01 03 00 00 +00 00 07 0D F8 0F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 A8 1B 28 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 D6 89 02 +0F 11 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 66 CB +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 CE 00 00 00 00 00 00 00 4D 34 37 31 41 31 4B +34 34 42 4D 30 2D 43 52 43 20 20 20 20 00 80 CE +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCTD.spd.hex b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCTD.spd.hex new file mode 100644 index 0000000..ede001a --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCTD.spd.hex @@ -0,0 +1,33 @@ +# Samsung K4AAG165WB-MCTD +23 11 0C 03 85 21 00 08 00 60 00 03 01 03 00 00 +00 00 06 0D F8 3F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 A8 18 28 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 0C 2B 2D 04 +16 35 23 0D 00 00 2C 0B 03 24 35 0C 03 2D 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C 00 00 00 00 00 E7 00 D0 4E +0F 11 20 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 EF 55 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 CE 00 00 00 00 00 00 00 4D 34 37 31 41 31 4B +34 33 42 42 31 2D 43 54 44 20 20 20 20 00 80 CE +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35149 )
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
Patch Set 1:
(131 comments)
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... File src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-XNC.spd.hex:
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 1: # Hynix H5ANAG6NCMR-XNC DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 2: 23 11 0C 03 85 21 91 08 00 60 00 03 01 03 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 3: 00 00 05 0D F8 FF 02 00 6E 6E 6E 11 00 6E F0 0A DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 4: 20 08 00 05 00 A8 14 28 28 00 78 00 14 3C 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 5: 00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 6: 16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 9: 00 00 00 00 00 00 9C 00 00 00 00 00 E7 00 C0 6E DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 10: 0F 01 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 11: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 13: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 14: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 15: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 16: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 17: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 7D 21 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 18: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 19: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 21: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 22: 80 AD 01 00 00 00 00 00 00 48 35 41 4E 41 47 36 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 23: 4E 43 4D 52 2D 58 4E 43 20 20 20 20 20 00 80 AD DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 24: FF 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 25: 00 00 00 00 00 00 00 00 00 00 00 00 00 DD 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 26: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 27: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 28: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 29: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 31: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 32: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... File src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16RC-062E-B.spd.hex:
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 1: # MT40A1G16RC-062E:B DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 2: 23 11 0C 03 46 29 00 08 00 60 00 03 02 03 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 3: 00 00 05 0D F8 FF 2B 00 6E 6E 6E 11 00 6E F0 0A DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 4: 20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 5: 00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 6: 16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 9: 00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 40 36 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 10: 0F 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 11: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 13: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 14: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 15: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 16: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 17: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 C0 E2 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 18: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 19: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 21: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 22: 80 2C 00 00 00 00 00 00 00 4D 54 34 30 41 31 47 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 23: 31 36 52 43 2D 30 36 32 45 3A 42 20 20 31 80 2C DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 24: 42 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 25: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 26: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 27: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 28: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 29: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 31: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 32: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 33: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... File src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCTD.spd.hex:
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 1: # Samsung K4AAG165WA-BCTD DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 2: 23 11 0C 03 46 29 00 08 00 60 00 03 02 03 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 3: 00 00 06 0D F8 3F 00 00 6E 6E 6E 11 00 6E F0 0A DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 4: 20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 5: 00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 6: 16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 9: 00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 F7 4B DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 10: 0F 11 02 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 11: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 13: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 14: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 15: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 16: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 17: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DB 08 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 18: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 19: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 21: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 22: 80 CE 00 00 00 00 00 00 00 4B 34 41 41 47 31 36 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 23: 35 57 41 2D 42 43 54 44 20 20 20 20 20 00 80 CE DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 24: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 25: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 26: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 27: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 28: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 29: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 31: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 32: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 33: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... File src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCWE.spd.hex:
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 1: # Samsung K4AAG165WA-BCWE DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 2: 23 11 0C 03 46 29 00 08 00 60 00 03 02 03 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 3: 00 00 05 0D F8 FF 01 00 6E 6E 6E 11 00 6E F0 0A DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 4: 20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 5: 00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 6: 16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 7: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 8: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 9: 00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 E8 F5 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 10: 0F 11 02 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 11: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 12: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 13: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 14: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 15: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 16: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 17: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DB 08 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 18: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 19: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 21: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 22: 80 CE 00 00 00 00 00 00 00 4B 34 41 41 47 31 36 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 23: 35 57 41 2D 42 43 57 45 20 20 20 20 20 00 80 CE DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 24: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 25: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 26: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 27: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 28: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 29: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 31: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 32: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
https://review.coreboot.org/c/coreboot/+/35149/1/src/mainboard/google/kahlee... PS1, Line 33: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 DOS line endings
Hello build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/35149
to look at the new patch set (#2).
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
mb/google/kahlee/variants/careena: override DRAM SPD table
override DRAM SPD and add new 4 DRAM: Samsung (TH) K4AAG165WA-BCTD Hynix (TG) H5ANAG6NCMR-XNC Micron (TF) MT40A1G16RC-062E:B Samsung (TH) K4AAG165WA-BCWE
BUG=b:139912383 BRANCH=master TEST=emerge-grunt coreboot chromeos-bootimage Change-Id: Ie1b2c1bae5ffe9f3a6a6560348f6e1b117ffd457 Signed-off-by: Kevin Chiu Kevin.Chiu@quantatw.com --- M src/mainboard/google/kahlee/variants/careena/Makefile.inc A src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc A src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc_bak A src/mainboard/google/kahlee/variants/careena/spd/empty.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NAFR-UH.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NCJR-VKC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NAMR-UH.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-VKC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-XNC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16KNR-075-E.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16RC-062E-B.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16JY-083E-B.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16LY-075-E.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16TB-062E-J.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WB-BCRC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WC-BCTD.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCTD.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCWE.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCRC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCTD.spd.hex 20 files changed, 630 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/49/35149/2
Hello build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/35149
to look at the new patch set (#3).
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
mb/google/kahlee/variants/careena: override DRAM SPD table
override DRAM SPD and add new 4 DRAM: Samsung (TH) K4AAG165WA-BCTD Hynix (TG) H5ANAG6NCMR-XNC Micron (TF) MT40A1G16RC-062E:B Samsung (TH) K4AAG165WA-BCWE
BUG=b:139912383 BRANCH=master TEST=emerge-grunt coreboot chromeos-bootimage Change-Id: Ie1b2c1bae5ffe9f3a6a6560348f6e1b117ffd457 Signed-off-by: Kevin Chiu Kevin.Chiu@quantatw.com --- M src/mainboard/google/kahlee/variants/careena/Makefile.inc A src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc A src/mainboard/google/kahlee/variants/careena/spd/empty.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NAFR-UH.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5AN8G6NCJR-VKC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NAMR-UH.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-VKC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/hynix-H5ANAG6NCMR-XNC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16KNR-075-E.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A1G16RC-062E-B.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16JY-083E-B.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16LY-075-E.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/micron-MT40A512M16TB-062E-J.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WB-BCRC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4A8G165WC-BCTD.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCTD.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WA-BCWE.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCRC.spd.hex A src/mainboard/google/kahlee/variants/careena/spd/samsung-K4AAG165WB-MCTD.spd.hex 19 files changed, 596 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/49/35149/3
Kevin Chiu has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35149 )
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
Patch Set 3:
Hi Martin, I had checked to our PM/EE, except these new add 4 DRAM, below are not used for production yet but they are still in plan to support. SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101
so I still keep original SPD table but just add additional 4 new DRAM. thanks.
Martin Roth has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35149 )
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
Patch Set 3:
(1 comment)
https://review.coreboot.org/c/coreboot/+/35149/3/src/mainboard/google/kahlee... File src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/35149/3/src/mainboard/google/kahlee... PS3, Line 17: $(CONFIG_VARIANT_DIR) You could point this at the baseboard SPD directory and not have to copy the files.
You could also move the SPD directory to the top kahlee level if you don't like having it under baseboard.
Hello build bot (Jenkins), Martin Roth, Patrick Georgi,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/35149
to look at the new patch set (#4).
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
mb/google/kahlee/variants/careena: override DRAM SPD table
override DRAM SPD and add new 4 DRAM: Samsung (TH) K4AAG165WA-BCTD Hynix (TG) H5ANAG6NCMR-XNC Micron (TF) MT40A1G16RC-062E:B Samsung (TH) K4AAG165WA-BCWE
BUG=b:139912383 BRANCH=master TEST=emerge-grunt coreboot chromeos-bootimage Change-Id: Ie1b2c1bae5ffe9f3a6a6560348f6e1b117ffd457 Signed-off-by: Kevin Chiu Kevin.Chiu@quantatw.com --- R src/mainboard/google/kahlee/spd/empty.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5AN8G6NAFR-UH.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5AN8G6NCJR-VKC.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5ANAG6NAMR-UH.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-VKC.spd.hex A src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-XNC.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A1G16KNR-075-E.spd.hex A src/mainboard/google/kahlee/spd/micron-MT40A1G16RC-062E-B.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A512M16JY-083E-B.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A512M16LY-075-E.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A512M16TB-062E-J.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4A8G165WB-BCRC.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4A8G165WC-BCTD.spd.hex A src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCTD.spd.hex A src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCWE.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4AAG165WB-MCRC.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4AAG165WB-MCTD.spd.hex M src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc M src/mainboard/google/kahlee/variants/careena/Makefile.inc A src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc 20 files changed, 168 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/49/35149/4
Kevin Chiu has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35149 )
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
Patch Set 4:
(1 comment)
https://review.coreboot.org/c/coreboot/+/35149/3/src/mainboard/google/kahlee... File src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/35149/3/src/mainboard/google/kahlee... PS3, Line 17: $(CONFIG_VARIANT_DIR)
You could point this at the baseboard SPD directory and not have to copy the files. […]
Hi Martin, done, please help review patch#4. Thank you!
Hello build bot (Jenkins), Martin Roth, Patrick Georgi,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/35149
to look at the new patch set (#5).
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
mb/google/kahlee/variants/careena: override DRAM SPD table
override DRAM SPD and add new 4 DRAM: Samsung (TH) K4AAG165WA-BCTD Hynix (TG) H5ANAG6NCMR-XNC Micron (TF) MT40A1G16RC-062E:B Samsung (TH) K4AAG165WA-BCWE
BUG=b:139912383 BRANCH=master TEST=emerge-grunt coreboot chromeos-bootimage extract spd.bin and confirm 4 new SPD was added.
Change-Id: Ie1b2c1bae5ffe9f3a6a6560348f6e1b117ffd457 Signed-off-by: Kevin Chiu Kevin.Chiu@quantatw.com --- R src/mainboard/google/kahlee/spd/empty.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5AN8G6NAFR-UH.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5AN8G6NCJR-VKC.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5ANAG6NAMR-UH.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-VKC.spd.hex A src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-XNC.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A1G16KNR-075-E.spd.hex A src/mainboard/google/kahlee/spd/micron-MT40A1G16RC-062E-B.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A512M16JY-083E-B.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A512M16LY-075-E.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A512M16TB-062E-J.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4A8G165WB-BCRC.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4A8G165WC-BCTD.spd.hex A src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCTD.spd.hex A src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCWE.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4AAG165WB-MCRC.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4AAG165WB-MCTD.spd.hex M src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc M src/mainboard/google/kahlee/variants/careena/Makefile.inc A src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc 20 files changed, 168 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/49/35149/5
Martin Roth has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35149 )
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
Patch Set 5: Code-Review+2
(1 comment)
https://review.coreboot.org/c/coreboot/+/35149/5/src/mainboard/google/kahlee... File src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/35149/5/src/mainboard/google/kahlee... PS5, Line 18: : SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 Maybe in a future patch go through and remove chips that weren't used for Barla/Careena?
Martin Roth has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35149 )
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
Patch Set 5:
(1 comment)
https://review.coreboot.org/c/coreboot/+/35149/5/src/mainboard/google/kahlee... File src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/35149/5/src/mainboard/google/kahlee... PS5, Line 18: : SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000
Maybe in a future patch go through and remove chips that weren't used for Barla/Careena?
Done
Martin Roth has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35149 )
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
Patch Set 5:
(1 comment)
https://review.coreboot.org/c/coreboot/+/35149/3/src/mainboard/google/kahlee... File src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/35149/3/src/mainboard/google/kahlee... PS3, Line 17: $(CONFIG_VARIANT_DIR)
Hi Martin, done, please help review patch#4. […]
Ack
Martin Roth has submitted this change and it was merged. ( https://review.coreboot.org/c/coreboot/+/35149 )
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
mb/google/kahlee/variants/careena: override DRAM SPD table
override DRAM SPD and add new 4 DRAM: Samsung (TH) K4AAG165WA-BCTD Hynix (TG) H5ANAG6NCMR-XNC Micron (TF) MT40A1G16RC-062E:B Samsung (TH) K4AAG165WA-BCWE
BUG=b:139912383 BRANCH=master TEST=emerge-grunt coreboot chromeos-bootimage extract spd.bin and confirm 4 new SPD was added.
Change-Id: Ie1b2c1bae5ffe9f3a6a6560348f6e1b117ffd457 Signed-off-by: Kevin Chiu Kevin.Chiu@quantatw.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/35149 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Martin Roth martinroth@google.com --- R src/mainboard/google/kahlee/spd/empty.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5AN8G6NAFR-UH.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5AN8G6NCJR-VKC.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5ANAG6NAMR-UH.spd.hex R src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-VKC.spd.hex A src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-XNC.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A1G16KNR-075-E.spd.hex A src/mainboard/google/kahlee/spd/micron-MT40A1G16RC-062E-B.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A512M16JY-083E-B.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A512M16LY-075-E.spd.hex R src/mainboard/google/kahlee/spd/micron-MT40A512M16TB-062E-J.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4A8G165WB-BCRC.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4A8G165WC-BCTD.spd.hex A src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCTD.spd.hex A src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCWE.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4AAG165WB-MCRC.spd.hex R src/mainboard/google/kahlee/spd/samsung-K4AAG165WB-MCTD.spd.hex M src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc M src/mainboard/google/kahlee/variants/careena/Makefile.inc A src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc 20 files changed, 168 insertions(+), 2 deletions(-)
Approvals: build bot (Jenkins): Verified Martin Roth: Looks good to me, approved
diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/empty.spd.hex b/src/mainboard/google/kahlee/spd/empty.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/empty.spd.hex rename to src/mainboard/google/kahlee/spd/empty.spd.hex diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/hynix-H5AN8G6NAFR-UH.spd.hex b/src/mainboard/google/kahlee/spd/hynix-H5AN8G6NAFR-UH.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/hynix-H5AN8G6NAFR-UH.spd.hex rename to src/mainboard/google/kahlee/spd/hynix-H5AN8G6NAFR-UH.spd.hex diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/hynix-H5AN8G6NCJR-VKC.spd.hex b/src/mainboard/google/kahlee/spd/hynix-H5AN8G6NCJR-VKC.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/hynix-H5AN8G6NCJR-VKC.spd.hex rename to src/mainboard/google/kahlee/spd/hynix-H5AN8G6NCJR-VKC.spd.hex diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/hynix-H5ANAG6NAMR-UH.spd.hex b/src/mainboard/google/kahlee/spd/hynix-H5ANAG6NAMR-UH.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/hynix-H5ANAG6NAMR-UH.spd.hex rename to src/mainboard/google/kahlee/spd/hynix-H5ANAG6NAMR-UH.spd.hex diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/hynix-H5ANAG6NCMR-VKC.spd.hex b/src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-VKC.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/hynix-H5ANAG6NCMR-VKC.spd.hex rename to src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-VKC.spd.hex diff --git a/src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-XNC.spd.hex b/src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-XNC.spd.hex new file mode 100644 index 0000000..b20c17e --- /dev/null +++ b/src/mainboard/google/kahlee/spd/hynix-H5ANAG6NCMR-XNC.spd.hex @@ -0,0 +1,33 @@ +# Hynix H5ANAG6NCMR-XNC +23 11 0C 03 85 21 91 08 00 60 00 03 01 03 00 00 +00 00 05 0D F8 FF 02 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 A8 14 28 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C 00 00 00 00 00 E7 00 C0 6E +0F 01 1F 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 7D 21 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 AD 01 00 00 00 00 00 00 48 35 41 4E 41 47 36 +4E 43 4D 52 2D 58 4E 43 20 20 20 20 20 00 80 AD +FF 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 DD 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 \ No newline at end of file diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/micron-MT40A1G16KNR-075-E.spd.hex b/src/mainboard/google/kahlee/spd/micron-MT40A1G16KNR-075-E.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/micron-MT40A1G16KNR-075-E.spd.hex rename to src/mainboard/google/kahlee/spd/micron-MT40A1G16KNR-075-E.spd.hex diff --git a/src/mainboard/google/kahlee/spd/micron-MT40A1G16RC-062E-B.spd.hex b/src/mainboard/google/kahlee/spd/micron-MT40A1G16RC-062E-B.spd.hex new file mode 100644 index 0000000..52a4a1b --- /dev/null +++ b/src/mainboard/google/kahlee/spd/micron-MT40A1G16RC-062E-B.spd.hex @@ -0,0 +1,33 @@ +# MT40A1G16RC-062E:B +23 11 0C 03 46 29 00 08 00 60 00 03 02 03 00 00 +00 00 05 0D F8 FF 2B 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 40 36 +0F 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 C0 E2 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 2C 00 00 00 00 00 00 00 4D 54 34 30 41 31 47 +31 36 52 43 2D 30 36 32 45 3A 42 20 20 31 80 2C +42 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/micron-MT40A512M16JY-083E-B.spd.hex b/src/mainboard/google/kahlee/spd/micron-MT40A512M16JY-083E-B.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/micron-MT40A512M16JY-083E-B.spd.hex rename to src/mainboard/google/kahlee/spd/micron-MT40A512M16JY-083E-B.spd.hex diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/micron-MT40A512M16LY-075-E.spd.hex b/src/mainboard/google/kahlee/spd/micron-MT40A512M16LY-075-E.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/micron-MT40A512M16LY-075-E.spd.hex rename to src/mainboard/google/kahlee/spd/micron-MT40A512M16LY-075-E.spd.hex diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/micron-MT40A512M16TB-062E-J.spd.hex b/src/mainboard/google/kahlee/spd/micron-MT40A512M16TB-062E-J.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/micron-MT40A512M16TB-062E-J.spd.hex rename to src/mainboard/google/kahlee/spd/micron-MT40A512M16TB-062E-J.spd.hex diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/samsung-K4A8G165WB-BCRC.spd.hex b/src/mainboard/google/kahlee/spd/samsung-K4A8G165WB-BCRC.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/samsung-K4A8G165WB-BCRC.spd.hex rename to src/mainboard/google/kahlee/spd/samsung-K4A8G165WB-BCRC.spd.hex diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/samsung-K4A8G165WC-BCTD.spd.hex b/src/mainboard/google/kahlee/spd/samsung-K4A8G165WC-BCTD.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/samsung-K4A8G165WC-BCTD.spd.hex rename to src/mainboard/google/kahlee/spd/samsung-K4A8G165WC-BCTD.spd.hex diff --git a/src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCTD.spd.hex b/src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCTD.spd.hex new file mode 100644 index 0000000..f747f7c --- /dev/null +++ b/src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCTD.spd.hex @@ -0,0 +1,33 @@ +# Samsung K4AAG165WA-BCTD +23 11 0C 03 46 29 00 08 00 60 00 03 02 03 00 00 +00 00 06 0D F8 3F 00 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 F7 4B +0F 11 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 DB 08 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 CE 00 00 00 00 00 00 00 4B 34 41 41 47 31 36 +35 57 41 2D 42 43 54 44 20 20 20 20 20 00 80 CE +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCWE.spd.hex b/src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCWE.spd.hex new file mode 100644 index 0000000..390e5a5 --- /dev/null +++ b/src/mainboard/google/kahlee/spd/samsung-K4AAG165WA-BCWE.spd.hex @@ -0,0 +1,33 @@ +# Samsung K4AAG165WA-BCWE +23 11 0C 03 46 29 00 08 00 60 00 03 02 03 00 00 +00 00 05 0D F8 FF 01 00 6E 6E 6E 11 00 6E F0 0A +20 08 00 05 00 F0 2B 34 28 00 78 00 14 3C 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 16 36 0B 35 +16 36 0B 35 00 00 16 36 0B 35 16 36 0B 35 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 9C B5 00 00 00 00 E7 00 E8 F5 +0F 11 02 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 DB 08 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +80 CE 00 00 00 00 00 00 00 4B 34 41 41 47 31 36 +35 57 41 2D 42 43 57 45 20 20 20 20 20 00 80 CE +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 +00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/samsung-K4AAG165WB-MCRC.spd.hex b/src/mainboard/google/kahlee/spd/samsung-K4AAG165WB-MCRC.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/samsung-K4AAG165WB-MCRC.spd.hex rename to src/mainboard/google/kahlee/spd/samsung-K4AAG165WB-MCRC.spd.hex diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/samsung-K4AAG165WB-MCTD.spd.hex b/src/mainboard/google/kahlee/spd/samsung-K4AAG165WB-MCTD.spd.hex similarity index 100% rename from src/mainboard/google/kahlee/variants/baseboard/spd/samsung-K4AAG165WB-MCTD.spd.hex rename to src/mainboard/google/kahlee/spd/samsung-K4AAG165WB-MCTD.spd.hex diff --git a/src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc b/src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc index 213fc05..b6a57b7 100644 --- a/src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc +++ b/src/mainboard/google/kahlee/variants/baseboard/spd/Makefile.inc @@ -14,7 +14,7 @@ ## GNU General Public License for more details. ##
-LIB_SPD_DEPS = $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/variants/baseboard/spd/$(f).spd.hex) +LIB_SPD_DEPS = $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/spd/$(f).spd.hex)
SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 diff --git a/src/mainboard/google/kahlee/variants/careena/Makefile.inc b/src/mainboard/google/kahlee/variants/careena/Makefile.inc index 0579e18..17ea78e 100644 --- a/src/mainboard/google/kahlee/variants/careena/Makefile.inc +++ b/src/mainboard/google/kahlee/variants/careena/Makefile.inc @@ -13,7 +13,7 @@ # GNU General Public License for more details. #
-subdirs-y += ../baseboard/spd +subdirs-y += ./spd
romstage-y += ../baseboard/romstage.c
diff --git a/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc b/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc new file mode 100644 index 0000000..e764baf --- /dev/null +++ b/src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc @@ -0,0 +1,34 @@ +## +## This file is part of the coreboot project. +## +## Copyright (C) 2014 Google Inc. +## Copyright (C) 2015 Intel Corporation. +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; version 2 of the License. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## + +LIB_SPD_DEPS = $(foreach f, $(SPD_SOURCES), src/mainboard/$(MAINBOARDDIR)/spd/$(f).spd.hex) + +SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000 +SPD_SOURCES += hynix-H5ANAG6NAMR-UH # 0b0001 +SPD_SOURCES += micron-MT40A512M16JY-083E-B # 0b0010 +SPD_SOURCES += micron-MT40A1G16KNR-075-E # 0b0011 +SPD_SOURCES += samsung-K4A8G165WB-BCRC # 0b0100 +SPD_SOURCES += samsung-K4AAG165WB-MCRC # 0b0101 +SPD_SOURCES += micron-MT40A512M16LY-075-E # 0b0110 +SPD_SOURCES += hynix-H5ANAG6NCMR-VKC # 0b0111 +SPD_SOURCES += hynix-H5AN8G6NCJR-VKC # 0b1000 +SPD_SOURCES += samsung-K4A8G165WC-BCTD # 0b1001 +SPD_SOURCES += samsung-K4AAG165WB-MCTD # 0b1010 +SPD_SOURCES += micron-MT40A512M16TB-062E-J # 0b1011 +SPD_SOURCES += samsung-K4AAG165WA-BCTD # 0b1100 +SPD_SOURCES += hynix-H5ANAG6NCMR-XNC # 0b1101 +SPD_SOURCES += micron-MT40A1G16RC-062E-B # 0b1110 +SPD_SOURCES += samsung-K4AAG165WA-BCWE # 0b1111
Kevin Chiu has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/35149 )
Change subject: mb/google/kahlee/variants/careena: override DRAM SPD table ......................................................................
Patch Set 6:
(1 comment)
https://review.coreboot.org/c/coreboot/+/35149/5/src/mainboard/google/kahlee... File src/mainboard/google/kahlee/variants/careena/spd/Makefile.inc:
https://review.coreboot.org/c/coreboot/+/35149/5/src/mainboard/google/kahlee... PS5, Line 18: : SPD_SOURCES = hynix-H5AN8G6NAFR-UH # 0b0000
Done
yes, we'll keep reviewing whether there might be any unused DRAM then will remove it. thanks.