arch/arm64: Support FEAT_CCIDX
[coreboot2.git] / util / intelp2m / main.go
blobdc78778016d021ac5787552d31c7fb2b80878baf
1 package main
3 import (
4 "flag"
5 "fmt"
6 "os"
8 "review.coreboot.org/coreboot.git/util/intelp2m/config"
9 "review.coreboot.org/coreboot.git/util/intelp2m/parser"
12 // generateOutputFile - generates include file
13 // parser : parser data structure
14 func generateOutputFile(parser *parser.ParserData) (err error) {
16 config.OutputGenFile.WriteString(`/* SPDX-License-Identifier: GPL-2.0-only */
18 #ifndef CFG_GPIO_H
19 #define CFG_GPIO_H
21 #include <gpio.h>
23 /* Pad configuration was generated automatically using intelp2m utility */
24 static const struct pad_config gpio_table[] = {
26 // Add the pads map
27 parser.PadMapFprint()
28 config.OutputGenFile.WriteString(`};
30 #endif /* CFG_GPIO_H */
32 return nil
35 // main
36 func main() {
37 // Command line arguments
38 inputFileName := flag.String("file",
39 "inteltool.log",
40 "the path to the inteltool log file\n")
42 outputFileName := flag.String("o",
43 "generate/gpio.h",
44 "the path to the generated file with GPIO configuration\n")
46 ignFlag := flag.Bool("ign",
47 false,
48 "exclude fields that should be ignored from advanced macros\n")
50 nonCheckFlag := flag.Bool("n",
51 false,
52 "Generate macros without checking.\n" +
53 "\tIn this case, some fields of the configuration registers\n" +
54 "\tDW0 will be ignored.\n")
56 infoLevels := []*bool {
57 flag.Bool("i", false, "Show pads function in the comments"),
58 flag.Bool("ii", false, "Show DW0/DW1 value in the comments"),
59 flag.Bool("iii", false, "Show ignored bit fields in the comments"),
60 flag.Bool("iiii", false, "Show target PAD_CFG() macro in the comments"),
63 template := flag.Int("t", 0, "template type number\n"+
64 "\t0 - inteltool.log (default)\n"+
65 "\t1 - gpio.h\n"+
66 "\t2 - your template\n\t")
68 platform := flag.String("p", "snr", "set platform:\n"+
69 "\tsnr - Sunrise PCH or Skylake/Kaby Lake SoC\n"+
70 "\tlbg - Lewisburg PCH with Xeon SP\n"+
71 "\tapl - Apollo Lake SoC\n"+
72 "\tcnl - CannonLake-LP or Whiskeylake/Coffeelake/Cometlake-U SoC\n"+
73 "\ttgl - TigerLake-H SoC\n"+
74 "\tadl - AlderLake PCH\n"+
75 "\tjsl - Jasper Lake SoC\n"+
76 "\tmtl - MeteorLake SoC\n")
78 fieldstyle := flag.String("fld", "none", "set fields macros style:\n"+
79 "\tcb - use coreboot style for bit fields macros\n"+
80 "\tfsp - use fsp style\n"+
81 "\traw - do not convert, print as is\n")
83 flag.Parse()
85 config.IgnoredFieldsFlagSet(*ignFlag)
86 config.NonCheckingFlagSet(*nonCheckFlag)
88 for level, flag := range infoLevels {
89 if *flag {
90 config.InfoLevelSet(level + 1)
91 fmt.Printf("Info level: Use level %d!\n", level + 1)
92 break
96 if !config.TemplateSet(*template) {
97 fmt.Printf("Error! Unknown template format of input file!\n")
98 os.Exit(1)
101 if valid := config.PlatformSet(*platform); valid != 0 {
102 fmt.Printf("Error: invalid platform -%s!\n", *platform)
103 os.Exit(1)
106 fmt.Println("Log file:", *inputFileName)
107 fmt.Println("Output generated file:", *outputFileName)
109 inputRegDumpFile, err := os.Open(*inputFileName)
110 if err != nil {
111 fmt.Printf("Error: inteltool log file was not found!\n")
112 os.Exit(1)
115 if config.FldStyleSet(*fieldstyle) != 0 {
116 fmt.Printf("Error! Unknown bit fields style option -%s!\n", *fieldstyle)
117 os.Exit(1)
120 // create dir for output files
121 err = os.MkdirAll("generate", os.ModePerm)
122 if err != nil {
123 fmt.Printf("Error! Can not create a directory for the generated files!\n")
124 os.Exit(1)
127 // create empty gpio.h file
128 outputGenFile, err := os.Create(*outputFileName)
129 if err != nil {
130 fmt.Printf("Error: unable to generate GPIO config file!\n")
131 os.Exit(1)
134 defer inputRegDumpFile.Close()
135 defer outputGenFile.Close()
137 config.OutputGenFile = outputGenFile
138 config.InputRegDumpFile = inputRegDumpFile
140 parser := parser.ParserData{}
141 parser.Parse()
143 // gpio.h
144 err = generateOutputFile(&parser)
145 if err != nil {
146 fmt.Printf("Error! Can not create the file with GPIO configuration!\n")
147 os.Exit(1)