mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 14:12:06 +00:00
0c6c2d3615
The arm64 code allocates an internal constant to every CPU feature it can detect, distinct from the public hwcap numbers we use to expose some features to userspace. Currently this is maintained manually which is an irritating source of conflicts when working on new features, to avoid this replace the header with a simple text file listing the names we've assigned and sort it to minimise conflicts. As part of doing this we also do the Kbuild hookup required to hook up an arch tools directory and to generate header files in there. This will result in a renumbering and reordering of the existing constants, since they are all internal only the values should not be important. The reordering will impact the order in which some steps in enumeration handle features but the algorithm is not intended to depend on this and I haven't seen any issues when testing. Due to the UAO cpucap having been removed in the past we end up with ARM64_NCAPS being 1 smaller than it was before. Signed-off-by: Mark Brown <broonie@kernel.org> Reviewed-by: Mark Rutland <mark.rutland@arm.com> Tested-by: Mark Rutland <mark.rutland@arm.com> Link: https://lore.kernel.org/r/20210428121231.11219-1-broonie@kernel.org Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
41 lines
737 B
Awk
Executable File
41 lines
737 B
Awk
Executable File
#!/bin/awk -f
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# gen-cpucaps.awk: arm64 cpucaps header generator
|
|
#
|
|
# Usage: awk -f gen-cpucaps.awk cpucaps.txt
|
|
|
|
# Log an error and terminate
|
|
function fatal(msg) {
|
|
print "Error at line " NR ": " msg > "/dev/stderr"
|
|
exit 1
|
|
}
|
|
|
|
# skip blank lines and comment lines
|
|
/^$/ { next }
|
|
/^#/ { next }
|
|
|
|
BEGIN {
|
|
print "#ifndef __ASM_CPUCAPS_H"
|
|
print "#define __ASM_CPUCAPS_H"
|
|
print ""
|
|
print "/* Generated file - do not edit */"
|
|
cap_num = 0
|
|
print ""
|
|
}
|
|
|
|
/^[vA-Z0-9_]+$/ {
|
|
printf("#define ARM64_%-30s\t%d\n", $0, cap_num++)
|
|
next
|
|
}
|
|
|
|
END {
|
|
printf("#define ARM64_NCAPS\t\t\t\t%d\n", cap_num)
|
|
print ""
|
|
print "#endif"
|
|
}
|
|
|
|
# Any lines not handled by previous rules are unexpected
|
|
{
|
|
fatal("unhandled statement")
|
|
}
|