436d42c61c
Platform data for device drivers should be defined in include/linux/platform_data/*.h, not in the architecture and platform specific directories. This moves such data out of the samsung include directories Signed-off-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Nicolas Pitre <nico@linaro.org> Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com> Cc: Kukjin Kim <kgene.kim@samsung.com> Cc: Kyungmin Park <kyungmin.park@samsung.com> Cc: Ben Dooks <ben-linux@fluff.org> Cc: Jeff Garzik <jgarzik@pobox.com> Cc: Guenter Roeck <linux@roeck-us.net> Cc: "Wolfram Sang (embedded platforms)" <w.sang@pengutronix.de> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com> Cc: Bryan Wu <bryan.wu@canonical.com> Cc: Richard Purdie <rpurdie@rpsys.net> Cc: Sylwester Nawrocki <s.nawrocki@samsung.com> Cc: Chris Ball <cjb@laptop.org> Cc: David Woodhouse <dwmw2@infradead.org> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Felipe Balbi <balbi@ti.com> Cc: Alan Stern <stern@rowland.harvard.edu> Cc: Sangbeom Kim <sbkim73@samsung.com> Cc: Liam Girdwood <lrg@ti.com> Cc: linux-samsung-soc@vger.kernel.org
53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
/* linux/arch/arm/mach-exynos/dev-ohci.c
|
|
*
|
|
* Copyright (c) 2011 Samsung Electronics Co., Ltd.
|
|
* http://www.samsung.com
|
|
*
|
|
* EXYNOS - OHCI support
|
|
*
|
|
* 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/dma-mapping.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <mach/irqs.h>
|
|
#include <mach/map.h>
|
|
#include <linux/platform_data/usb-exynos.h>
|
|
|
|
#include <plat/devs.h>
|
|
#include <plat/usb-phy.h>
|
|
|
|
static struct resource exynos4_ohci_resource[] = {
|
|
[0] = DEFINE_RES_MEM(EXYNOS4_PA_OHCI, SZ_256),
|
|
[1] = DEFINE_RES_IRQ(IRQ_USB_HOST),
|
|
};
|
|
|
|
static u64 exynos4_ohci_dma_mask = DMA_BIT_MASK(32);
|
|
|
|
struct platform_device exynos4_device_ohci = {
|
|
.name = "exynos-ohci",
|
|
.id = -1,
|
|
.num_resources = ARRAY_SIZE(exynos4_ohci_resource),
|
|
.resource = exynos4_ohci_resource,
|
|
.dev = {
|
|
.dma_mask = &exynos4_ohci_dma_mask,
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
}
|
|
};
|
|
|
|
void __init exynos4_ohci_set_platdata(struct exynos4_ohci_platdata *pd)
|
|
{
|
|
struct exynos4_ohci_platdata *npd;
|
|
|
|
npd = s3c_set_platdata(pd, sizeof(struct exynos4_ohci_platdata),
|
|
&exynos4_device_ohci);
|
|
|
|
if (!npd->phy_init)
|
|
npd->phy_init = s5p_usb_phy_init;
|
|
if (!npd->phy_exit)
|
|
npd->phy_exit = s5p_usb_phy_exit;
|
|
}
|