diff options
author | Benoit Goby <benoit@android.com> | 2011-03-09 19:28:54 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-03-11 17:22:10 -0500 |
commit | ee398ba97dd76ed53bed548dec648d918af4004c (patch) | |
tree | d1c040f81ba5359a60d693235eb1974b50abc058 /drivers/usb/otg | |
parent | d0781383038e983a63843a9a6a067ed781db89c1 (diff) |
usb: otg: Add ulpi viewport access ops
Add generic access ops for controllers with a ulpi viewport register
(e.g. Chipidea/ARC based controllers).
Signed-off-by: Benoit Goby <benoit@android.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/otg')
-rw-r--r-- | drivers/usb/otg/Kconfig | 7 | ||||
-rw-r--r-- | drivers/usb/otg/Makefile | 1 | ||||
-rw-r--r-- | drivers/usb/otg/ulpi_viewport.c | 80 |
3 files changed, 88 insertions, 0 deletions
diff --git a/drivers/usb/otg/Kconfig b/drivers/usb/otg/Kconfig index ceb24fee2eac..daf3e5f1a0e7 100644 --- a/drivers/usb/otg/Kconfig +++ b/drivers/usb/otg/Kconfig | |||
@@ -49,6 +49,13 @@ config USB_ULPI | |||
49 | Enable this to support ULPI connected USB OTG transceivers which | 49 | Enable this to support ULPI connected USB OTG transceivers which |
50 | are likely found on embedded boards. | 50 | are likely found on embedded boards. |
51 | 51 | ||
52 | config USB_ULPI_VIEWPORT | ||
53 | bool | ||
54 | depends on USB_ULPI | ||
55 | help | ||
56 | Provides read/write operations to the ULPI phy register set for | ||
57 | controllers with a viewport register (e.g. Chipidea/ARC controllers). | ||
58 | |||
52 | config TWL4030_USB | 59 | config TWL4030_USB |
53 | tristate "TWL4030 USB Transceiver Driver" | 60 | tristate "TWL4030 USB Transceiver Driver" |
54 | depends on TWL4030_CORE && REGULATOR_TWL4030 | 61 | depends on TWL4030_CORE && REGULATOR_TWL4030 |
diff --git a/drivers/usb/otg/Makefile b/drivers/usb/otg/Makefile index e516894260bf..e22d917de017 100644 --- a/drivers/usb/otg/Makefile +++ b/drivers/usb/otg/Makefile | |||
@@ -16,5 +16,6 @@ obj-$(CONFIG_TWL6030_USB) += twl6030-usb.o | |||
16 | obj-$(CONFIG_USB_LANGWELL_OTG) += langwell_otg.o | 16 | obj-$(CONFIG_USB_LANGWELL_OTG) += langwell_otg.o |
17 | obj-$(CONFIG_NOP_USB_XCEIV) += nop-usb-xceiv.o | 17 | obj-$(CONFIG_NOP_USB_XCEIV) += nop-usb-xceiv.o |
18 | obj-$(CONFIG_USB_ULPI) += ulpi.o | 18 | obj-$(CONFIG_USB_ULPI) += ulpi.o |
19 | obj-$(CONFIG_USB_ULPI_VIEWPORT) += ulpi_viewport.o | ||
19 | obj-$(CONFIG_USB_MSM_OTG) += msm_otg.o | 20 | obj-$(CONFIG_USB_MSM_OTG) += msm_otg.o |
20 | obj-$(CONFIG_AB8500_USB) += ab8500-usb.o | 21 | obj-$(CONFIG_AB8500_USB) += ab8500-usb.o |
diff --git a/drivers/usb/otg/ulpi_viewport.c b/drivers/usb/otg/ulpi_viewport.c new file mode 100644 index 000000000000..e9a37f90994f --- /dev/null +++ b/drivers/usb/otg/ulpi_viewport.c | |||
@@ -0,0 +1,80 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2011 Google, Inc. | ||
3 | * | ||
4 | * This software is licensed under the terms of the GNU General Public | ||
5 | * License version 2, as published by the Free Software Foundation, and | ||
6 | * may be copied, distributed, and modified under those terms. | ||
7 | * | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | */ | ||
14 | |||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/usb.h> | ||
17 | #include <linux/io.h> | ||
18 | #include <linux/usb/otg.h> | ||
19 | #include <linux/usb/ulpi.h> | ||
20 | |||
21 | #define ULPI_VIEW_WAKEUP (1 << 31) | ||
22 | #define ULPI_VIEW_RUN (1 << 30) | ||
23 | #define ULPI_VIEW_WRITE (1 << 29) | ||
24 | #define ULPI_VIEW_READ (0 << 29) | ||
25 | #define ULPI_VIEW_ADDR(x) (((x) & 0xff) << 16) | ||
26 | #define ULPI_VIEW_DATA_READ(x) (((x) >> 8) & 0xff) | ||
27 | #define ULPI_VIEW_DATA_WRITE(x) ((x) & 0xff) | ||
28 | |||
29 | static int ulpi_viewport_wait(void __iomem *view, u32 mask) | ||
30 | { | ||
31 | unsigned long usec = 2000; | ||
32 | |||
33 | while (usec--) { | ||
34 | if (!(readl(view) & mask)) | ||
35 | return 0; | ||
36 | |||
37 | udelay(1); | ||
38 | }; | ||
39 | |||
40 | return -ETIMEDOUT; | ||
41 | } | ||
42 | |||
43 | static int ulpi_viewport_read(struct otg_transceiver *otg, u32 reg) | ||
44 | { | ||
45 | int ret; | ||
46 | void __iomem *view = otg->io_priv; | ||
47 | |||
48 | writel(ULPI_VIEW_WAKEUP | ULPI_VIEW_WRITE, view); | ||
49 | ret = ulpi_viewport_wait(view, ULPI_VIEW_WAKEUP); | ||
50 | if (ret) | ||
51 | return ret; | ||
52 | |||
53 | writel(ULPI_VIEW_RUN | ULPI_VIEW_READ | ULPI_VIEW_ADDR(reg), view); | ||
54 | ret = ulpi_viewport_wait(view, ULPI_VIEW_RUN); | ||
55 | if (ret) | ||
56 | return ret; | ||
57 | |||
58 | return ULPI_VIEW_DATA_READ(readl(view)); | ||
59 | } | ||
60 | |||
61 | static int ulpi_viewport_write(struct otg_transceiver *otg, u32 val, u32 reg) | ||
62 | { | ||
63 | int ret; | ||
64 | void __iomem *view = otg->io_priv; | ||
65 | |||
66 | writel(ULPI_VIEW_WAKEUP | ULPI_VIEW_WRITE, view); | ||
67 | ret = ulpi_viewport_wait(view, ULPI_VIEW_WAKEUP); | ||
68 | if (ret) | ||
69 | return ret; | ||
70 | |||
71 | writel(ULPI_VIEW_RUN | ULPI_VIEW_WRITE | ULPI_VIEW_DATA_WRITE(val) | | ||
72 | ULPI_VIEW_ADDR(reg), view); | ||
73 | |||
74 | return ulpi_viewport_wait(view, ULPI_VIEW_RUN); | ||
75 | } | ||
76 | |||
77 | struct otg_io_access_ops ulpi_viewport_access_ops = { | ||
78 | .read = ulpi_viewport_read, | ||
79 | .write = ulpi_viewport_write, | ||
80 | }; | ||