linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: George Cherian <george.cherian@ti.com>
To: balbi@ti.com, myungjoo.ham@samsung.com, cw00.choi@samsung.com
Cc: linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
	devicetree@vger.kernel.org, grant.likely@linaro.org,
	rob@landley.net, ian.campbell@citrix.com, swarren@wwwdotorg.org,
	mark.rutland@arm.com, pawel.moll@arm.com,
	rob.herring@calxeda.com, linux-omap@vger.kernel.org,
	linux-usb@vger.kernel.org, bcousson@baylibre.com,
	George Cherian <george.cherian@ti.com>
Subject: [PATCH 1/2] extcon: extcon-dra7xx: Add extcon driver for USB ID detection
Date: Fri, 16 Aug 2013 15:43:48 +0530	[thread overview]
Message-ID: <1376648029-30659-2-git-send-email-george.cherian@ti.com> (raw)
In-Reply-To: <1376648029-30659-1-git-send-email-george.cherian@ti.com>

Adding extcon driver for USB ID detection to dynamically
configure USB Host/Peripheral mode.

Signed-off-by: George Cherian <george.cherian@ti.com>
---
 .../devicetree/bindings/extcon/extcon-dra7xx.txt   |  19 ++
 drivers/extcon/Kconfig                             |   7 +
 drivers/extcon/Makefile                            |   1 +
 drivers/extcon/extcon-dra7xx.c                     | 234 +++++++++++++++++++++
 4 files changed, 261 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/extcon/extcon-dra7xx.txt
 create mode 100644 drivers/extcon/extcon-dra7xx.c

diff --git a/Documentation/devicetree/bindings/extcon/extcon-dra7xx.txt b/Documentation/devicetree/bindings/extcon/extcon-dra7xx.txt
new file mode 100644
index 0000000..37e4c22
--- /dev/null
+++ b/Documentation/devicetree/bindings/extcon/extcon-dra7xx.txt
@@ -0,0 +1,19 @@
+EXTCON FOR DRA7xx
+
+Required Properties:
+ - compatible : Should be "ti,dra7xx-usb"
+ - gpios : phandle to ID pin and interrupt gpio.
+
+Optional Properties:
+  - interrupt-parent : interrupt controller phandle
+  - interrupts : interrupt number
+
+
+dra7x_extcon1 {
+		compatible = "ti,dra7xx-usb";
+		gpios = <&pcf_usb 1 0>,
+			<&gpio6 11 2>;
+		interrupt-parent = <&gpio6>;
+		interrupts = <11>;
+	};
+
diff --git a/drivers/extcon/Kconfig b/drivers/extcon/Kconfig
index f1d54a3..b9cf0b2 100644
--- a/drivers/extcon/Kconfig
+++ b/drivers/extcon/Kconfig
@@ -64,4 +64,11 @@ config EXTCON_PALMAS
 	  Say Y here to enable support for USB peripheral and USB host
 	  detection by palmas usb.
 
+config EXTCON_DRA7XX
+	tristate "DRA7XX EXTCON support"
+	help
+	  Say Y here to enable support for USB peripheral and USB host
+	  detection by pcf8575 using DRA7XX extcon.
+
+
 endif # MULTISTATE_SWITCH
diff --git a/drivers/extcon/Makefile b/drivers/extcon/Makefile
index e4fa8ba..e4778f9 100644
--- a/drivers/extcon/Makefile
+++ b/drivers/extcon/Makefile
@@ -10,3 +10,4 @@ obj-$(CONFIG_EXTCON_MAX77693)	+= extcon-max77693.o
 obj-$(CONFIG_EXTCON_MAX8997)	+= extcon-max8997.o
 obj-$(CONFIG_EXTCON_ARIZONA)	+= extcon-arizona.o
 obj-$(CONFIG_EXTCON_PALMAS)	+= extcon-palmas.o
