aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/auron/variant.h
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2021-06-23 13:55:56 +0200
committerFelix Held <felix-coreboot@felixheld.de>2021-08-27 16:03:32 +0000
commit19f1e9104a5ae08d031b108a9640bf0f61f61b79 (patch)
treeacd363b8be339593845f2c2b76a06a86daeea85a /src/mainboard/google/auron/variant.h
parent3533808a6dbe335fa76bc82869fb6e9719b250ab (diff)
mb/google/auron: Refactor memory-down SPD handling
Variants only need to provide the SPD index and whether said index corresponds to a dual-channel configuration, which can be achieved without using `pei_data`. Add two functions that return the values and use them in `spd.c` at mainboard level. Change-Id: I9bc4527057d4a771883c8cc60da2501516d6fb94 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/55803 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Diffstat (limited to 'src/mainboard/google/auron/variant.h')
-rw-r--r--src/mainboard/google/auron/variant.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mainboard/google/auron/variant.h b/src/mainboard/google/auron/variant.h
index ba4c58a9e1..d471576bc4 100644
--- a/src/mainboard/google/auron/variant.h
+++ b/src/mainboard/google/auron/variant.h
@@ -11,8 +11,7 @@ int variant_smbios_data(struct device *dev, int *handle,
unsigned long *current);
void lan_init(void);
-void fill_spd_for_index(uint8_t spd[], unsigned int index);
-
-#define SPD_LEN 256
+unsigned int variant_get_spd_index(void);
+bool variant_is_dual_channel(const unsigned int spd_index);
#endif