Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-omap2/board-rx51-video.c |
| 3 | * |
| 4 | * Copyright (C) 2010 Nokia |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/platform_device.h> |
| 14 | #include <linux/gpio.h> |
| 15 | #include <linux/spi/spi.h> |
| 16 | #include <linux/mm.h> |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 17 | #include <asm/mach-types.h> |
Tomi Valkeinen | a0b38cc | 2011-05-11 14:05:07 +0300 | [diff] [blame] | 18 | #include <video/omapdss.h> |
Archit Taneja | 3c803f4 | 2013-02-12 14:05:37 +0530 | [diff] [blame] | 19 | #include <video/omap-panel-data.h> |
| 20 | |
Arnd Bergmann | 2203747 | 2012-08-24 15:21:06 +0200 | [diff] [blame] | 21 | #include <linux/platform_data/spi-omap2-mcspi.h> |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 22 | |
Tony Lindgren | b76c8b1 | 2013-01-11 11:24:18 -0800 | [diff] [blame] | 23 | #include "soc.h" |
Tony Lindgren | 0a6f98c | 2012-09-20 11:40:56 -0700 | [diff] [blame] | 24 | #include "board-rx51.h" |
Manjunath Kondaiah G | 04aeae7 | 2010-10-08 09:58:35 -0700 | [diff] [blame] | 25 | |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 26 | #include "mux.h" |
| 27 | |
| 28 | #define RX51_LCD_RESET_GPIO 90 |
| 29 | |
| 30 | #if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE) |
| 31 | |
Archit Taneja | 3c803f4 | 2013-02-12 14:05:37 +0530 | [diff] [blame] | 32 | static struct panel_acx565akm_data lcd_data = { |
| 33 | .reset_gpio = RX51_LCD_RESET_GPIO, |
| 34 | }; |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 35 | |
| 36 | static struct omap_dss_device rx51_lcd_device = { |
| 37 | .name = "lcd", |
| 38 | .driver_name = "panel-acx565akm", |
| 39 | .type = OMAP_DISPLAY_TYPE_SDI, |
| 40 | .phy.sdi.datapairs = 2, |
Archit Taneja | 3c803f4 | 2013-02-12 14:05:37 +0530 | [diff] [blame] | 41 | .data = &lcd_data, |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 42 | }; |
| 43 | |
Srikar | 60d24ee | 2010-12-20 18:48:16 -0800 | [diff] [blame] | 44 | static struct omap_dss_device rx51_tv_device = { |
| 45 | .name = "tv", |
| 46 | .type = OMAP_DISPLAY_TYPE_VENC, |
| 47 | .driver_name = "venc", |
| 48 | .phy.venc.type = OMAP_DSS_VENC_TYPE_COMPOSITE, |
Srikar | 60d24ee | 2010-12-20 18:48:16 -0800 | [diff] [blame] | 49 | }; |
| 50 | |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 51 | static struct omap_dss_device *rx51_dss_devices[] = { |
| 52 | &rx51_lcd_device, |
Srikar | 60d24ee | 2010-12-20 18:48:16 -0800 | [diff] [blame] | 53 | &rx51_tv_device, |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 54 | }; |
| 55 | |
| 56 | static struct omap_dss_board_info rx51_dss_board_info = { |
| 57 | .num_devices = ARRAY_SIZE(rx51_dss_devices), |
| 58 | .devices = rx51_dss_devices, |
| 59 | .default_device = &rx51_lcd_device, |
| 60 | }; |
| 61 | |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 62 | static int __init rx51_video_init(void) |
| 63 | { |
Pavel Machek | ea2409b | 2013-07-01 23:15:04 +0200 | [diff] [blame^] | 64 | if (!machine_is_nokia_rx51() && !of_machine_is_compatible("nokia,omap3-n900")) |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 65 | return 0; |
| 66 | |
| 67 | if (omap_mux_init_gpio(RX51_LCD_RESET_GPIO, OMAP_PIN_OUTPUT)) { |
| 68 | pr_err("%s cannot configure MUX for LCD RESET\n", __func__); |
| 69 | return 0; |
| 70 | } |
| 71 | |
Senthilvadivu Guruswamy | d5e1322 | 2011-02-22 11:24:50 +0200 | [diff] [blame] | 72 | omap_display_init(&rx51_dss_board_info); |
Archit Taneja | 3c803f4 | 2013-02-12 14:05:37 +0530 | [diff] [blame] | 73 | |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 74 | return 0; |
| 75 | } |
| 76 | |
Tony Lindgren | b76c8b1 | 2013-01-11 11:24:18 -0800 | [diff] [blame] | 77 | omap_subsys_initcall(rx51_video_init); |
Roger Quadros | 03e1110 | 2010-05-10 10:35:17 +0200 | [diff] [blame] | 78 | #endif /* defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE) */ |