arm64: Allow the definition of UNKNOWN system register fields
authorMarc Zyngier <maz@kernel.org>
Thu, 12 Jan 2023 02:38:46 +0000 (11:38 +0900)
committerOliver Upton <oliver.upton@linux.dev>
Thu, 12 Jan 2023 21:07:43 +0000 (21:07 +0000)
The CCSIDR_EL1 register contains an UNKNOWN field (which replaces
fields that were actually defined in previous revisions of the
architecture).

Define an 'Unkn' field type modeled after the Res0/Res1 types
to allow such description. This allows the generation of

  #define CCSIDR_EL1_UNKN     (UL(0) | GENMASK_ULL(31, 28))

which may have its use one day. Hopefully the architecture doesn't
add too many of those in the future.

Signed-off-by: Marc Zyngier <maz@kernel.org>
Signed-off-by: Akihiko Odaki <akihiko.odaki@gmail.com>
Reviewed-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/20230112023852.42012-2-akihiko.odaki@daynix.com
Signed-off-by: Oliver Upton <oliver.upton@linux.dev>
arch/arm64/tools/gen-sysreg.awk
arch/arm64/tools/sysreg

index c350164a395502484aff2c029aa4ff03e778bd23..e1df4b9565962b296ee18d077c67172b5f26fb1c 100755 (executable)
@@ -98,6 +98,7 @@ END {
 
        res0 = "UL(0)"
        res1 = "UL(0)"
+       unkn = "UL(0)"
 
        next_bit = 63
 
@@ -112,11 +113,13 @@ END {
 
        define(reg "_RES0", "(" res0 ")")
        define(reg "_RES1", "(" res1 ")")
+       define(reg "_UNKN", "(" unkn ")")
        print ""
 
        reg = null
        res0 = null
        res1 = null
+       unkn = null
 
        next
 }
@@ -134,6 +137,7 @@ END {
 
        res0 = "UL(0)"
        res1 = "UL(0)"
+       unkn = "UL(0)"
 
        define("REG_" reg, "S" op0 "_" op1 "_C" crn "_C" crm "_" op2)
        define("SYS_" reg, "sys_reg(" op0 ", " op1 ", " crn ", " crm ", " op2 ")")
@@ -161,7 +165,9 @@ END {
                define(reg "_RES0", "(" res0 ")")
        if (res1 != null)
                define(reg "_RES1", "(" res1 ")")
-       if (res0 != null || res1 != null)
+       if (unkn != null)
+               define(reg "_UNKN", "(" unkn ")")
+       if (res0 != null || res1 != null || unkn != null)
                print ""
 
        reg = null
@@ -172,6 +178,7 @@ END {
        op2 = null
        res0 = null
        res1 = null
+       unkn = null
 
        next
 }
@@ -190,6 +197,7 @@ END {
         next_bit = 0
        res0 = null
        res1 = null
+       unkn = null
 
        next
 }
@@ -215,6 +223,16 @@ END {
        next
 }
 
+/^Unkn/ && (block == "Sysreg" || block == "SysregFields") {
+       expect_fields(2)
+       parse_bitdef(reg, "UNKN", $2)
+       field = "UNKN_" msb "_" lsb
+
+       unkn = unkn " | GENMASK_ULL(" msb ", " lsb ")"
+
+       next
+}
+
 /^Field/ && (block == "Sysreg" || block == "SysregFields") {
        expect_fields(3)
        field = $3
index 184e58fd5631a9bcdc84ba2c05479fbcd300c897..f754265aec5fae3025b4c5214eb4f7f22c39a3ca 100644 (file)
@@ -15,6 +15,8 @@
 
 # Res1 <msb>[:<lsb>]
 
+# Unkn <msb>[:<lsb>]
+
 # Field        <msb>[:<lsb>]   <name>
 
 # Enum <msb>[:<lsb>]   <name>