diff options
author | Wisley Chen <wisley.chen@quantatw.com> | 2018-09-18 13:25:53 +0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-09-20 17:11:47 +0000 |
commit | 7e56626b0a17f2f9e147e549a17d9b59f509572f (patch) | |
tree | 8fcd86c955bd06a5019a3992ca23f2efb7f108f6 | |
parent | 063e1567d8fcb397f08fc3d427f3c23cfefe85e3 (diff) |
mb/google/octopus: Enable DRAM_PART_NUM_IN_CBI feature for meep
Enable DRAM_PART_NUM_IN_CBI feature to get DRAM part number from CBI
and set DRAM_PART_IN_CBI_BOARD_ID_MIN to 1 for EVT.
BUG=b:115965629
TEST=verified it in meep proto board which rework ram id.
Signed-off-by: Wisley Chen <wisley.chen@quantatw.com>
Change-Id: I962b099d5b9fbe0ca29708be1e9c6ed60b10d363
Reviewed-on: https://review.coreboot.org/28658
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Justin TerAvest <teravest@chromium.org>
-rw-r--r-- | src/mainboard/google/octopus/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/google/octopus/Kconfig b/src/mainboard/google/octopus/Kconfig index 7ecb4860d5..91d55aca81 100644 --- a/src/mainboard/google/octopus/Kconfig +++ b/src/mainboard/google/octopus/Kconfig @@ -112,6 +112,7 @@ config TPM_TIS_ACPI_INTERRUPT config DRAM_PART_NUM_IN_CBI bool default y if BOARD_GOOGLE_PHASER + default y if BOARD_GOOGLE_MEEP config DRAM_PART_NUM_ALWAYS_IN_CBI bool @@ -125,7 +126,7 @@ config DRAM_PART_IN_CBI_BOARD_ID_MIN default 2 if BOARD_GOOGLE_PHASER default 9 if BOARD_GOOGLE_FLEEX default 9 if BOARD_GOOGLE_BOBBA - default 9 if BOARD_GOOGLE_MEEP + default 1 if BOARD_GOOGLE_MEEP default 255 if BOARD_GOOGLE_OCTOPUS endif # BOARD_GOOGLE_OCTOPUS |