mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
9209fb5189
The sifive_l2_cache.c is in no way related to RISC-V architecture
memory management. It is a little stub driver working around the fact
that the EDAC maintainers prefer their drivers to be structured in a
certain way that doesn't fit the SiFive SOCs.
Move the file to drivers/soc and add a Kconfig option for it, as well
as the whole drivers/soc boilerplate for CONFIG_SOC_SIFIVE.
Fixes: a967a289f1
("RISC-V: sifive_l2_cache: Add L2 cache controller driver for SiFive SoCs")
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Borislav Petkov <bp@suse.de>
[paul.walmsley@sifive.com: keep the MAINTAINERS change specific to the L2$ controller code]
Signed-off-by: Paul Walmsley <paul.walmsley@sifive.com>
27 lines
840 B
Plaintext
27 lines
840 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
menu "SOC (System On Chip) specific Drivers"
|
|
|
|
source "drivers/soc/actions/Kconfig"
|
|
source "drivers/soc/amlogic/Kconfig"
|
|
source "drivers/soc/aspeed/Kconfig"
|
|
source "drivers/soc/atmel/Kconfig"
|
|
source "drivers/soc/bcm/Kconfig"
|
|
source "drivers/soc/fsl/Kconfig"
|
|
source "drivers/soc/imx/Kconfig"
|
|
source "drivers/soc/ixp4xx/Kconfig"
|
|
source "drivers/soc/mediatek/Kconfig"
|
|
source "drivers/soc/qcom/Kconfig"
|
|
source "drivers/soc/renesas/Kconfig"
|
|
source "drivers/soc/rockchip/Kconfig"
|
|
source "drivers/soc/samsung/Kconfig"
|
|
source "drivers/soc/sifive/Kconfig"
|
|
source "drivers/soc/sunxi/Kconfig"
|
|
source "drivers/soc/tegra/Kconfig"
|
|
source "drivers/soc/ti/Kconfig"
|
|
source "drivers/soc/ux500/Kconfig"
|
|
source "drivers/soc/versatile/Kconfig"
|
|
source "drivers/soc/xilinx/Kconfig"
|
|
source "drivers/soc/zte/Kconfig"
|
|
|
|
endmenu
|