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> 32*a524626bSTony Lindgren #include <linux/interrupt.h> 33d533c128SThomas Gleixner #include <linux/irq.h> 34ffd22b8eSDavid Brownell #include <linux/interrupt.h> 357c38cf02STony Lindgren 367c38cf02STony Lindgren #include <linux/mtd/mtd.h> 377c38cf02STony Lindgren #include <linux/mtd/partitions.h> 38dbdf9cedSTony Lindgren 39dbdf9cedSTony Lindgren #include <asm/hardware.h> 40dbdf9cedSTony Lindgren #include <asm/mach-types.h> 41dbdf9cedSTony Lindgren #include <asm/mach/arch.h> 42dbdf9cedSTony Lindgren #include <asm/mach/map.h> 437c38cf02STony Lindgren #include <asm/mach/flash.h> 44dbdf9cedSTony Lindgren 45dbdf9cedSTony Lindgren #include <asm/arch/gpio.h> 46dbdf9cedSTony Lindgren #include <asm/arch/usb.h> 47dbdf9cedSTony Lindgren #include <asm/arch/mux.h> 48dbdf9cedSTony Lindgren #include <asm/arch/tc.h> 49d48af15eSTony Lindgren #include <asm/arch/common.h> 509b6553cdSTony Lindgren #include <asm/arch/mcbsp.h> 519b6553cdSTony Lindgren #include <asm/arch/omap-alsa.h> 529b6553cdSTony Lindgren 537c38cf02STony Lindgren static struct mtd_partition osk_partitions[] = { 547c38cf02STony Lindgren /* bootloader (U-Boot, etc) in first sector */ 557c38cf02STony Lindgren { 567c38cf02STony Lindgren .name = "bootloader", 577c38cf02STony Lindgren .offset = 0, 587c38cf02STony Lindgren .size = SZ_128K, 597c38cf02STony Lindgren .mask_flags = MTD_WRITEABLE, /* force read-only */ 607c38cf02STony Lindgren }, 617c38cf02STony Lindgren /* bootloader params in the next sector */ 627c38cf02STony Lindgren { 637c38cf02STony Lindgren .name = "params", 647c38cf02STony Lindgren .offset = MTDPART_OFS_APPEND, 657c38cf02STony Lindgren .size = SZ_128K, 667c38cf02STony Lindgren .mask_flags = 0, 677c38cf02STony Lindgren }, { 687c38cf02STony Lindgren .name = "kernel", 697c38cf02STony Lindgren .offset = MTDPART_OFS_APPEND, 707c38cf02STony Lindgren .size = SZ_2M, 717c38cf02STony Lindgren .mask_flags = 0 727c38cf02STony Lindgren }, { 737c38cf02STony Lindgren .name = "filesystem", 747c38cf02STony Lindgren .offset = MTDPART_OFS_APPEND, 757c38cf02STony Lindgren .size = MTDPART_SIZ_FULL, 767c38cf02STony Lindgren .mask_flags = 0 777c38cf02STony Lindgren } 78dbdf9cedSTony Lindgren }; 79dbdf9cedSTony Lindgren 807c38cf02STony Lindgren static struct flash_platform_data osk_flash_data = { 817c38cf02STony Lindgren .map_name = "cfi_probe", 827c38cf02STony Lindgren .width = 2, 837c38cf02STony Lindgren .parts = osk_partitions, 847c38cf02STony Lindgren .nr_parts = ARRAY_SIZE(osk_partitions), 857c38cf02STony Lindgren }; 867c38cf02STony Lindgren 877c38cf02STony Lindgren static struct resource osk_flash_resource = { 887c38cf02STony Lindgren /* this is on CS3, wherever it's mapped */ 897c38cf02STony Lindgren .flags = IORESOURCE_MEM, 907c38cf02STony Lindgren }; 917c38cf02STony Lindgren 927c38cf02STony Lindgren static struct platform_device osk5912_flash_device = { 937c38cf02STony Lindgren .name = "omapflash", 947c38cf02STony Lindgren .id = 0, 957c38cf02STony Lindgren .dev = { 967c38cf02STony Lindgren .platform_data = &osk_flash_data, 977c38cf02STony Lindgren }, 987c38cf02STony Lindgren .num_resources = 1, 997c38cf02STony Lindgren .resource = &osk_flash_resource, 1007c38cf02STony Lindgren }; 101dbdf9cedSTony Lindgren 102dbdf9cedSTony Lindgren static struct resource osk5912_smc91x_resources[] = { 103dbdf9cedSTony Lindgren [0] = { 104dbdf9cedSTony Lindgren .start = OMAP_OSK_ETHR_START, /* Physical */ 105dbdf9cedSTony Lindgren .end = OMAP_OSK_ETHR_START + 0xf, 106dbdf9cedSTony Lindgren .flags = IORESOURCE_MEM, 107dbdf9cedSTony Lindgren }, 108dbdf9cedSTony Lindgren [1] = { 109dbdf9cedSTony Lindgren .start = OMAP_GPIO_IRQ(0), 110dbdf9cedSTony Lindgren .end = OMAP_GPIO_IRQ(0), 111dbdf9cedSTony Lindgren .flags = IORESOURCE_IRQ, 112dbdf9cedSTony Lindgren }, 113dbdf9cedSTony Lindgren }; 114dbdf9cedSTony Lindgren 115dbdf9cedSTony Lindgren static struct platform_device osk5912_smc91x_device = { 116dbdf9cedSTony Lindgren .name = "smc91x", 117dbdf9cedSTony Lindgren .id = -1, 118dbdf9cedSTony Lindgren .num_resources = ARRAY_SIZE(osk5912_smc91x_resources), 119dbdf9cedSTony Lindgren .resource = osk5912_smc91x_resources, 120dbdf9cedSTony Lindgren }; 121dbdf9cedSTony Lindgren 122dbdf9cedSTony Lindgren static struct resource osk5912_cf_resources[] = { 123dbdf9cedSTony Lindgren [0] = { 124dbdf9cedSTony Lindgren .start = OMAP_GPIO_IRQ(62), 125dbdf9cedSTony Lindgren .end = OMAP_GPIO_IRQ(62), 126dbdf9cedSTony Lindgren .flags = IORESOURCE_IRQ, 127dbdf9cedSTony Lindgren }, 128dbdf9cedSTony Lindgren }; 129dbdf9cedSTony Lindgren 130dbdf9cedSTony Lindgren static struct platform_device osk5912_cf_device = { 131dbdf9cedSTony Lindgren .name = "omap_cf", 132dbdf9cedSTony Lindgren .id = -1, 133dbdf9cedSTony Lindgren .dev = { 134dbdf9cedSTony Lindgren .platform_data = (void *) 2 /* CS2 */, 135dbdf9cedSTony Lindgren }, 136dbdf9cedSTony Lindgren .num_resources = ARRAY_SIZE(osk5912_cf_resources), 137dbdf9cedSTony Lindgren .resource = osk5912_cf_resources, 138dbdf9cedSTony Lindgren }; 139dbdf9cedSTony Lindgren 1409b6553cdSTony Lindgren #define DEFAULT_BITPERSAMPLE 16 1419b6553cdSTony Lindgren 1429b6553cdSTony Lindgren static struct omap_mcbsp_reg_cfg mcbsp_regs = { 1439b6553cdSTony Lindgren .spcr2 = FREE | FRST | GRST | XRST | XINTM(3), 1449b6553cdSTony Lindgren .spcr1 = RINTM(3) | RRST, 1459b6553cdSTony Lindgren .rcr2 = RPHASE | RFRLEN2(OMAP_MCBSP_WORD_8) | 1469b6553cdSTony Lindgren RWDLEN2(OMAP_MCBSP_WORD_16) | RDATDLY(0), 1479b6553cdSTony Lindgren .rcr1 = RFRLEN1(OMAP_MCBSP_WORD_8) | RWDLEN1(OMAP_MCBSP_WORD_16), 1489b6553cdSTony Lindgren .xcr2 = XPHASE | XFRLEN2(OMAP_MCBSP_WORD_8) | 1499b6553cdSTony Lindgren XWDLEN2(OMAP_MCBSP_WORD_16) | XDATDLY(0) | XFIG, 1509b6553cdSTony Lindgren .xcr1 = XFRLEN1(OMAP_MCBSP_WORD_8) | XWDLEN1(OMAP_MCBSP_WORD_16), 1519b6553cdSTony Lindgren .srgr1 = FWID(DEFAULT_BITPERSAMPLE - 1), 1529b6553cdSTony Lindgren .srgr2 = GSYNC | CLKSP | FSGM | FPER(DEFAULT_BITPERSAMPLE * 2 - 1), 1539b6553cdSTony Lindgren /*.pcr0 = FSXM | FSRM | CLKXM | CLKRM | CLKXP | CLKRP,*/ /* mcbsp: master */ 1549b6553cdSTony Lindgren .pcr0 = CLKXP | CLKRP, /* mcbsp: slave */ 1559b6553cdSTony Lindgren }; 1569b6553cdSTony Lindgren 1579b6553cdSTony Lindgren static struct omap_alsa_codec_config alsa_config = { 1589b6553cdSTony Lindgren .name = "OSK AIC23", 1599b6553cdSTony Lindgren .mcbsp_regs_alsa = &mcbsp_regs, 1609b6553cdSTony Lindgren .codec_configure_dev = NULL, // aic23_configure, 1619b6553cdSTony Lindgren .codec_set_samplerate = NULL, // aic23_set_samplerate, 1629b6553cdSTony Lindgren .codec_clock_setup = NULL, // aic23_clock_setup, 1639b6553cdSTony Lindgren .codec_clock_on = NULL, // aic23_clock_on, 1649b6553cdSTony Lindgren .codec_clock_off = NULL, // aic23_clock_off, 1659b6553cdSTony Lindgren .get_default_samplerate = NULL, // aic23_get_default_samplerate, 1669b6553cdSTony Lindgren }; 1679b6553cdSTony Lindgren 1687c38cf02STony Lindgren static struct platform_device osk5912_mcbsp1_device = { 1699b6553cdSTony Lindgren .name = "omap_alsa_mcbsp", 1707c38cf02STony Lindgren .id = 1, 1719b6553cdSTony Lindgren .dev = { 1729b6553cdSTony Lindgren .platform_data = &alsa_config, 1739b6553cdSTony Lindgren }, 1749b6553cdSTony Lindgren }; 1759b6553cdSTony Lindgren 176dbdf9cedSTony Lindgren static struct platform_device *osk5912_devices[] __initdata = { 1777c38cf02STony Lindgren &osk5912_flash_device, 178dbdf9cedSTony Lindgren &osk5912_smc91x_device, 179dbdf9cedSTony Lindgren &osk5912_cf_device, 1807c38cf02STony Lindgren &osk5912_mcbsp1_device, 181dbdf9cedSTony Lindgren }; 182dbdf9cedSTony Lindgren 183dbdf9cedSTony Lindgren static void __init osk_init_smc91x(void) 184dbdf9cedSTony Lindgren { 185dbdf9cedSTony Lindgren if ((omap_request_gpio(0)) < 0) { 186dbdf9cedSTony Lindgren printk("Error requesting gpio 0 for smc91x irq\n"); 187dbdf9cedSTony Lindgren return; 188dbdf9cedSTony Lindgren } 189dbdf9cedSTony Lindgren 190dbdf9cedSTony Lindgren /* Check EMIFS wait states to fix errors with SMC_GET_PKT_HDR */ 1913179a019STony Lindgren EMIFS_CCS(1) |= 0x3; 192dbdf9cedSTony Lindgren } 193dbdf9cedSTony Lindgren 194dbdf9cedSTony Lindgren static void __init osk_init_cf(void) 195dbdf9cedSTony Lindgren { 196dbdf9cedSTony Lindgren omap_cfg_reg(M7_1610_GPIO62); 197dbdf9cedSTony Lindgren if ((omap_request_gpio(62)) < 0) { 198dbdf9cedSTony Lindgren printk("Error requesting gpio 62 for CF irq\n"); 199dbdf9cedSTony Lindgren return; 200dbdf9cedSTony Lindgren } 2017c38cf02STony Lindgren /* the CF I/O IRQ is really active-low */ 2027c38cf02STony Lindgren set_irq_type(OMAP_GPIO_IRQ(62), IRQT_FALLING); 203dbdf9cedSTony Lindgren } 204dbdf9cedSTony Lindgren 2057c38cf02STony Lindgren static void __init osk_init_irq(void) 206dbdf9cedSTony Lindgren { 20787bd63f6STony Lindgren omap1_init_common_hw(); 208dbdf9cedSTony Lindgren omap_init_irq(); 209dbdf9cedSTony Lindgren omap_gpio_init(); 210dbdf9cedSTony Lindgren osk_init_smc91x(); 211dbdf9cedSTony Lindgren osk_init_cf(); 212dbdf9cedSTony Lindgren } 213dbdf9cedSTony Lindgren 214dbdf9cedSTony Lindgren static struct omap_usb_config osk_usb_config __initdata = { 215dbdf9cedSTony Lindgren /* has usb host connector (A) ... for development it can also 216dbdf9cedSTony Lindgren * be used, with a NONSTANDARD gender-bending cable/dongle, as 217dbdf9cedSTony Lindgren * a peripheral. 218dbdf9cedSTony Lindgren */ 219dbdf9cedSTony Lindgren #ifdef CONFIG_USB_GADGET_OMAP 220dbdf9cedSTony Lindgren .register_dev = 1, 221dbdf9cedSTony Lindgren .hmc_mode = 0, 222dbdf9cedSTony Lindgren #else 223dbdf9cedSTony Lindgren .register_host = 1, 224dbdf9cedSTony Lindgren .hmc_mode = 16, 225dbdf9cedSTony Lindgren .rwc = 1, 226dbdf9cedSTony Lindgren #endif 227dbdf9cedSTony Lindgren .pins[0] = 2, 228dbdf9cedSTony Lindgren }; 229dbdf9cedSTony Lindgren 2303179a019STony Lindgren static struct omap_uart_config osk_uart_config __initdata = { 2313179a019STony Lindgren .enabled_uarts = (1 << 0), 2323179a019STony Lindgren }; 2333179a019STony Lindgren 23478762841SDavid Brownell #ifdef CONFIG_OMAP_OSK_MISTRAL 2353179a019STony Lindgren static struct omap_lcd_config osk_lcd_config __initdata = { 2363179a019STony Lindgren .ctrl_name = "internal", 2373179a019STony Lindgren }; 23878762841SDavid Brownell #endif 2393179a019STony Lindgren 240dbdf9cedSTony Lindgren static struct omap_board_config_kernel osk_config[] = { 241dbdf9cedSTony Lindgren { OMAP_TAG_USB, &osk_usb_config }, 2423179a019STony Lindgren { OMAP_TAG_UART, &osk_uart_config }, 24378762841SDavid Brownell #ifdef CONFIG_OMAP_OSK_MISTRAL 2443179a019STony Lindgren { OMAP_TAG_LCD, &osk_lcd_config }, 24578762841SDavid Brownell #endif 246dbdf9cedSTony Lindgren }; 247dbdf9cedSTony Lindgren 2487c38cf02STony Lindgren #ifdef CONFIG_OMAP_OSK_MISTRAL 2497c38cf02STony Lindgren 25078762841SDavid Brownell #include <linux/input.h> 25178762841SDavid Brownell #include <linux/spi/spi.h> 25278762841SDavid Brownell #include <linux/spi/ads7846.h> 25378762841SDavid Brownell 25478762841SDavid Brownell #include <asm/arch/keypad.h> 25578762841SDavid Brownell 25678762841SDavid Brownell static const int osk_keymap[] = { 25778762841SDavid Brownell /* KEY(col, row, code) */ 25878762841SDavid Brownell KEY(0, 0, KEY_F1), /* SW4 */ 25978762841SDavid Brownell KEY(0, 3, KEY_UP), /* (sw2/up) */ 26078762841SDavid Brownell KEY(1, 1, KEY_LEFTCTRL), /* SW5 */ 26178762841SDavid Brownell KEY(1, 2, KEY_LEFT), /* (sw2/left) */ 26278762841SDavid Brownell KEY(2, 0, KEY_SPACE), /* SW3 */ 26378762841SDavid Brownell KEY(2, 1, KEY_ESC), /* SW6 */ 26478762841SDavid Brownell KEY(2, 2, KEY_DOWN), /* (sw2/down) */ 26578762841SDavid Brownell KEY(3, 2, KEY_ENTER), /* (sw2/select) */ 26678762841SDavid Brownell KEY(3, 3, KEY_RIGHT), /* (sw2/right) */ 26778762841SDavid Brownell 0 26878762841SDavid Brownell }; 26978762841SDavid Brownell 27078762841SDavid Brownell static struct omap_kp_platform_data osk_kp_data = { 27178762841SDavid Brownell .rows = 8, 27278762841SDavid Brownell .cols = 8, 27378762841SDavid Brownell .keymap = (int *) osk_keymap, 2744d24607bSKomal Shah .keymapsize = ARRAY_SIZE(osk_keymap), 2754d24607bSKomal Shah .delay = 9, 27678762841SDavid Brownell }; 27778762841SDavid Brownell 27878762841SDavid Brownell static struct resource osk5912_kp_resources[] = { 27978762841SDavid Brownell [0] = { 28078762841SDavid Brownell .start = INT_KEYBOARD, 28178762841SDavid Brownell .end = INT_KEYBOARD, 28278762841SDavid Brownell .flags = IORESOURCE_IRQ, 28378762841SDavid Brownell }, 28478762841SDavid Brownell }; 28578762841SDavid Brownell 28678762841SDavid Brownell static struct platform_device osk5912_kp_device = { 28778762841SDavid Brownell .name = "omap-keypad", 28878762841SDavid Brownell .id = -1, 28978762841SDavid Brownell .dev = { 29078762841SDavid Brownell .platform_data = &osk_kp_data, 29178762841SDavid Brownell }, 29278762841SDavid Brownell .num_resources = ARRAY_SIZE(osk5912_kp_resources), 29378762841SDavid Brownell .resource = osk5912_kp_resources, 29478762841SDavid Brownell }; 29578762841SDavid Brownell 29678762841SDavid Brownell static struct platform_device osk5912_lcd_device = { 29778762841SDavid Brownell .name = "lcd_osk", 29878762841SDavid Brownell .id = -1, 29978762841SDavid Brownell }; 30078762841SDavid Brownell 30178762841SDavid Brownell static struct platform_device *mistral_devices[] __initdata = { 30278762841SDavid Brownell &osk5912_kp_device, 30378762841SDavid Brownell &osk5912_lcd_device, 30478762841SDavid Brownell }; 30578762841SDavid Brownell 306e8cdf7bdSDavid Brownell static int mistral_get_pendown_state(void) 307e8cdf7bdSDavid Brownell { 308e8cdf7bdSDavid Brownell return !omap_get_gpio_datain(4); 309e8cdf7bdSDavid Brownell } 310e8cdf7bdSDavid Brownell 31178762841SDavid Brownell static const struct ads7846_platform_data mistral_ts_info = { 31278762841SDavid Brownell .model = 7846, 31378762841SDavid Brownell .vref_delay_usecs = 100, /* internal, no capacitor */ 31478762841SDavid Brownell .x_plate_ohms = 419, 31578762841SDavid Brownell .y_plate_ohms = 486, 316e8cdf7bdSDavid Brownell .get_pendown_state = mistral_get_pendown_state, 31778762841SDavid Brownell }; 31878762841SDavid Brownell 31978762841SDavid Brownell static struct spi_board_info __initdata mistral_boardinfo[] = { { 32078762841SDavid Brownell /* MicroWire (bus 2) CS0 has an ads7846e */ 32178762841SDavid Brownell .modalias = "ads7846", 32278762841SDavid Brownell .platform_data = &mistral_ts_info, 32378762841SDavid Brownell .irq = OMAP_GPIO_IRQ(4), 32478762841SDavid Brownell .max_speed_hz = 120000 /* max sample rate at 3V */ 32578762841SDavid Brownell * 26 /* command + data + overhead */, 32678762841SDavid Brownell .bus_num = 2, 32778762841SDavid Brownell .chip_select = 0, 32878762841SDavid Brownell } }; 32978762841SDavid Brownell 3307c38cf02STony Lindgren #ifdef CONFIG_PM 3317c38cf02STony Lindgren static irqreturn_t 3320cd61b68SLinus Torvalds osk_mistral_wake_interrupt(int irq, void *ignored) 3337c38cf02STony Lindgren { 3347c38cf02STony Lindgren return IRQ_HANDLED; 3357c38cf02STony Lindgren } 3367c38cf02STony Lindgren #endif 3377c38cf02STony Lindgren 3387c38cf02STony Lindgren static void __init osk_mistral_init(void) 3397c38cf02STony Lindgren { 34078762841SDavid Brownell /* NOTE: we could actually tell if there's a Mistral board 3417c38cf02STony Lindgren * attached, e.g. by trying to read something from the ads7846. 34278762841SDavid Brownell * But this arch_init() code is too early for that, since we 34378762841SDavid Brownell * can't talk to the ads or even the i2c eeprom. 3447c38cf02STony Lindgren */ 3457c38cf02STony Lindgren 346c72d8950SDavid Brownell /* parallel camera interface */ 347c72d8950SDavid Brownell omap_cfg_reg(J15_1610_CAM_LCLK); 348c72d8950SDavid Brownell omap_cfg_reg(J18_1610_CAM_D7); 349c72d8950SDavid Brownell omap_cfg_reg(J19_1610_CAM_D6); 350c72d8950SDavid Brownell omap_cfg_reg(J14_1610_CAM_D5); 351c72d8950SDavid Brownell omap_cfg_reg(K18_1610_CAM_D4); 352c72d8950SDavid Brownell omap_cfg_reg(K19_1610_CAM_D3); 353c72d8950SDavid Brownell omap_cfg_reg(K15_1610_CAM_D2); 354c72d8950SDavid Brownell omap_cfg_reg(K14_1610_CAM_D1); 355c72d8950SDavid Brownell omap_cfg_reg(L19_1610_CAM_D0); 356c72d8950SDavid Brownell omap_cfg_reg(L18_1610_CAM_VS); 357c72d8950SDavid Brownell omap_cfg_reg(L15_1610_CAM_HS); 358c72d8950SDavid Brownell omap_cfg_reg(M19_1610_CAM_RSTZ); 359c72d8950SDavid Brownell omap_cfg_reg(Y15_1610_CAM_OUTCLK); 360c72d8950SDavid Brownell 361c72d8950SDavid Brownell /* serial camera interface */ 362c72d8950SDavid Brownell omap_cfg_reg(H19_1610_CAM_EXCLK); 363c72d8950SDavid Brownell omap_cfg_reg(W13_1610_CCP_CLKM); 364c72d8950SDavid Brownell omap_cfg_reg(Y12_1610_CCP_CLKP); 365c72d8950SDavid Brownell /* CCP_DATAM CONFLICTS WITH UART1.TX (and serial console) */ 366c72d8950SDavid Brownell // omap_cfg_reg(Y14_1610_CCP_DATAM); 367c72d8950SDavid Brownell omap_cfg_reg(W14_1610_CCP_DATAP); 368c72d8950SDavid Brownell 369c72d8950SDavid Brownell /* CAM_PWDN */ 370c72d8950SDavid Brownell if (omap_request_gpio(11) == 0) { 371c72d8950SDavid Brownell omap_cfg_reg(N20_1610_GPIO11); 372c72d8950SDavid Brownell omap_set_gpio_direction(11, 0 /* out */); 373c72d8950SDavid Brownell omap_set_gpio_dataout(11, 0 /* off */); 374c72d8950SDavid Brownell } else 375c72d8950SDavid Brownell pr_debug("OSK+Mistral: CAM_PWDN is awol\n"); 376c72d8950SDavid Brownell 377c72d8950SDavid Brownell 37878762841SDavid Brownell // omap_cfg_reg(P19_1610_GPIO6); // BUSY 37978762841SDavid Brownell omap_cfg_reg(P20_1610_GPIO4); // PENIRQ 38078762841SDavid Brownell set_irq_type(OMAP_GPIO_IRQ(4), IRQT_FALLING); 38178762841SDavid Brownell spi_register_board_info(mistral_boardinfo, 38278762841SDavid Brownell ARRAY_SIZE(mistral_boardinfo)); 38378762841SDavid Brownell 3847c38cf02STony Lindgren /* the sideways button (SW1) is for use as a "wakeup" button */ 3857c38cf02STony Lindgren omap_cfg_reg(N15_1610_MPUIO2); 3867c38cf02STony Lindgren if (omap_request_gpio(OMAP_MPUIO(2)) == 0) { 3877c38cf02STony Lindgren int ret = 0; 3887c38cf02STony Lindgren omap_set_gpio_direction(OMAP_MPUIO(2), 1); 3897c38cf02STony Lindgren set_irq_type(OMAP_GPIO_IRQ(OMAP_MPUIO(2)), IRQT_RISING); 3907c38cf02STony Lindgren #ifdef CONFIG_PM 3917c38cf02STony Lindgren /* share the IRQ in case someone wants to use the 3927c38cf02STony Lindgren * button for more than wakeup from system sleep. 3937c38cf02STony Lindgren */ 3947c38cf02STony Lindgren ret = request_irq(OMAP_GPIO_IRQ(OMAP_MPUIO(2)), 3957c38cf02STony Lindgren &osk_mistral_wake_interrupt, 39652e405eaSThomas Gleixner IRQF_SHARED, "mistral_wakeup", 3977c38cf02STony Lindgren &osk_mistral_wake_interrupt); 3987c38cf02STony Lindgren if (ret != 0) { 3997c38cf02STony Lindgren omap_free_gpio(OMAP_MPUIO(2)); 4007c38cf02STony Lindgren printk(KERN_ERR "OSK+Mistral: no wakeup irq, %d?\n", 4017c38cf02STony Lindgren ret); 4027c38cf02STony Lindgren } else 4037c38cf02STony Lindgren enable_irq_wake(OMAP_GPIO_IRQ(OMAP_MPUIO(2))); 4047c38cf02STony Lindgren #endif 4057c38cf02STony Lindgren } else 4067c38cf02STony Lindgren printk(KERN_ERR "OSK+Mistral: wakeup button is awol\n"); 40778762841SDavid Brownell 40878762841SDavid Brownell platform_add_devices(mistral_devices, ARRAY_SIZE(mistral_devices)); 4097c38cf02STony Lindgren } 4107c38cf02STony Lindgren #else 4117c38cf02STony Lindgren static void __init osk_mistral_init(void) { } 4127c38cf02STony Lindgren #endif 4137c38cf02STony Lindgren 4149b6553cdSTony Lindgren #define EMIFS_CS3_VAL (0x88013141) 4159b6553cdSTony Lindgren 416dbdf9cedSTony Lindgren static void __init osk_init(void) 417dbdf9cedSTony Lindgren { 4189b6553cdSTony Lindgren /* Workaround for wrong CS3 (NOR flash) timing 4199b6553cdSTony Lindgren * There are some U-Boot versions out there which configure 4209b6553cdSTony Lindgren * wrong CS3 memory timings. This mainly leads to CRC 4216cbdc8c5SSimon Arlott * or similar errors if you use NOR flash (e.g. with JFFS2) 4229b6553cdSTony Lindgren */ 4239b6553cdSTony Lindgren if (EMIFS_CCS(3) != EMIFS_CS3_VAL) 4249b6553cdSTony Lindgren EMIFS_CCS(3) = EMIFS_CS3_VAL; 4259b6553cdSTony Lindgren 4267c38cf02STony Lindgren osk_flash_resource.end = osk_flash_resource.start = omap_cs3_phys(); 4277c38cf02STony Lindgren osk_flash_resource.end += SZ_32M - 1; 428dbdf9cedSTony Lindgren platform_add_devices(osk5912_devices, ARRAY_SIZE(osk5912_devices)); 429dbdf9cedSTony Lindgren omap_board_config = osk_config; 430dbdf9cedSTony Lindgren omap_board_config_size = ARRAY_SIZE(osk_config); 431dbdf9cedSTony Lindgren USB_TRANSCEIVER_CTRL_REG |= (3 << 1); 4327c38cf02STony Lindgren 4333179a019STony Lindgren omap_serial_init(); 4347c38cf02STony Lindgren osk_mistral_init(); 435dbdf9cedSTony Lindgren } 436dbdf9cedSTony Lindgren 437dbdf9cedSTony Lindgren static void __init osk_map_io(void) 438dbdf9cedSTony Lindgren { 43987bd63f6STony Lindgren omap1_map_common_io(); 440dbdf9cedSTony Lindgren } 441dbdf9cedSTony Lindgren 442dbdf9cedSTony Lindgren MACHINE_START(OMAP_OSK, "TI-OSK") 443dbdf9cedSTony Lindgren /* Maintainer: Dirk Behme <dirk.behme@de.bosch.com> */ 444dbdf9cedSTony Lindgren .phys_io = 0xfff00000, 445dbdf9cedSTony Lindgren .io_pg_offst = ((0xfef00000) >> 18) & 0xfffc, 446dbdf9cedSTony Lindgren .boot_params = 0x10000100, 447dbdf9cedSTony Lindgren .map_io = osk_map_io, 448dbdf9cedSTony Lindgren .init_irq = osk_init_irq, 449dbdf9cedSTony Lindgren .init_machine = osk_init, 450dbdf9cedSTony Lindgren .timer = &omap_timer, 451dbdf9cedSTony Lindgren MACHINE_END 452