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> |
| 27 | |
Alan Stern | 09f6ffd | 2012-11-02 12:34:41 -0400 | [diff] [blame] | 28 | #include "../host/ehci.h" |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 29 | |
| 30 | #include "ci.h" |
| 31 | #include "bits.h" |
| 32 | #include "host.h" |
| 33 | |
Alan Stern | 09f6ffd | 2012-11-02 12:34:41 -0400 | [diff] [blame] | 34 | static struct hc_driver __read_mostly ci_ehci_hc_driver; |
| 35 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 36 | static irqreturn_t host_irq(struct ci13xxx *ci) |
| 37 | { |
| 38 | return usb_hcd_irq(ci->irq, ci->hcd); |
| 39 | } |
| 40 | |
| 41 | static int host_start(struct ci13xxx *ci) |
| 42 | { |
| 43 | struct usb_hcd *hcd; |
| 44 | struct ehci_hcd *ehci; |
| 45 | int ret; |
| 46 | |
| 47 | if (usb_disabled()) |
| 48 | return -ENODEV; |
| 49 | |
| 50 | hcd = usb_create_hcd(&ci_ehci_hc_driver, ci->dev, dev_name(ci->dev)); |
| 51 | if (!hcd) |
| 52 | return -ENOMEM; |
| 53 | |
| 54 | dev_set_drvdata(ci->dev, ci); |
| 55 | hcd->rsrc_start = ci->hw_bank.phys; |
| 56 | hcd->rsrc_len = ci->hw_bank.size; |
| 57 | hcd->regs = ci->hw_bank.abs; |
| 58 | hcd->has_tt = 1; |
| 59 | |
Richard Zhao | 77c4400 | 2012-06-29 17:48:53 +0800 | [diff] [blame] | 60 | hcd->power_budget = ci->platdata->power_budget; |
Richard Zhao | a2c3d69 | 2012-07-07 22:56:46 +0800 | [diff] [blame] | 61 | hcd->phy = ci->transceiver; |
Alexander Shishkin | bd84198 | 2012-05-11 17:25:55 +0300 | [diff] [blame] | 62 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 63 | ehci = hcd_to_ehci(hcd); |
| 64 | ehci->caps = ci->hw_bank.cap; |
| 65 | ehci->has_hostpc = ci->hw_bank.lpm; |
| 66 | |
| 67 | ret = usb_add_hcd(hcd, 0, 0); |
| 68 | if (ret) |
Marek Vasut | a756186 | 2012-05-15 06:10:21 +0200 | [diff] [blame] | 69 | usb_put_hcd(hcd); |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 70 | else |
| 71 | ci->hcd = hcd; |
| 72 | |
| 73 | return ret; |
| 74 | } |
| 75 | |
| 76 | static void host_stop(struct ci13xxx *ci) |
| 77 | { |
| 78 | struct usb_hcd *hcd = ci->hcd; |
| 79 | |
| 80 | usb_remove_hcd(hcd); |
| 81 | usb_put_hcd(hcd); |
| 82 | } |
| 83 | |
| 84 | int ci_hdrc_host_init(struct ci13xxx *ci) |
| 85 | { |
| 86 | struct ci_role_driver *rdrv; |
| 87 | |
| 88 | if (!hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_HC)) |
| 89 | return -ENXIO; |
| 90 | |
| 91 | rdrv = devm_kzalloc(ci->dev, sizeof(struct ci_role_driver), GFP_KERNEL); |
| 92 | if (!rdrv) |
| 93 | return -ENOMEM; |
| 94 | |
| 95 | rdrv->start = host_start; |
| 96 | rdrv->stop = host_stop; |
| 97 | rdrv->irq = host_irq; |
| 98 | rdrv->name = "host"; |
| 99 | ci->roles[CI_ROLE_HOST] = rdrv; |
| 100 | |
Alan Stern | 1b36810 | 2012-11-07 16:12:47 -0500 | [diff] [blame] | 101 | ehci_init_driver(&ci_ehci_hc_driver, NULL); |
Alan Stern | 09f6ffd | 2012-11-02 12:34:41 -0400 | [diff] [blame] | 102 | |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 103 | return 0; |
| 104 | } |