Furquan Shaikh has submitted this change and it was merged. ( https://review.coreboot.org/c/coreboot/+/31460 )
Change subject: mb/google/octopus: Add 6GB dual-channel memory configuration ......................................................................
mb/google/octopus: Add 6GB dual-channel memory configuration
Add 6GB dual-channel memory configuration for future use.
BUG=b:124634885 BRANCH=octopus TEST=emerge-octopus coreboot
Change-Id: I36d6c704ac6708b29cc570a2209eeb32de6148b3 Signed-off-by: Seunghwan Kim sh_.kim@samsung.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/31460 Reviewed-by: Furquan Shaikh furquan@google.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/mainboard/google/octopus/variants/baseboard/memory.c 1 file changed, 6 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Furquan Shaikh: Looks good to me, approved
diff --git a/src/mainboard/google/octopus/variants/baseboard/memory.c b/src/mainboard/google/octopus/variants/baseboard/memory.c index d81d31f..0ff376f 100644 --- a/src/mainboard/google/octopus/variants/baseboard/memory.c +++ b/src/mainboard/google/octopus/variants/baseboard/memory.c @@ -189,6 +189,12 @@ .ch1_rank_density = LP4_8Gb_DENSITY, .ch1_dual_rank = 1, }, + /* Dual Channel Config 6GiB System Capacity */ + [7] = { + .speed = LP4_SPEED_2400, + .ch0_rank_density = LP4_12Gb_DENSITY, + .ch1_rank_density = LP4_12Gb_DENSITY, + }, };
static const struct lpddr4_cfg cbi_lp4cfg = {