summaryrefslogtreecommitdiff
path: root/arch/arm/plat-mxc/devices/platform-fsl-usb2-wakeup.c
blob: 80c44f48393d2ba3b21583caf46c359527ceaa4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * Copyright (C) 2011-2012 Freescale Semiconductor, Inc.
 *
 * Copyright (C) 2010 Pengutronix
 * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
 *
 * 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 <mach/hardware.h>
#include <mach/devices-common.h>
#define imx_fsl_usb2_wakeup_data_entry_single(soc, _id, hs)			\
	{								\
		.id = _id,						\
		.irq_phy = soc ## _INT_USB_PHY ## _id,		\
		.irq_core = soc ## _INT_USB_ ## hs,				\
	}

#define mvf_fsl_usb2_wakeup_data_entry_single(arch, _id)			\
	{								\
		.id = _id,						\
		.irq_phy = arch ## _INT_USB ## _id,			\
		.irq_core = arch ## _INT_USB ## _id,			\
	}

#ifdef CONFIG_SOC_IMX6Q
const struct imx_fsl_usb2_wakeup_data imx6q_fsl_otg_wakeup_data __initconst =
	imx_fsl_usb2_wakeup_data_entry_single(MX6Q, 0, OTG);
const struct imx_fsl_usb2_wakeup_data imx6q_fsl_hs_wakeup_data[] __initconst = {
	imx_fsl_usb2_wakeup_data_entry_single(MX6Q, 1, HS1),
	imx_fsl_usb2_wakeup_data_entry_single(MX6Q, 2, HS2),
	imx_fsl_usb2_wakeup_data_entry_single(MX6Q, 3, HS3),
};
#endif /* ifdef CONFIG_SOC_IMX6Q */
#ifdef CONFIG_SOC_MVFA5
const struct imx_fsl_usb2_wakeup_data mvf_fsl_otg_wakeup_data[] __initconst = {
#ifdef CONFIG_MACH_PCM052
       mvf_fsl_usb2_wakeup_data_entry_single(MVF, 0),
       mvf_fsl_usb2_wakeup_data_entry_single(MVF, 1),
#else
	{
		.id = 0,
		.irq_phy = MVF_INT_USBOTG0,
		.irq_core = MVF_INT_USBOTG0,
	},
	{
		.id = 1,
		.irq_phy = MVF_INT_USB2,
		.irq_core = MVF_INT_USB2,
	}
#endif
};

#endif

struct platform_device *__init imx_add_fsl_usb2_wakeup(
		const struct imx_fsl_usb2_wakeup_data *data,
		const struct fsl_usb2_wakeup_platform_data *pdata)
{
	struct resource res[] = {
		{
			.start = data->irq_phy,
			.end = data->irq_phy,
			.flags = IORESOURCE_IRQ,
		}, {
			.start = data->irq_core,
			.end = data->irq_core,
			.flags = IORESOURCE_IRQ,
		},
	};
	return imx_add_platform_device_dmamask("usb-wakeup", data->id,
			res, ARRAY_SIZE(res),
			pdata, sizeof(*pdata), DMA_BIT_MASK(32));
}