summaryrefslogtreecommitdiff
path: root/src/soc/amd/cezanne
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/amd/cezanne')
-rw-r--r--src/soc/amd/cezanne/mca.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/src/soc/amd/cezanne/mca.c b/src/soc/amd/cezanne/mca.c
index 68fae29204..77006a713c 100644
--- a/src/soc/amd/cezanne/mca.c
+++ b/src/soc/amd/cezanne/mca.c
@@ -1,8 +1,19 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <amdblocks/mca.h>
+#include <types.h>
-void mca_check_all_banks(void)
+bool mca_has_expected_bank_count(void)
{
- /* TODO: Implement MCAX register checking and BERT table generation. */
+ return true;
+}
+
+bool mca_is_valid_bank(unsigned int bank)
+{
+ return false;
+}
+
+const char *mca_get_bank_name(unsigned int bank)
+{
+ return "";
}