]> bbs.cooldavid.org Git - net-next-2.6.git/blob - arch/arm/mach-mx3/mach-pcm043.c
ARM: imx: Change the way nand devices are registered (imx35)
[net-next-2.6.git] / arch / arm / mach-mx3 / mach-pcm043.c
1 /*
2  *  Copyright (C) 2009 Sascha Hauer, Pengutronix
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include <linux/types.h>
16 #include <linux/init.h>
17
18 #include <linux/platform_device.h>
19 #include <linux/mtd/physmap.h>
20 #include <linux/mtd/plat-ram.h>
21 #include <linux/memory.h>
22 #include <linux/gpio.h>
23 #include <linux/smc911x.h>
24 #include <linux/interrupt.h>
25 #include <linux/delay.h>
26 #include <linux/i2c.h>
27 #include <linux/i2c/at24.h>
28 #include <linux/usb/otg.h>
29 #include <linux/usb/ulpi.h>
30 #include <linux/fsl_devices.h>
31
32 #include <asm/mach-types.h>
33 #include <asm/mach/arch.h>
34 #include <asm/mach/time.h>
35 #include <asm/mach/map.h>
36
37 #include <mach/hardware.h>
38 #include <mach/common.h>
39 #include <mach/imx-uart.h>
40 #if defined CONFIG_I2C_IMX || defined CONFIG_I2C_IMX_MODULE
41 #include <mach/i2c.h>
42 #endif
43 #include <mach/iomux-mx35.h>
44 #include <mach/ipu.h>
45 #include <mach/mx3fb.h>
46 #include <mach/mxc_ehci.h>
47 #include <mach/ulpi.h>
48 #include <mach/audmux.h>
49 #include <mach/ssi.h>
50
51 #include "devices-imx35.h"
52 #include "devices.h"
53
54 static const struct fb_videomode fb_modedb[] = {
55         {
56                 /* 240x320 @ 60 Hz */
57                 .name           = "Sharp-LQ035Q7",
58                 .refresh        = 60,
59                 .xres           = 240,
60                 .yres           = 320,
61                 .pixclock       = 185925,
62                 .left_margin    = 9,
63                 .right_margin   = 16,
64                 .upper_margin   = 7,
65                 .lower_margin   = 9,
66                 .hsync_len      = 1,
67                 .vsync_len      = 1,
68                 .sync           = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_SHARP_MODE | FB_SYNC_CLK_INVERT | FB_SYNC_CLK_IDLE_EN,
69                 .vmode          = FB_VMODE_NONINTERLACED,
70                 .flag           = 0,
71         }, {
72                 /* 240x320 @ 60 Hz */
73                 .name           = "TX090",
74                 .refresh        = 60,
75                 .xres           = 240,
76                 .yres           = 320,
77                 .pixclock       = 38255,
78                 .left_margin    = 144,
79                 .right_margin   = 0,
80                 .upper_margin   = 7,
81                 .lower_margin   = 40,
82                 .hsync_len      = 96,
83                 .vsync_len      = 1,
84                 .sync           = FB_SYNC_VERT_HIGH_ACT | FB_SYNC_OE_ACT_HIGH,
85                 .vmode          = FB_VMODE_NONINTERLACED,
86                 .flag           = 0,
87         },
88 };
89
90 static struct ipu_platform_data mx3_ipu_data = {
91         .irq_base = MXC_IPU_IRQ_START,
92 };
93
94 static struct mx3fb_platform_data mx3fb_pdata = {
95         .dma_dev        = &mx3_ipu.dev,
96         .name           = "Sharp-LQ035Q7",
97         .mode           = fb_modedb,
98         .num_modes      = ARRAY_SIZE(fb_modedb),
99 };
100
101 static struct physmap_flash_data pcm043_flash_data = {
102         .width  = 2,
103 };
104
105 static struct resource pcm043_flash_resource = {
106         .start  = 0xa0000000,
107         .end    = 0xa1ffffff,
108         .flags  = IORESOURCE_MEM,
109 };
110
111 static struct platform_device pcm043_flash = {
112         .name   = "physmap-flash",
113         .id     = 0,
114         .dev    = {
115                 .platform_data  = &pcm043_flash_data,
116         },
117         .resource = &pcm043_flash_resource,
118         .num_resources = 1,
119 };
120
121 static struct imxuart_platform_data uart_pdata = {
122         .flags = IMXUART_HAVE_RTSCTS,
123 };
124
125 #if defined CONFIG_I2C_IMX || defined CONFIG_I2C_IMX_MODULE
126 static struct imxi2c_platform_data pcm043_i2c_1_data = {
127         .bitrate = 50000,
128 };
129
130 static struct at24_platform_data board_eeprom = {
131         .byte_len = 4096,
132         .page_size = 32,
133         .flags = AT24_FLAG_ADDR16,
134 };
135
136 static struct i2c_board_info pcm043_i2c_devices[] = {
137        {
138                 I2C_BOARD_INFO("at24", 0x52), /* E0=0, E1=1, E2=0 */
139                 .platform_data = &board_eeprom,
140         }, {
141                 I2C_BOARD_INFO("pcf8563", 0x51),
142         }
143 };
144 #endif
145
146 static struct platform_device *devices[] __initdata = {
147         &pcm043_flash,
148         &mxc_fec_device,
149         &imx_wdt_device0,
150 };
151
152 static struct pad_desc pcm043_pads[] = {
153         /* UART1 */
154         MX35_PAD_CTS1__UART1_CTS,
155         MX35_PAD_RTS1__UART1_RTS,
156         MX35_PAD_TXD1__UART1_TXD_MUX,
157         MX35_PAD_RXD1__UART1_RXD_MUX,
158         /* UART2 */
159         MX35_PAD_CTS2__UART2_CTS,
160         MX35_PAD_RTS2__UART2_RTS,
161         MX35_PAD_TXD2__UART2_TXD_MUX,
162         MX35_PAD_RXD2__UART2_RXD_MUX,
163         /* FEC */
164         MX35_PAD_FEC_TX_CLK__FEC_TX_CLK,
165         MX35_PAD_FEC_RX_CLK__FEC_RX_CLK,
166         MX35_PAD_FEC_RX_DV__FEC_RX_DV,
167         MX35_PAD_FEC_COL__FEC_COL,
168         MX35_PAD_FEC_RDATA0__FEC_RDATA_0,
169         MX35_PAD_FEC_TDATA0__FEC_TDATA_0,
170         MX35_PAD_FEC_TX_EN__FEC_TX_EN,
171         MX35_PAD_FEC_MDC__FEC_MDC,
172         MX35_PAD_FEC_MDIO__FEC_MDIO,
173         MX35_PAD_FEC_TX_ERR__FEC_TX_ERR,
174         MX35_PAD_FEC_RX_ERR__FEC_RX_ERR,
175         MX35_PAD_FEC_CRS__FEC_CRS,
176         MX35_PAD_FEC_RDATA1__FEC_RDATA_1,
177         MX35_PAD_FEC_TDATA1__FEC_TDATA_1,
178         MX35_PAD_FEC_RDATA2__FEC_RDATA_2,
179         MX35_PAD_FEC_TDATA2__FEC_TDATA_2,
180         MX35_PAD_FEC_RDATA3__FEC_RDATA_3,
181         MX35_PAD_FEC_TDATA3__FEC_TDATA_3,
182         /* I2C1 */
183         MX35_PAD_I2C1_CLK__I2C1_SCL,
184         MX35_PAD_I2C1_DAT__I2C1_SDA,
185         /* Display */
186         MX35_PAD_LD0__IPU_DISPB_DAT_0,
187         MX35_PAD_LD1__IPU_DISPB_DAT_1,
188         MX35_PAD_LD2__IPU_DISPB_DAT_2,
189         MX35_PAD_LD3__IPU_DISPB_DAT_3,
190         MX35_PAD_LD4__IPU_DISPB_DAT_4,
191         MX35_PAD_LD5__IPU_DISPB_DAT_5,
192         MX35_PAD_LD6__IPU_DISPB_DAT_6,
193         MX35_PAD_LD7__IPU_DISPB_DAT_7,
194         MX35_PAD_LD8__IPU_DISPB_DAT_8,
195         MX35_PAD_LD9__IPU_DISPB_DAT_9,
196         MX35_PAD_LD10__IPU_DISPB_DAT_10,
197         MX35_PAD_LD11__IPU_DISPB_DAT_11,
198         MX35_PAD_LD12__IPU_DISPB_DAT_12,
199         MX35_PAD_LD13__IPU_DISPB_DAT_13,
200         MX35_PAD_LD14__IPU_DISPB_DAT_14,
201         MX35_PAD_LD15__IPU_DISPB_DAT_15,
202         MX35_PAD_LD16__IPU_DISPB_DAT_16,
203         MX35_PAD_LD17__IPU_DISPB_DAT_17,
204         MX35_PAD_D3_HSYNC__IPU_DISPB_D3_HSYNC,
205         MX35_PAD_D3_FPSHIFT__IPU_DISPB_D3_CLK,
206         MX35_PAD_D3_DRDY__IPU_DISPB_D3_DRDY,
207         MX35_PAD_CONTRAST__IPU_DISPB_CONTR,
208         MX35_PAD_D3_VSYNC__IPU_DISPB_D3_VSYNC,
209         MX35_PAD_D3_REV__IPU_DISPB_D3_REV,
210         MX35_PAD_D3_CLS__IPU_DISPB_D3_CLS,
211         /* gpio */
212         MX35_PAD_ATA_CS0__GPIO2_6,
213         /* USB host */
214         MX35_PAD_I2C2_CLK__USB_TOP_USBH2_PWR,
215         MX35_PAD_I2C2_DAT__USB_TOP_USBH2_OC,
216         /* SSI */
217         MX35_PAD_STXFS4__AUDMUX_AUD4_TXFS,
218         MX35_PAD_STXD4__AUDMUX_AUD4_TXD,
219         MX35_PAD_SRXD4__AUDMUX_AUD4_RXD,
220         MX35_PAD_SCK4__AUDMUX_AUD4_TXC,
221 };
222
223 #define AC97_GPIO_TXFS  (1 * 32 + 31)
224 #define AC97_GPIO_TXD   (1 * 32 + 28)
225 #define AC97_GPIO_RESET (1 * 32 + 0)
226
227 static void pcm043_ac97_warm_reset(struct snd_ac97 *ac97)
228 {
229         struct pad_desc txfs_gpio = MX35_PAD_STXFS4__GPIO2_31;
230         struct pad_desc txfs = MX35_PAD_STXFS4__AUDMUX_AUD4_TXFS;
231         int ret;
232
233         ret = gpio_request(AC97_GPIO_TXFS, "SSI");
234         if (ret) {
235                 printk("failed to get GPIO_TXFS: %d\n", ret);
236                 return;
237         }
238
239         mxc_iomux_v3_setup_pad(&txfs_gpio);
240
241         /* warm reset */
242         gpio_direction_output(AC97_GPIO_TXFS, 1);
243         udelay(2);
244         gpio_set_value(AC97_GPIO_TXFS, 0);
245
246         gpio_free(AC97_GPIO_TXFS);
247         mxc_iomux_v3_setup_pad(&txfs);
248 }
249
250 static void pcm043_ac97_cold_reset(struct snd_ac97 *ac97)
251 {
252         struct pad_desc txfs_gpio = MX35_PAD_STXFS4__GPIO2_31;
253         struct pad_desc txfs = MX35_PAD_STXFS4__AUDMUX_AUD4_TXFS;
254         struct pad_desc txd_gpio = MX35_PAD_STXD4__GPIO2_28;
255         struct pad_desc txd = MX35_PAD_STXD4__AUDMUX_AUD4_TXD;
256         struct pad_desc reset_gpio = MX35_PAD_SD2_CMD__GPIO2_0;
257         int ret;
258
259         ret = gpio_request(AC97_GPIO_TXFS, "SSI");
260         if (ret)
261                 goto err1;
262
263         ret = gpio_request(AC97_GPIO_TXD, "SSI");
264         if (ret)
265                 goto err2;
266
267         ret = gpio_request(AC97_GPIO_RESET, "SSI");
268         if (ret)
269                 goto err3;
270
271         mxc_iomux_v3_setup_pad(&txfs_gpio);
272         mxc_iomux_v3_setup_pad(&txd_gpio);
273         mxc_iomux_v3_setup_pad(&reset_gpio);
274
275         gpio_direction_output(AC97_GPIO_TXFS, 0);
276         gpio_direction_output(AC97_GPIO_TXD, 0);
277
278         /* cold reset */
279         gpio_direction_output(AC97_GPIO_RESET, 0);
280         udelay(10);
281         gpio_direction_output(AC97_GPIO_RESET, 1);
282
283         mxc_iomux_v3_setup_pad(&txd);
284         mxc_iomux_v3_setup_pad(&txfs);
285
286         gpio_free(AC97_GPIO_RESET);
287 err3:
288         gpio_free(AC97_GPIO_TXD);
289 err2:
290         gpio_free(AC97_GPIO_TXFS);
291 err1:
292         if (ret)
293                 printk("%s failed with %d\n", __func__, ret);
294         mdelay(1);
295 }
296
297 static struct imx_ssi_platform_data pcm043_ssi_pdata = {
298         .ac97_reset = pcm043_ac97_cold_reset,
299         .ac97_warm_reset = pcm043_ac97_warm_reset,
300         .flags = IMX_SSI_USE_AC97,
301 };
302
303 static const struct mxc_nand_platform_data
304 pcm037_nand_board_info __initconst = {
305         .width = 1,
306         .hw_ecc = 1,
307 };
308
309 static struct mxc_usbh_platform_data otg_pdata = {
310         .portsc = MXC_EHCI_MODE_UTMI,
311         .flags  = MXC_EHCI_INTERFACE_DIFF_UNI,
312 };
313
314 static struct mxc_usbh_platform_data usbh1_pdata = {
315         .portsc = MXC_EHCI_MODE_SERIAL,
316         .flags  = MXC_EHCI_INTERFACE_SINGLE_UNI | MXC_EHCI_INTERNAL_PHY |
317                   MXC_EHCI_IPPUE_DOWN,
318 };
319
320 static struct fsl_usb2_platform_data otg_device_pdata = {
321         .operating_mode = FSL_USB2_DR_DEVICE,
322         .phy_mode       = FSL_USB2_PHY_UTMI,
323 };
324
325 static int otg_mode_host;
326
327 static int __init pcm043_otg_mode(char *options)
328 {
329         if (!strcmp(options, "host"))
330                 otg_mode_host = 1;
331         else if (!strcmp(options, "device"))
332                 otg_mode_host = 0;
333         else
334                 pr_info("otg_mode neither \"host\" nor \"device\". "
335                         "Defaulting to device\n");
336         return 0;
337 }
338 __setup("otg_mode=", pcm043_otg_mode);
339
340 /*
341  * Board specific initialization.
342  */
343 static void __init mxc_board_init(void)
344 {
345         mxc_iomux_v3_setup_multiple_pads(pcm043_pads, ARRAY_SIZE(pcm043_pads));
346
347         mxc_audmux_v2_configure_port(3,
348                         MXC_AUDMUX_V2_PTCR_SYN | /* 4wire mode */
349                         MXC_AUDMUX_V2_PTCR_TFSEL(0) |
350                         MXC_AUDMUX_V2_PTCR_TFSDIR,
351                         MXC_AUDMUX_V2_PDCR_RXDSEL(0));
352
353         mxc_audmux_v2_configure_port(0,
354                         MXC_AUDMUX_V2_PTCR_SYN | /* 4wire mode */
355                         MXC_AUDMUX_V2_PTCR_TCSEL(3) |
356                         MXC_AUDMUX_V2_PTCR_TCLKDIR, /* clock is output */
357                         MXC_AUDMUX_V2_PDCR_RXDSEL(3));
358
359         platform_add_devices(devices, ARRAY_SIZE(devices));
360
361         mxc_register_device(&mxc_uart_device0, &uart_pdata);
362         imx35_add_mxc_nand(&pcm037_nand_board_info);
363         mxc_register_device(&imx_ssi_device0, &pcm043_ssi_pdata);
364
365         mxc_register_device(&mxc_uart_device1, &uart_pdata);
366
367 #if defined CONFIG_I2C_IMX || defined CONFIG_I2C_IMX_MODULE
368         i2c_register_board_info(0, pcm043_i2c_devices,
369                         ARRAY_SIZE(pcm043_i2c_devices));
370
371         mxc_register_device(&mxc_i2c_device0, &pcm043_i2c_1_data);
372 #endif
373
374         mxc_register_device(&mx3_ipu, &mx3_ipu_data);
375         mxc_register_device(&mx3_fb, &mx3fb_pdata);
376
377 #if defined(CONFIG_USB_ULPI)
378         if (otg_mode_host) {
379                 otg_pdata.otg = otg_ulpi_create(&mxc_ulpi_access_ops,
380                                 USB_OTG_DRV_VBUS | USB_OTG_DRV_VBUS_EXT);
381
382                 mxc_register_device(&mxc_otg_host, &otg_pdata);
383         }
384
385         mxc_register_device(&mxc_usbh1, &usbh1_pdata);
386 #endif
387         if (!otg_mode_host)
388                 mxc_register_device(&mxc_otg_udc_device, &otg_device_pdata);
389
390 }
391
392 static void __init pcm043_timer_init(void)
393 {
394         mx35_clocks_init();
395 }
396
397 struct sys_timer pcm043_timer = {
398         .init   = pcm043_timer_init,
399 };
400
401 MACHINE_START(PCM043, "Phytec Phycore pcm043")
402         /* Maintainer: Pengutronix */
403         .phys_io        = MX35_AIPS1_BASE_ADDR,
404         .io_pg_offst    = ((MX35_AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc,
405         .boot_params    = MX3x_PHYS_OFFSET + 0x100,
406         .map_io         = mx35_map_io,
407         .init_irq       = mx35_init_irq,
408         .init_machine   = mxc_board_init,
409         .timer          = &pcm043_timer,
410 MACHINE_END
411