blob: f3cdf5ff2869125ab8c68b8b0d244eff653194db [file] [log] [blame]
Subrata Banikc8062ff2023-07-07 09:21:22 +00001/* SPDX-License-Identifier: GPL-3.0-or-later */
2
3#include <baseboard/variants.h>
4
5bool variant_is_half_populated(void)
6{
7 /*
8 * FIXME: b/290253752 - Memory Capacity is incorrect
9 * MEM_CH_SEL GPIO (GPP_E13) is not working as expected on Ovis as result
10 * channel select configuration is set to single (MC0) instead dual (MC0/1).
11 * Only MC0 is reporting DIMM attached and MC1 is disable.
12 *
13 * W/A: Always report full memory capacity as in dual channel (MC0/1).
14 */
15 return false;
16}