diff options
author | Seunghwan Kim <sh_.kim@samsung.com> | 2019-02-18 17:26:08 +0900 |
---|---|---|
committer | Furquan Shaikh <furquan@google.com> | 2019-03-05 04:50:59 +0000 |
commit | 7c2b50894cd84d46a8437804668654e84a2bc6a7 (patch) | |
tree | 87c518e4dc8752a9c8cc719bc0d2a165d9d78fca | |
parent | 3ee8b750f49b7c82e8b8787ee306017746e8c12a (diff) | |
download | coreboot-7c2b50894cd84d46a8437804668654e84a2bc6a7.tar.xz |
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>
-rw-r--r-- | src/mainboard/google/octopus/variants/baseboard/memory.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mainboard/google/octopus/variants/baseboard/memory.c b/src/mainboard/google/octopus/variants/baseboard/memory.c index d81d31f980..0ff376f734 100644 --- a/src/mainboard/google/octopus/variants/baseboard/memory.c +++ b/src/mainboard/google/octopus/variants/baseboard/memory.c @@ -189,6 +189,12 @@ static const struct lpddr4_sku cbi_skus[] = { .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 = { |