diff options
author | Pinkesh Vaghela <pinkesh.vaghela@einfochips.com> | 2025-03-20 13:54:45 +0300 |
---|---|---|
committer | Conor Dooley <conor.dooley@microchip.com> | 2025-04-07 18:53:46 +0300 |
commit | 82e8c6931074e1fa1bdbdcc01604e164c42f989e (patch) | |
tree | 284d972400ef455cc48e18e53f714c9876e31737 | |
parent | 2eb68366159a94cdf61b97fbc9ab230bef94313f (diff) | |
download | linux-82e8c6931074e1fa1bdbdcc01604e164c42f989e.tar.xz |
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", |