Commit f7d344f2 authored by Rob Herring's avatar Rob Herring Committed by Mark Brown

spi: xlp: Remove Netlogic XLP variants

Netlogic XLP was removed in commit 95b8a5e0 ("MIPS: Remove NETLOGIC
support"). With those gone, the single platform left to support is
Cavium ThunderX2. Remove the Netlogic variant and DT support.

For simplicity, the existing kconfig name is retained.

Cc: Mark Brown <broonie@kernel.org>
Cc: linux-spi@vger.kernel.org
Signed-off-by: default avatarRob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20211109161325.2203564-1-robh@kernel.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent f02bff30
...@@ -974,14 +974,13 @@ config SPI_XILINX ...@@ -974,14 +974,13 @@ config SPI_XILINX
Or for the DS570, see "XPS Serial Peripheral Interface (SPI) (v2.00b)" Or for the DS570, see "XPS Serial Peripheral Interface (SPI) (v2.00b)"
config SPI_XLP config SPI_XLP
tristate "Netlogic XLP SPI controller driver" tristate "Cavium ThunderX2 SPI controller driver"
depends on CPU_XLP || ARCH_THUNDER2 || COMPILE_TEST depends on ARCH_THUNDER2 || COMPILE_TEST
help help
Enable support for the SPI controller on the Netlogic XLP SoCs. Enable support for the SPI controller on the Cavium ThunderX2.
Currently supported XLP variants are XLP8XX, XLP3XX, XLP2XX, XLP9XX (Originally on Netlogic XLP SoCs.)
and XLP5XX.
If you have a Netlogic XLP platform say Y here. If you have a Cavium ThunderX2 platform say Y here.
If unsure, say N. If unsure, say N.
config SPI_XTENSA_XTFPGA config SPI_XTENSA_XTFPGA
......
...@@ -9,7 +9,6 @@ ...@@ -9,7 +9,6 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/spi/spi.h> #include <linux/spi/spi.h>
#include <linux/of.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
/* SPI Configuration Register */ /* SPI Configuration Register */
...@@ -436,17 +435,10 @@ static const struct acpi_device_id xlp_spi_acpi_match[] = { ...@@ -436,17 +435,10 @@ static const struct acpi_device_id xlp_spi_acpi_match[] = {
MODULE_DEVICE_TABLE(acpi, xlp_spi_acpi_match); MODULE_DEVICE_TABLE(acpi, xlp_spi_acpi_match);
#endif #endif
static const struct of_device_id xlp_spi_dt_id[] = {
{ .compatible = "netlogic,xlp832-spi" },
{ },
};
MODULE_DEVICE_TABLE(of, xlp_spi_dt_id);
static struct platform_driver xlp_spi_driver = { static struct platform_driver xlp_spi_driver = {
.probe = xlp_spi_probe, .probe = xlp_spi_probe,
.driver = { .driver = {
.name = "xlp-spi", .name = "xlp-spi",
.of_match_table = xlp_spi_dt_id,
.acpi_match_table = ACPI_PTR(xlp_spi_acpi_match), .acpi_match_table = ACPI_PTR(xlp_spi_acpi_match),
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment