blob: 1c7c834a5b5f5fb819dc56b6c8bc01edfc62f4d8 [file] [log] [blame]
Kishore Ya6490332010-11-15 07:09:03 +01001/*
2 * Copyright (C) 2010 Texas Instruments Inc.
3 *
4 * Modified from mach-omap2/board-zoom-peripherals.c
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/i2c/twl.h>
16#include <linux/spi/spi.h>
Arnd Bergmann22037472012-08-24 15:21:06 +020017#include <linux/platform_data/spi-omap2-mcspi.h>
Tomi Valkeinena0b38cc2011-05-11 14:05:07 +030018#include <video/omapdss.h>
Tony Lindgren8599e7c2012-10-08 09:11:22 -070019#include "board-zoom.h"
Kishore Ya6490332010-11-15 07:09:03 +010020
Tony Lindgrene4c060d2012-10-05 13:25:59 -070021#include "soc.h"
Tony Lindgrendbc04162012-08-31 10:59:07 -070022#include "common.h"
Tony Lindgren4b254082012-08-30 15:37:24 -070023
Kishore Ya6490332010-11-15 07:09:03 +010024#define LCD_PANEL_RESET_GPIO_PROD 96
25#define LCD_PANEL_RESET_GPIO_PILOT 55
26#define LCD_PANEL_QVGA_GPIO 56
27
Igor Grinbergbc593f52011-05-03 18:22:09 +030028static struct gpio zoom_lcd_gpios[] __initdata = {
29 { -EINVAL, GPIOF_OUT_INIT_HIGH, "lcd reset" },
30 { LCD_PANEL_QVGA_GPIO, GPIOF_OUT_INIT_HIGH, "lcd qvga" },
31};
32
Santosh Shilimkar89c47052011-05-30 00:11:45 -070033static void __init zoom_lcd_panel_init(void)
Kishore Ya6490332010-11-15 07:09:03 +010034{
Igor Grinbergbc593f52011-05-03 18:22:09 +030035 zoom_lcd_gpios[0].gpio = (omap_rev() > OMAP3430_REV_ES3_0) ?
Kishore Ya6490332010-11-15 07:09:03 +010036 LCD_PANEL_RESET_GPIO_PROD :
37 LCD_PANEL_RESET_GPIO_PILOT;
38
Igor Grinbergbc593f52011-05-03 18:22:09 +030039 if (gpio_request_array(zoom_lcd_gpios, ARRAY_SIZE(zoom_lcd_gpios)))
40 pr_err("%s: Failed to get LCD GPIOs.\n", __func__);
Kishore Ya6490332010-11-15 07:09:03 +010041}
42
43static int zoom_panel_enable_lcd(struct omap_dss_device *dssdev)
44{
45 return 0;
46}
47
48static void zoom_panel_disable_lcd(struct omap_dss_device *dssdev)
49{
50}
51
52/*
53 * PWMA/B register offsets (TWL4030_MODULE_PWMA)
54 */
55#define TWL_INTBR_PMBR1 0xD
56#define TWL_INTBR_GPBR1 0xC
57#define TWL_LED_PWMON 0x0
58#define TWL_LED_PWMOFF 0x1
59
60static int zoom_set_bl_intensity(struct omap_dss_device *dssdev, int level)
61{
Tony Lindgren38232f72012-02-23 14:29:59 -080062#ifdef CONFIG_TWL4030_CORE
Kishore Ya6490332010-11-15 07:09:03 +010063 unsigned char c;
64 u8 mux_pwm, enb_pwm;
65
66 if (level > 100)
67 return -1;
68
69 twl_i2c_read_u8(TWL4030_MODULE_INTBR, &mux_pwm, TWL_INTBR_PMBR1);
70 twl_i2c_read_u8(TWL4030_MODULE_INTBR, &enb_pwm, TWL_INTBR_GPBR1);
71
72 if (level == 0) {
73 /* disable pwm1 output and clock */
74 enb_pwm = enb_pwm & 0xF5;
75 /* change pwm1 pin to gpio pin */
76 mux_pwm = mux_pwm & 0xCF;
77 twl_i2c_write_u8(TWL4030_MODULE_INTBR,
78 enb_pwm, TWL_INTBR_GPBR1);
79 twl_i2c_write_u8(TWL4030_MODULE_INTBR,
80 mux_pwm, TWL_INTBR_PMBR1);
81 return 0;
82 }
83
84 if (!((enb_pwm & 0xA) && (mux_pwm & 0x30))) {
85 /* change gpio pin to pwm1 pin */
86 mux_pwm = mux_pwm | 0x30;
87 /* enable pwm1 output and clock*/
88 enb_pwm = enb_pwm | 0x0A;
89 twl_i2c_write_u8(TWL4030_MODULE_INTBR,
90 mux_pwm, TWL_INTBR_PMBR1);
91 twl_i2c_write_u8(TWL4030_MODULE_INTBR,
92 enb_pwm, TWL_INTBR_GPBR1);
93 }
94
95 c = ((50 * (100 - level)) / 100) + 1;
96 twl_i2c_write_u8(TWL4030_MODULE_PWM1, 0x7F, TWL_LED_PWMOFF);
97 twl_i2c_write_u8(TWL4030_MODULE_PWM1, c, TWL_LED_PWMON);
Tony Lindgren38232f72012-02-23 14:29:59 -080098#else
99 pr_warn("Backlight not enabled\n");
100#endif
Kishore Ya6490332010-11-15 07:09:03 +0100101
102 return 0;
103}
104
105static struct omap_dss_device zoom_lcd_device = {
106 .name = "lcd",
107 .driver_name = "NEC_8048_panel",
108 .type = OMAP_DISPLAY_TYPE_DPI,
109 .phy.dpi.data_lines = 24,
110 .platform_enable = zoom_panel_enable_lcd,
111 .platform_disable = zoom_panel_disable_lcd,
112 .max_backlight_level = 100,
113 .set_backlight = zoom_set_bl_intensity,
114};
115
116static struct omap_dss_device *zoom_dss_devices[] = {
117 &zoom_lcd_device,
118};
119
120static struct omap_dss_board_info zoom_dss_data = {
121 .num_devices = ARRAY_SIZE(zoom_dss_devices),
122 .devices = zoom_dss_devices,
123 .default_device = &zoom_lcd_device,
124};
125
Kishore Ya6490332010-11-15 07:09:03 +0100126static struct omap2_mcspi_device_config dss_lcd_mcspi_config = {
127 .turbo_mode = 1,
Kishore Ya6490332010-11-15 07:09:03 +0100128};
129
130static struct spi_board_info nec_8048_spi_board_info[] __initdata = {
131 [0] = {
132 .modalias = "nec_8048_spi",
133 .bus_num = 1,
134 .chip_select = 2,
135 .max_speed_hz = 375000,
136 .controller_data = &dss_lcd_mcspi_config,
137 },
138};
139
Kishore Ya6490332010-11-15 07:09:03 +0100140void __init zoom_display_init(void)
141{
Senthilvadivu Guruswamyd5e13222011-02-22 11:24:50 +0200142 omap_display_init(&zoom_dss_data);
Kishore Ya6490332010-11-15 07:09:03 +0100143 spi_register_board_info(nec_8048_spi_board_info,
144 ARRAY_SIZE(nec_8048_spi_board_info));
145 zoom_lcd_panel_init();
146}
147