summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Hsu <morris-hsu@quanta.corp-partner.google.com>2023-02-04 10:21:38 +0800
committerEric Lai <eric_lai@quanta.corp-partner.google.com>2023-02-10 08:26:03 +0000
commitb3034ebae2c1a4c36d7f6b9a55222cf13ed1d11c (patch)
tree688a52ca0d5f24ef8d828019815e870193840036
parentc48631ab681c1cf405f3f87cd06042fe5eeceafb (diff)
mb/google/brya/var/constitution: Add SOLDERDOWN support
Constitution will use SOLDERDOWN. Add memory.c to override baseboard. Add mem_parts_used.txt and generate dram_id.generated.txt and Makefile.inc Memory: SAMSUNG K4U6E3S4AB-MGCL MICRON MT53E1G32D2NP-046 WT:B BUG=b:267539938 BRANCH=None TEST=util/abuild/abuild -p none -t google/brya -x -a Change-Id: Id879b2a7491f29e9fca903dcf3c022ec8ffffab4 Signed-off-by: Morris Hsu <morris-hsu@quanta.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/72775 Reviewed-by: David Wu <david_wu@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
-rw-r--r--src/mainboard/google/brya/Kconfig2
-rw-r--r--src/mainboard/google/brya/Kconfig.name1
-rw-r--r--src/mainboard/google/brya/variants/constitution/Makefile.inc2
-rw-r--r--src/mainboard/google/brya/variants/constitution/memory.c103
-rw-r--r--src/mainboard/google/brya/variants/constitution/memory/Makefile.inc8
-rw-r--r--src/mainboard/google/brya/variants/constitution/memory/dram_id.generated.txt8
-rw-r--r--src/mainboard/google/brya/variants/constitution/memory/mem_parts_used.txt2
7 files changed, 125 insertions, 1 deletions
diff --git a/src/mainboard/google/brya/Kconfig b/src/mainboard/google/brya/Kconfig
index edebbb30c2..a99168436e 100644
--- a/src/mainboard/google/brya/Kconfig
+++ b/src/mainboard/google/brya/Kconfig
@@ -53,7 +53,7 @@ config BOARD_GOOGLE_BASEBOARD_BRASK
select BOARD_ROMSIZE_KB_32768
select ENABLE_TCSS_DISPLAY_DETECTION if RUN_FSP_GOP
select HAVE_SLP_S0_GATE
- select MEMORY_SODIMM
+ select MEMORY_SODIMM if !BOARD_GOOGLE_CONSTITUTION
select RT8168_GEN_ACPI_POWER_RESOURCE
select RT8168_GET_MAC_FROM_VPD
select RT8168_SET_LED_MODE
diff --git a/src/mainboard/google/brya/Kconfig.name b/src/mainboard/google/brya/Kconfig.name
index e840e79271..71814bb123 100644
--- a/src/mainboard/google/brya/Kconfig.name
+++ b/src/mainboard/google/brya/Kconfig.name
@@ -336,6 +336,7 @@ config BOARD_GOOGLE_OMNIGUL
config BOARD_GOOGLE_CONSTITUTION
bool "-> Constitution"
select BOARD_GOOGLE_BASEBOARD_BRASK
+ select MEMORY_SOLDERDOWN
config BOARD_GOOGLE_AURASH
bool "-> Aurash"
diff --git a/src/mainboard/google/brya/variants/constitution/Makefile.inc b/src/mainboard/google/brya/variants/constitution/Makefile.inc
new file mode 100644
index 0000000000..c44e4f0364
--- /dev/null
+++ b/src/mainboard/google/brya/variants/constitution/Makefile.inc
@@ -0,0 +1,2 @@
+# SPDX-License-Identifier: GPL-2.0-only
+romstage-y += memory.c
diff --git a/src/mainboard/google/brya/variants/constitution/memory.c b/src/mainboard/google/brya/variants/constitution/memory.c
new file mode 100644
index 0000000000..b68ec2125a
--- /dev/null
+++ b/src/mainboard/google/brya/variants/constitution/memory.c
@@ -0,0 +1,103 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#include <baseboard/gpio.h>
+#include <baseboard/variants.h>
+#include <gpio.h>
+
+static const struct mb_cfg baseboard_memcfg = {
+ .type = MEM_TYPE_LP4X,
+
+ .rcomp = {
+ /* Baseboard uses only 100ohm Rcomp resistors */
+ .resistor = 100,
+
+ /* Baseboard Rcomp target values */
+ .targets = {40, 30, 30, 30, 30},
+ },
+
+ /* DQ byte map as per doc #573387 */
+ .lpx_dq_map = {
+ .ddr0 = {
+ .dq0 = { 3, 0, 2, 1, 4, 6, 5, 7, },
+ .dq1 = { 12, 13, 14, 15, 8, 9, 10, 11, },
+ },
+ .ddr1 = {
+ .dq0 = { 13, 14, 11, 12, 10, 8, 15, 9, },
+ .dq1 = { 5, 2, 4, 3, 1, 6, 0, 7, },
+ },
+ .ddr2 = {
+ .dq0 = { 2, 3, 1, 0, 7, 6, 5, 4, },
+ .dq1 = { 12, 13, 14, 15, 8, 9, 10, 11, },
+ },
+ .ddr3 = {
+ .dq0 = { 13, 14, 12, 15, 11, 9, 8, 10, },
+ .dq1 = { 5, 2, 1, 4, 7, 0, 3, 6, },
+ },
+ .ddr4 = {
+ .dq0 = { 11, 10, 8, 9, 14, 15, 13, 12, },
+ .dq1 = { 3, 0, 2, 1, 5, 4, 6, 7, },
+ },
+ .ddr5 = {
+ .dq0 = { 11, 15, 13, 12, 10, 9, 14, 8, },
+ .dq1 = { 3, 0, 2, 1, 6, 7, 5, 4, },
+ },
+ .ddr6 = {
+ .dq0 = { 11, 13, 10, 12, 15, 9, 14, 8, },
+ .dq1 = { 4, 3, 5, 2, 7, 0, 1, 6, },
+ },
+ .ddr7 = {
+ .dq0 = { 12, 13, 15, 14, 11, 9, 10, 8, },
+ .dq1 = { 4, 5, 1, 2, 6, 3, 0, 7, },
+ },
+ },
+
+ /* DQS CPU<>DRAM map as per doc #573387 */
+ .lpx_dqs_map = {
+ .ddr0 = { .dqs0 = 0, .dqs1 = 1 },
+ .ddr1 = { .dqs0 = 1, .dqs1 = 0 },
+ .ddr2 = { .dqs0 = 0, .dqs1 = 1 },
+ .ddr3 = { .dqs0 = 1, .dqs1 = 0 },
+ .ddr4 = { .dqs0 = 1, .dqs1 = 0 },
+ .ddr5 = { .dqs0 = 1, .dqs1 = 0 },
+ .ddr6 = { .dqs0 = 1, .dqs1 = 0 },
+ .ddr7 = { .dqs0 = 1, .dqs1 = 0 },
+ },
+
+ .ect = 1, /* Enable Early Command Training */
+};
+
+const struct mb_cfg *variant_memory_params(void)
+{
+ return &baseboard_memcfg;
+}
+
+int variant_memory_sku(void)
+{
+ /*
+ * Memory configuration board straps
+ * GPIO_MEM_CONFIG_0 GPP_F16
+ * GPIO_MEM_CONFIG_1 GPP_F12
+ * GPIO_MEM_CONFIG_2 GPP_F13
+ * GPIO_MEM_CONFIG_3 GPP_F15
+ */
+ gpio_t spd_gpios[] = {
+ GPP_F16,
+ GPP_F12,
+ GPP_F13,
+ GPP_F15,
+ };
+
+ return gpio_base2_value(spd_gpios, ARRAY_SIZE(spd_gpios));
+}
+
+bool variant_is_half_populated(void)
+{
+ /* GPIO_MEM_CH_SEL GPP_F11 */
+ return gpio_get(GPP_F11);
+}
+
+void variant_get_spd_info(struct mem_spd *spd_info)
+{
+ spd_info->topo = MEM_TOPO_MEMORY_DOWN;
+ spd_info->cbfs_index = variant_memory_sku();
+}
diff --git a/src/mainboard/google/brya/variants/constitution/memory/Makefile.inc b/src/mainboard/google/brya/variants/constitution/memory/Makefile.inc
new file mode 100644
index 0000000000..5af5272df7
--- /dev/null
+++ b/src/mainboard/google/brya/variants/constitution/memory/Makefile.inc
@@ -0,0 +1,8 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+# This is an auto-generated file. Do not edit!!
+# Generated by:
+# ./util/spd_tools/bin/part_id_gen ADL lp4x src/mainboard/google/brya/variants/constitution/memory src/mainboard/google/brya/variants/constitution/memory/mem_parts_used.txt
+
+SPD_SOURCES =
+SPD_SOURCES += spd/lp4x/set-0/spd-1.hex # ID = 0(0b0000) Parts = K4U6E3S4AB-MGCL
+SPD_SOURCES += spd/lp4x/set-0/spd-3.hex # ID = 1(0b0001) Parts = MT53E1G32D2NP-046 WT:B
diff --git a/src/mainboard/google/brya/variants/constitution/memory/dram_id.generated.txt b/src/mainboard/google/brya/variants/constitution/memory/dram_id.generated.txt
new file mode 100644
index 0000000000..30dc4e0c9f
--- /dev/null
+++ b/src/mainboard/google/brya/variants/constitution/memory/dram_id.generated.txt
@@ -0,0 +1,8 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+# This is an auto-generated file. Do not edit!!
+# Generated by:
+# ./util/spd_tools/bin/part_id_gen ADL lp4x src/mainboard/google/brya/variants/constitution/memory src/mainboard/google/brya/variants/constitution/memory/mem_parts_used.txt
+
+DRAM Part Name ID to assign
+K4U6E3S4AB-MGCL 0 (0000)
+MT53E1G32D2NP-046 WT:B 1 (0001)
diff --git a/src/mainboard/google/brya/variants/constitution/memory/mem_parts_used.txt b/src/mainboard/google/brya/variants/constitution/memory/mem_parts_used.txt
new file mode 100644
index 0000000000..d80a500cca
--- /dev/null
+++ b/src/mainboard/google/brya/variants/constitution/memory/mem_parts_used.txt
@@ -0,0 +1,2 @@
+K4U6E3S4AB-MGCL
+MT53E1G32D2NP-046 WT:B