aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/dedede/variants/baseboard/memory.c
diff options
context:
space:
mode:
authorKarthikeyan Ramasubramanian <kramasub@google.com>2020-04-20 11:37:52 -0600
committerPatrick Georgi <pgeorgi@google.com>2020-05-01 06:15:26 +0000
commit8d09cf61860e743b35a9158163654c8d2bd3c189 (patch)
treecb1b278ffa89d1b0b198e9fe2cbeebf78cc465ea /src/mainboard/google/dedede/variants/baseboard/memory.c
parentf60a8f02c5d6eed7249a4e60c1d6df373d047eb0 (diff)
mb/google/dedede: Remove pad termination for RAM_STRAP_4
The stuffed resistor straps are weaker compared to the internal pull-up. This can cause the GPIO to read '1' always. Remove the internal pull-up. Also read the GPIO only on the boards where the board version is populated. BUG=b:154301008 TEST=Build and boot the mainboard. Change-Id: Ib640211b9f50dfb0174a570eda1625bacbebb855 Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40531 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/mainboard/google/dedede/variants/baseboard/memory.c')
-rw-r--r--src/mainboard/google/dedede/variants/baseboard/memory.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainboard/google/dedede/variants/baseboard/memory.c b/src/mainboard/google/dedede/variants/baseboard/memory.c
index 08c3bde29f..120cb4e43e 100644
--- a/src/mainboard/google/dedede/variants/baseboard/memory.c
+++ b/src/mainboard/google/dedede/variants/baseboard/memory.c
@@ -70,3 +70,8 @@ int __weak variant_memory_sku(void)
return gpio_base2_value(spd_gpios, ARRAY_SIZE(spd_gpios));
}
+
+bool __weak variant_mem_is_half_populated(void)
+{
+ return !gpio_get(GPIO_MEM_CH_SEL);
+}