xref: /openbmc/linux/arch/arm/mach-omap1/board-osk.c (revision 78762841)
1dbdf9cedSTony Lindgren /*
2dbdf9cedSTony Lindgren  * linux/arch/arm/mach-omap1/board-osk.c
3dbdf9cedSTony Lindgren  *
4dbdf9cedSTony Lindgren  * Board specific init for OMAP5912 OSK
5dbdf9cedSTony Lindgren  *
6dbdf9cedSTony Lindgren  * Written by Dirk Behme <dirk.behme@de.bosch.com>
7dbdf9cedSTony Lindgren  *
8dbdf9cedSTony Lindgren  * This program is free software; you can redistribute it and/or modify it
9dbdf9cedSTony Lindgren  * under the terms of the GNU General Public License as published by the
10dbdf9cedSTony Lindgren  * Free Software Foundation; either version 2 of the License, or (at your
11dbdf9cedSTony Lindgren  * option) any later version.
12dbdf9cedSTony Lindgren  *
13dbdf9cedSTony Lindgren  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
14dbdf9cedSTony Lindgren  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
15dbdf9cedSTony Lindgren  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
16dbdf9cedSTony Lindgren  * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17dbdf9cedSTony Lindgren  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18dbdf9cedSTony Lindgren  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
19dbdf9cedSTony Lindgren  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20dbdf9cedSTony Lindgren  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21dbdf9cedSTony Lindgren  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22dbdf9cedSTony Lindgren  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23dbdf9cedSTony Lindgren  *
24dbdf9cedSTony Lindgren  * You should have received a copy of the  GNU General Public License along
25dbdf9cedSTony Lindgren  * with this program; if not, write  to the Free Software Foundation, Inc.,
26dbdf9cedSTony Lindgren  * 675 Mass Ave, Cambridge, MA 02139, USA.
27dbdf9cedSTony Lindgren  */
28dbdf9cedSTony Lindgren 
29dbdf9cedSTony Lindgren #include <linux/kernel.h>
30dbdf9cedSTony Lindgren #include <linux/init.h>
31d052d1beSRussell King #include <linux/platform_device.h>
327c38cf02STony Lindgren #include <linux/interrupt.h>
337c38cf02STony Lindgren 
347c38cf02STony Lindgren #include <linux/mtd/mtd.h>
357c38cf02STony Lindgren #include <linux/mtd/partitions.h>
36dbdf9cedSTony Lindgren 
37dbdf9cedSTony Lindgren #include <asm/hardware.h>
38dbdf9cedSTony Lindgren #include <asm/mach-types.h>
39dbdf9cedSTony Lindgren #include <asm/mach/arch.h>
40dbdf9cedSTony Lindgren #include <asm/mach/map.h>
417c38cf02STony Lindgren #include <asm/mach/flash.h>
42dbdf9cedSTony Lindgren 
43dbdf9cedSTony Lindgren #include <asm/arch/gpio.h>
44dbdf9cedSTony Lindgren #include <asm/arch/usb.h>
45dbdf9cedSTony Lindgren #include <asm/arch/mux.h>
46dbdf9cedSTony Lindgren #include <asm/arch/tc.h>
47d48af15eSTony Lindgren #include <asm/arch/common.h>
489b6553cdSTony Lindgren #include <asm/arch/mcbsp.h>
499b6553cdSTony Lindgren #include <asm/arch/omap-alsa.h>
509b6553cdSTony Lindgren 
517c38cf02STony Lindgren static struct mtd_partition osk_partitions[] = {
527c38cf02STony Lindgren 	/* bootloader (U-Boot, etc) in first sector */
537c38cf02STony Lindgren 	{
547c38cf02STony Lindgren 	      .name		= "bootloader",
557c38cf02STony Lindgren 	      .offset		= 0,
567c38cf02STony Lindgren 	      .size		= SZ_128K,
577c38cf02STony Lindgren 	      .mask_flags	= MTD_WRITEABLE, /* force read-only */
587c38cf02STony Lindgren 	},
597c38cf02STony Lindgren 	/* bootloader params in the next sector */
607c38cf02STony Lindgren 	{
617c38cf02STony Lindgren 	      .name		= "params",
627c38cf02STony Lindgren 	      .offset		= MTDPART_OFS_APPEND,
637c38cf02STony Lindgren 	      .size		= SZ_128K,
647c38cf02STony Lindgren 	      .mask_flags	= 0,
657c38cf02STony Lindgren 	}, {
667c38cf02STony Lindgren 	      .name		= "kernel",
677c38cf02STony Lindgren 	      .offset		= MTDPART_OFS_APPEND,
687c38cf02STony Lindgren 	      .size		= SZ_2M,
697c38cf02STony Lindgren 	      .mask_flags	= 0
707c38cf02STony Lindgren 	}, {
717c38cf02STony Lindgren 	      .name		= "filesystem",
727c38cf02STony Lindgren 	      .offset		= MTDPART_OFS_APPEND,
737c38cf02STony Lindgren 	      .size		= MTDPART_SIZ_FULL,
747c38cf02STony Lindgren 	      .mask_flags	= 0
757c38cf02STony Lindgren 	}
76dbdf9cedSTony Lindgren };
77dbdf9cedSTony Lindgren 
787c38cf02STony Lindgren static struct flash_platform_data osk_flash_data = {
797c38cf02STony Lindgren 	.map_name	= "cfi_probe",
807c38cf02STony Lindgren 	.width		= 2,
817c38cf02STony Lindgren 	.parts		= osk_partitions,
827c38cf02STony Lindgren 	.nr_parts	= ARRAY_SIZE(osk_partitions),
837c38cf02STony Lindgren };
847c38cf02STony Lindgren 
857c38cf02STony Lindgren static struct resource osk_flash_resource = {
867c38cf02STony Lindgren 	/* this is on CS3, wherever it's mapped */
877c38cf02STony Lindgren 	.flags		= IORESOURCE_MEM,
887c38cf02STony Lindgren };
897c38cf02STony Lindgren 
907c38cf02STony Lindgren static struct platform_device osk5912_flash_device = {
917c38cf02STony Lindgren 	.name		= "omapflash",
927c38cf02STony Lindgren 	.id		= 0,
937c38cf02STony Lindgren 	.dev		= {
947c38cf02STony Lindgren 		.platform_data	= &osk_flash_data,
957c38cf02STony Lindgren 	},
967c38cf02STony Lindgren 	.num_resources	= 1,
977c38cf02STony Lindgren 	.resource	= &osk_flash_resource,
987c38cf02STony Lindgren };
99dbdf9cedSTony Lindgren 
100dbdf9cedSTony Lindgren static struct resource osk5912_smc91x_resources[] = {
101dbdf9cedSTony Lindgren 	[0] = {
102dbdf9cedSTony Lindgren 		.start	= OMAP_OSK_ETHR_START,		/* Physical */
103dbdf9cedSTony Lindgren 		.end	= OMAP_OSK_ETHR_START + 0xf,
104dbdf9cedSTony Lindgren 		.flags	= IORESOURCE_MEM,
105dbdf9cedSTony Lindgren 	},
106dbdf9cedSTony Lindgren 	[1] = {
107dbdf9cedSTony Lindgren 		.start	= OMAP_GPIO_IRQ(0),
108dbdf9cedSTony Lindgren 		.end	= OMAP_GPIO_IRQ(0),
109dbdf9cedSTony Lindgren 		.flags	= IORESOURCE_IRQ,
110dbdf9cedSTony Lindgren 	},
111dbdf9cedSTony Lindgren };
112dbdf9cedSTony Lindgren 
113dbdf9cedSTony Lindgren static struct platform_device osk5912_smc91x_device = {
114dbdf9cedSTony Lindgren 	.name		= "smc91x",
115dbdf9cedSTony Lindgren 	.id		= -1,
116dbdf9cedSTony Lindgren 	.num_resources	= ARRAY_SIZE(osk5912_smc91x_resources),
117dbdf9cedSTony Lindgren 	.resource	= osk5912_smc91x_resources,
118dbdf9cedSTony Lindgren };
119dbdf9cedSTony Lindgren 
120dbdf9cedSTony Lindgren static struct resource osk5912_cf_resources[] = {
121dbdf9cedSTony Lindgren 	[0] = {
122dbdf9cedSTony Lindgren 		.start	= OMAP_GPIO_IRQ(62),
123dbdf9cedSTony Lindgren 		.end	= OMAP_GPIO_IRQ(62),
124dbdf9cedSTony Lindgren 		.flags	= IORESOURCE_IRQ,
125dbdf9cedSTony Lindgren 	},
126dbdf9cedSTony Lindgren };
127dbdf9cedSTony Lindgren 
128dbdf9cedSTony Lindgren static struct platform_device osk5912_cf_device = {
129dbdf9cedSTony Lindgren 	.name		= "omap_cf",
130dbdf9cedSTony Lindgren 	.id		= -1,
131dbdf9cedSTony Lindgren 	.dev = {
132dbdf9cedSTony Lindgren 		.platform_data	= (void *) 2 /* CS2 */,
133dbdf9cedSTony Lindgren 	},
134dbdf9cedSTony Lindgren 	.num_resources	= ARRAY_SIZE(osk5912_cf_resources),
135dbdf9cedSTony Lindgren 	.resource	= osk5912_cf_resources,
136dbdf9cedSTony Lindgren };
137dbdf9cedSTony Lindgren 
1389b6553cdSTony Lindgren #define DEFAULT_BITPERSAMPLE 16
1399b6553cdSTony Lindgren 
1409b6553cdSTony Lindgren static struct omap_mcbsp_reg_cfg mcbsp_regs = {
1419b6553cdSTony Lindgren 	.spcr2 = FREE | FRST | GRST | XRST | XINTM(3),
1429b6553cdSTony Lindgren 	.spcr1 = RINTM(3) | RRST,
1439b6553cdSTony Lindgren 	.rcr2 = RPHASE | RFRLEN2(OMAP_MCBSP_WORD_8) |
1449b6553cdSTony Lindgren 	    RWDLEN2(OMAP_MCBSP_WORD_16) | RDATDLY(0),
1459b6553cdSTony Lindgren 	.rcr1 = RFRLEN1(OMAP_MCBSP_WORD_8) | RWDLEN1(OMAP_MCBSP_WORD_16),
1469b6553cdSTony Lindgren 	.xcr2 = XPHASE | XFRLEN2(OMAP_MCBSP_WORD_8) |
1479b6553cdSTony Lindgren 	    XWDLEN2(OMAP_MCBSP_WORD_16) | XDATDLY(0) | XFIG,
1489b6553cdSTony Lindgren 	.xcr1 = XFRLEN1(OMAP_MCBSP_WORD_8) | XWDLEN1(OMAP_MCBSP_WORD_16),
1499b6553cdSTony Lindgren 	.srgr1 = FWID(DEFAULT_BITPERSAMPLE - 1),
1509b6553cdSTony Lindgren 	.srgr2 = GSYNC | CLKSP | FSGM | FPER(DEFAULT_BITPERSAMPLE * 2 - 1),
1519b6553cdSTony Lindgren 	/*.pcr0 = FSXM | FSRM | CLKXM | CLKRM | CLKXP | CLKRP,*/ /* mcbsp: master */
1529b6553cdSTony Lindgren 	.pcr0 = CLKXP | CLKRP,  /* mcbsp: slave */
1539b6553cdSTony Lindgren };
1549b6553cdSTony Lindgren 
1559b6553cdSTony Lindgren static struct omap_alsa_codec_config alsa_config = {
1569b6553cdSTony Lindgren 	.name			= "OSK AIC23",
1579b6553cdSTony Lindgren 	.mcbsp_regs_alsa	= &mcbsp_regs,
1589b6553cdSTony Lindgren 	.codec_configure_dev	= NULL, // aic23_configure,
1599b6553cdSTony Lindgren 	.codec_set_samplerate	= NULL, // aic23_set_samplerate,
1609b6553cdSTony Lindgren 	.codec_clock_setup	= NULL, // aic23_clock_setup,
1619b6553cdSTony Lindgren 	.codec_clock_on		= NULL, // aic23_clock_on,
1629b6553cdSTony Lindgren 	.codec_clock_off	= NULL, // aic23_clock_off,
1639b6553cdSTony Lindgren 	.get_default_samplerate	= NULL, // aic23_get_default_samplerate,
1649b6553cdSTony Lindgren };
1659b6553cdSTony Lindgren 
1667c38cf02STony Lindgren static struct platform_device osk5912_mcbsp1_device = {
1679b6553cdSTony Lindgren 	.name	= "omap_alsa_mcbsp",
1687c38cf02STony Lindgren 	.id	= 1,
1699b6553cdSTony Lindgren 	.dev = {
1709b6553cdSTony Lindgren 		.platform_data	= &alsa_config,
1719b6553cdSTony Lindgren 	},
1729b6553cdSTony Lindgren };
1739b6553cdSTony Lindgren 
174dbdf9cedSTony Lindgren static struct platform_device *osk5912_devices[] __initdata = {
1757c38cf02STony Lindgren 	&osk5912_flash_device,
176dbdf9cedSTony Lindgren 	&osk5912_smc91x_device,
177dbdf9cedSTony Lindgren 	&osk5912_cf_device,
1787c38cf02STony Lindgren 	&osk5912_mcbsp1_device,
179dbdf9cedSTony Lindgren };
180dbdf9cedSTony Lindgren 
181dbdf9cedSTony Lindgren static void __init osk_init_smc91x(void)
182dbdf9cedSTony Lindgren {
183dbdf9cedSTony Lindgren 	if ((omap_request_gpio(0)) < 0) {
184dbdf9cedSTony Lindgren 		printk("Error requesting gpio 0 for smc91x irq\n");
185dbdf9cedSTony Lindgren 		return;
186dbdf9cedSTony Lindgren 	}
187dbdf9cedSTony Lindgren 
188dbdf9cedSTony Lindgren 	/* Check EMIFS wait states to fix errors with SMC_GET_PKT_HDR */
1893179a019STony Lindgren 	EMIFS_CCS(1) |= 0x3;
190dbdf9cedSTony Lindgren }
191dbdf9cedSTony Lindgren 
192dbdf9cedSTony Lindgren static void __init osk_init_cf(void)
193dbdf9cedSTony Lindgren {
194dbdf9cedSTony Lindgren 	omap_cfg_reg(M7_1610_GPIO62);
195dbdf9cedSTony Lindgren 	if ((omap_request_gpio(62)) < 0) {
196dbdf9cedSTony Lindgren 		printk("Error requesting gpio 62 for CF irq\n");
197dbdf9cedSTony Lindgren 		return;
198dbdf9cedSTony Lindgren 	}
1997c38cf02STony Lindgren 	/* the CF I/O IRQ is really active-low */
2007c38cf02STony Lindgren 	set_irq_type(OMAP_GPIO_IRQ(62), IRQT_FALLING);
201dbdf9cedSTony Lindgren }
202dbdf9cedSTony Lindgren 
2037c38cf02STony Lindgren static void __init osk_init_irq(void)
204dbdf9cedSTony Lindgren {
20587bd63f6STony Lindgren 	omap1_init_common_hw();
206dbdf9cedSTony Lindgren 	omap_init_irq();
207dbdf9cedSTony Lindgren 	omap_gpio_init();
208dbdf9cedSTony Lindgren 	osk_init_smc91x();
209dbdf9cedSTony Lindgren 	osk_init_cf();
210dbdf9cedSTony Lindgren }
211dbdf9cedSTony Lindgren 
212dbdf9cedSTony Lindgren static struct omap_usb_config osk_usb_config __initdata = {
213dbdf9cedSTony Lindgren 	/* has usb host connector (A) ... for development it can also
214dbdf9cedSTony Lindgren 	 * be used, with a NONSTANDARD gender-bending cable/dongle, as
215dbdf9cedSTony Lindgren 	 * a peripheral.
216dbdf9cedSTony Lindgren 	 */
217dbdf9cedSTony Lindgren #ifdef	CONFIG_USB_GADGET_OMAP
218dbdf9cedSTony Lindgren 	.register_dev	= 1,
219dbdf9cedSTony Lindgren 	.hmc_mode	= 0,
220dbdf9cedSTony Lindgren #else
221dbdf9cedSTony Lindgren 	.register_host	= 1,
222dbdf9cedSTony Lindgren 	.hmc_mode	= 16,
223dbdf9cedSTony Lindgren 	.rwc		= 1,
224dbdf9cedSTony Lindgren #endif
225dbdf9cedSTony Lindgren 	.pins[0]	= 2,
226dbdf9cedSTony Lindgren };
227dbdf9cedSTony Lindgren 
2283179a019STony Lindgren static struct omap_uart_config osk_uart_config __initdata = {
2293179a019STony Lindgren 	.enabled_uarts = (1 << 0),
2303179a019STony Lindgren };
2313179a019STony Lindgren 
23278762841SDavid Brownell #ifdef	CONFIG_OMAP_OSK_MISTRAL
2333179a019STony Lindgren static struct omap_lcd_config osk_lcd_config __initdata = {
2343179a019STony Lindgren 	.ctrl_name	= "internal",
2353179a019STony Lindgren };
23678762841SDavid Brownell #endif
2373179a019STony Lindgren 
238dbdf9cedSTony Lindgren static struct omap_board_config_kernel osk_config[] = {
239dbdf9cedSTony Lindgren 	{ OMAP_TAG_USB,           &osk_usb_config },
2403179a019STony Lindgren 	{ OMAP_TAG_UART,		&osk_uart_config },
24178762841SDavid Brownell #ifdef	CONFIG_OMAP_OSK_MISTRAL
2423179a019STony Lindgren 	{ OMAP_TAG_LCD,			&osk_lcd_config },
24378762841SDavid Brownell #endif
244dbdf9cedSTony Lindgren };
245dbdf9cedSTony Lindgren 
2467c38cf02STony Lindgren #ifdef	CONFIG_OMAP_OSK_MISTRAL
2477c38cf02STony Lindgren 
24878762841SDavid Brownell #include <linux/input.h>
24978762841SDavid Brownell #include <linux/spi/spi.h>
25078762841SDavid Brownell #include <linux/spi/ads7846.h>
25178762841SDavid Brownell 
25278762841SDavid Brownell #include <asm/arch/keypad.h>
25378762841SDavid Brownell 
25478762841SDavid Brownell static const int osk_keymap[] = {
25578762841SDavid Brownell 	/* KEY(col, row, code) */
25678762841SDavid Brownell 	KEY(0, 0, KEY_F1),		/* SW4 */
25778762841SDavid Brownell 	KEY(0, 3, KEY_UP),		/* (sw2/up) */
25878762841SDavid Brownell 	KEY(1, 1, KEY_LEFTCTRL),	/* SW5 */
25978762841SDavid Brownell 	KEY(1, 2, KEY_LEFT),		/* (sw2/left) */
26078762841SDavid Brownell 	KEY(2, 0, KEY_SPACE),		/* SW3 */
26178762841SDavid Brownell 	KEY(2, 1, KEY_ESC),		/* SW6 */
26278762841SDavid Brownell 	KEY(2, 2, KEY_DOWN),		/* (sw2/down) */
26378762841SDavid Brownell 	KEY(3, 2, KEY_ENTER),		/* (sw2/select) */
26478762841SDavid Brownell 	KEY(3, 3, KEY_RIGHT),		/* (sw2/right) */
26578762841SDavid Brownell 	0
26678762841SDavid Brownell };
26778762841SDavid Brownell 
26878762841SDavid Brownell static struct omap_kp_platform_data osk_kp_data = {
26978762841SDavid Brownell 	.rows	= 8,
27078762841SDavid Brownell 	.cols	= 8,
27178762841SDavid Brownell 	.keymap = (int *) osk_keymap,
27278762841SDavid Brownell };
27378762841SDavid Brownell 
27478762841SDavid Brownell static struct resource osk5912_kp_resources[] = {
27578762841SDavid Brownell 	[0] = {
27678762841SDavid Brownell 		.start	= INT_KEYBOARD,
27778762841SDavid Brownell 		.end	= INT_KEYBOARD,
27878762841SDavid Brownell 		.flags	= IORESOURCE_IRQ,
27978762841SDavid Brownell 	},
28078762841SDavid Brownell };
28178762841SDavid Brownell 
28278762841SDavid Brownell static struct platform_device osk5912_kp_device = {
28378762841SDavid Brownell 	.name		= "omap-keypad",
28478762841SDavid Brownell 	.id		= -1,
28578762841SDavid Brownell 	.dev		= {
28678762841SDavid Brownell 		.platform_data = &osk_kp_data,
28778762841SDavid Brownell 	},
28878762841SDavid Brownell 	.num_resources	= ARRAY_SIZE(osk5912_kp_resources),
28978762841SDavid Brownell 	.resource	= osk5912_kp_resources,
29078762841SDavid Brownell };
29178762841SDavid Brownell 
29278762841SDavid Brownell static struct platform_device osk5912_lcd_device = {
29378762841SDavid Brownell 	.name		= "lcd_osk",
29478762841SDavid Brownell 	.id		= -1,
29578762841SDavid Brownell };
29678762841SDavid Brownell 
29778762841SDavid Brownell static struct platform_device *mistral_devices[] __initdata = {
29878762841SDavid Brownell 	&osk5912_kp_device,
29978762841SDavid Brownell 	&osk5912_lcd_device,
30078762841SDavid Brownell };
30178762841SDavid Brownell 
30278762841SDavid Brownell static const struct ads7846_platform_data mistral_ts_info = {
30378762841SDavid Brownell 	.model			= 7846,
30478762841SDavid Brownell 	.vref_delay_usecs	= 100,	/* internal, no capacitor */
30578762841SDavid Brownell 	.x_plate_ohms		= 419,
30678762841SDavid Brownell 	.y_plate_ohms		= 486,
30778762841SDavid Brownell 	// .{x,y,pressure}_{min,max}
30878762841SDavid Brownell };
30978762841SDavid Brownell 
31078762841SDavid Brownell static struct spi_board_info __initdata mistral_boardinfo[] = { {
31178762841SDavid Brownell 	/* MicroWire (bus 2) CS0 has an ads7846e */
31278762841SDavid Brownell 	.modalias		= "ads7846",
31378762841SDavid Brownell 	.platform_data		= &mistral_ts_info,
31478762841SDavid Brownell 	.irq			= OMAP_GPIO_IRQ(4),
31578762841SDavid Brownell 	.max_speed_hz		= 120000 /* max sample rate at 3V */
31678762841SDavid Brownell 					* 26 /* command + data + overhead */,
31778762841SDavid Brownell 	.bus_num		= 2,
31878762841SDavid Brownell 	.chip_select		= 0,
31978762841SDavid Brownell } };
32078762841SDavid Brownell 
3217c38cf02STony Lindgren #ifdef	CONFIG_PM
3227c38cf02STony Lindgren static irqreturn_t
3237c38cf02STony Lindgren osk_mistral_wake_interrupt(int irq, void *ignored, struct pt_regs *regs)
3247c38cf02STony Lindgren {
3257c38cf02STony Lindgren 	return IRQ_HANDLED;
3267c38cf02STony Lindgren }
3277c38cf02STony Lindgren #endif
3287c38cf02STony Lindgren 
3297c38cf02STony Lindgren static void __init osk_mistral_init(void)
3307c38cf02STony Lindgren {
33178762841SDavid Brownell 	/* NOTE:  we could actually tell if there's a Mistral board
3327c38cf02STony Lindgren 	 * attached, e.g. by trying to read something from the ads7846.
33378762841SDavid Brownell 	 * But this arch_init() code is too early for that, since we
33478762841SDavid Brownell 	 * can't talk to the ads or even the i2c eeprom.
3357c38cf02STony Lindgren 	 */
3367c38cf02STony Lindgren 
33778762841SDavid Brownell 	// omap_cfg_reg(P19_1610_GPIO6);	// BUSY
33878762841SDavid Brownell 	omap_cfg_reg(P20_1610_GPIO4);	// PENIRQ
33978762841SDavid Brownell 	set_irq_type(OMAP_GPIO_IRQ(4), IRQT_FALLING);
34078762841SDavid Brownell 	spi_register_board_info(mistral_boardinfo,
34178762841SDavid Brownell 			ARRAY_SIZE(mistral_boardinfo));
34278762841SDavid Brownell 
3437c38cf02STony Lindgren 	/* the sideways button (SW1) is for use as a "wakeup" button */
3447c38cf02STony Lindgren 	omap_cfg_reg(N15_1610_MPUIO2);
3457c38cf02STony Lindgren 	if (omap_request_gpio(OMAP_MPUIO(2)) == 0) {
3467c38cf02STony Lindgren 		int ret = 0;
3477c38cf02STony Lindgren 		omap_set_gpio_direction(OMAP_MPUIO(2), 1);
3487c38cf02STony Lindgren 		set_irq_type(OMAP_GPIO_IRQ(OMAP_MPUIO(2)), IRQT_RISING);
3497c38cf02STony Lindgren #ifdef	CONFIG_PM
3507c38cf02STony Lindgren 		/* share the IRQ in case someone wants to use the
3517c38cf02STony Lindgren 		 * button for more than wakeup from system sleep.
3527c38cf02STony Lindgren 		 */
3537c38cf02STony Lindgren 		ret = request_irq(OMAP_GPIO_IRQ(OMAP_MPUIO(2)),
3547c38cf02STony Lindgren 				&osk_mistral_wake_interrupt,
3557c38cf02STony Lindgren 				SA_SHIRQ, "mistral_wakeup",
3567c38cf02STony Lindgren 				&osk_mistral_wake_interrupt);
3577c38cf02STony Lindgren 		if (ret != 0) {
3587c38cf02STony Lindgren 			omap_free_gpio(OMAP_MPUIO(2));
3597c38cf02STony Lindgren 			printk(KERN_ERR "OSK+Mistral: no wakeup irq, %d?\n",
3607c38cf02STony Lindgren 				ret);
3617c38cf02STony Lindgren 		} else
3627c38cf02STony Lindgren 			enable_irq_wake(OMAP_GPIO_IRQ(OMAP_MPUIO(2)));
3637c38cf02STony Lindgren #endif
3647c38cf02STony Lindgren 	} else
3657c38cf02STony Lindgren 		printk(KERN_ERR "OSK+Mistral: wakeup button is awol\n");
36678762841SDavid Brownell 
36778762841SDavid Brownell 	platform_add_devices(mistral_devices, ARRAY_SIZE(mistral_devices));
3687c38cf02STony Lindgren }
3697c38cf02STony Lindgren #else
3707c38cf02STony Lindgren static void __init osk_mistral_init(void) { }
3717c38cf02STony Lindgren #endif
3727c38cf02STony Lindgren 
3739b6553cdSTony Lindgren #define EMIFS_CS3_VAL	(0x88013141)
3749b6553cdSTony Lindgren 
375dbdf9cedSTony Lindgren static void __init osk_init(void)
376dbdf9cedSTony Lindgren {
3779b6553cdSTony Lindgren 	/* Workaround for wrong CS3 (NOR flash) timing
3789b6553cdSTony Lindgren 	 * There are some U-Boot versions out there which configure
3799b6553cdSTony Lindgren 	 * wrong CS3 memory timings. This mainly leads to CRC
3809b6553cdSTony Lindgren 	 * or similiar errors if you use NOR flash (e.g. with JFFS2)
3819b6553cdSTony Lindgren 	 */
3829b6553cdSTony Lindgren 	if (EMIFS_CCS(3) != EMIFS_CS3_VAL)
3839b6553cdSTony Lindgren 		EMIFS_CCS(3) = EMIFS_CS3_VAL;
3849b6553cdSTony Lindgren 
3857c38cf02STony Lindgren 	osk_flash_resource.end = osk_flash_resource.start = omap_cs3_phys();
3867c38cf02STony Lindgren 	osk_flash_resource.end += SZ_32M - 1;
387dbdf9cedSTony Lindgren 	platform_add_devices(osk5912_devices, ARRAY_SIZE(osk5912_devices));
388dbdf9cedSTony Lindgren 	omap_board_config = osk_config;
389dbdf9cedSTony Lindgren 	omap_board_config_size = ARRAY_SIZE(osk_config);
390dbdf9cedSTony Lindgren 	USB_TRANSCEIVER_CTRL_REG |= (3 << 1);
3917c38cf02STony Lindgren 
3923179a019STony Lindgren 	omap_serial_init();
3937c38cf02STony Lindgren 	osk_mistral_init();
394dbdf9cedSTony Lindgren }
395dbdf9cedSTony Lindgren 
396dbdf9cedSTony Lindgren static void __init osk_map_io(void)
397dbdf9cedSTony Lindgren {
39887bd63f6STony Lindgren 	omap1_map_common_io();
399dbdf9cedSTony Lindgren }
400dbdf9cedSTony Lindgren 
401dbdf9cedSTony Lindgren MACHINE_START(OMAP_OSK, "TI-OSK")
402dbdf9cedSTony Lindgren 	/* Maintainer: Dirk Behme <dirk.behme@de.bosch.com> */
403dbdf9cedSTony Lindgren 	.phys_io	= 0xfff00000,
404dbdf9cedSTony Lindgren 	.io_pg_offst	= ((0xfef00000) >> 18) & 0xfffc,
405dbdf9cedSTony Lindgren 	.boot_params	= 0x10000100,
406dbdf9cedSTony Lindgren 	.map_io		= osk_map_io,
407dbdf9cedSTony Lindgren 	.init_irq	= osk_init_irq,
408dbdf9cedSTony Lindgren 	.init_machine	= osk_init,
409dbdf9cedSTony Lindgren 	.timer		= &omap_timer,
410dbdf9cedSTony Lindgren MACHINE_END
411