mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
1556f4b4d0
This set of patches enables remoteproc support on DA850 EVM and fixes some sparse warnings for the same board. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJRbtBaAAoJEGFBu2jqvgRNpAgP/39XB7Q25C6H482ZhnUMawzF iJIq/4adtpwKr7Ib6xzGnyIzLfgvZq4b43lW0xPCQ3ArsaSlmwjjzhyZsQ5/K6VE zEsRI013yLQCP5sKNnXYnx534P56hxlhB3NnWLJ42iwIN44d2SkAM8cZKdSdUktO 1qPS7mIGtsCDVTnhlLJzUokfgrS3IWUygVgstlzHstCLLmJHtvij03i4/xflaRvZ MvkWNFasGonMEMxsBJGW8cLzv+ABdQP1rWM5SlfDyoz2XgYu9A2jZiQ026yFh2P6 X36SBRW75D4FRTEotWTbA7y8e78D8Cdtguo6omXRaiALumsJ6u7L6MquSsyfOJHC gh98jqR0xCgLtersgBG/tT3wWas+SLJH5THWW43TEpZjhTIwp00UV8geX6+wdHhZ X8fcI5MsDU3hggESJyilzWNXYz9Rvl6tuQKu6DcXGKCjYZPEBdVMzVm30qVysCYq 22Vgkg2MO6G5+4lWAEOYHJQg+IFNmNbWSQ2lO33QJ77tWVmkds8kamQRuFEFQWa1 wtRnXFeEr5jrkpzqTvA3ghywfKH9NdVZBmsoC1wepFL7cGvEJ0Oa67Dg1LW7mkHQ mqaqQfwtba83vbPMtI3aFJPCusXWxKE3+F9NcCtgdCF3TfVyGjxVnfzCHX1qQ52y lDh43Jgfzi7bfGLqILrp =U9X8 -----END PGP SIGNATURE----- Merge tag 'davinci-for-v3.10/board-2-v2' of git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci into next/boards From Sekhar Nori: v3.10 board updates for DaVinci This set of patches enables remoteproc support on DA850 EVM and fixes some sparse warnings for the same board. * tag 'davinci-for-v3.10/board-2-v2' of git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci: ARM: davinci: da850 evm: fix const qualifier placement ARM: davinci: da850 board: add remoteproc support ARM: davinci: ensure global variables are declared ARM: davinci: sram.c: fix incorrect type in assignment ARM: davinci: da8xx dt: make file local symbols static ARM: davinci: da8xx: add remoteproc support ARM: davinci: remove test for undefined Kconfig macro ARM: davinci: mmc: derive version information from device name ARM: davinci: da850: add ECAP & EHRPWM clock nodes ARM: davinci: clk framework support for enable/disable functionality
176 lines
3.8 KiB
C
176 lines
3.8 KiB
C
/*
|
|
* USB
|
|
*/
|
|
#include <linux/init.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/dma-mapping.h>
|
|
|
|
#include <linux/usb/musb.h>
|
|
|
|
#include <mach/common.h>
|
|
#include <mach/irqs.h>
|
|
#include <mach/cputype.h>
|
|
#include <mach/da8xx.h>
|
|
#include <linux/platform_data/usb-davinci.h>
|
|
|
|
#define DAVINCI_USB_OTG_BASE 0x01c64000
|
|
|
|
#define DA8XX_USB0_BASE 0x01e00000
|
|
#define DA8XX_USB1_BASE 0x01e25000
|
|
|
|
#if IS_ENABLED(CONFIG_USB_MUSB_HDRC)
|
|
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 = {
|
|
/* OTG requires a Mini-AB connector */
|
|
.mode = MUSB_OTG,
|
|
.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,
|
|
.name = "mc"
|
|
},
|
|
{
|
|
/* placeholder for the dedicated CPPI IRQ */
|
|
.flags = IORESOURCE_IRQ,
|
|
.name = "dma"
|
|
},
|
|
};
|
|
|
|
static u64 usb_dmamask = DMA_BIT_MASK(32);
|
|
|
|
static struct platform_device usb_dev = {
|
|
.name = "musb-davinci",
|
|
.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 davinci_setup_usb(unsigned mA, unsigned potpgt_ms)
|
|
{
|
|
usb_data.power = mA > 510 ? 255 : mA / 2;
|
|
usb_data.potpgt = (potpgt_ms + 1) / 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);
|
|
}
|
|
|
|
#ifdef CONFIG_ARCH_DAVINCI_DA8XX
|
|
static struct resource da8xx_usb20_resources[] = {
|
|
{
|
|
.start = DA8XX_USB0_BASE,
|
|
.end = DA8XX_USB0_BASE + SZ_64K - 1,
|
|
.flags = IORESOURCE_MEM,
|
|
},
|
|
{
|
|
.start = IRQ_DA8XX_USB_INT,
|
|
.flags = IORESOURCE_IRQ,
|
|
.name = "mc",
|
|
},
|
|
};
|
|
|
|
int __init da8xx_register_usb20(unsigned mA, unsigned potpgt)
|
|
{
|
|
usb_data.clock = "usb20";
|
|
usb_data.power = mA > 510 ? 255 : mA / 2;
|
|
usb_data.potpgt = (potpgt + 1) / 2;
|
|
|
|
usb_dev.resource = da8xx_usb20_resources;
|
|
usb_dev.num_resources = ARRAY_SIZE(da8xx_usb20_resources);
|
|
usb_dev.name = "musb-da8xx";
|
|
|
|
return platform_device_register(&usb_dev);
|
|
}
|
|
#endif /* CONFIG_DAVINCI_DA8XX */
|
|
|
|
#else
|
|
|
|
void __init davinci_setup_usb(unsigned mA, unsigned potpgt_ms)
|
|
{
|
|
}
|
|
|
|
#ifdef CONFIG_ARCH_DAVINCI_DA8XX
|
|
int __init da8xx_register_usb20(unsigned mA, unsigned potpgt)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#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 */
|