summaryrefslogtreecommitdiff
path: root/util/intelp2m/parser/template.go
diff options
context:
space:
mode:
authorMaxim Polyakov <max.senia.poliak@gmail.com>2020-04-26 22:12:01 +0300
committerFelix Held <felix-coreboot@felixheld.de>2020-07-28 22:06:02 +0000
commit82ec61e9d7a39a11c9b8ed68eb90bd29905439bc (patch)
treeff68be99e8bf9d92c4adfbadd457c317a2414418 /util/intelp2m/parser/template.go
parent8079c5c1c2b76ebd01cfcddcef4b5398ee860403 (diff)
downloadcoreboot-82ec61e9d7a39a11c9b8ed68eb90bd29905439bc.tar.xz
util/intelp2m: Add Intel Pad to Macro utility
This patch adds a new utility for converting a pad configuration from the inteltool dump to the PAD_CFG_*() macros [1] for coreboot and GPIO config data structures for FSP/sdk2-platforms/slimbootloader [2,3]. Mirror: https://github.com/maxpoliak/pch-pads-parser.git [1] src/soc/intel/common/block/include/intelblocks/gpio_defs.h [2] https://slimbootloader.github.io/tools/index.html#gpio-tool [3] 3rdparty/fsp/CometLakeFspBinPkg/CometLake1/Include/GpioSampleDef.h Change-Id: If3e3b523c4f63dc2f91e9ccd16934e3a1b6e21fa Signed-off-by: Maxim Polyakov <max.senia.poliak@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35643 Reviewed-by: Andrey Petrov <andrey.petrov@gmail.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/intelp2m/parser/template.go')
-rw-r--r--util/intelp2m/parser/template.go132
1 files changed, 132 insertions, 0 deletions
diff --git a/util/intelp2m/parser/template.go b/util/intelp2m/parser/template.go
new file mode 100644
index 0000000000..bc7d702928
--- /dev/null
+++ b/util/intelp2m/parser/template.go
@@ -0,0 +1,132 @@
+package parser
+
+import (
+ "fmt"
+ "strings"
+ "unicode"
+)
+
+type template func(string, *string, *string, *uint32, *uint32) int
+
+// extractPadFuncFromComment
+// line : string from file with pad config map
+// return : pad function string
+func extractPadFuncFromComment(line string) string {
+ if !strings.Contains(line, "/*") && !strings.Contains(line, "*/") {
+ return ""
+ }
+
+ fields := strings.Fields(line)
+ for i, field := range fields {
+ if field == "/*" && len(fields) >= i+2 {
+ return fields[i+1]
+ }
+ }
+ return ""
+}
+
+// tokenCheck
+func tokenCheck(c rune) bool {
+ return c != '_' && c != '#' && !unicode.IsLetter(c) && !unicode.IsNumber(c)
+}
+
+// useGpioHTemplate
+// line : string from file with pad config map
+// *function : the string that means the pad function
+// *id : pad id string
+// *dw0 : DW0 register value
+// *dw1 : DW1 register value
+// return
+// error status
+func useInteltoolLogTemplate(line string, function *string,
+ id *string, dw0 *uint32, dw1 *uint32) int {
+
+ var val uint64
+ // 0x0520: 0x0000003c44000600 GPP_B12 SLP_S0#
+ // 0x0438: 0xffffffffffffffff GPP_C7 RESERVED
+ if fields := strings.FieldsFunc(line, tokenCheck); len(fields) >= 4 {
+ fmt.Sscanf(fields[1], "0x%x", &val)
+ *dw0 = uint32(val & 0xffffffff)
+ *dw1 = uint32(val >> 32)
+ *id = fields[2]
+ *function = fields[3]
+ // Sometimes the configuration file contains compound functions such as
+ // SUSWARN#/SUSPWRDNACK. Since the template does not take this into account,
+ // need to collect all parts of the pad function back into a single word
+ for i := 4; i < len(fields); i++ {
+ *function += "/" + fields[i]
+ }
+ // clear RO Interrupt Select (INTSEL)
+ *dw1 &= 0xffffff00
+ }
+ return 0
+}
+
+// useGpioHTemplate
+// line : string from file with pad config map
+// *function : the string that means the pad function
+// *id : pad id string
+// *dw0 : DW0 register value
+// *dw1 : DW1 register value
+// return
+// error status
+func useGpioHTemplate(line string, function *string,
+ id *string, dw0 *uint32, dw1 *uint32) int {
+
+ // /* RCIN# */ _PAD_CFG_STRUCT(GPP_A0, 0x44000702, 0x00000000),
+ // _PAD_CFG_STRUCT(GPP_A0, 0x44000702, 0x00000000), /* RCIN# */
+ // _PAD_CFG_STRUCT(GPP_A0, 0x44000702, 0x00000000)
+ fields := strings.FieldsFunc(line, tokenCheck)
+ for i, field := range fields {
+ if field == "_PAD_CFG_STRUCT" {
+ if len(fields) < 4 {
+ /* the number of definitions does not match the format */
+ return -1
+ }
+
+ if !strings.Contains(fields[i+2], "0x") || !strings.Contains(fields[i+3], "0x") {
+ /* definitions inside the macro do not match the pattern */
+ return -1
+ }
+ *id = fields[i+1]
+ fmt.Sscanf(fields[i+2], "0x%x", dw0)
+ fmt.Sscanf(fields[i+3], "0x%x", dw1)
+ *function = extractPadFuncFromComment(line)
+ return 0
+ }
+ }
+ return -1
+}
+
+// useYourTemplate
+func useYourTemplate(line string, function *string,
+ id *string, dw0 *uint32, dw1 *uint32) int {
+
+ // ADD YOUR TEMPLATE HERE
+ *function = ""
+ *id = ""
+ *dw0 = 0
+ *dw1 = 0
+
+ fmt.Printf("ADD YOUR TEMPLATE!\n")
+ return -1
+}
+
+// registerInfoTemplate
+// line : (in) string from file with pad config map
+// *name : (out) register name
+// *offset : (out) offset name
+// *value : (out) register value
+// return
+// error status
+func registerInfoTemplate(line string, name *string, offset *uint32, value *uint32) int {
+ // 0x0088: 0x00ffffff (HOSTSW_OWN_GPP_F)
+ // 0x0100: 0x00000000 (GPI_IS_GPP_A)
+ if fields := strings.FieldsFunc(line, tokenCheck); len(fields) == 3 {
+ *name = fields[2]
+ fmt.Sscanf(fields[1], "0x%x", value)
+ fmt.Sscanf(fields[0], "0x%x", offset)
+ return 0
+ }
+ return -1
+}