+obj-$(CONFIG_EXTCON_DRA7XX)	+= extcon-dra7xx.o
diff --git a/drivers/extcon/extcon-dra7xx.c b/drivers/extcon/extcon-dra7xx.c
new file mode 100644
index 0000000..268c25e
--- /dev/null
+++ b/drivers/extcon/extcon-dra7xx.c
@@ -0,0 +1,234 @@
+/*
+ * DRA7XX USB ID pin detection driver
+ *
+ * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Author: George Cherian <george.cherian@ti.com>
+ *
+ * Based on extcon-palmas.c
+ *
+ * Author: Kishon Vijay Abraham I <kishon@ti.com>
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include <linux/module.h>
+#include <linux/interrupt.h>
+#include <linux/kthread.h>
+#include <linux/freezer.h>
+#include <linux/platform_device.h>
+#include <linux/extcon.h>
+#include <linux/err.h>
+#include <linux/of.h>
+#include <linux/gpio.h>
+#include <linux/of_gpio.h>
+#include <linux/of_platform.h>
+
+struct dra7xx_usb {
+	struct device *dev;
+
+	struct extcon_dev edev;
+	struct task_struct *thread_task;
+
+	/*GPIO pin */
+	int id_gpio;
+	int irq_gpio;
+
+	int id_prev;
+	int id_current;
+
+};
+
+static const char *dra7xx_extcon_cable[] = {
+	[0] = "USB",
+	[1] = "USB-HOST",
+	NULL,
+};
+
+static const int mutually_exclusive[] = {0x3, 0x0};
+
+static int id_poll_func(void *data)
+{
+	struct dra7xx_usb *dra7xx_usb = (struct dra7xx_usb *) data;
+
+	allow_signal(SIGINT);
+	allow_signal(SIGTERM);
+	allow_signal(SIGKILL);
+	allow_signal(SIGUSR1);
+
+	set_freezable();
+
+	while (!kthread_should_stop()) {
+		dra7xx_usb->id_current = gpio_get_value_cansleep
+						(dra7xx_usb->id_gpio);
+		if (dra7xx_usb->id_current == dra7xx_usb->id_prev) {
+			schedule_timeout_interruptible
+						(msecs_to_jiffies(2*1000));
+			continue;
+		} else if (dra7xx_usb->id_current == 0) {
+			extcon_set_cable_state(&dra7xx_usb->edev, "USB", false);
+			extcon_set_cable_state(&dra7xx_usb->edev,
+						"USB-HOST", true);
+		} else {
+			extcon_set_cable_state(&dra7xx_usb->edev,
+						"USB-HOST", false);
+			extcon_set_cable_state(&dra7xx_usb->edev, "USB", true);
+		}
+		dra7xx_usb->id_prev = dra7xx_usb->id_current;
+	}
+
+	return 0;
+}
+
+static irqreturn_t id_irq_handler(int irq, void *data)
+{
+	struct dra7xx_usb *dra7xx_usb = (struct dra7xx_usb *) data;
+
+	dra7xx_usb->id_current = gpio_get_value_cansleep(dra7xx_usb->id_gpio);
+
+	if (dra7xx_usb->id_current == dra7xx_usb->id_prev) {
+		return IRQ_NONE;
+	} else if (dra7xx_usb->id_current == 0) {
+		extcon_set_cable_state(&dra7xx_usb->edev, "USB", false);
+		extcon_set_cable_state(&dra7xx_usb->edev, "USB-HOST", true);
+	} else {
+		extcon_set_cable_state(&dra7xx_usb->edev, "USB-HOST", false);
+		extcon_set_cable_state(&dra7xx_usb->edev, "USB", true);
+	}
+
+	dra7xx_usb->id_prev = dra7xx_usb->id_current;
+	return IRQ_HANDLED;
+
+}
+
+static int dra7xx_usb_probe(struct platform_device *pdev)
+{
+	struct device_node *node = pdev->dev.of_node;
+	struct dra7xx_usb *dra7xx_usb;
+	int status;
+	int irq_num;
+	int gpio;
+
+	dra7xx_usb = devm_kzalloc(&pdev->dev, sizeof(*dra7xx_usb), GFP_KERNEL);
+	if (!dra7xx_usb)
+		return -ENOMEM;
+
+
+	dra7xx_usb->dev	 = &pdev->dev;
+
+	platform_set_drvdata(pdev, dra7xx_usb);
+
+	dra7xx_usb->edev.name = dev_name(&pdev->dev);
+	dra7xx_usb->edev.supported_cable = dra7xx_extcon_cable;
+	dra7xx_usb->edev.mutually_exclusive = mutually_exclusive;
+
+	gpio = of_get_gpio(node, 0);
+	if (gpio_is_valid(gpio)) {
+		dra7xx_usb->id_gpio = gpio;
+		status = gpio_request(dra7xx_usb->id_gpio, "id_gpio");
+		if (status)
+			return status;
+	} else {
+		dev_err(&pdev->dev, "failed to get id gpio\n");
+		return -ENODEV;
+	}
+
+	gpio = of_get_gpio(node, 1);
+	if (gpio_is_valid(gpio)) {
+		dra7xx_usb->irq_gpio = gpio;
+		irq_num = gpio_to_irq(dra7xx_usb->irq_gpio);
+		if (irq_num < 0)
+			dra7xx_usb->irq_gpio = 0;
+	} else {
+		dev_err(&pdev->dev, "failed to get irq gpio\n");
+	}
+
+
+	status = extcon_dev_register(&dra7xx_usb->edev, dra7xx_usb->dev);
+	if (status) {
+		dev_err(&pdev->dev, "failed to register extcon device\n");
+		return status;
+	}
+
+	dra7xx_usb->id_prev = gpio_get_value_cansleep(dra7xx_usb->id_gpio);
+	if (dra7xx_usb->id_prev) {
+		extcon_set_cable_state(&dra7xx_usb->edev, "USB-HOST", false);
+		extcon_set_cable_state(&dra7xx_usb->edev, "USB", true);
+	} else {
+		extcon_set_cable_state(&dra7xx_usb->edev, "USB", false);
+		extcon_set_cable_state(&dra7xx_usb->edev, "USB-HOST", true);
+	}
+
+	if (dra7xx_usb->irq_gpio) {
+		status = devm_request_threaded_irq(dra7xx_usb->dev, irq_num,
+				NULL, id_irq_handler, IRQF_SHARED |
+				IRQF_ONESHOT | IRQF_TRIGGER_FALLING,
+				dev_name(&pdev->dev), (void *) dra7xx_usb);
+		if (status)
+			dev_err(dra7xx_usb->dev, "failed to request irq #%d\n",
+						irq_num);
+		else
+			return 0;
+	}
+
+	dra7xx_usb->thread_task = kthread_create(id_poll_func, dra7xx_usb,
+						 dev_name(&pdev->dev));
+	if (!dra7xx_usb->thread_task) {
+		dev_err(dra7xx_usb->dev, "failed to create thread for %s\n"
+					, dev_name(&pdev->dev));
+		goto err0;
+	}
+
+	wake_up_process(dra7xx_usb->thread_task);
+
+	return 0;
+
+err0:
+	gpio_free(dra7xx_usb->id_gpio);
+	extcon_dev_unregister(&dra7xx_usb->edev);
+
+	return status;
+}
+
+static int dra7xx_usb_remove(struct platform_device *pdev)
+{
+	struct dra7xx_usb *dra7xx_usb = platform_get_drvdata(pdev);
+
+	if (!dra7xx_usb->irq_gpio)
+		kthread_stop(dra7xx_usb->thread_task);
+
+	gpio_free(dra7xx_usb->id_gpio);
+	extcon_dev_unregister(&dra7xx_usb->edev);
+
+	return 0;
+}
+
+static struct of_device_id of_dra7xx_match_tbl[] = {
+	{ .compatible = "ti,dra7xx-usb", },
+	{ /* end */ }
+};
+
+static struct platform_driver dra7xx_usb_driver = {
+	.probe = dra7xx_usb_probe,
+	.remove = dra7xx_usb_remove,
+	.driver = {
+		.name = "dra7xx-usb",
+		.of_match_table = of_dra7xx_match_tbl,
+		.owner = THIS_MODULE,
+	},
+};
+
+module_platform_driver(dra7xx_usb_driver);
+
+MODULE_ALIAS("platform:dra7xx-usb");
+MODULE_AUTHOR("George Cherian <george.cherian@ti.com>");
+MODULE_DESCRIPTION("DRA7x USB Connector driver");
+MODULE_LICENSE("GPL");
+MODULE_DEVICE_TABLE(of, of_dra7xx_match_tbl);
-- 
1.8.1.4


  reply	other threads:[~2013-08-16 10:13 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-16 10:13 [PATCH 0/2] Enable USB ID pin detection using extcon for DRA7xx George Cherian
2013-08-16 10:13 ` George Cherian [this message]
2013-08-19 19:31   ` [PATCH 1/2] extcon: extcon-dra7xx: Add extcon driver for USB ID detection Stephen Warren
     [not found]     ` <52127284.6030506-3lzwWm7+Weoh9ZMKESR00Q@public.gmane.org>
2013-08-20  6:55       ` George Cherian
2013-08-20 16:53         ` Stephen Warren
2013-08-21 13:06           ` George Cherian
2013-08-21 17:35             ` Stephen Warren
2013-08-22  5:14               ` George Cherian
2013-08-20  0:24   ` Chanwoo Choi
2013-08-20  9:36     ` George Cherian
     [not found]       ` <521338B7.7040208-l0cyMroinI0@public.gmane.org>
2013-08-20 10:29         ` Chanwoo Choi
2013-08-20 13:24           ` George Cherian
2013-08-20 23:07             ` Chanwoo Choi
2013-08-16 10:13 ` [PATCH 2/2] arm: dts: dra7-evm: Add extcon dt nodes " George Cherian

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1376648029-30659-2-git-send-email-george.cherian@ti.com \
    --to=george.cherian@ti.com \
    --cc=balbi@ti.com \
    --cc=bcousson@baylibre.com \
    --cc=cw00.choi@samsung.com \
    --cc=devicetree@vger.kernel.org \
    --cc=grant.likely@linaro.org \
    --cc=ian.campbell@citrix.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=myungjoo.ham@samsung.com \
    --cc=pawel.moll@arm.com \
    --cc=rob.herring@calxeda.com \
    --cc=rob@landley.net \
    --cc=swarren@wwwdotorg.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).