[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1363119155-4682-1-git-send-email-davidb@codeaurora.org>
Date: Tue, 12 Mar 2013 13:12:35 -0700
From: David Brown <davidb@...eaurora.org>
To: David Brown <davidb@...eaurora.org>
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Russell King <linux@....linux.org.uk>,
Daniel Walker <dwalker@...o99.com>,
Bryan Huntsman <bryanh@...eaurora.org>,
Grant Likely <grant.likely@...retlab.ca>,
Rob Herring <rob.herring@...xeda.com>,
linux-kernel@...r.kernel.org, linux-arm-msm@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org
Subject: [PATCH v2 11/11] RFC: SSBI: Simple pm8058 test driver
A very small ssbi device driver that reads the pm8058 version register
and prints it out.
Signed-off-by: David Brown <davidb@...eaurora.org>
---
Resending due to address error in header
arch/arm/boot/dts/msm8660-surf.dts | 4 +++
arch/arm/boot/dts/msm8960-cdp.dts | 4 +++
drivers/ssbi/Makefile | 1 +
drivers/ssbi/ssbi-test.c | 61 ++++++++++++++++++++++++++++++++++++++
4 files changed, 70 insertions(+)
create mode 100644 drivers/ssbi/ssbi-test.c
diff --git a/arch/arm/boot/dts/msm8660-surf.dts b/arch/arm/boot/dts/msm8660-surf.dts
index 67f8670..68a0c7c4 100644
--- a/arch/arm/boot/dts/msm8660-surf.dts
+++ b/arch/arm/boot/dts/msm8660-surf.dts
@@ -43,5 +43,9 @@
compatible = "qcom,ssbi";
reg = <0x500000 0x1000>;
qcom,controller-type = "pmic-arbiter";
+
+ qcom,ssbi-test {
+ compatible = "qcom,ssbi-test";
+ };
};
};
diff --git a/arch/arm/boot/dts/msm8960-cdp.dts b/arch/arm/boot/dts/msm8960-cdp.dts
index c9b09a8..60804d7 100644
--- a/arch/arm/boot/dts/msm8960-cdp.dts
+++ b/arch/arm/boot/dts/msm8960-cdp.dts
@@ -43,5 +43,9 @@
compatible = "qcom,ssbi";
reg = <0x500000 0x1000>;
qcom,controller-type = "pmic-arbiter";
+
+ qcom,ssbi-test {
+ compatible = "qcom,ssbi-test";
+ };
};
};
diff --git a/drivers/ssbi/Makefile b/drivers/ssbi/Makefile
index 38fb70c..dea13c1 100644
--- a/drivers/ssbi/Makefile
+++ b/drivers/ssbi/Makefile
@@ -1 +1,2 @@
obj-$(CONFIG_SSBI) += ssbi.o
+obj-$(CONFIG_SSBI) += ssbi-test.o
diff --git a/drivers/ssbi/ssbi-test.c b/drivers/ssbi/ssbi-test.c
new file mode 100644
index 0000000..7804cfe
--- /dev/null
+++ b/drivers/ssbi/ssbi-test.c
@@ -0,0 +1,61 @@
+/* A simple ssbi test device. */
+
+#include <linux/module.h>
+#include <linux/of.h>
+#include <linux/of_device.h>
+#include <linux/ssbi.h>
+
+static int __init ssbi_test_probe(struct platform_device *pdev)
+{
+ int ret;
+ char version;
+
+ dev_info(&pdev->dev, "probe, me = %p, parent = %p\n",
+ pdev, pdev->dev.parent);
+
+ /* Let's try reading. */
+ ret = ssbi_read(pdev->dev.parent, 0x02, &version, 1);
+ if (ret != 0)
+ return ret;
+
+ dev_info(&pdev->dev, "Version = %02x\n", version);
+
+ /* Should already be hooked in. */
+ return 0;
+}
+
+static int ssbi_test_remove(struct platform_device *pdev)
+{
+ return 0;
+}
+
+static struct of_device_id ssbi_test_match_table[] = {
+ { .compatible = "qcom,ssbi-test" },
+ {}
+};
+
+static struct platform_driver ssbi_test_driver = {
+ .remove = ssbi_test_remove,
+ .driver = {
+ .name = "sbbi_test",
+ .owner = THIS_MODULE,
+ .of_match_table = ssbi_test_match_table,
+ },
+};
+
+static int __init ssbi_test_init(void)
+{
+ int ret;
+
+ ret = platform_driver_probe(&ssbi_test_driver, ssbi_test_probe);
+ return ret;
+}
+
+static void __exit ssbi_test_exit(void)
+{
+}
+
+module_init(ssbi_test_init);
+module_exit(ssbi_test_exit);
+
+MODULE_LICENSE("GPL");
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists