aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorDaniel Tang <dt.tangr@gmail.com>2014-03-11 01:47:39 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-03-12 15:32:21 -0400
commit7b92e1ddb17f37caf37d4477483a62a425ba428f (patch)
tree1cc640792b4e237aa31952b118d7b3f8192a0776 /drivers/usb
parentc844d6c884f372dcde158c84b61c373ebc529519 (diff)
usb: chipidea: add support for USB OTG controller on LSI Zevio SoCs
The USB controller in TI-NSPIRE calculators (LSI Zevio SoC) are based off either Freescale's USB OTG controller or the USB controller found in the IMX233, both of which are Chipidea compatible. This patch adds a device tree binding for the controller. Signed-off-by: Peter Chen <peter.chen@freescale.com> Signed-off-by: Daniel Tang <dt.tangr@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/chipidea/Makefile1
-rw-r--r--drivers/usb/chipidea/ci_hdrc_zevio.c72
2 files changed, 73 insertions, 0 deletions
diff --git a/drivers/usb/chipidea/Makefile b/drivers/usb/chipidea/Makefile
index 7345d2115af2..480bd4d5710a 100644
--- a/drivers/usb/chipidea/Makefile
+++ b/drivers/usb/chipidea/Makefile
@@ -10,6 +10,7 @@ ci_hdrc-$(CONFIG_USB_CHIPIDEA_DEBUG) += debug.o
10# Glue/Bridge layers go here 10# Glue/Bridge layers go here
11 11
12obj-$(CONFIG_USB_CHIPIDEA) += ci_hdrc_msm.o 12obj-$(CONFIG_USB_CHIPIDEA) += ci_hdrc_msm.o
13obj-$(CONFIG_USB_CHIPIDEA) += ci_hdrc_zevio.o
13 14
14# PCI doesn't provide stubs, need to check 15# PCI doesn't provide stubs, need to check
15ifneq ($(CONFIG_PCI),) 16ifneq ($(CONFIG_PCI),)
diff --git a/drivers/usb/chipidea/ci_hdrc_zevio.c b/drivers/usb/chipidea/ci_hdrc_zevio.c
new file mode 100644
index 000000000000..3bf6489ef5ec
--- /dev/null
+++ b/drivers/usb/chipidea/ci_hdrc_zevio.c
@@ -0,0 +1,72 @@
1/*
2 * Copyright (C) 2013 Daniel Tang <tangrs@tangrs.id.au>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2, as
6 * published by the Free Software Foundation.
7 *
8 * Based off drivers/usb/chipidea/ci_hdrc_msm.c
9 *
10 */
11
12#include <linux/module.h>
13#include <linux/platform_device.h>
14#include <linux/usb/gadget.h>
15#include <linux/usb/chipidea.h>
16
17#include "ci.h"
18
19static struct ci_hdrc_platform_data ci_hdrc_zevio_platdata = {
20 .name = "ci_hdrc_zevio",
21 .flags = CI_HDRC_REGS_SHARED,
22 .capoffset = DEF_CAPOFFSET,
23};
24
25static int ci_hdrc_zevio_probe(struct platform_device *pdev)
26{
27 struct platform_device *ci_pdev;
28
29 dev_dbg(&pdev->dev, "ci_hdrc_zevio_probe\n");
30
31 ci_pdev = ci_hdrc_add_device(&pdev->dev,
32 pdev->resource, pdev->num_resources,
33 &ci_hdrc_zevio_platdata);
34
35 if (IS_ERR(ci_pdev)) {
36 dev_err(&pdev->dev, "ci_hdrc_add_device failed!\n");
37 return PTR_ERR(ci_pdev);
38 }
39
40 platform_set_drvdata(pdev, ci_pdev);
41
42 return 0;
43}
44
45static int ci_hdrc_zevio_remove(struct platform_device *pdev)
46{
47 struct platform_device *ci_pdev = platform_get_drvdata(pdev);
48
49 ci_hdrc_remove_device(ci_pdev);
50
51 return 0;
52}
53
54static const struct of_device_id ci_hdrc_zevio_dt_ids[] = {
55 { .compatible = "lsi,zevio-usb", },
56 { /* sentinel */ }
57};
58
59static struct platform_driver ci_hdrc_zevio_driver = {
60 .probe = ci_hdrc_zevio_probe,
61 .remove = ci_hdrc_zevio_remove,
62 .driver = {
63 .name = "zevio_usb",
64 .owner = THIS_MODULE,
65 .of_match_table = ci_hdrc_zevio_dt_ids,
66 },
67};
68
69MODULE_DEVICE_TABLE(of, ci_hdrc_zevio_dt_ids);
70module_platform_driver(ci_hdrc_zevio_driver);
71
72MODULE_LICENSE("GPL v2");