aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/cannonlake/include
diff options
context:
space:
mode:
authorShelley Chen <shchen@google.com>2019-02-06 15:21:55 -0800
committerPatrick Georgi <pgeorgi@google.com>2019-02-21 11:31:19 +0000
commit3cce7a0311b85f22e3b653bee1bf1c0e4c7e4e45 (patch)
treeb61a1cf78fea666231248e1920abbda45e48ee04 /src/soc/intel/cannonlake/include
parentd01a995cd3e1adfd5af28a980eedac1fee0dddc1 (diff)
soc/intel/cannonlake: Add field to identify single channel memory
Variants of Hatch need to accommodate single channel DDR. Also, removing const modifier as we'll need to set these fields incrementally now. For the single channel configuration, we set MemorySpdPtr10 to 0. For the dual channel configuration, we set MemorySpdPtr10 to MemorySpdPtr00. BUG=b:123062346, b:122959294 BRANCH=None TEST=Boot into current boards and ensure that we have 2 channels as expected Change-Id: Ice22b103664187834e255d1359bfd9b51993b5b6 Signed-off-by: Shelley Chen <shchen@google.com> Reviewed-on: https://review.coreboot.org/c/31262 Reviewed-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/cannonlake/include')
-rw-r--r--src/soc/intel/cannonlake/include/soc/cnl_memcfg_init.h29
1 files changed, 21 insertions, 8 deletions
diff --git a/src/soc/intel/cannonlake/include/soc/cnl_memcfg_init.h b/src/soc/intel/cannonlake/include/soc/cnl_memcfg_init.h
index 245d2cfd61..c602180592 100644
--- a/src/soc/intel/cannonlake/include/soc/cnl_memcfg_init.h
+++ b/src/soc/intel/cannonlake/include/soc/cnl_memcfg_init.h
@@ -62,7 +62,7 @@ struct cnl_mb_cfg {
* and let the meminit_lpddr4() routine take care of clearing the
* unused fields for the caller.
*/
- const uint8_t dq_map[DDR_NUM_CHANNELS][3][DDR_NUM_PACKAGES];
+ uint8_t dq_map[DDR_NUM_CHANNELS][3][DDR_NUM_PACKAGES];
/*
* DQS CPU<>DRAM map Ch0 and Ch1. Each array entry represents a
@@ -71,38 +71,51 @@ struct cnl_mb_cfg {
* on the memory part, and the values in the array represent which
* pin on the CPU that DRAM pin connects to.
*/
- const uint8_t dqs_map[DDR_NUM_CHANNELS][DQ_BITS_PER_DQS];
+ uint8_t dqs_map[DDR_NUM_CHANNELS][DQ_BITS_PER_DQS];
/*
* Rcomp resistor values. These values represent the resistance in
* ohms of the three rcomp resistors attached to the DDR_COMP_0,
* DDR_COMP_1, and DDR_COMP_2 pins on the DRAM.
*/
- const uint16_t rcomp_resistor[3];
+ uint16_t rcomp_resistor[3];
/*
* Rcomp target values. These will typically be the following
* values for Cannon Lake : { 80, 40, 40, 40, 30 }
*/
- const uint16_t rcomp_targets[5];
+ uint16_t rcomp_targets[5];
/*
* Indicates whether memory is interleaved.
* Set to 1 for an interleaved design,
* set to 0 for non-interleaved design.
*/
- const uint8_t dq_pins_interleaved;
+ uint8_t dq_pins_interleaved;
/*
- * VREF_CA configuraation.
+ * VREF_CA configuration.
* Set to 0 VREF_CA goes to both CH_A and CH_B,
* set to 1 VREF_CA goes to CH_A and VREF_DQ_A goes to CH_B,
* set to 2 VREF_CA goes to CH_A and VREF_DQ_B goes to CH_B.
*/
- const uint8_t vref_ca_config;
+ uint8_t vref_ca_config;
/* Early Command Training Enabled */
- const uint8_t ect;
+ uint8_t ect;
+
+ /*
+ * Flags to indicate which channels are populated. We
+ * currently support single or dual channel configurations.
+ * Set 1 to indicate that the channel is not populated Set 0
+ * to indicate that the channel is populated. For example,
+ * dual channel memory configuration would have both
+ * channel_empty[0] = 0 and channel_empty[1] = 0. Note that
+ * this flag is only used for soldered down DRAM where we get
+ * SPD data from CBFS. We need the value 0 to default to
+ * populated in order to support existing boards.
+ */
+ uint8_t channel_empty[2];
};
/*