2009-03-24 02:34:06 +01:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/mach-omap2/usb-musb.c
|
|
|
|
*
|
|
|
|
* This file will contain the board specific details for the
|
|
|
|
* MENTOR USB OTG controller on OMAP3430
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2008 Texas Instruments
|
|
|
|
* Copyright (C) 2008 Nokia Corporation
|
|
|
|
* Author: Vikram Pandita
|
|
|
|
*
|
|
|
|
* Generalization by:
|
|
|
|
* Felipe Balbi <felipe.balbi@nokia.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/dma-mapping.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/usb/musb.h>
|
|
|
|
|
2012-10-03 02:25:48 +02:00
|
|
|
#include "omap_device.h"
|
2012-10-05 22:25:59 +02:00
|
|
|
#include "soc.h"
|
2011-02-16 11:12:15 +01:00
|
|
|
#include "mux.h"
|
2012-10-24 23:26:18 +02:00
|
|
|
#include "usb.h"
|
2009-03-24 02:34:06 +01:00
|
|
|
|
|
|
|
static struct musb_hdrc_config musb_config = {
|
|
|
|
.multipoint = 1,
|
|
|
|
.dyn_fifo = 1,
|
|
|
|
.num_eps = 16,
|
|
|
|
.ram_bits = 12,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct musb_hdrc_platform_data musb_plat = {
|
2012-06-20 16:18:15 +02:00
|
|
|
#ifdef CONFIG_USB_GADGET_MUSB_HDRC
|
2009-03-24 02:34:06 +01:00
|
|
|
.mode = MUSB_OTG,
|
2012-06-20 16:18:15 +02:00
|
|
|
#else
|
2009-03-24 02:34:06 +01:00
|
|
|
.mode = MUSB_HOST,
|
|
|
|
#endif
|
|
|
|
/* .clock is set dynamically */
|
|
|
|
.config = &musb_config,
|
|
|
|
|
|
|
|
/* REVISIT charge pump on TWL4030 can supply up to
|
|
|
|
* 100 mA ... but this value is board-specific, like
|
|
|
|
* "mode", and should be passed to usb_musb_init().
|
|
|
|
*/
|
|
|
|
.power = 50, /* up to 100 mA */
|
|
|
|
};
|
|
|
|
|
2009-04-13 23:40:14 +02:00
|
|
|
static u64 musb_dmamask = DMA_BIT_MASK(32);
|
2009-03-24 02:34:06 +01:00
|
|
|
|
2011-04-27 10:56:12 +02:00
|
|
|
static struct omap_musb_board_data musb_default_board_data = {
|
|
|
|
.interface_type = MUSB_INTERFACE_ULPI,
|
|
|
|
.mode = MUSB_OTG,
|
|
|
|
.power = 100,
|
|
|
|
};
|
|
|
|
|
|
|
|
void __init usb_musb_init(struct omap_musb_board_data *musb_board_data)
|
2009-03-24 02:34:06 +01:00
|
|
|
{
|
2011-02-17 07:37:21 +01:00
|
|
|
struct omap_hwmod *oh;
|
|
|
|
struct platform_device *pdev;
|
|
|
|
struct device *dev;
|
|
|
|
int bus_id = -1;
|
|
|
|
const char *oh_name, *name;
|
2011-04-27 10:56:12 +02:00
|
|
|
struct omap_musb_board_data *board_data;
|
|
|
|
|
|
|
|
if (musb_board_data)
|
|
|
|
board_data = musb_board_data;
|
|
|
|
else
|
|
|
|
board_data = &musb_default_board_data;
|
2011-02-16 11:12:15 +01:00
|
|
|
|
2009-03-24 02:34:06 +01:00
|
|
|
/*
|
|
|
|
* REVISIT: This line can be removed once all the platforms using
|
|
|
|
* musb_core.c have been converted to use use clkdev.
|
|
|
|
*/
|
|
|
|
musb_plat.clock = "ick";
|
2010-02-17 23:09:30 +01:00
|
|
|
musb_plat.board_data = board_data;
|
|
|
|
musb_plat.power = board_data->power >> 1;
|
|
|
|
musb_plat.mode = board_data->mode;
|
2010-03-25 12:25:27 +01:00
|
|
|
musb_plat.extvbus = board_data->extvbus;
|
2009-03-24 02:34:06 +01:00
|
|
|
|
2012-05-01 01:37:10 +02:00
|
|
|
if (soc_is_am35xx()) {
|
2011-02-17 07:37:21 +01:00
|
|
|
oh_name = "am35x_otg_hs";
|
|
|
|
name = "musb-am35x";
|
2011-12-13 19:50:58 +01:00
|
|
|
} else if (cpu_is_ti81xx()) {
|
|
|
|
oh_name = "usb_otg_hs";
|
|
|
|
name = "musb-ti81xx";
|
2011-02-17 07:37:21 +01:00
|
|
|
} else {
|
|
|
|
oh_name = "usb_otg_hs";
|
|
|
|
name = "musb-omap2430";
|
|
|
|
}
|
|
|
|
|
2011-10-04 18:47:06 +02:00
|
|
|
oh = omap_hwmod_lookup(oh_name);
|
|
|
|
if (WARN(!oh, "%s: could not find omap_hwmod for %s\n",
|
|
|
|
__func__, oh_name))
|
|
|
|
return;
|
2011-02-17 07:37:21 +01:00
|
|
|
|
2011-10-04 18:47:06 +02:00
|
|
|
pdev = omap_device_build(name, bus_id, oh, &musb_plat,
|
2013-01-26 08:48:53 +01:00
|
|
|
sizeof(musb_plat));
|
2011-10-04 18:47:06 +02:00
|
|
|
if (IS_ERR(pdev)) {
|
2011-02-17 07:37:21 +01:00
|
|
|
pr_err("Could not build omap_device for %s %s\n",
|
|
|
|
name, oh_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev = &pdev->dev;
|
|
|
|
get_device(dev);
|
|
|
|
dev->dma_mask = &musb_dmamask;
|
|
|
|
dev->coherent_dma_mask = musb_dmamask;
|
|
|
|
put_device(dev);
|
2009-01-19 18:09:22 +01:00
|
|
|
}
|