Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 1 | /* |
| 2 | * SAMSUNG EXYNOS USB HOST OHCI Controller |
| 3 | * |
| 4 | * Copyright (C) 2011 Samsung Electronics Co.Ltd |
| 5 | * Author: Jingoo Han <jg1.han@samsung.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License as published by the |
| 9 | * Free Software Foundation; either version 2 of the License, or (at your |
| 10 | * option) any later version. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | #include <linux/clk.h> |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 15 | #include <linux/dma-mapping.h> |
| 16 | #include <linux/io.h> |
| 17 | #include <linux/kernel.h> |
| 18 | #include <linux/module.h> |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 19 | #include <linux/of.h> |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 20 | #include <linux/platform_device.h> |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 21 | #include <linux/phy/phy.h> |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 22 | #include <linux/usb.h> |
| 23 | #include <linux/usb/hcd.h> |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 24 | |
| 25 | #include "ohci.h" |
| 26 | |
| 27 | #define DRIVER_DESC "OHCI EXYNOS driver" |
| 28 | |
| 29 | static const char hcd_name[] = "ohci-exynos"; |
| 30 | static struct hc_driver __read_mostly exynos_ohci_hc_driver; |
| 31 | |
| 32 | #define to_exynos_ohci(hcd) (struct exynos_ohci_hcd *)(hcd_to_ohci(hcd)->priv) |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 33 | |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 34 | #define PHY_NUMBER 3 |
| 35 | |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 36 | struct exynos_ohci_hcd { |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 37 | struct clk *clk; |
Vivek Gautam | 2db9416 | 2014-09-22 11:16:19 +0530 | [diff] [blame] | 38 | struct phy *phy[PHY_NUMBER]; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 39 | }; |
| 40 | |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 41 | static int exynos_ohci_get_phy(struct device *dev, |
| 42 | struct exynos_ohci_hcd *exynos_ohci) |
| 43 | { |
| 44 | struct device_node *child; |
| 45 | struct phy *phy; |
| 46 | int phy_number; |
Vivek Gautam | 2db9416 | 2014-09-22 11:16:19 +0530 | [diff] [blame] | 47 | int ret; |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 48 | |
Vivek Gautam | 2db9416 | 2014-09-22 11:16:19 +0530 | [diff] [blame] | 49 | /* Get PHYs for the controller */ |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 50 | for_each_available_child_of_node(dev->of_node, child) { |
| 51 | ret = of_property_read_u32(child, "reg", &phy_number); |
| 52 | if (ret) { |
| 53 | dev_err(dev, "Failed to parse device tree\n"); |
| 54 | of_node_put(child); |
| 55 | return ret; |
| 56 | } |
| 57 | |
| 58 | if (phy_number >= PHY_NUMBER) { |
| 59 | dev_err(dev, "Invalid number of PHYs\n"); |
| 60 | of_node_put(child); |
| 61 | return -EINVAL; |
| 62 | } |
| 63 | |
Sachin Kamat | 473e92e | 2014-06-06 14:13:44 +0530 | [diff] [blame] | 64 | phy = devm_of_phy_get(dev, child, NULL); |
Vivek Gautam | 2db9416 | 2014-09-22 11:16:19 +0530 | [diff] [blame] | 65 | exynos_ohci->phy[phy_number] = phy; |
Vivek Gautam | 2db9416 | 2014-09-22 11:16:19 +0530 | [diff] [blame] | 66 | if (IS_ERR(phy)) { |
| 67 | ret = PTR_ERR(phy); |
| 68 | if (ret == -EPROBE_DEFER) { |
| 69 | return ret; |
| 70 | } else if (ret != -ENOSYS && ret != -ENODEV) { |
| 71 | dev_err(dev, |
| 72 | "Error retrieving usb2 phy: %d\n", ret); |
| 73 | return ret; |
| 74 | } |
| 75 | } |
Vivek Gautam | 2f7f41c | 2014-08-05 16:09:08 +0530 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | return 0; |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static int exynos_ohci_phy_enable(struct device *dev) |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 82 | { |
Vivek Gautam | 54969ed | 2014-05-05 10:33:42 +0530 | [diff] [blame] | 83 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 84 | struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd); |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 85 | int i; |
| 86 | int ret = 0; |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 87 | |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 88 | for (i = 0; ret == 0 && i < PHY_NUMBER; i++) |
Vivek Gautam | 2db9416 | 2014-09-22 11:16:19 +0530 | [diff] [blame] | 89 | if (!IS_ERR(exynos_ohci->phy[i])) |
| 90 | ret = phy_power_on(exynos_ohci->phy[i]); |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 91 | if (ret) |
| 92 | for (i--; i >= 0; i--) |
Vivek Gautam | 2db9416 | 2014-09-22 11:16:19 +0530 | [diff] [blame] | 93 | if (!IS_ERR(exynos_ohci->phy[i])) |
| 94 | phy_power_off(exynos_ohci->phy[i]); |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 95 | |
| 96 | return ret; |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 97 | } |
| 98 | |
Vivek Gautam | 54969ed | 2014-05-05 10:33:42 +0530 | [diff] [blame] | 99 | static void exynos_ohci_phy_disable(struct device *dev) |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 100 | { |
Vivek Gautam | 54969ed | 2014-05-05 10:33:42 +0530 | [diff] [blame] | 101 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 102 | struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd); |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 103 | int i; |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 104 | |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 105 | for (i = 0; i < PHY_NUMBER; i++) |
Vivek Gautam | 2db9416 | 2014-09-22 11:16:19 +0530 | [diff] [blame] | 106 | if (!IS_ERR(exynos_ohci->phy[i])) |
| 107 | phy_power_off(exynos_ohci->phy[i]); |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 108 | } |
| 109 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 110 | static int exynos_ohci_probe(struct platform_device *pdev) |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 111 | { |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 112 | struct exynos_ohci_hcd *exynos_ohci; |
| 113 | struct usb_hcd *hcd; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 114 | struct resource *res; |
| 115 | int irq; |
| 116 | int err; |
| 117 | |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 118 | /* |
| 119 | * Right now device-tree probed devices don't get dma_mask set. |
| 120 | * Since shared usb code relies on it, set it here for now. |
| 121 | * Once we move to full device tree support this will vanish off. |
| 122 | */ |
Russell King | e1fd734 | 2013-06-27 12:36:37 +0100 | [diff] [blame] | 123 | err = dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32)); |
Russell King | 22d9d8e | 2013-06-10 16:28:49 +0100 | [diff] [blame] | 124 | if (err) |
| 125 | return err; |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 126 | |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 127 | hcd = usb_create_hcd(&exynos_ohci_hc_driver, |
| 128 | &pdev->dev, dev_name(&pdev->dev)); |
| 129 | if (!hcd) { |
| 130 | dev_err(&pdev->dev, "Unable to create HCD\n"); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 131 | return -ENOMEM; |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | exynos_ohci = to_exynos_ohci(hcd); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 135 | |
Thomas Abraham | 2871782 | 2013-04-11 17:12:30 +0530 | [diff] [blame] | 136 | if (of_device_is_compatible(pdev->dev.of_node, |
| 137 | "samsung,exynos5440-ohci")) |
| 138 | goto skip_phy; |
| 139 | |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 140 | err = exynos_ohci_get_phy(&pdev->dev, exynos_ohci); |
| 141 | if (err) |
| 142 | goto fail_clk; |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 143 | |
Thomas Abraham | 2871782 | 2013-04-11 17:12:30 +0530 | [diff] [blame] | 144 | skip_phy: |
Jingoo Han | 60d80ad | 2012-10-04 16:11:50 +0900 | [diff] [blame] | 145 | exynos_ohci->clk = devm_clk_get(&pdev->dev, "usbhost"); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 146 | |
| 147 | if (IS_ERR(exynos_ohci->clk)) { |
| 148 | dev_err(&pdev->dev, "Failed to get usbhost clock\n"); |
| 149 | err = PTR_ERR(exynos_ohci->clk); |
| 150 | goto fail_clk; |
| 151 | } |
| 152 | |
Thomas Abraham | c05c946 | 2012-10-03 08:41:37 +0900 | [diff] [blame] | 153 | err = clk_prepare_enable(exynos_ohci->clk); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 154 | if (err) |
Jingoo Han | 60d80ad | 2012-10-04 16:11:50 +0900 | [diff] [blame] | 155 | goto fail_clk; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 156 | |
| 157 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Vivek Gautam | bae00c1 | 2014-05-10 17:30:10 +0530 | [diff] [blame] | 158 | hcd->regs = devm_ioremap_resource(&pdev->dev, res); |
| 159 | if (IS_ERR(hcd->regs)) { |
| 160 | err = PTR_ERR(hcd->regs); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 161 | goto fail_io; |
| 162 | } |
Varka Bhadram | b87a9c5 | 2014-11-04 07:51:13 +0530 | [diff] [blame] | 163 | hcd->rsrc_start = res->start; |
| 164 | hcd->rsrc_len = resource_size(res); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 165 | |
| 166 | irq = platform_get_irq(pdev, 0); |
| 167 | if (!irq) { |
| 168 | dev_err(&pdev->dev, "Failed to get IRQ\n"); |
| 169 | err = -ENODEV; |
Jingoo Han | 390a0a7 | 2012-06-28 16:30:30 +0900 | [diff] [blame] | 170 | goto fail_io; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 171 | } |
| 172 | |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 173 | platform_set_drvdata(pdev, hcd); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 174 | |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 175 | err = exynos_ohci_phy_enable(&pdev->dev); |
| 176 | if (err) { |
| 177 | dev_err(&pdev->dev, "Failed to enable USB phy\n"); |
| 178 | goto fail_io; |
| 179 | } |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 180 | |
| 181 | err = usb_add_hcd(hcd, irq, IRQF_SHARED); |
| 182 | if (err) { |
| 183 | dev_err(&pdev->dev, "Failed to add USB HCD\n"); |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 184 | goto fail_add_hcd; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 185 | } |
Peter Chen | 3c9740a | 2013-11-05 10:46:02 +0800 | [diff] [blame] | 186 | device_wakeup_enable(hcd->self.controller); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 187 | return 0; |
| 188 | |
Vivek Gautam | ed993bf | 2013-01-22 18:30:43 +0530 | [diff] [blame] | 189 | fail_add_hcd: |
Vivek Gautam | 54969ed | 2014-05-05 10:33:42 +0530 | [diff] [blame] | 190 | exynos_ohci_phy_disable(&pdev->dev); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 191 | fail_io: |
Thomas Abraham | c05c946 | 2012-10-03 08:41:37 +0900 | [diff] [blame] | 192 | clk_disable_unprepare(exynos_ohci->clk); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 193 | fail_clk: |
| 194 | usb_put_hcd(hcd); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 195 | return err; |
| 196 | } |
| 197 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 198 | static int exynos_ohci_remove(struct platform_device *pdev) |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 199 | { |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 200 | struct usb_hcd *hcd = platform_get_drvdata(pdev); |
| 201 | struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 202 | |
| 203 | usb_remove_hcd(hcd); |
| 204 | |
Vivek Gautam | 54969ed | 2014-05-05 10:33:42 +0530 | [diff] [blame] | 205 | exynos_ohci_phy_disable(&pdev->dev); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 206 | |
Thomas Abraham | c05c946 | 2012-10-03 08:41:37 +0900 | [diff] [blame] | 207 | clk_disable_unprepare(exynos_ohci->clk); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 208 | |
| 209 | usb_put_hcd(hcd); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 210 | |
| 211 | return 0; |
| 212 | } |
| 213 | |
| 214 | static void exynos_ohci_shutdown(struct platform_device *pdev) |
| 215 | { |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 216 | struct usb_hcd *hcd = platform_get_drvdata(pdev); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 217 | |
| 218 | if (hcd->driver->shutdown) |
| 219 | hcd->driver->shutdown(hcd); |
| 220 | } |
| 221 | |
| 222 | #ifdef CONFIG_PM |
| 223 | static int exynos_ohci_suspend(struct device *dev) |
| 224 | { |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 225 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
| 226 | struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd); |
Majunath Goudar | 14982e3 | 2013-11-13 17:40:20 +0530 | [diff] [blame] | 227 | bool do_wakeup = device_may_wakeup(dev); |
Majunath Goudar | 14982e3 | 2013-11-13 17:40:20 +0530 | [diff] [blame] | 228 | int rc = ohci_suspend(hcd, do_wakeup); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 229 | |
Majunath Goudar | 14982e3 | 2013-11-13 17:40:20 +0530 | [diff] [blame] | 230 | if (rc) |
| 231 | return rc; |
| 232 | |
Vivek Gautam | 54969ed | 2014-05-05 10:33:42 +0530 | [diff] [blame] | 233 | exynos_ohci_phy_disable(dev); |
Jingoo Han | e864abe | 2012-06-28 16:49:42 +0900 | [diff] [blame] | 234 | |
Thomas Abraham | c05c946 | 2012-10-03 08:41:37 +0900 | [diff] [blame] | 235 | clk_disable_unprepare(exynos_ohci->clk); |
Jingoo Han | e864abe | 2012-06-28 16:49:42 +0900 | [diff] [blame] | 236 | |
Majunath Goudar | 14982e3 | 2013-11-13 17:40:20 +0530 | [diff] [blame] | 237 | return 0; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | static int exynos_ohci_resume(struct device *dev) |
| 241 | { |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 242 | struct usb_hcd *hcd = dev_get_drvdata(dev); |
| 243 | struct exynos_ohci_hcd *exynos_ohci = to_exynos_ohci(hcd); |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 244 | int ret; |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 245 | |
Thomas Abraham | c05c946 | 2012-10-03 08:41:37 +0900 | [diff] [blame] | 246 | clk_prepare_enable(exynos_ohci->clk); |
Jingoo Han | e864abe | 2012-06-28 16:49:42 +0900 | [diff] [blame] | 247 | |
Vivek Gautam | 7d28e54 | 2014-05-05 10:32:57 +0530 | [diff] [blame] | 248 | ret = exynos_ohci_phy_enable(dev); |
| 249 | if (ret) { |
| 250 | dev_err(dev, "Failed to enable USB phy\n"); |
| 251 | clk_disable_unprepare(exynos_ohci->clk); |
| 252 | return ret; |
| 253 | } |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 254 | |
Florian Fainelli | cfa49b4 | 2012-10-08 15:11:29 +0200 | [diff] [blame] | 255 | ohci_resume(hcd, false); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 256 | |
| 257 | return 0; |
| 258 | } |
| 259 | #else |
| 260 | #define exynos_ohci_suspend NULL |
| 261 | #define exynos_ohci_resume NULL |
| 262 | #endif |
| 263 | |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 264 | static const struct ohci_driver_overrides exynos_overrides __initconst = { |
| 265 | .extra_priv_size = sizeof(struct exynos_ohci_hcd), |
| 266 | }; |
| 267 | |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 268 | static const struct dev_pm_ops exynos_ohci_pm_ops = { |
| 269 | .suspend = exynos_ohci_suspend, |
| 270 | .resume = exynos_ohci_resume, |
| 271 | }; |
| 272 | |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 273 | #ifdef CONFIG_OF |
| 274 | static const struct of_device_id exynos_ohci_match[] = { |
Vivek Gautam | 6e24777 | 2013-01-24 19:15:29 +0530 | [diff] [blame] | 275 | { .compatible = "samsung,exynos4210-ohci" }, |
Thomas Abraham | 2871782 | 2013-04-11 17:12:30 +0530 | [diff] [blame] | 276 | { .compatible = "samsung,exynos5440-ohci" }, |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 277 | {}, |
| 278 | }; |
| 279 | MODULE_DEVICE_TABLE(of, exynos_ohci_match); |
| 280 | #endif |
| 281 | |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 282 | static struct platform_driver exynos_ohci_driver = { |
| 283 | .probe = exynos_ohci_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 284 | .remove = exynos_ohci_remove, |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 285 | .shutdown = exynos_ohci_shutdown, |
| 286 | .driver = { |
| 287 | .name = "exynos-ohci", |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 288 | .pm = &exynos_ohci_pm_ops, |
Vivek Gautam | d513893 | 2012-07-16 11:25:36 +0530 | [diff] [blame] | 289 | .of_match_table = of_match_ptr(exynos_ohci_match), |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 290 | } |
| 291 | }; |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 292 | static int __init ohci_exynos_init(void) |
| 293 | { |
| 294 | if (usb_disabled()) |
| 295 | return -ENODEV; |
| 296 | |
| 297 | pr_info("%s: " DRIVER_DESC "\n", hcd_name); |
| 298 | ohci_init_driver(&exynos_ohci_hc_driver, &exynos_overrides); |
| 299 | return platform_driver_register(&exynos_ohci_driver); |
| 300 | } |
| 301 | module_init(ohci_exynos_init); |
| 302 | |
| 303 | static void __exit ohci_exynos_cleanup(void) |
| 304 | { |
| 305 | platform_driver_unregister(&exynos_ohci_driver); |
| 306 | } |
| 307 | module_exit(ohci_exynos_cleanup); |
Jingoo Han | 6219424 | 2011-12-23 11:20:54 +0900 | [diff] [blame] | 308 | |
| 309 | MODULE_ALIAS("platform:exynos-ohci"); |
| 310 | MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>"); |
Manjunath Goudar | 50a97e0 | 2013-09-21 16:38:38 +0530 | [diff] [blame] | 311 | MODULE_LICENSE("GPL v2"); |