vc/amd: use 'openSIL' spelling in comments & help text

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I176182180f508a180726fca60064b16fad80e9d8
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79530
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com>
diff --git a/src/vendorcode/amd/Kconfig b/src/vendorcode/amd/Kconfig
index c667ae2..58b3f92 100644
--- a/src/vendorcode/amd/Kconfig
+++ b/src/vendorcode/amd/Kconfig
@@ -21,6 +21,6 @@
 config SOC_AMD_OPENSIL
 	bool
 	help
-	  Select this on SoCs that use opensil.
+	  Select this on SoCs that use openSIL.
 
 source "src/vendorcode/amd/opensil/Kconfig"
diff --git a/src/vendorcode/amd/opensil/Kconfig b/src/vendorcode/amd/opensil/Kconfig
index 29c22b6..0d8420b 100644
--- a/src/vendorcode/amd/opensil/Kconfig
+++ b/src/vendorcode/amd/opensil/Kconfig
@@ -5,7 +5,7 @@
 config SOC_AMD_OPENSIL_GENOA
 	bool
 	help
-	  Select this on SoCs that use the Genoa version of opensil.
+	  Select this on SoCs that use the Genoa version of openSIL.
 
 config AMD_OPENSIL_PATH
 	string
diff --git a/src/vendorcode/amd/opensil/Kconfig.debug b/src/vendorcode/amd/opensil/Kconfig.debug
index d49b37d..859122b 100644
--- a/src/vendorcode/amd/opensil/Kconfig.debug
+++ b/src/vendorcode/amd/opensil/Kconfig.debug
@@ -12,7 +12,7 @@
 if OPENSIL_DEBUG_OUTPUT
 
 config OPENSIL_DEBUG_PREFIX
-	bool "Print the opensil prefix"
+	bool "Print the openSIL prefix"
 	default n
 	help
 	  This prints the function name and line level in front of the
diff --git a/src/vendorcode/amd/opensil/genoa_poc/filter.h b/src/vendorcode/amd/opensil/genoa_poc/filter.h
index b4a94a6..f0817f7 100644
--- a/src/vendorcode/amd/opensil/genoa_poc/filter.h
+++ b/src/vendorcode/amd/opensil/genoa_poc/filter.h
@@ -1,6 +1,6 @@
 /* SPDX-License-Identifier: GPL-2.0-only */
 
-/* Keep this in sync with opensil SilCommon.h file */
+/* Keep this in sync with openSIL SilCommon.h file */
 #define DEBUG_FILTER_APOB       0x00000001UL
 #define DEBUG_FILTER_NBIO       0x00000002UL
 #define DEBUG_FILTER_CCX        0x00000004UL
diff --git a/src/vendorcode/amd/opensil/genoa_poc/opensil.h b/src/vendorcode/amd/opensil/genoa_poc/opensil.h
index ef19886..b9caf73 100644
--- a/src/vendorcode/amd/opensil/genoa_poc/opensil.h
+++ b/src/vendorcode/amd/opensil/genoa_poc/opensil.h
@@ -8,7 +8,7 @@
 void SIL_STATUS_report(const char *function, const int status);
 // Add the memory map to dev, starting at index idx, returns last use idx
 int add_opensil_memmap(struct device *dev, int idx);
-// Fill in FADT from opensil
+// Fill in FADT from openSIL
 void opensil_fill_fadt_io_ports(acpi_fadt_t *fadt);
 
 #endif
diff --git a/src/vendorcode/amd/opensil/genoa_poc/ramstage.c b/src/vendorcode/amd/opensil/genoa_poc/ramstage.c
index ab55199..bee8495 100644
--- a/src/vendorcode/amd/opensil/genoa_poc/ramstage.c
+++ b/src/vendorcode/amd/opensil/genoa_poc/ramstage.c
@@ -146,17 +146,17 @@
 		ret = InitializeSiTp3();
 		break;
 	default:
-		printk(BIOS_ERR, "Unknown opensil timepoint\n");
+		printk(BIOS_ERR, "Unknown openSIL timepoint\n");
 		return;
 	}
 	char opensil_function[16];
 	snprintf(opensil_function, sizeof(opensil_function), "InitializeSiTp%d", tp);
 	SIL_STATUS_report(opensil_function, ret);
 	if (ret == SilResetRequestColdImm || ret == SilResetRequestColdDef) {
-		printk(BIOS_INFO, "openSil requested a cold reset");
+		printk(BIOS_INFO, "openSIL requested a cold reset");
 		do_cold_reset();
 	} else if (ret == SilResetRequestWarmImm || ret == SilResetRequestWarmDef) {
-		printk(BIOS_INFO, "openSil requested a warm reset");
+		printk(BIOS_INFO, "openSIL requested a warm reset");
 		do_warm_reset();
 	}
 }