aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYangyu Chen <cyy@cyyself.name>2024-04-21 23:52:09 +0800
committerAnup Patel <anup@brainfault.org>2024-05-09 18:10:25 +0530
commit019a8e69a1dc0c0f011fabd0372e1ba80e40dd7c (patch)
treef37cf1553fca20eb3ea19181a7e4510284123709
parent33e21c9476e225064464ad045ce11cf58c2c3204 (diff)
downloadopensbi-019a8e69a1dc0c0f011fabd0372e1ba80e40dd7c.zip
opensbi-019a8e69a1dc0c0f011fabd0372e1ba80e40dd7c.tar.gz
opensbi-019a8e69a1dc0c0f011fabd0372e1ba80e40dd7c.tar.bz2
platform: generic: thead: add Canaan Kendryte K230
Canaan Kendryte K230 SoC has T-Head C908 cores inside. The dt-binding has been merged into the linux kernel [1]. However, it has early version of C908 core which does not have Sscofpmf and need to use T-Head PMU extension. Thus, we add a K230 compatible string to thead_generic_match and set quirk for T-Head PMU. [1] https://lore.kernel.org/linux-riscv/tencent_4D85743622F39109466913393EE2F6C5980A@qq.com/ Signed-off-by: Yangyu Chen <cyy@cyyself.name> Reviewed-by: Inochi Amaoto <inochiama@outlook.com> Reviewed-by: Anup Patel <anup@brainfault.org>
-rw-r--r--platform/generic/thead/thead-generic.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/generic/thead/thead-generic.c b/platform/generic/thead/thead-generic.c
index da55e05..3b59a0d 100644
--- a/platform/generic/thead/thead-generic.c
+++ b/platform/generic/thead/thead-generic.c
@@ -45,8 +45,13 @@ static struct thead_generic_quirks thead_th1520_quirks = {
.errata = THEAD_QUIRK_ERRATA_TLB_FLUSH | THEAD_QUIRK_ERRATA_THEAD_PMU,
};
+static struct thead_generic_quirks canaan_k230_quirks = {
+ .errata = THEAD_QUIRK_ERRATA_THEAD_PMU,
+};
+
static const struct fdt_match thead_generic_match[] = {
{ .compatible = "thead,th1520", .data = &thead_th1520_quirks },
+ { .compatible = "canaan,kendryte-k230", .data = &canaan_k230_quirks },
{ },
};