blob: 46f4fc982766e638b920c456114b58d94eab7888 [file] [log] [blame]
Roger Quadros03e11102010-05-10 10:35:17 +02001/*
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 Quadros03e11102010-05-10 10:35:17 +020017#include <asm/mach-types.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030018#include <video/omapdss.h>
Arnd Bergmann22037472012-08-24 15:21:06 +020019#include <linux/platform_data/spi-omap2-mcspi.h>
Roger Quadros03e11102010-05-10 10:35:17 +020020
Tony Lindgren0a6f98c2012-09-20 11:40:56 -070021#include "board-rx51.h"
Manjunath Kondaiah G04aeae72010-10-08 09:58:35 -070022
Roger Quadros03e11102010-05-10 10:35:17 +020023#include "mux.h"
24
25#define RX51_LCD_RESET_GPIO 90
26
27#if defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE)
28
29static int rx51_lcd_enable(struct omap_dss_device *dssdev)
30{
31 gpio_set_value(dssdev->reset_gpio, 1);
32 return 0;
33}
34
35static void rx51_lcd_disable(struct omap_dss_device *dssdev)
36{
37 gpio_set_value(dssdev->reset_gpio, 0);
38}
39
40static struct omap_dss_device rx51_lcd_device = {
41 .name = "lcd",
42 .driver_name = "panel-acx565akm",
43 .type = OMAP_DISPLAY_TYPE_SDI,
44 .phy.sdi.datapairs = 2,
45 .reset_gpio = RX51_LCD_RESET_GPIO,
46 .platform_enable = rx51_lcd_enable,
47 .platform_disable = rx51_lcd_disable,
48};
49
Srikar60d24ee2010-12-20 18:48:16 -080050static struct omap_dss_device rx51_tv_device = {
51 .name = "tv",
52 .type = OMAP_DISPLAY_TYPE_VENC,
53 .driver_name = "venc",
54 .phy.venc.type = OMAP_DSS_VENC_TYPE_COMPOSITE,
Srikar60d24ee2010-12-20 18:48:16 -080055};
56
Roger Quadros03e11102010-05-10 10:35:17 +020057static struct omap_dss_device *rx51_dss_devices[] = {
58 &rx51_lcd_device,
Srikar60d24ee2010-12-20 18:48:16 -080059 &rx51_tv_device,
Roger Quadros03e11102010-05-10 10:35:17 +020060};
61
62static struct omap_dss_board_info rx51_dss_board_info = {
63 .num_devices = ARRAY_SIZE(rx51_dss_devices),
64 .devices = rx51_dss_devices,
65 .default_device = &rx51_lcd_device,
66};
67
Roger Quadros03e11102010-05-10 10:35:17 +020068static int __init rx51_video_init(void)
69{
70 if (!machine_is_nokia_rx51())
71 return 0;
72
73 if (omap_mux_init_gpio(RX51_LCD_RESET_GPIO, OMAP_PIN_OUTPUT)) {
74 pr_err("%s cannot configure MUX for LCD RESET\n", __func__);
75 return 0;
76 }
77
Igor Grinbergbc593f52011-05-03 18:22:09 +030078 if (gpio_request_one(RX51_LCD_RESET_GPIO, GPIOF_OUT_INIT_HIGH,
79 "LCD ACX565AKM reset")) {
Roger Quadros03e11102010-05-10 10:35:17 +020080 pr_err("%s failed to get LCD Reset GPIO\n", __func__);
81 return 0;
82 }
83
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +020084 omap_display_init(&rx51_dss_board_info);
Roger Quadros03e11102010-05-10 10:35:17 +020085 return 0;
86}
87
88subsys_initcall(rx51_video_init);
Roger Quadros03e11102010-05-10 10:35:17 +020089#endif /* defined(CONFIG_FB_OMAP2) || defined(CONFIG_FB_OMAP2_MODULE) */