mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-18 18:23:53 +08:00
e5d3d252d5
Add the function to register the OHCI platform device, given the root hub related platform data passed from the board specific code. The platfrom data provide for overriding the OHCI port power and over-current bits at the board level. Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
146 lines
3.2 KiB
C
146 lines
3.2 KiB
C
/*
|
|
* USB
|
|
*/
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/dma-mapping.h>
|
|
|
|
#include <linux/usb/musb.h>
|
|
#include <linux/usb/otg.h>
|
|
|
|
#include <mach/common.h>
|
|
#include <mach/hardware.h>
|
|
#include <mach/irqs.h>
|
|
#include <mach/cputype.h>
|
|
#include <mach/usb.h>
|
|
|
|
#define DAVINCI_USB_OTG_BASE 0x01c64000
|
|
#define DA8XX_USB1_BASE 0x01e25000
|
|
|
|
#if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
|
|
static struct musb_hdrc_eps_bits musb_eps[] = {
|
|
{ "ep1_tx", 8, },
|
|
{ "ep1_rx", 8, },
|
|
{ "ep2_tx", 8, },
|
|
{ "ep2_rx", 8, },
|
|
{ "ep3_tx", 5, },
|
|
{ "ep3_rx", 5, },
|
|
{ "ep4_tx", 5, },
|
|
{ "ep4_rx", 5, },
|
|
};
|
|
|
|
static struct musb_hdrc_config musb_config = {
|
|
.multipoint = true,
|
|
.dyn_fifo = true,
|
|
.soft_con = true,
|
|
.dma = true,
|
|
|
|
.num_eps = 5,
|
|
.dma_channels = 8,
|
|
.ram_bits = 10,
|
|
.eps_bits = musb_eps,
|
|
};
|
|
|
|
static struct musb_hdrc_platform_data usb_data = {
|
|
#if defined(CONFIG_USB_MUSB_OTG)
|
|
/* OTG requires a Mini-AB connector */
|
|
.mode = MUSB_OTG,
|
|
#elif defined(CONFIG_USB_MUSB_PERIPHERAL)
|
|
.mode = MUSB_PERIPHERAL,
|
|
#elif defined(CONFIG_USB_MUSB_HOST)
|
|
.mode = MUSB_HOST,
|
|
#endif
|
|
.clock = "usb",
|
|
.config = &musb_config,
|
|
};
|
|
|
|
static struct resource usb_resources[] = {
|
|
{
|
|
/* physical address */
|
|
.start = DAVINCI_USB_OTG_BASE,
|
|
.end = DAVINCI_USB_OTG_BASE + 0x5ff,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
{
|
|
.start = IRQ_USBINT,
|
|
.flags = IORESOURCE_IRQ,
|
|
},
|
|
{
|
|
/* placeholder for the dedicated CPPI IRQ */
|
|
.flags = IORESOURCE_IRQ,
|
|
},
|
|
};
|
|
|
|
static u64 usb_dmamask = DMA_BIT_MASK(32);
|
|
|
|
static struct platform_device usb_dev = {
|
|
.name = "musb_hdrc",
|
|
.id = -1,
|
|
.dev = {
|
|
.platform_data = &usb_data,
|
|
.dma_mask = &usb_dmamask,
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
},
|
|
.resource = usb_resources,
|
|
.num_resources = ARRAY_SIZE(usb_resources),
|
|
};
|
|
|
|
void __init setup_usb(unsigned mA, unsigned potpgt_msec)
|
|
{
|
|
usb_data.power = mA / 2;
|
|
usb_data.potpgt = potpgt_msec / 2;
|
|
|
|
if (cpu_is_davinci_dm646x()) {
|
|
/* Override the defaults as DM6467 uses different IRQs. */
|
|
usb_dev.resource[1].start = IRQ_DM646X_USBINT;
|
|
usb_dev.resource[2].start = IRQ_DM646X_USBDMAINT;
|
|
} else /* other devices don't have dedicated CPPI IRQ */
|
|
usb_dev.num_resources = 2;
|
|
|
|
platform_device_register(&usb_dev);
|
|
}
|
|
|
|
#else
|
|
|
|
void __init setup_usb(unsigned mA, unsigned potpgt_msec)
|
|
{
|
|
}
|
|
|
|
#endif /* CONFIG_USB_MUSB_HDRC */
|
|
|
|
#ifdef CONFIG_ARCH_DAVINCI_DA8XX
|
|
static struct resource da8xx_usb11_resources[] = {
|
|
[0] = {
|
|
.start = DA8XX_USB1_BASE,
|
|
.end = DA8XX_USB1_BASE + SZ_4K - 1,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
[1] = {
|
|
.start = IRQ_DA8XX_IRQN,
|
|
.end = IRQ_DA8XX_IRQN,
|
|
.flags = IORESOURCE_IRQ,
|
|
},
|
|
};
|
|
|
|
static u64 da8xx_usb11_dma_mask = DMA_BIT_MASK(32);
|
|
|
|
static struct platform_device da8xx_usb11_device = {
|
|
.name = "ohci",
|
|
.id = 0,
|
|
.dev = {
|
|
.dma_mask = &da8xx_usb11_dma_mask,
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
},
|
|
.num_resources = ARRAY_SIZE(da8xx_usb11_resources),
|
|
.resource = da8xx_usb11_resources,
|
|
};
|
|
|
|
int __init da8xx_register_usb11(struct da8xx_ohci_root_hub *pdata)
|
|
{
|
|
da8xx_usb11_device.dev.platform_data = pdata;
|
|
return platform_device_register(&da8xx_usb11_device);
|
|
}
|
|
#endif /* CONFIG_DAVINCI_DA8XX */
|