]> bbs.cooldavid.org Git - net-next-2.6.git/blob - arch/arm/mach-mx3/mach-mx35_3ds.c
ARM: mx3/mx35_3ds: rename usb otg platform data variable name
[net-next-2.6.git] / arch / arm / mach-mx3 / mach-mx35_3ds.c
1 /*
2  * Copyright 2009 Freescale Semiconductor, Inc. All Rights Reserved.
3  * Copyright (C) 2009 Marc Kleine-Budde, Pengutronix
4  *
5  * Author: Fabio Estevam <fabio.estevam@freescale.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  */
17
18 /*
19  * This machine is known as:
20  *  - i.MX35 3-Stack Development System
21  *  - i.MX35 Platform Development Kit (i.MX35 PDK)
22  */
23
24 #include <linux/types.h>
25 #include <linux/init.h>
26 #include <linux/platform_device.h>
27 #include <linux/memory.h>
28 #include <linux/gpio.h>
29 #include <linux/fsl_devices.h>
30
31 #include <linux/mtd/physmap.h>
32
33 #include <asm/mach-types.h>
34 #include <asm/mach/arch.h>
35 #include <asm/mach/time.h>
36 #include <asm/mach/map.h>
37
38 #include <mach/hardware.h>
39 #include <mach/common.h>
40 #include <mach/iomux-mx35.h>
41
42 #include "devices-imx35.h"
43 #include "devices.h"
44
45 static const struct imxuart_platform_data uart_pdata __initconst = {
46         .flags = IMXUART_HAVE_RTSCTS,
47 };
48
49 static struct physmap_flash_data mx35pdk_flash_data = {
50         .width  = 2,
51 };
52
53 static struct resource mx35pdk_flash_resource = {
54         .start  = MX35_CS0_BASE_ADDR,
55         .end    = MX35_CS0_BASE_ADDR + SZ_64M - 1,
56         .flags  = IORESOURCE_MEM,
57 };
58
59 static struct platform_device mx35pdk_flash = {
60         .name   = "physmap-flash",
61         .id     = 0,
62         .dev    = {
63                 .platform_data  = &mx35pdk_flash_data,
64         },
65         .resource = &mx35pdk_flash_resource,
66         .num_resources = 1,
67 };
68
69 static const struct mxc_nand_platform_data mx35pdk_nand_board_info __initconst = {
70         .width = 1,
71         .hw_ecc = 1,
72         .flash_bbt = 1,
73 };
74
75 static struct platform_device *devices[] __initdata = {
76         &mxc_fec_device,
77         &mx35pdk_flash,
78 };
79
80 static struct pad_desc mx35pdk_pads[] = {
81         /* UART1 */
82         MX35_PAD_CTS1__UART1_CTS,
83         MX35_PAD_RTS1__UART1_RTS,
84         MX35_PAD_TXD1__UART1_TXD_MUX,
85         MX35_PAD_RXD1__UART1_RXD_MUX,
86         /* FEC */
87         MX35_PAD_FEC_TX_CLK__FEC_TX_CLK,
88         MX35_PAD_FEC_RX_CLK__FEC_RX_CLK,
89         MX35_PAD_FEC_RX_DV__FEC_RX_DV,
90         MX35_PAD_FEC_COL__FEC_COL,
91         MX35_PAD_FEC_RDATA0__FEC_RDATA_0,
92         MX35_PAD_FEC_TDATA0__FEC_TDATA_0,
93         MX35_PAD_FEC_TX_EN__FEC_TX_EN,
94         MX35_PAD_FEC_MDC__FEC_MDC,
95         MX35_PAD_FEC_MDIO__FEC_MDIO,
96         MX35_PAD_FEC_TX_ERR__FEC_TX_ERR,
97         MX35_PAD_FEC_RX_ERR__FEC_RX_ERR,
98         MX35_PAD_FEC_CRS__FEC_CRS,
99         MX35_PAD_FEC_RDATA1__FEC_RDATA_1,
100         MX35_PAD_FEC_TDATA1__FEC_TDATA_1,
101         MX35_PAD_FEC_RDATA2__FEC_RDATA_2,
102         MX35_PAD_FEC_TDATA2__FEC_TDATA_2,
103         MX35_PAD_FEC_RDATA3__FEC_RDATA_3,
104         MX35_PAD_FEC_TDATA3__FEC_TDATA_3,
105         /* USBOTG */
106         MX35_PAD_USBOTG_PWR__USB_TOP_USBOTG_PWR,
107         MX35_PAD_USBOTG_OC__USB_TOP_USBOTG_OC,
108 };
109
110 /* OTG config */
111 static struct fsl_usb2_platform_data usb_otg_pdata = {
112         .operating_mode = FSL_USB2_DR_DEVICE,
113         .phy_mode       = FSL_USB2_PHY_UTMI_WIDE,
114 };
115
116 /*
117  * Board specific initialization.
118  */
119 static void __init mxc_board_init(void)
120 {
121         mxc_iomux_v3_setup_multiple_pads(mx35pdk_pads, ARRAY_SIZE(mx35pdk_pads));
122
123         platform_add_devices(devices, ARRAY_SIZE(devices));
124
125         imx35_add_imx_uart0(&uart_pdata);
126
127         mxc_register_device(&mxc_otg_udc_device, &usb_otg_pdata);
128
129         imx35_add_mxc_nand(&mx35pdk_nand_board_info);
130 }
131
132 static void __init mx35pdk_timer_init(void)
133 {
134         mx35_clocks_init();
135 }
136
137 struct sys_timer mx35pdk_timer = {
138         .init   = mx35pdk_timer_init,
139 };
140
141 MACHINE_START(MX35_3DS, "Freescale MX35PDK")
142         /* Maintainer: Freescale Semiconductor, Inc */
143         .phys_io        = MX35_AIPS1_BASE_ADDR,
144         .io_pg_offst    = ((MX35_AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
145         .boot_params    = MX3x_PHYS_OFFSET + 0x100,
146         .map_io         = mx35_map_io,
147         .init_irq       = mx35_init_irq,
148         .init_machine   = mxc_board_init,
149         .timer          = &mx35pdk_timer,
150 MACHINE_END