diff options
author | 2025-03-20 16:24:45 +0530 | |
---|---|---|
committer | 2025-04-07 16:53:46 +0100 | |
commit | 82e8c6931074e1fa1bdbdcc01604e164c42f989e (patch) | |
tree | 284d972400ef455cc48e18e53f714c9876e31737 | |
parent | dt-bindings: cache: sifive,ccache0: Add ESWIN EIC7700 SoC compatibility (diff) | |
download | wireguard-linux-82e8c6931074e1fa1bdbdcc01604e164c42f989e.tar.xz wireguard-linux-82e8c6931074e1fa1bdbdcc01604e164c42f989e.zip |
cache: sifive_ccache: Add ESWIN EIC7700 support
This adds support for the ESWIN EIC7700 SoC which also features this
SiFive composable cache controller.
Signed-off-by: Pinkesh Vaghela <pinkesh.vaghela@einfochips.com>
Reviewed-by: Samuel Holland <samuel.holland@sifive.com>
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
-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 6874b72ec59d..e1a283805ea7 100644 --- a/drivers/cache/sifive_ccache.c +++ b/drivers/cache/sifive_ccache.c @@ -118,6 +118,8 @@ static void ccache_config_read(void) } static const struct of_device_id sifive_ccache_ids[] = { + { .compatible = "eswin,eic7700-l3-cache", + .data = (void *)(QUIRK_NONSTANDARD_CACHE_OPS) }, { .compatible = "sifive,fu540-c000-ccache" }, { .compatible = "sifive,fu740-c000-ccache" }, { .compatible = "starfive,jh7100-ccache", |