Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 1 | /* |
| 2 | * host.c - ChipIdea USB host controller driver |
| 3 | * |
| 4 | * Copyright (c) 2012 Intel Corporation |
| 5 | * |
| 6 | * Author: Alexander Shishkin |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 20 | */ |
| 21 | |
| 22 | #include <linux/kernel.h> |
Alan Stern | cdb2fac | 2012-11-03 12:39:27 -0400 | [diff] [blame] | 23 | #include <linux/io.h> |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 24 | #include <linux/usb.h> |
| 25 | #include <linux/usb/hcd.h> |
| 26 | #include <linux/usb/chipidea.h> |
Peter Chen | 40ed51a | 2013-08-14 12:44:04 +0300 | [diff] [blame] | 27 | #include <linux/regulator/consumer.h> |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 28 | |
Alan Stern | 09f6ffd | 2012-11-02 12:34:41 -0400 | [diff] [blame] | 29 | #include "../host/ehci.h" |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 30 | |
| 31 | #include "ci.h" |
| 32 | #include "bits.h" |
| 33 | #include "host.h" |
| 34 | |
Alan Stern | 09f6ffd | 2012-11-02 12:34:41 -0400 | [diff] [blame] | 35 | static struct hc_driver __read_mostly ci_ehci_hc_driver; |
| 36 | |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 37 | static irqreturn_t host_irq(struct ci_hdrc *ci) |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 38 | { |
| 39 | return usb_hcd_irq(ci->irq, ci->hcd); |
| 40 | } |
| 41 | |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 42 | static int host_start(struct ci_hdrc *ci) |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 43 | { |
| 44 | struct usb_hcd *hcd; |
| 45 | struct ehci_hcd *ehci; |
| 46 | int ret; |
| 47 | |
| 48 | if (usb_disabled()) |
| 49 | return -ENODEV; |
| 50 | |
| 51 | hcd = usb_create_hcd(&ci_ehci_hc_driver, ci->dev, dev_name(ci->dev)); |
| 52 | if (!hcd) |
| 53 | return -ENOMEM; |
| 54 | |
| 55 | dev_set_drvdata(ci->dev, ci); |
| 56 | hcd->rsrc_start = ci->hw_bank.phys; |
| 57 | hcd->rsrc_len = ci->hw_bank.size; |
| 58 | hcd->regs = ci->hw_bank.abs; |
| 59 | hcd->has_tt = 1; |
| 60 | |
Richard Zhao | 77c4400 | 2012-06-29 17:48:53 +0800 | [diff] [blame] | 61 | hcd->power_budget = ci->platdata->power_budget; |
Richard Zhao | a2c3d69 | 2012-07-07 22:56:46 +0800 | [diff] [blame] | 62 | hcd->phy = ci->transceiver; |
Alexander Shishkin | bd84198 | 2012-05-11 17:25:55 +0300 | [diff] [blame] | 63 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 64 | ehci = hcd_to_ehci(hcd); |
| 65 | ehci->caps = ci->hw_bank.cap; |
| 66 | ehci->has_hostpc = ci->hw_bank.lpm; |
Tuomas Tynkkynen | 2cdcec4 | 2013-08-12 16:06:49 +0300 | [diff] [blame] | 67 | ehci->has_tdi_phy_lpm = ci->hw_bank.lpm; |
Peter Chen | ed8f831 | 2014-01-10 13:51:27 +0800 | [diff] [blame] | 68 | ehci->imx28_write_fix = ci->imx28_write_fix; |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 69 | |
Li Jun | 8a28b90 | 2014-04-23 15:56:45 +0800 | [diff] [blame^] | 70 | /* |
| 71 | * vbus is always on if host is not in OTG FSM mode, |
| 72 | * otherwise should be controlled by OTG FSM |
| 73 | */ |
| 74 | if (ci->platdata->reg_vbus && !ci_otg_is_fsm_mode(ci)) { |
Peter Chen | 40ed51a | 2013-08-14 12:44:04 +0300 | [diff] [blame] | 75 | ret = regulator_enable(ci->platdata->reg_vbus); |
| 76 | if (ret) { |
| 77 | dev_err(ci->dev, |
| 78 | "Failed to enable vbus regulator, ret=%d\n", |
| 79 | ret); |
| 80 | goto put_hcd; |
| 81 | } |
| 82 | } |
| 83 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 84 | ret = usb_add_hcd(hcd, 0, 0); |
| 85 | if (ret) |
Peter Chen | 40ed51a | 2013-08-14 12:44:04 +0300 | [diff] [blame] | 86 | goto disable_reg; |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 87 | else |
| 88 | ci->hcd = hcd; |
| 89 | |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 90 | if (ci->platdata->flags & CI_HDRC_DISABLE_STREAMING) |
Fabio Estevam | 929473e | 2012-12-22 09:24:11 -0200 | [diff] [blame] | 91 | hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS, USBMODE_CI_SDIS); |
| 92 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 93 | return ret; |
Peter Chen | 40ed51a | 2013-08-14 12:44:04 +0300 | [diff] [blame] | 94 | |
| 95 | disable_reg: |
Li Jun | 8a28b90 | 2014-04-23 15:56:45 +0800 | [diff] [blame^] | 96 | if (ci->platdata->reg_vbus && !ci_otg_is_fsm_mode(ci)) |
Fabio Estevam | 46adcf3 | 2013-11-08 01:09:47 -0200 | [diff] [blame] | 97 | regulator_disable(ci->platdata->reg_vbus); |
Peter Chen | 40ed51a | 2013-08-14 12:44:04 +0300 | [diff] [blame] | 98 | |
| 99 | put_hcd: |
| 100 | usb_put_hcd(hcd); |
| 101 | |
| 102 | return ret; |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 103 | } |
| 104 | |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 105 | static void host_stop(struct ci_hdrc *ci) |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 106 | { |
| 107 | struct usb_hcd *hcd = ci->hcd; |
| 108 | |
Russell King - ARM Linux | 41314fe | 2013-10-16 13:45:15 +0100 | [diff] [blame] | 109 | if (hcd) { |
| 110 | usb_remove_hcd(hcd); |
| 111 | usb_put_hcd(hcd); |
Li Jun | 8a28b90 | 2014-04-23 15:56:45 +0800 | [diff] [blame^] | 112 | if (ci->platdata->reg_vbus && !ci_otg_is_fsm_mode(ci)) |
Peter Chen | df101c5 | 2013-10-22 11:13:41 +0800 | [diff] [blame] | 113 | regulator_disable(ci->platdata->reg_vbus); |
Russell King - ARM Linux | 41314fe | 2013-10-16 13:45:15 +0100 | [diff] [blame] | 114 | } |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 115 | } |
| 116 | |
Peter Chen | 3f124d2 | 2013-08-14 12:44:07 +0300 | [diff] [blame] | 117 | |
| 118 | void ci_hdrc_host_destroy(struct ci_hdrc *ci) |
| 119 | { |
Peter Chen | df101c5 | 2013-10-22 11:13:41 +0800 | [diff] [blame] | 120 | if (ci->role == CI_ROLE_HOST && ci->hcd) |
Peter Chen | 3f124d2 | 2013-08-14 12:44:07 +0300 | [diff] [blame] | 121 | host_stop(ci); |
| 122 | } |
| 123 | |
Alexander Shishkin | 8e22978 | 2013-06-24 14:46:36 +0300 | [diff] [blame] | 124 | int ci_hdrc_host_init(struct ci_hdrc *ci) |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 125 | { |
| 126 | struct ci_role_driver *rdrv; |
| 127 | |
| 128 | if (!hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_HC)) |
| 129 | return -ENXIO; |
| 130 | |
| 131 | rdrv = devm_kzalloc(ci->dev, sizeof(struct ci_role_driver), GFP_KERNEL); |
| 132 | if (!rdrv) |
| 133 | return -ENOMEM; |
| 134 | |
| 135 | rdrv->start = host_start; |
| 136 | rdrv->stop = host_stop; |
| 137 | rdrv->irq = host_irq; |
| 138 | rdrv->name = "host"; |
| 139 | ci->roles[CI_ROLE_HOST] = rdrv; |
| 140 | |
Alan Stern | 1b36810 | 2012-11-07 16:12:47 -0500 | [diff] [blame] | 141 | ehci_init_driver(&ci_ehci_hc_driver, NULL); |
Alan Stern | 09f6ffd | 2012-11-02 12:34:41 -0400 | [diff] [blame] | 142 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 143 | return 0; |
| 144 | } |