blob: 4f8eb40ad93a2c7fdc8d53d190970ecfa4f768cb [file] [log] [blame]
Alexander Shishkineb70e5a2012-05-11 17:25:54 +03001/*
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 Sterncdb2fac2012-11-03 12:39:27 -040023#include <linux/io.h>
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030024#include <linux/usb.h>
25#include <linux/usb/hcd.h>
26#include <linux/usb/chipidea.h>
Peter Chen40ed51a2013-08-14 12:44:04 +030027#include <linux/regulator/consumer.h>
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030028
Alan Stern09f6ffd2012-11-02 12:34:41 -040029#include "../host/ehci.h"
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030030
31#include "ci.h"
32#include "bits.h"
33#include "host.h"
34
Alan Stern09f6ffd2012-11-02 12:34:41 -040035static struct hc_driver __read_mostly ci_ehci_hc_driver;
36
Alexander Shishkin8e229782013-06-24 14:46:36 +030037static irqreturn_t host_irq(struct ci_hdrc *ci)
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030038{
39 return usb_hcd_irq(ci->irq, ci->hcd);
40}
41
Alexander Shishkin8e229782013-06-24 14:46:36 +030042static int host_start(struct ci_hdrc *ci)
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030043{
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 Zhao77c44002012-06-29 17:48:53 +080061 hcd->power_budget = ci->platdata->power_budget;
Peter Chenf6a9ff02014-08-19 09:51:56 +080062 hcd->tpl_support = ci->platdata->tpl_support;
Antoine Tenart1e5e2d32014-10-30 18:41:19 +010063 if (ci->phy)
64 hcd->phy = ci->phy;
65 else
66 hcd->usb_phy = ci->usb_phy;
Alexander Shishkinbd841982012-05-11 17:25:55 +030067
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030068 ehci = hcd_to_ehci(hcd);
69 ehci->caps = ci->hw_bank.cap;
70 ehci->has_hostpc = ci->hw_bank.lpm;
Tuomas Tynkkynen2cdcec42013-08-12 16:06:49 +030071 ehci->has_tdi_phy_lpm = ci->hw_bank.lpm;
Peter Chened8f8312014-01-10 13:51:27 +080072 ehci->imx28_write_fix = ci->imx28_write_fix;
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030073
Li Jun8a28b902014-04-23 15:56:45 +080074 /*
75 * vbus is always on if host is not in OTG FSM mode,
76 * otherwise should be controlled by OTG FSM
77 */
78 if (ci->platdata->reg_vbus && !ci_otg_is_fsm_mode(ci)) {
Peter Chen40ed51a2013-08-14 12:44:04 +030079 ret = regulator_enable(ci->platdata->reg_vbus);
80 if (ret) {
81 dev_err(ci->dev,
82 "Failed to enable vbus regulator, ret=%d\n",
83 ret);
84 goto put_hcd;
85 }
86 }
87
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030088 ret = usb_add_hcd(hcd, 0, 0);
Li Jun0698b9b2014-04-23 15:56:46 +080089 if (ret) {
Peter Chen40ed51a2013-08-14 12:44:04 +030090 goto disable_reg;
Li Jun0698b9b2014-04-23 15:56:46 +080091 } else {
Antoine Tenartef44cb42014-10-30 18:41:16 +010092 struct usb_otg *otg = &ci->otg;
Li Jun0698b9b2014-04-23 15:56:46 +080093
Alexander Shishkineb70e5a2012-05-11 17:25:54 +030094 ci->hcd = hcd;
Antoine Tenartef44cb42014-10-30 18:41:16 +010095
96 if (ci_otg_is_fsm_mode(ci)) {
Li Jun0698b9b2014-04-23 15:56:46 +080097 otg->host = &hcd->self;
98 hcd->self.otg_port = 1;
99 }
100 }
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300101
Alexander Shishkin8e229782013-06-24 14:46:36 +0300102 if (ci->platdata->flags & CI_HDRC_DISABLE_STREAMING)
Fabio Estevam929473e2012-12-22 09:24:11 -0200103 hw_write(ci, OP_USBMODE, USBMODE_CI_SDIS, USBMODE_CI_SDIS);
104
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300105 return ret;
Peter Chen40ed51a2013-08-14 12:44:04 +0300106
107disable_reg:
Li Jun8a28b902014-04-23 15:56:45 +0800108 if (ci->platdata->reg_vbus && !ci_otg_is_fsm_mode(ci))
Fabio Estevam46adcf32013-11-08 01:09:47 -0200109 regulator_disable(ci->platdata->reg_vbus);
Peter Chen40ed51a2013-08-14 12:44:04 +0300110
111put_hcd:
112 usb_put_hcd(hcd);
113
114 return ret;
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300115}
116
Alexander Shishkin8e229782013-06-24 14:46:36 +0300117static void host_stop(struct ci_hdrc *ci)
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300118{
119 struct usb_hcd *hcd = ci->hcd;
120
Russell King - ARM Linux41314fe2013-10-16 13:45:15 +0100121 if (hcd) {
122 usb_remove_hcd(hcd);
123 usb_put_hcd(hcd);
Li Jun8a28b902014-04-23 15:56:45 +0800124 if (ci->platdata->reg_vbus && !ci_otg_is_fsm_mode(ci))
Peter Chendf101c52013-10-22 11:13:41 +0800125 regulator_disable(ci->platdata->reg_vbus);
Russell King - ARM Linux41314fe2013-10-16 13:45:15 +0100126 }
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300127}
128
Peter Chen3f124d22013-08-14 12:44:07 +0300129
130void ci_hdrc_host_destroy(struct ci_hdrc *ci)
131{
Peter Chendf101c52013-10-22 11:13:41 +0800132 if (ci->role == CI_ROLE_HOST && ci->hcd)
Peter Chen3f124d22013-08-14 12:44:07 +0300133 host_stop(ci);
134}
135
Alexander Shishkin8e229782013-06-24 14:46:36 +0300136int ci_hdrc_host_init(struct ci_hdrc *ci)
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300137{
138 struct ci_role_driver *rdrv;
139
140 if (!hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_HC))
141 return -ENXIO;
142
143 rdrv = devm_kzalloc(ci->dev, sizeof(struct ci_role_driver), GFP_KERNEL);
144 if (!rdrv)
145 return -ENOMEM;
146
147 rdrv->start = host_start;
148 rdrv->stop = host_stop;
149 rdrv->irq = host_irq;
150 rdrv->name = "host";
151 ci->roles[CI_ROLE_HOST] = rdrv;
152
Alan Stern1b368102012-11-07 16:12:47 -0500153 ehci_init_driver(&ci_ehci_hc_driver, NULL);
Alan Stern09f6ffd2012-11-02 12:34:41 -0400154
Alexander Shishkineb70e5a2012-05-11 17:25:54 +0300155 return 0;
156}