aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorKarthikeyan Ramasubramanian <kramasub@chromium.org>2022-02-24 23:03:40 -0700
committerKarthik Ramasubramanian <kramasub@google.com>2022-03-08 23:46:50 +0000
commitf53214677caca8077d83fbde3d351a2899cdae16 (patch)
treead337b084e6d270619e620f7ab7d2df442976a22 /util
parent83c27fd50a6aa922efda1a5972c44f8a7e878fb7 (diff)
util/spd_tools: Encode SDRAM min cycle time (TCKMinPs)
ADL encodes CK cycle time as tCKMin whereas Sabrina encodes WCK cycle time. Encode tCKMin as per the respective advisories. BUG=None TEST=Generate the SPD and ensure that tCKMin is encoded accordingly. Minimum CAS Latency time is also impacted and is encoded accordingly. Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com> Change-Id: I99ada7ead3a75befb0f934af871eecc060adcb26 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62387 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Reka Norman <rekanorman@chromium.org>
Diffstat (limited to 'util')
-rw-r--r--util/spd_tools/src/spd_gen/lp5.go46
1 files changed, 36 insertions, 10 deletions
diff --git a/util/spd_tools/src/spd_gen/lp5.go b/util/spd_tools/src/spd_gen/lp5.go
index c8bcaf5b23..060cb2ad69 100644
--- a/util/spd_tools/src/spd_gen/lp5.go
+++ b/util/spd_tools/src/spd_gen/lp5.go
@@ -44,7 +44,7 @@ type LP5DensityParams struct {
}
type LP5SpeedParams struct {
- TCKMinPs int
+ defaultTCKMinPs int
MaxCASLatency int
}
@@ -69,6 +69,7 @@ type LP5Set struct {
optionalFeatures byte
otherOptionalFeatures byte
busWidthEncoding byte
+ speedToTCKMinPs map[int]int
}
/* ------------------------------------------------------------------------------------------ */
@@ -194,6 +195,19 @@ var LP5SetInfo = map[int]LP5Set{
* Set to 0x01.
*/
busWidthEncoding: 0x01,
+ /*
+ * TCKMinPs:
+ * LPDDR5 has two clocks: the command/address clock (CK) and the data clock (WCK). They are
+ * related by the WCK:CK ratio, which can be either 4:1 or 2:1. On ADL, 4:1 is used.
+ * For ADL, the MRC expects the tCKmin to encode the CK cycle time.
+ * tCKmin = 1 / CK rate
+ * = 1 / (WCK rate / WCK:CK)
+ * = 1 / (speed grade / 2 / WCK:CK) // "double data rate"
+ */
+ speedToTCKMinPs: map[int]int{
+ 6400 : 1250, /* 1 / (6400 / 2 / 4) */
+ 5500 : 1455, /* 1 / (5500 / 2 / 4) */
+ },
},
1: {
SPDRevision: LP5SPDValueRevision1_1,
@@ -346,23 +360,20 @@ var LP5BankArchToSPDEncoding = map[int]LP5BankArchParams{
/*
* TCKMinPs:
- * LPDDR5 has two clocks: the command/address clock (CK) and the data clock (WCK). They are
- * related by the WCK:CK ratio, which can be either 4:1 or 2:1. On ADL, 4:1 is used.
- * For ADL, the MRC expects the tCKmin to encode the CK period. This is calculated as:
- * tCKmin = 1 / CK rate
- * = 1 / (WCK rate / WCK:CK)
- * = 1 / (speed grade / 2 / WCK:CK) // "double data rate"
+ * Data sheets recommend encoding the the WCK cycle time.
+ * tCKmin = 1 / WCK rate
+ * = 1 / (speed grade / 2) // "double data rate"
*
* MaxCASLatency:
* From Table 220 of JESD209-5B, using a 4:1 WCK:CK ratio and Set 0.
*/
var LP5SpeedMbpsToSPDEncoding = map[int]LP5SpeedParams{
6400: {
- TCKMinPs: 1250, /* 1 / (6400 / 2 / 4) */
+ defaultTCKMinPs : 312, /* 1 / (6400 / 2) */
MaxCASLatency: 17,
},
5500: {
- TCKMinPs: 1455, /* 1 / (5500 / 2 / 4) */
+ defaultTCKMinPs : 363, /* 1 / (5500 / 2) */
MaxCASLatency: 15,
},
}
@@ -550,6 +561,21 @@ func LP5EncodeBusWidth(memAttribs *LP5MemAttributes) byte {
return f.busWidthEncoding
}
+func LP5GetTCKMinPs(memAttribs *LP5MemAttributes) int {
+ f, ok := LP5SetInfo[LP5CurrSet]
+
+ if ok == false || f.speedToTCKMinPs == nil {
+ return LP5SpeedMbpsToSPDEncoding[memAttribs.SpeedMbps].defaultTCKMinPs
+ }
+
+ tCKMinPs, ok := f.speedToTCKMinPs[memAttribs.SpeedMbps]
+ if ok == false || tCKMinPs == 0 {
+ fmt.Printf("TCKMinPs not defined for speed %d(Mbps) in LP5Set %d\n", memAttribs.SpeedMbps, LP5CurrSet)
+ }
+
+ return tCKMinPs
+}
+
func LP5EncodeTCKMin(memAttribs *LP5MemAttributes) byte {
return convPsToMtbByte(memAttribs.TCKMinPs)
}
@@ -608,7 +634,7 @@ func LP5EncodeTRFCPBMinLsb(memAttribs *LP5MemAttributes) byte {
func LP5UpdateTCKMin(memAttribs *LP5MemAttributes) {
if memAttribs.TCKMinPs == 0 {
- memAttribs.TCKMinPs = LP5SpeedMbpsToSPDEncoding[memAttribs.SpeedMbps].TCKMinPs
+ memAttribs.TCKMinPs = LP5GetTCKMinPs(memAttribs)
}
}