linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH] SPI/ACPI: DesignWare: Add ACPI support for Designware SPI driver
@ 2016-02-05  7:11 qiujiang
  2016-02-05 11:09 ` Mark Brown
  2016-02-05 15:55 ` Andy Shevchenko
  0 siblings, 2 replies; 10+ messages in thread
From: qiujiang @ 2016-02-05  7:11 UTC (permalink / raw)
  To: broonie
  Cc: linux-spi, linux-acpi, linux-kernel, linuxarm, haifeng.wei,
	charles.chenxin, qiujiang

This patch added ACPI support for DesignWare SPI mmio driver. It
was based the corresponding DT driver and compatible for this two
way. This patch has been tested on Hisilicon D02 board. It relies
on the GPIO patchset.

Signed-off-by: qiujiang <qiujiang@huawei.com>
---
 drivers/spi/spi-dw-mmio.c | 26 +++++++++++++++++++++++---
 1 file changed, 23 insertions(+), 3 deletions(-)

diff --git a/drivers/spi/spi-dw-mmio.c b/drivers/spi/spi-dw-mmio.c
index a6d7029..de542f0 100644
--- a/drivers/spi/spi-dw-mmio.c
+++ b/drivers/spi/spi-dw-mmio.c
@@ -8,6 +8,7 @@
  * version 2, as published by the Free Software Foundation.
  */
 
+#include <linux/acpi.h>
 #include <linux/clk.h>
 #include <linux/err.h>
 #include <linux/interrupt.h>
@@ -36,7 +37,9 @@ static int dw_spi_mmio_probe(struct platform_device *pdev)
 	struct dw_spi *dws;
 	struct resource *mem;
 	int ret;
-	int num_cs;
+	int num_cs, i;
+	struct gpio_desc *gpiod;
+	char propname[32];
 
 	dwsmmio = devm_kzalloc(&pdev->dev, sizeof(struct dw_spi_mmio),
 			GFP_KERNEL);
@@ -84,8 +87,6 @@ static int dw_spi_mmio_probe(struct platform_device *pdev)
 	dws->num_cs = num_cs;
 
 	if (pdev->dev.of_node) {
-		int i;
-
 		for (i = 0; i < dws->num_cs; i++) {
 			int cs_gpio = of_get_named_gpio(pdev->dev.of_node,
 					"cs-gpios", i);
@@ -104,6 +105,18 @@ static int dw_spi_mmio_probe(struct platform_device *pdev)
 		}
 	}
 
+	if (ACPI_COMPANION(&pdev->dev)) {
+		for (i = 0; i < dws->num_cs; i++) {
+			snprintf(propname, sizeof(propname), "cs%d", i);
+			gpiod = devm_gpiod_get(&pdev->dev,
+				propname, GPIOD_ASIS);
+			if (IS_ERR(gpiod)) {
+				dev_err(&pdev->dev, "Get gpio desc failed!\n");
+				return PTR_ERR(gpiod);
+			}
+		}
+	}
+
 	ret = dw_spi_add_host(&pdev->dev, dws);
 	if (ret)
 		goto out;
@@ -132,12 +145,19 @@ static const struct of_device_id dw_spi_mmio_of_match[] = {
 };
 MODULE_DEVICE_TABLE(of, dw_spi_mmio_of_match);
 
+static const struct acpi_device_id dw_spi_mmio_acpi_match[] = {
+		{"HISI0171", 0},
+		{ }
+};
+MODULE_DEVICE_TABLE(acpi, dw_spi_mmio_acpi_match);
+
 static struct platform_driver dw_spi_mmio_driver = {
 	.probe		= dw_spi_mmio_probe,
 	.remove		= dw_spi_mmio_remove,
 	.driver		= {
 		.name	= DRIVER_NAME,
 		.of_match_table = dw_spi_mmio_of_match,
+		.acpi_match_table = ACPI_PTR(dw_spi_mmio_acpi_match),
 	},
 };
 module_platform_driver(dw_spi_mmio_driver);
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2016-02-15 18:09 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-05  7:11 [RFC PATCH] SPI/ACPI: DesignWare: Add ACPI support for Designware SPI driver qiujiang
2016-02-05 11:09 ` Mark Brown
     [not found]   ` <20160205110900.GA12311-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2016-02-14  9:31     ` Jiang Qiu
2016-02-15 17:44       ` Mark Brown
2016-02-15  8:27     ` Hanjun Guo
     [not found]       ` <56C18C07.2030209-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2016-02-15 17:45         ` Mark Brown
     [not found]           ` <20160215174540.GS18988-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2016-02-15 18:09             ` One Thousand Gnomes
2016-02-05 15:55 ` Andy Shevchenko
     [not found]   ` <CAHp75VeSkUvHSd_JC-qPzwDjBWM8oxJP8jt3UD91uq1=fvEEqw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-02-05 16:11     ` Mark Brown
2016-02-14  9:47   ` Jiang Qiu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).