diff options
author | Wisley Chen <wisley.chen@quantatw.com> | 2019-11-08 13:51:31 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-11-14 11:29:11 +0000 |
commit | 571b14ef2374599888ff4e38c19522a081adefde (patch) | |
tree | 8c29eadf7d40f08d0193ff638cf5fc6c60daa474 /src/mainboard/google/hatch/variants | |
parent | ae695757f43a5a730e16132ab830d76c10ba8daf (diff) |
/mb/google/hatch/var/dratini: Add new memory support
1. ram id 8: 16G 2666 2 bank groups memory
2. ram id 9: 16G 3200 4 bank groups memory
BUG=b:142762387
TEST=boot with memory (KAAG165WA-BCT/H5ANAG6NCMR-XNC)
Change-Id: Ic63d911458b59de11c12ce776f6f7d04b1eb3b6c
Signed-off-by: Wisley Chen <wisley.chen@quantatw.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36667
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google/hatch/variants')
-rw-r--r-- | src/mainboard/google/hatch/variants/dratini/Makefile.inc | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/mainboard/google/hatch/variants/dratini/Makefile.inc b/src/mainboard/google/hatch/variants/dratini/Makefile.inc index 8b7e3d1014..4ed09c9a76 100644 --- a/src/mainboard/google/hatch/variants/dratini/Makefile.inc +++ b/src/mainboard/google/hatch/variants/dratini/Makefile.inc @@ -12,14 +12,16 @@ ## GNU General Public License for more details. ## -SPD_SOURCES = 4G_2400 # 0b000 -SPD_SOURCES += empty_ddr4 # 0b001 -SPD_SOURCES += 8G_2400 # 0b010 -SPD_SOURCES += 8G_2666 # 0b011 -SPD_SOURCES += 16G_2400 # 0b100 -SPD_SOURCES += 16G_2666 # 0b101 -SPD_SOURCES += 8G_3200 # 0b110 -SPD_SOURCES += 16G_3200 # 0b111 +SPD_SOURCES = 4G_2400 # 0b0000 +SPD_SOURCES += empty_ddr4 # 0b0001 +SPD_SOURCES += 8G_2400 # 0b0010 +SPD_SOURCES += 8G_2666 # 0b0011 +SPD_SOURCES += 16G_2400 # 0b0100 +SPD_SOURCES += 16G_2666 # 0b0101 +SPD_SOURCES += 8G_3200 # 0b0110 +SPD_SOURCES += 16G_3200 # 0b0111 +SPD_SOURCES += 16G_2666_2bg # 0b1000 +SPD_SOURCES += 16G_3200_4bg # 0b1001 bootblock-y += gpio.c ramstage-y += gpio.c |