]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
cache: sifive_ccache: Add StarFive JH7110 SoC support
authorDominique Belhachemi <domibel@debian.org>
Thu, 30 Apr 2026 03:52:59 +0000 (03:52 +0000)
committerConor Dooley <conor.dooley@microchip.com>
Thu, 21 May 2026 10:12:00 +0000 (11:12 +0100)
This cache controller is also used on the StarFive JH7110 SoC. It does
not have the data-uncorrectable ECC quirk that JH7100 has, so only
QUIRK_NONSTANDARD_CACHE_OPS is set.

Signed-off-by: Dominique Belhachemi <domibel@debian.org>
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
drivers/cache/sifive_ccache.c

index a86800b123b9ed751ac20059e9bbdeaa7e585702..2acb8bdf06d52f859d00f3c42aca8da26cfec885 100644 (file)
@@ -124,6 +124,8 @@ static const struct of_device_id sifive_ccache_ids[] = {
        { .compatible = "sifive,fu740-c000-ccache" },
        { .compatible = "starfive,jh7100-ccache",
          .data = (void *)(QUIRK_NONSTANDARD_CACHE_OPS | QUIRK_BROKEN_DATA_UNCORR) },
+       { .compatible = "starfive,jh7110-ccache",
+         .data = (void *)(QUIRK_NONSTANDARD_CACHE_OPS) },
        { .compatible = "sifive,ccache0" },
        { /* end of table */ }
 };