diff options
author | Nicholas Sudsgaard <devel+coreboot@nsudsgaard.com> | 2024-02-14 18:10:57 +0900 |
---|---|---|
committer | Michael Niewöhner <foss@mniewoehner.de> | 2024-07-15 07:22:32 +0000 |
commit | b205f4e53ec30487ea1c219366e496664a3c20aa (patch) | |
tree | e5dcc7bc41a60691791911dac42538e95fb35a78 /util/hda-decoder/go.mod | |
parent | b0fa6683de2e97c017cf73eaa409350a2f1709e3 (diff) |
util: Add hda-decoder
This tool helps take off the burden of manually decoding default
configuration registers. Using decoded values can make code more
self-documenting compared to shrouding it with magic numbers.
This is also written as a module which allows easy integration with
other tools written in Go (e.g. autoport).
Change-Id: Ib4fb652e178517b2b7aceaac8be005c5b2d3b03e
Signed-off-by: Nicholas Sudsgaard <devel+coreboot@nsudsgaard.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80470
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'util/hda-decoder/go.mod')
-rw-r--r-- | util/hda-decoder/go.mod | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/hda-decoder/go.mod b/util/hda-decoder/go.mod new file mode 100644 index 0000000000..a3c611a72b --- /dev/null +++ b/util/hda-decoder/go.mod @@ -0,0 +1,3 @@ +module review.coreboot.org/coreboot.git/util/hda-decoder + +go 1.18 |