aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2023-12-13 23:09:48 +0100
committerFelix Held <felix-coreboot@felixheld.de>2023-12-15 09:31:36 +0000
commitc7be0781ce0849a54ee75ffb30dd3c0a3716cca3 (patch)
treef0993def20177efc21bfeb685dd5ae905ff566db
parentb15494900479bf2d4260c8b6696ece6bcc631102 (diff)
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>
-rw-r--r--src/vendorcode/amd/Kconfig2
-rw-r--r--src/vendorcode/amd/opensil/Kconfig2
-rw-r--r--src/vendorcode/amd/opensil/Kconfig.debug2
-rw-r--r--src/vendorcode/amd/opensil/genoa_poc/filter.h2
-rw-r--r--src/vendorcode/amd/opensil/genoa_poc/opensil.h2
-rw-r--r--src/vendorcode/amd/opensil/genoa_poc/ramstage.c6
6 files changed, 8 insertions, 8 deletions
diff --git a/src/vendorcode/amd/Kconfig b/src/vendorcode/amd/Kconfig
index c667ae2ba6..58b3f92d3a 100644
--- a/src/vendorcode/amd/Kconfig
+++ b/src/vendorcode/amd/Kconfig
@@ -21,6 +21,6 @@ endif
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 29c22b6da8..0d8420bb2a 100644
--- a/src/vendorcode/amd/opensil/Kconfig
+++ b/src/vendorcode/amd/opensil/Kconfig
@@ -5,7 +5,7 @@ if SOC_AMD_OPENSIL
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 d49b37dc16..859122b2a8 100644
--- a/src/vendorcode/amd/opensil/Kconfig.debug
+++ b/src/vendorcode/amd/opensil/Kconfig.debug
@@ -12,7 +12,7 @@ config OPENSIL_DEBUG_OUTPUT
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 b4a94a697f..f0817f7502 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 ef198869e6..b9caf73279 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 ab551999d8..bee84957c6 100644
--- a/src/vendorcode/amd/opensil/genoa_poc/ramstage.c
+++ b/src/vendorcode/amd/opensil/genoa_poc/ramstage.c
@@ -146,17 +146,17 @@ static void opensil_entry(void *timepoint)
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();
}
}