blob: 89150b2435e5a4c2e95fdad2e928d2fe990ac8ef [file] [log] [blame]
Felipe Balbi18cb7ac2009-03-23 18:34:06 -07001/*
2 * linux/arch/arm/mach-omap2/usb-musb.c
3 *
4 * This file will contain the board specific details for the
5 * MENTOR USB OTG controller on OMAP3430
6 *
7 * Copyright (C) 2007-2008 Texas Instruments
8 * Copyright (C) 2008 Nokia Corporation
9 * Author: Vikram Pandita
10 *
11 * Generalization by:
12 * Felipe Balbi <felipe.balbi@nokia.com>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 */
18
19#include <linux/types.h>
20#include <linux/errno.h>
21#include <linux/delay.h>
22#include <linux/platform_device.h>
23#include <linux/clk.h>
24#include <linux/dma-mapping.h>
25#include <linux/io.h>
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070026#include <linux/usb/musb.h>
27
Tony Lindgrence491cf2009-10-20 09:40:47 -070028#include <plat/usb.h>
Hema HK18a26892011-02-17 12:07:21 +053029#include <plat/omap_device.h>
Tony Lindgrendbc04162012-08-31 10:59:07 -070030
31#include <mach/am35xx.h>
32
Anand Gadiyar2aae4222011-02-16 15:42:15 +053033#include "mux.h"
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070034
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070035static struct musb_hdrc_config musb_config = {
36 .multipoint = 1,
37 .dyn_fifo = 1,
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070038 .num_eps = 16,
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070039 .ram_bits = 12,
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070040};
41
42static struct musb_hdrc_platform_data musb_plat = {
Tony Lindgren310018d2012-06-20 07:18:15 -070043#ifdef CONFIG_USB_GADGET_MUSB_HDRC
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070044 .mode = MUSB_OTG,
Tony Lindgren310018d2012-06-20 07:18:15 -070045#else
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070046 .mode = MUSB_HOST,
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070047#endif
48 /* .clock is set dynamically */
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070049 .config = &musb_config,
50
51 /* REVISIT charge pump on TWL4030 can supply up to
52 * 100 mA ... but this value is board-specific, like
53 * "mode", and should be passed to usb_musb_init().
54 */
55 .power = 50, /* up to 100 mA */
56};
57
Yang Hongyange9304382009-04-13 14:40:14 -070058static u64 musb_dmamask = DMA_BIT_MASK(32);
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070059
Mike Rapoport9e186302011-04-27 11:56:12 +030060static struct omap_musb_board_data musb_default_board_data = {
61 .interface_type = MUSB_INTERFACE_ULPI,
62 .mode = MUSB_OTG,
63 .power = 100,
64};
65
66void __init usb_musb_init(struct omap_musb_board_data *musb_board_data)
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070067{
Hema HK18a26892011-02-17 12:07:21 +053068 struct omap_hwmod *oh;
Hema HK18a26892011-02-17 12:07:21 +053069 struct platform_device *pdev;
70 struct device *dev;
71 int bus_id = -1;
72 const char *oh_name, *name;
Mike Rapoport9e186302011-04-27 11:56:12 +030073 struct omap_musb_board_data *board_data;
74
75 if (musb_board_data)
76 board_data = musb_board_data;
77 else
78 board_data = &musb_default_board_data;
Anand Gadiyar2aae4222011-02-16 15:42:15 +053079
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070080 /*
81 * REVISIT: This line can be removed once all the platforms using
82 * musb_core.c have been converted to use use clkdev.
83 */
84 musb_plat.clock = "ick";
Maulik Mankad884b83692010-02-17 14:09:30 -080085 musb_plat.board_data = board_data;
86 musb_plat.power = board_data->power >> 1;
87 musb_plat.mode = board_data->mode;
Ajay Kumar Gupta58815fa2010-03-25 13:25:27 +020088 musb_plat.extvbus = board_data->extvbus;
Felipe Balbi18cb7ac2009-03-23 18:34:06 -070089
Kevin Hilman68a88b92012-04-30 16:37:10 -070090 if (soc_is_am35xx()) {
Hema HK18a26892011-02-17 12:07:21 +053091 oh_name = "am35x_otg_hs";
92 name = "musb-am35x";
Ravi Babucada6912011-12-13 10:50:58 -080093 } else if (cpu_is_ti81xx()) {
94 oh_name = "usb_otg_hs";
95 name = "musb-ti81xx";
Hema HK18a26892011-02-17 12:07:21 +053096 } else {
97 oh_name = "usb_otg_hs";
98 name = "musb-omap2430";
99 }
100
Tony Lindgrenc541c152011-10-04 09:47:06 -0700101 oh = omap_hwmod_lookup(oh_name);
102 if (WARN(!oh, "%s: could not find omap_hwmod for %s\n",
103 __func__, oh_name))
104 return;
Hema HK18a26892011-02-17 12:07:21 +0530105
Tony Lindgrenc541c152011-10-04 09:47:06 -0700106 pdev = omap_device_build(name, bus_id, oh, &musb_plat,
Benoit Coussonf718e2c2011-08-10 15:30:09 +0200107 sizeof(musb_plat), NULL, 0, false);
Tony Lindgrenc541c152011-10-04 09:47:06 -0700108 if (IS_ERR(pdev)) {
Hema HK18a26892011-02-17 12:07:21 +0530109 pr_err("Could not build omap_device for %s %s\n",
110 name, oh_name);
111 return;
112 }
113
Hema HK18a26892011-02-17 12:07:21 +0530114 dev = &pdev->dev;
115 get_device(dev);
116 dev->dma_mask = &musb_dmamask;
117 dev->coherent_dma_mask = musb_dmamask;
118 put_device(dev);
Hema HK1f158482011-02-28 14:19:35 +0530119
120 if (cpu_is_omap44xx())
121 omap4430_phy_init(dev);
Felipe Balbi18cb7ac2009-03-23 18:34:06 -0700122}