diff options
| author | Arnd Bergmann <arnd@arndb.de> | 2026-06-09 18:00:43 +0300 |
|---|---|---|
| committer | Arnd Bergmann <arnd@arndb.de> | 2026-06-09 18:00:44 +0300 |
| commit | cf934850aa5f42922de00502ddcf1cde00db63f8 (patch) | |
| tree | 548b7806d9bbf876be1ffd3abb95fbc72df0105f | |
| parent | 10c24a2a37f3ea27264998de0bda5ee0e33ec9e9 (diff) | |
| parent | 8e2501e1494c8d27f62eb8d36bba5af465f48962 (diff) | |
| download | linux-cf934850aa5f42922de00502ddcf1cde00db63f8.tar.xz | |
Merge tag 'cache-for-v7.2' of https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux into soc/drivers
standalone cache drivers for v7.2
SiFive ccache:
Add the Starfive JH7110 to the list of devices that need the
non-standard cache ops, because the GPU appears to be DMA non-coherent
unlike other peripherals.
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
* tag 'cache-for-v7.2' of https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux:
cache: sifive_ccache: Add StarFive JH7110 SoC support
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
| -rw-r--r-- | drivers/cache/sifive_ccache.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/cache/sifive_ccache.c b/drivers/cache/sifive_ccache.c index a86800b123b9..2acb8bdf06d5 100644 --- a/drivers/cache/sifive_ccache.c +++ b/drivers/cache/sifive_ccache.c @@ -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 */ } }; |
