2 * Copyright (C) 2010 Pengutronix
3 * Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License version 2 as published by the
7 * Free Software Foundation.
9 #include <linux/dma-mapping.h>
10 #include <mach/hardware.h>
11 #include <mach/devices-common.h>
13 #define imx_mxc_ehci_data_entry_single(soc, _id, hs) \
16 .iobase = soc ## _USB_ ## hs ## _BASE_ADDR, \
17 .irq = soc ## _INT_USB_ ## hs, \
20 #ifdef CONFIG_SOC_IMX25
21 const struct imx_mxc_ehci_data imx25_mxc_ehci_otg_data __initconst
=
22 imx_mxc_ehci_data_entry_single(MX25
, 0, OTG
);
23 const struct imx_mxc_ehci_data imx25_mxc_ehci_hs_data __initconst
=
24 imx_mxc_ehci_data_entry_single(MX25
, 1, HS
);
25 #endif /* ifdef CONFIG_SOC_IMX25 */
27 #ifdef CONFIG_SOC_IMX27
28 const struct imx_mxc_ehci_data imx27_mxc_ehci_otg_data __initconst
=
29 imx_mxc_ehci_data_entry_single(MX27
, 0, OTG
);
30 const struct imx_mxc_ehci_data imx27_mxc_ehci_hs_data
[] __initconst
= {
31 imx_mxc_ehci_data_entry_single(MX27
, 1, HS1
),
32 imx_mxc_ehci_data_entry_single(MX27
, 2, HS2
),
34 #endif /* ifdef CONFIG_SOC_IMX27 */
36 #ifdef CONFIG_SOC_IMX31
37 const struct imx_mxc_ehci_data imx31_mxc_ehci_otg_data __initconst
=
38 imx_mxc_ehci_data_entry_single(MX31
, 0, OTG
);
39 const struct imx_mxc_ehci_data imx31_mxc_ehci_hs_data
[] __initconst
= {
40 imx_mxc_ehci_data_entry_single(MX31
, 1, HS1
),
41 imx_mxc_ehci_data_entry_single(MX31
, 2, HS2
),
43 #endif /* ifdef CONFIG_SOC_IMX31 */
45 #ifdef CONFIG_SOC_IMX35
46 const struct imx_mxc_ehci_data imx35_mxc_ehci_otg_data __initconst
=
47 imx_mxc_ehci_data_entry_single(MX35
, 0, OTG
);
48 const struct imx_mxc_ehci_data imx35_mxc_ehci_hs_data __initconst
=
49 imx_mxc_ehci_data_entry_single(MX35
, 1, HS
);
50 #endif /* ifdef CONFIG_SOC_IMX35 */
52 #ifdef CONFIG_SOC_IMX51
53 const struct imx_mxc_ehci_data imx51_mxc_ehci_otg_data __initconst
=
54 imx_mxc_ehci_data_entry_single(MX51
, 0, OTG
);
55 const struct imx_mxc_ehci_data imx51_mxc_ehci_hs_data
[] __initconst
= {
56 imx_mxc_ehci_data_entry_single(MX51
, 1, HS1
),
57 imx_mxc_ehci_data_entry_single(MX51
, 2, HS2
),
59 #endif /* ifdef CONFIG_SOC_IMX51 */
61 struct platform_device
*__init
imx_add_mxc_ehci(
62 const struct imx_mxc_ehci_data
*data
,
63 const struct mxc_usbh_platform_data
*pdata
)
65 struct resource res
[] = {
67 .start
= data
->iobase
,
68 .end
= data
->iobase
+ SZ_512
- 1,
69 .flags
= IORESOURCE_MEM
,
73 .flags
= IORESOURCE_IRQ
,
76 return imx_add_platform_device_dmamask("mxc-ehci", data
->id
,
78 pdata
, sizeof(*pdata
), DMA_BIT_MASK(32));