blob: 0081725c6b5be62f6c7939d5bc2b4022881f363e [file] [log] [blame]
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001/*
2 * Copyright (C) 2008-2009 MontaVista Software Inc.
3 * Copyright (C) 2008-2009 Texas Instruments Inc
4 *
5 * Based on the LCD driver for TI Avalanche processors written by
6 * Ajay Singh and Shalom Hai.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option)any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22#include <linux/module.h>
23#include <linux/kernel.h>
24#include <linux/fb.h>
25#include <linux/dma-mapping.h>
26#include <linux/device.h>
27#include <linux/platform_device.h>
28#include <linux/uaccess.h>
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +053029#include <linux/pm_runtime.h>
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070030#include <linux/interrupt.h>
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +053031#include <linux/wait.h>
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070032#include <linux/clk.h>
Chaithrika U Se04e5482009-12-15 16:46:29 -080033#include <linux/cpufreq.h>
Chaithrika U S1d3c6c72009-12-15 16:46:39 -080034#include <linux/console.h>
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +053035#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Florian Tobias Schandinata0239072012-07-29 16:47:40 +000037#include <linux/delay.h>
Aditya Nellutla3b9cc4e2012-05-23 11:36:31 +053038#include <linux/lcm.h>
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070039#include <video/da8xx-fb.h>
Manjunathappa, Prakash12fa8352012-02-09 11:54:06 +053040#include <asm/div64.h>
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070041
42#define DRIVER_NAME "da8xx_lcdc"
43
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +053044#define LCD_VERSION_1 1
45#define LCD_VERSION_2 2
46
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070047/* LCD Status Register */
Martin Ambrose1f9c3e12010-05-24 14:34:01 -070048#define LCD_END_OF_FRAME1 BIT(9)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070049#define LCD_END_OF_FRAME0 BIT(8)
Martin Ambrose1f9c3e12010-05-24 14:34:01 -070050#define LCD_PL_LOAD_DONE BIT(6)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070051#define LCD_FIFO_UNDERFLOW BIT(5)
52#define LCD_SYNC_LOST BIT(2)
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +053053#define LCD_FRAME_DONE BIT(0)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070054
55/* LCD DMA Control Register */
56#define LCD_DMA_BURST_SIZE(x) ((x) << 4)
57#define LCD_DMA_BURST_1 0x0
58#define LCD_DMA_BURST_2 0x1
59#define LCD_DMA_BURST_4 0x2
60#define LCD_DMA_BURST_8 0x3
61#define LCD_DMA_BURST_16 0x4
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +053062#define LCD_V1_END_OF_FRAME_INT_ENA BIT(2)
63#define LCD_V2_END_OF_FRAME0_INT_ENA BIT(8)
64#define LCD_V2_END_OF_FRAME1_INT_ENA BIT(9)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070065#define LCD_DUAL_FRAME_BUFFER_ENABLE BIT(0)
66
67/* LCD Control Register */
68#define LCD_CLK_DIVISOR(x) ((x) << 8)
69#define LCD_RASTER_MODE 0x01
70
71/* LCD Raster Control Register */
72#define LCD_PALETTE_LOAD_MODE(x) ((x) << 20)
73#define PALETTE_AND_DATA 0x00
74#define PALETTE_ONLY 0x01
Martin Ambrose1f9c3e12010-05-24 14:34:01 -070075#define DATA_ONLY 0x02
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070076
77#define LCD_MONO_8BIT_MODE BIT(9)
78#define LCD_RASTER_ORDER BIT(8)
79#define LCD_TFT_MODE BIT(7)
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +053080#define LCD_V1_UNDERFLOW_INT_ENA BIT(6)
81#define LCD_V2_UNDERFLOW_INT_ENA BIT(5)
82#define LCD_V1_PL_INT_ENA BIT(4)
83#define LCD_V2_PL_INT_ENA BIT(6)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070084#define LCD_MONOCHROME_MODE BIT(1)
85#define LCD_RASTER_ENABLE BIT(0)
86#define LCD_TFT_ALT_ENABLE BIT(23)
87#define LCD_STN_565_ENABLE BIT(24)
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +053088#define LCD_V2_DMA_CLK_EN BIT(2)
89#define LCD_V2_LIDD_CLK_EN BIT(1)
90#define LCD_V2_CORE_CLK_EN BIT(0)
91#define LCD_V2_LPP_B10 26
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +053092#define LCD_V2_TFT_24BPP_MODE BIT(25)
93#define LCD_V2_TFT_24BPP_UNPACK BIT(26)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -070094
95/* LCD Raster Timing 2 Register */
96#define LCD_AC_BIAS_TRANSITIONS_PER_INT(x) ((x) << 16)
97#define LCD_AC_BIAS_FREQUENCY(x) ((x) << 8)
98#define LCD_SYNC_CTRL BIT(25)
99#define LCD_SYNC_EDGE BIT(24)
100#define LCD_INVERT_PIXEL_CLOCK BIT(22)
101#define LCD_INVERT_LINE_CLOCK BIT(21)
102#define LCD_INVERT_FRAME_CLOCK BIT(20)
103
104/* LCD Block */
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530105#define LCD_PID_REG 0x0
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700106#define LCD_CTRL_REG 0x4
107#define LCD_STAT_REG 0x8
108#define LCD_RASTER_CTRL_REG 0x28
109#define LCD_RASTER_TIMING_0_REG 0x2C
110#define LCD_RASTER_TIMING_1_REG 0x30
111#define LCD_RASTER_TIMING_2_REG 0x34
112#define LCD_DMA_CTRL_REG 0x40
113#define LCD_DMA_FRM_BUF_BASE_ADDR_0_REG 0x44
114#define LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG 0x48
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700115#define LCD_DMA_FRM_BUF_BASE_ADDR_1_REG 0x4C
116#define LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG 0x50
117
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530118/* Interrupt Registers available only in Version 2 */
119#define LCD_RAW_STAT_REG 0x58
120#define LCD_MASKED_STAT_REG 0x5c
121#define LCD_INT_ENABLE_SET_REG 0x60
122#define LCD_INT_ENABLE_CLR_REG 0x64
123#define LCD_END_OF_INT_IND_REG 0x68
124
125/* Clock registers available only on Version 2 */
126#define LCD_CLK_ENABLE_REG 0x6c
127#define LCD_CLK_RESET_REG 0x70
Manjunathappa, Prakash74a0efd2011-11-15 17:32:23 +0530128#define LCD_CLK_MAIN_RESET BIT(3)
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530129
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700130#define LCD_NUM_BUFFERS 2
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700131
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700132#define PALETTE_SIZE 256
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700133
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500134#define CLK_MIN_DIV 2
135#define CLK_MAX_DIV 255
136
Arnd Bergmann34aef6e2012-09-14 20:33:43 +0000137static void __iomem *da8xx_fb_reg_base;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530138static unsigned int lcd_revision;
139static irq_handler_t lcdc_irq_handler;
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530140static wait_queue_head_t frame_done_wq;
141static int frame_done_flag;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700142
Darren Etheridgea9cd67c2013-08-05 17:02:38 -0500143static unsigned int lcdc_read(unsigned int addr)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700144{
145 return (unsigned int)__raw_readl(da8xx_fb_reg_base + (addr));
146}
147
Darren Etheridgea9cd67c2013-08-05 17:02:38 -0500148static void lcdc_write(unsigned int val, unsigned int addr)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700149{
150 __raw_writel(val, da8xx_fb_reg_base + (addr));
151}
152
153struct da8xx_fb_par {
Afzal Mohammeddbe8e482013-08-05 17:02:27 -0500154 struct device *dev;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700155 resource_size_t p_palette_base;
156 unsigned char *v_palette_base;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700157 dma_addr_t vram_phys;
158 unsigned long vram_size;
159 void *vram_virt;
160 unsigned int dma_start;
161 unsigned int dma_end;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700162 struct clk *lcdc_clk;
163 int irq;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700164 unsigned int palette_sz;
Chaithrika U S36113802009-12-15 16:46:38 -0800165 int blank;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700166 wait_queue_head_t vsync_wait;
167 int vsync_flag;
168 int vsync_timeout;
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +0530169 spinlock_t lock_for_chan_update;
170
171 /*
172 * LCDC has 2 ping pong DMA channels, channel 0
173 * and channel 1.
174 */
175 unsigned int which_dma_channel_done;
Chaithrika U Se04e5482009-12-15 16:46:29 -0800176#ifdef CONFIG_CPU_FREQ
177 struct notifier_block freq_transition;
178#endif
Darren Etheridge0715c722013-08-05 17:02:37 -0500179 unsigned int lcdc_clk_rate;
Chaithrika U S36113802009-12-15 16:46:38 -0800180 void (*panel_power_ctrl)(int);
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530181 u32 pseudo_palette[16];
Afzal Mohammedb6dbe8e2013-08-05 17:02:24 -0500182 struct fb_videomode mode;
183 struct lcd_ctrl_config cfg;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700184};
185
Afzal Mohammedbe0f6db2013-08-05 17:02:23 -0500186static struct fb_var_screeninfo da8xx_fb_var;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700187
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800188static struct fb_fix_screeninfo da8xx_fb_fix = {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700189 .id = "DA8xx FB Drv",
190 .type = FB_TYPE_PACKED_PIXELS,
191 .type_aux = 0,
192 .visual = FB_VISUAL_PSEUDOCOLOR,
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700193 .xpanstep = 0,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700194 .ypanstep = 1,
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700195 .ywrapstep = 0,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700196 .accel = FB_ACCEL_NONE
197};
198
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530199static struct fb_videomode known_lcd_panels[] = {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700200 /* Sharp LCD035Q3DG01 */
201 [0] = {
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530202 .name = "Sharp_LCD035Q3DG01",
203 .xres = 320,
204 .yres = 240,
Darren Etheridgea6a799f2013-08-05 17:02:26 -0500205 .pixclock = KHZ2PICOS(4607),
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530206 .left_margin = 6,
207 .right_margin = 8,
208 .upper_margin = 2,
209 .lower_margin = 2,
210 .hsync_len = 0,
211 .vsync_len = 0,
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530212 .sync = FB_SYNC_CLK_INVERT |
213 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700214 },
215 /* Sharp LK043T1DG01 */
216 [1] = {
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530217 .name = "Sharp_LK043T1DG01",
218 .xres = 480,
219 .yres = 272,
Darren Etheridgea6a799f2013-08-05 17:02:26 -0500220 .pixclock = KHZ2PICOS(7833),
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530221 .left_margin = 2,
222 .right_margin = 2,
223 .upper_margin = 2,
224 .lower_margin = 2,
225 .hsync_len = 41,
226 .vsync_len = 10,
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530227 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530228 .flag = 0,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700229 },
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100230 [2] = {
231 /* Hitachi SP10Q010 */
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530232 .name = "SP10Q010",
233 .xres = 320,
234 .yres = 240,
Darren Etheridgea6a799f2013-08-05 17:02:26 -0500235 .pixclock = KHZ2PICOS(7833),
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530236 .left_margin = 10,
237 .right_margin = 10,
238 .upper_margin = 10,
239 .lower_margin = 10,
240 .hsync_len = 10,
241 .vsync_len = 10,
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530242 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530243 .flag = 0,
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100244 },
Jon Ringlef474f0e2014-04-01 08:39:33 -0400245 [3] = {
246 /* Densitron 84-0023-001T */
247 .name = "Densitron_84-0023-001T",
248 .xres = 320,
249 .yres = 240,
250 .pixclock = KHZ2PICOS(6400),
251 .left_margin = 0,
252 .right_margin = 0,
253 .upper_margin = 0,
254 .lower_margin = 0,
255 .hsync_len = 30,
256 .vsync_len = 3,
257 .sync = 0,
258 },
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700259};
260
Darren Etheridgea9cd67c2013-08-05 17:02:38 -0500261static bool da8xx_fb_is_raster_enabled(void)
Darren Etheridgefe8c98f2013-08-05 17:02:29 -0500262{
263 return !!(lcdc_read(LCD_RASTER_CTRL_REG) & LCD_RASTER_ENABLE);
264}
265
Chaithrika U S36113802009-12-15 16:46:38 -0800266/* Enable the Raster Engine of the LCD Controller */
Darren Etheridgea9cd67c2013-08-05 17:02:38 -0500267static void lcd_enable_raster(void)
Chaithrika U S36113802009-12-15 16:46:38 -0800268{
269 u32 reg;
270
Manjunathappa, Prakash92b4e452012-07-20 21:21:11 +0530271 /* Put LCDC in reset for several cycles */
272 if (lcd_revision == LCD_VERSION_2)
273 /* Write 1 to reset LCDC */
274 lcdc_write(LCD_CLK_MAIN_RESET, LCD_CLK_RESET_REG);
275 mdelay(1);
276
Manjunathappa, Prakash74a0efd2011-11-15 17:32:23 +0530277 /* Bring LCDC out of reset */
278 if (lcd_revision == LCD_VERSION_2)
279 lcdc_write(0, LCD_CLK_RESET_REG);
Manjunathappa, Prakash92b4e452012-07-20 21:21:11 +0530280 mdelay(1);
Manjunathappa, Prakash74a0efd2011-11-15 17:32:23 +0530281
Manjunathappa, Prakash92b4e452012-07-20 21:21:11 +0530282 /* Above reset sequence doesnot reset register context */
Chaithrika U S36113802009-12-15 16:46:38 -0800283 reg = lcdc_read(LCD_RASTER_CTRL_REG);
284 if (!(reg & LCD_RASTER_ENABLE))
285 lcdc_write(reg | LCD_RASTER_ENABLE, LCD_RASTER_CTRL_REG);
286}
287
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700288/* Disable the Raster Engine of the LCD Controller */
Darren Etheridgea9cd67c2013-08-05 17:02:38 -0500289static void lcd_disable_raster(enum da8xx_frame_complete wait_for_frame_done)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700290{
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700291 u32 reg;
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530292 int ret;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700293
294 reg = lcdc_read(LCD_RASTER_CTRL_REG);
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -0700295 if (reg & LCD_RASTER_ENABLE)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700296 lcdc_write(reg & ~LCD_RASTER_ENABLE, LCD_RASTER_CTRL_REG);
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530297 else
298 /* return if already disabled */
299 return;
300
Darren Etheridge26e71642013-08-05 17:02:30 -0500301 if ((wait_for_frame_done == DA8XX_FRAME_WAIT) &&
302 (lcd_revision == LCD_VERSION_2)) {
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530303 frame_done_flag = 0;
304 ret = wait_event_interruptible_timeout(frame_done_wq,
305 frame_done_flag != 0,
306 msecs_to_jiffies(50));
307 if (ret == 0)
308 pr_err("LCD Controller timed out\n");
309 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700310}
311
312static void lcd_blit(int load_mode, struct da8xx_fb_par *par)
313{
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700314 u32 start;
315 u32 end;
316 u32 reg_ras;
317 u32 reg_dma;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530318 u32 reg_int;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700319
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700320 /* init reg to clear PLM (loading mode) fields */
321 reg_ras = lcdc_read(LCD_RASTER_CTRL_REG);
322 reg_ras &= ~(3 << 20);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700323
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700324 reg_dma = lcdc_read(LCD_DMA_CTRL_REG);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700325
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700326 if (load_mode == LOAD_DATA) {
327 start = par->dma_start;
328 end = par->dma_end;
329
330 reg_ras |= LCD_PALETTE_LOAD_MODE(DATA_ONLY);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530331 if (lcd_revision == LCD_VERSION_1) {
332 reg_dma |= LCD_V1_END_OF_FRAME_INT_ENA;
333 } else {
334 reg_int = lcdc_read(LCD_INT_ENABLE_SET_REG) |
335 LCD_V2_END_OF_FRAME0_INT_ENA |
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530336 LCD_V2_END_OF_FRAME1_INT_ENA |
Afzal Mohammede4008e22013-08-05 17:02:32 -0500337 LCD_FRAME_DONE | LCD_SYNC_LOST;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530338 lcdc_write(reg_int, LCD_INT_ENABLE_SET_REG);
339 }
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700340 reg_dma |= LCD_DUAL_FRAME_BUFFER_ENABLE;
341
342 lcdc_write(start, LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
343 lcdc_write(end, LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
344 lcdc_write(start, LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
345 lcdc_write(end, LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
346 } else if (load_mode == LOAD_PALETTE) {
347 start = par->p_palette_base;
348 end = start + par->palette_sz - 1;
349
350 reg_ras |= LCD_PALETTE_LOAD_MODE(PALETTE_ONLY);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530351
352 if (lcd_revision == LCD_VERSION_1) {
353 reg_ras |= LCD_V1_PL_INT_ENA;
354 } else {
355 reg_int = lcdc_read(LCD_INT_ENABLE_SET_REG) |
356 LCD_V2_PL_INT_ENA;
357 lcdc_write(reg_int, LCD_INT_ENABLE_SET_REG);
358 }
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700359
360 lcdc_write(start, LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
361 lcdc_write(end, LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
362 }
363
364 lcdc_write(reg_dma, LCD_DMA_CTRL_REG);
365 lcdc_write(reg_ras, LCD_RASTER_CTRL_REG);
366
367 /*
368 * The Raster enable bit must be set after all other control fields are
369 * set.
370 */
371 lcd_enable_raster();
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700372}
373
Manjunathappa, Prakashfb8fa942012-07-18 21:03:36 +0530374/* Configure the Burst Size and fifo threhold of DMA */
375static int lcd_cfg_dma(int burst_size, int fifo_th)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700376{
377 u32 reg;
378
379 reg = lcdc_read(LCD_DMA_CTRL_REG) & 0x00000001;
380 switch (burst_size) {
381 case 1:
382 reg |= LCD_DMA_BURST_SIZE(LCD_DMA_BURST_1);
383 break;
384 case 2:
385 reg |= LCD_DMA_BURST_SIZE(LCD_DMA_BURST_2);
386 break;
387 case 4:
388 reg |= LCD_DMA_BURST_SIZE(LCD_DMA_BURST_4);
389 break;
390 case 8:
391 reg |= LCD_DMA_BURST_SIZE(LCD_DMA_BURST_8);
392 break;
393 case 16:
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530394 default:
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700395 reg |= LCD_DMA_BURST_SIZE(LCD_DMA_BURST_16);
396 break;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700397 }
Manjunathappa, Prakashfb8fa942012-07-18 21:03:36 +0530398
399 reg |= (fifo_th << 8);
400
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -0700401 lcdc_write(reg, LCD_DMA_CTRL_REG);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700402
403 return 0;
404}
405
406static void lcd_cfg_ac_bias(int period, int transitions_per_int)
407{
408 u32 reg;
409
410 /* Set the AC Bias Period and Number of Transisitons per Interrupt */
411 reg = lcdc_read(LCD_RASTER_TIMING_2_REG) & 0xFFF00000;
412 reg |= LCD_AC_BIAS_FREQUENCY(period) |
413 LCD_AC_BIAS_TRANSITIONS_PER_INT(transitions_per_int);
414 lcdc_write(reg, LCD_RASTER_TIMING_2_REG);
415}
416
417static void lcd_cfg_horizontal_sync(int back_porch, int pulse_width,
418 int front_porch)
419{
420 u32 reg;
421
Ian Abbott4d4e2c02014-07-03 14:46:39 +0100422 reg = lcdc_read(LCD_RASTER_TIMING_0_REG) & 0x3ff;
Darren Etheridge83edd732013-08-23 16:52:51 -0500423 reg |= (((back_porch-1) & 0xff) << 24)
424 | (((front_porch-1) & 0xff) << 16)
425 | (((pulse_width-1) & 0x3f) << 10);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700426 lcdc_write(reg, LCD_RASTER_TIMING_0_REG);
Darren Etheridge2645ad12013-08-23 16:52:52 -0500427
428 /*
429 * LCDC Version 2 adds some extra bits that increase the allowable
430 * size of the horizontal timing registers.
431 * remember that the registers use 0 to represent 1 so all values
432 * that get set into register need to be decremented by 1
433 */
434 if (lcd_revision == LCD_VERSION_2) {
435 /* Mask off the bits we want to change */
436 reg = lcdc_read(LCD_RASTER_TIMING_2_REG) & ~0x780000ff;
437 reg |= ((front_porch-1) & 0x300) >> 8;
438 reg |= ((back_porch-1) & 0x300) >> 4;
439 reg |= ((pulse_width-1) & 0x3c0) << 21;
440 lcdc_write(reg, LCD_RASTER_TIMING_2_REG);
441 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700442}
443
444static void lcd_cfg_vertical_sync(int back_porch, int pulse_width,
445 int front_porch)
446{
447 u32 reg;
448
449 reg = lcdc_read(LCD_RASTER_TIMING_1_REG) & 0x3ff;
450 reg |= ((back_porch & 0xff) << 24)
451 | ((front_porch & 0xff) << 16)
Darren Etheridge83edd732013-08-23 16:52:51 -0500452 | (((pulse_width-1) & 0x3f) << 10);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700453 lcdc_write(reg, LCD_RASTER_TIMING_1_REG);
454}
455
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530456static int lcd_cfg_display(const struct lcd_ctrl_config *cfg,
457 struct fb_videomode *panel)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700458{
459 u32 reg;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530460 u32 reg_int;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700461
462 reg = lcdc_read(LCD_RASTER_CTRL_REG) & ~(LCD_TFT_MODE |
463 LCD_MONO_8BIT_MODE |
464 LCD_MONOCHROME_MODE);
465
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530466 switch (cfg->panel_shade) {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700467 case MONOCHROME:
468 reg |= LCD_MONOCHROME_MODE;
469 if (cfg->mono_8bit_mode)
470 reg |= LCD_MONO_8BIT_MODE;
471 break;
472 case COLOR_ACTIVE:
473 reg |= LCD_TFT_MODE;
474 if (cfg->tft_alt_mode)
475 reg |= LCD_TFT_ALT_ENABLE;
476 break;
477
478 case COLOR_PASSIVE:
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530479 /* AC bias applicable only for Pasive panels */
480 lcd_cfg_ac_bias(cfg->ac_bias, cfg->ac_bias_intrpt);
481 if (cfg->bpp == 12 && cfg->stn_565_mode)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700482 reg |= LCD_STN_565_ENABLE;
483 break;
484
485 default:
486 return -EINVAL;
487 }
488
489 /* enable additional interrupts here */
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530490 if (lcd_revision == LCD_VERSION_1) {
491 reg |= LCD_V1_UNDERFLOW_INT_ENA;
492 } else {
493 reg_int = lcdc_read(LCD_INT_ENABLE_SET_REG) |
494 LCD_V2_UNDERFLOW_INT_ENA;
495 lcdc_write(reg_int, LCD_INT_ENABLE_SET_REG);
496 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700497
498 lcdc_write(reg, LCD_RASTER_CTRL_REG);
499
500 reg = lcdc_read(LCD_RASTER_TIMING_2_REG);
501
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530502 reg |= LCD_SYNC_CTRL;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700503
504 if (cfg->sync_edge)
505 reg |= LCD_SYNC_EDGE;
506 else
507 reg &= ~LCD_SYNC_EDGE;
508
Darren Etheridge028cd862013-08-23 16:52:53 -0500509 if ((panel->sync & FB_SYNC_HOR_HIGH_ACT) == 0)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700510 reg |= LCD_INVERT_LINE_CLOCK;
511 else
512 reg &= ~LCD_INVERT_LINE_CLOCK;
513
Darren Etheridge028cd862013-08-23 16:52:53 -0500514 if ((panel->sync & FB_SYNC_VERT_HIGH_ACT) == 0)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700515 reg |= LCD_INVERT_FRAME_CLOCK;
516 else
517 reg &= ~LCD_INVERT_FRAME_CLOCK;
518
519 lcdc_write(reg, LCD_RASTER_TIMING_2_REG);
520
521 return 0;
522}
523
524static int lcd_cfg_frame_buffer(struct da8xx_fb_par *par, u32 width, u32 height,
525 u32 bpp, u32 raster_order)
526{
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700527 u32 reg;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700528
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530529 if (bpp > 16 && lcd_revision == LCD_VERSION_1)
530 return -EINVAL;
531
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700532 /* Set the Panel Width */
533 /* Pixels per line = (PPL + 1)*16 */
Manjunathappa, Prakash4d740802011-07-18 09:58:53 +0530534 if (lcd_revision == LCD_VERSION_1) {
535 /*
536 * 0x3F in bits 4..9 gives max horizontal resolution = 1024
537 * pixels.
538 */
539 width &= 0x3f0;
540 } else {
541 /*
542 * 0x7F in bits 4..10 gives max horizontal resolution = 2048
543 * pixels.
544 */
545 width &= 0x7f0;
546 }
547
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700548 reg = lcdc_read(LCD_RASTER_TIMING_0_REG);
549 reg &= 0xfffffc00;
Manjunathappa, Prakash4d740802011-07-18 09:58:53 +0530550 if (lcd_revision == LCD_VERSION_1) {
551 reg |= ((width >> 4) - 1) << 4;
552 } else {
553 width = (width >> 4) - 1;
554 reg |= ((width & 0x3f) << 4) | ((width & 0x40) >> 3);
555 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700556 lcdc_write(reg, LCD_RASTER_TIMING_0_REG);
557
558 /* Set the Panel Height */
Manjunathappa, Prakash4d740802011-07-18 09:58:53 +0530559 /* Set bits 9:0 of Lines Per Pixel */
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700560 reg = lcdc_read(LCD_RASTER_TIMING_1_REG);
561 reg = ((height - 1) & 0x3ff) | (reg & 0xfffffc00);
562 lcdc_write(reg, LCD_RASTER_TIMING_1_REG);
563
Manjunathappa, Prakash4d740802011-07-18 09:58:53 +0530564 /* Set bit 10 of Lines Per Pixel */
565 if (lcd_revision == LCD_VERSION_2) {
566 reg = lcdc_read(LCD_RASTER_TIMING_2_REG);
567 reg |= ((height - 1) & 0x400) << 16;
568 lcdc_write(reg, LCD_RASTER_TIMING_2_REG);
569 }
570
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700571 /* Set the Raster Order of the Frame Buffer */
572 reg = lcdc_read(LCD_RASTER_CTRL_REG) & ~(1 << 8);
573 if (raster_order)
574 reg |= LCD_RASTER_ORDER;
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530575
576 par->palette_sz = 16 * 2;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700577
578 switch (bpp) {
579 case 1:
580 case 2:
581 case 4:
582 case 16:
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530583 break;
584 case 24:
585 reg |= LCD_V2_TFT_24BPP_MODE;
Darren Etheridgefa8a00c2013-08-05 17:02:31 -0500586 break;
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530587 case 32:
Darren Etheridgefa8a00c2013-08-05 17:02:31 -0500588 reg |= LCD_V2_TFT_24BPP_MODE;
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530589 reg |= LCD_V2_TFT_24BPP_UNPACK;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700590 break;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700591 case 8:
592 par->palette_sz = 256 * 2;
593 break;
594
595 default:
596 return -EINVAL;
597 }
598
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530599 lcdc_write(reg, LCD_RASTER_CTRL_REG);
600
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700601 return 0;
602}
603
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530604#define CNVT_TOHW(val, width) ((((val) << (width)) + 0x7FFF - (val)) >> 16)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700605static int fb_setcolreg(unsigned regno, unsigned red, unsigned green,
606 unsigned blue, unsigned transp,
607 struct fb_info *info)
608{
609 struct da8xx_fb_par *par = info->par;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700610 unsigned short *palette = (unsigned short *) par->v_palette_base;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700611 u_short pal;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700612 int update_hw = 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700613
614 if (regno > 255)
615 return 1;
616
617 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR)
618 return 1;
619
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530620 if (info->var.bits_per_pixel > 16 && lcd_revision == LCD_VERSION_1)
621 return -EINVAL;
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100622
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530623 switch (info->fix.visual) {
624 case FB_VISUAL_TRUECOLOR:
625 red = CNVT_TOHW(red, info->var.red.length);
626 green = CNVT_TOHW(green, info->var.green.length);
627 blue = CNVT_TOHW(blue, info->var.blue.length);
628 break;
629 case FB_VISUAL_PSEUDOCOLOR:
630 switch (info->var.bits_per_pixel) {
631 case 4:
632 if (regno > 15)
633 return -EINVAL;
634
635 if (info->var.grayscale) {
636 pal = regno;
637 } else {
638 red >>= 4;
639 green >>= 8;
640 blue >>= 12;
641
642 pal = red & 0x0f00;
643 pal |= green & 0x00f0;
644 pal |= blue & 0x000f;
645 }
646 if (regno == 0)
647 pal |= 0x2000;
648 palette[regno] = pal;
649 break;
650
651 case 8:
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100652 red >>= 4;
653 green >>= 8;
654 blue >>= 12;
655
656 pal = (red & 0x0f00);
657 pal |= (green & 0x00f0);
658 pal |= (blue & 0x000f);
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530659
660 if (palette[regno] != pal) {
661 update_hw = 1;
662 palette[regno] = pal;
663 }
664 break;
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100665 }
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530666 break;
667 }
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100668
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530669 /* Truecolor has hardware independent palette */
670 if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
671 u32 v;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700672
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530673 if (regno > 15)
674 return -EINVAL;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700675
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530676 v = (red << info->var.red.offset) |
677 (green << info->var.green.offset) |
678 (blue << info->var.blue.offset);
679
Jon Ringle8d018642014-04-01 08:39:34 -0400680 ((u32 *) (info->pseudo_palette))[regno] = v;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700681 if (palette[0] != 0x4000) {
682 update_hw = 1;
683 palette[0] = 0x4000;
684 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700685 }
686
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700687 /* Update the palette in the h/w as needed. */
688 if (update_hw)
689 lcd_blit(LOAD_PALETTE, par);
690
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700691 return 0;
692}
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530693#undef CNVT_TOHW
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700694
Afzal Mohammed39c87d42013-08-05 17:02:21 -0500695static void da8xx_fb_lcd_reset(void)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700696{
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700697 /* DMA has to be disabled */
698 lcdc_write(0, LCD_DMA_CTRL_REG);
699 lcdc_write(0, LCD_RASTER_CTRL_REG);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530700
Manjunathappa, Prakash74a0efd2011-11-15 17:32:23 +0530701 if (lcd_revision == LCD_VERSION_2) {
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530702 lcdc_write(0, LCD_INT_ENABLE_SET_REG);
Manjunathappa, Prakash74a0efd2011-11-15 17:32:23 +0530703 /* Write 1 to reset */
704 lcdc_write(LCD_CLK_MAIN_RESET, LCD_CLK_RESET_REG);
705 lcdc_write(0, LCD_CLK_RESET_REG);
706 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700707}
708
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500709static int da8xx_fb_config_clk_divider(struct da8xx_fb_par *par,
710 unsigned lcdc_clk_div,
711 unsigned lcdc_clk_rate)
Chaithrika U S8097b172009-12-15 16:46:29 -0800712{
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500713 int ret;
Chaithrika U S8097b172009-12-15 16:46:29 -0800714
Darren Etheridge0715c722013-08-05 17:02:37 -0500715 if (par->lcdc_clk_rate != lcdc_clk_rate) {
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500716 ret = clk_set_rate(par->lcdc_clk, lcdc_clk_rate);
717 if (IS_ERR_VALUE(ret)) {
718 dev_err(par->dev,
719 "unable to set clock rate at %u\n",
720 lcdc_clk_rate);
721 return ret;
722 }
Darren Etheridge0715c722013-08-05 17:02:37 -0500723 par->lcdc_clk_rate = clk_get_rate(par->lcdc_clk);
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500724 }
Afzal Mohammed404fdfe2013-08-05 17:02:28 -0500725
Chaithrika U S8097b172009-12-15 16:46:29 -0800726 /* Configure the LCD clock divisor. */
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500727 lcdc_write(LCD_CLK_DIVISOR(lcdc_clk_div) |
Chaithrika U S8097b172009-12-15 16:46:29 -0800728 (LCD_RASTER_MODE & 0x1), LCD_CTRL_REG);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530729
730 if (lcd_revision == LCD_VERSION_2)
731 lcdc_write(LCD_V2_DMA_CLK_EN | LCD_V2_LIDD_CLK_EN |
732 LCD_V2_CORE_CLK_EN, LCD_CLK_ENABLE_REG);
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500733
734 return 0;
Darren Etheridgea6a799f2013-08-05 17:02:26 -0500735}
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530736
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500737static unsigned int da8xx_fb_calc_clk_divider(struct da8xx_fb_par *par,
738 unsigned pixclock,
739 unsigned *lcdc_clk_rate)
Darren Etheridgea6a799f2013-08-05 17:02:26 -0500740{
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500741 unsigned lcdc_clk_div;
Darren Etheridgea6a799f2013-08-05 17:02:26 -0500742
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500743 pixclock = PICOS2KHZ(pixclock) * 1000;
744
Darren Etheridge0715c722013-08-05 17:02:37 -0500745 *lcdc_clk_rate = par->lcdc_clk_rate;
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500746
747 if (pixclock < (*lcdc_clk_rate / CLK_MAX_DIV)) {
748 *lcdc_clk_rate = clk_round_rate(par->lcdc_clk,
749 pixclock * CLK_MAX_DIV);
750 lcdc_clk_div = CLK_MAX_DIV;
751 } else if (pixclock > (*lcdc_clk_rate / CLK_MIN_DIV)) {
752 *lcdc_clk_rate = clk_round_rate(par->lcdc_clk,
753 pixclock * CLK_MIN_DIV);
754 lcdc_clk_div = CLK_MIN_DIV;
755 } else {
756 lcdc_clk_div = *lcdc_clk_rate / pixclock;
757 }
758
759 return lcdc_clk_div;
760}
761
762static int da8xx_fb_calc_config_clk_divider(struct da8xx_fb_par *par,
763 struct fb_videomode *mode)
764{
765 unsigned lcdc_clk_rate;
766 unsigned lcdc_clk_div = da8xx_fb_calc_clk_divider(par, mode->pixclock,
767 &lcdc_clk_rate);
768
769 return da8xx_fb_config_clk_divider(par, lcdc_clk_div, lcdc_clk_rate);
770}
771
Darren Etheridgea9cd67c2013-08-05 17:02:38 -0500772static unsigned da8xx_fb_round_clk(struct da8xx_fb_par *par,
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500773 unsigned pixclock)
774{
775 unsigned lcdc_clk_div, lcdc_clk_rate;
776
777 lcdc_clk_div = da8xx_fb_calc_clk_divider(par, pixclock, &lcdc_clk_rate);
778 return KHZ2PICOS(lcdc_clk_rate / (1000 * lcdc_clk_div));
Chaithrika U S8097b172009-12-15 16:46:29 -0800779}
780
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700781static int lcd_init(struct da8xx_fb_par *par, const struct lcd_ctrl_config *cfg,
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530782 struct fb_videomode *panel)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700783{
784 u32 bpp;
785 int ret = 0;
786
Darren Etheridge2dfa77a2013-08-05 17:02:36 -0500787 ret = da8xx_fb_calc_config_clk_divider(par, panel);
788 if (IS_ERR_VALUE(ret)) {
789 dev_err(par->dev, "unable to configure clock\n");
790 return ret;
791 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700792
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530793 if (panel->sync & FB_SYNC_CLK_INVERT)
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -0700794 lcdc_write((lcdc_read(LCD_RASTER_TIMING_2_REG) |
795 LCD_INVERT_PIXEL_CLOCK), LCD_RASTER_TIMING_2_REG);
796 else
797 lcdc_write((lcdc_read(LCD_RASTER_TIMING_2_REG) &
798 ~LCD_INVERT_PIXEL_CLOCK), LCD_RASTER_TIMING_2_REG);
799
Manjunathappa, Prakashfb8fa942012-07-18 21:03:36 +0530800 /* Configure the DMA burst size and fifo threshold. */
801 ret = lcd_cfg_dma(cfg->dma_burst_sz, cfg->fifo_th);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700802 if (ret < 0)
803 return ret;
804
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700805 /* Configure the vertical and horizontal sync properties. */
Darren Etheridgea592d9f2013-08-23 16:52:50 -0500806 lcd_cfg_vertical_sync(panel->upper_margin, panel->vsync_len,
807 panel->lower_margin);
808 lcd_cfg_horizontal_sync(panel->left_margin, panel->hsync_len,
809 panel->right_margin);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700810
811 /* Configure for disply */
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530812 ret = lcd_cfg_display(cfg, panel);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700813 if (ret < 0)
814 return ret;
815
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530816 bpp = cfg->bpp;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700817
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700818 if (bpp == 12)
819 bpp = 16;
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530820 ret = lcd_cfg_frame_buffer(par, (unsigned int)panel->xres,
821 (unsigned int)panel->yres, bpp,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700822 cfg->raster_order);
823 if (ret < 0)
824 return ret;
825
826 /* Configure FDD */
827 lcdc_write((lcdc_read(LCD_RASTER_CTRL_REG) & 0xfff00fff) |
828 (cfg->fdd << 12), LCD_RASTER_CTRL_REG);
829
830 return 0;
831}
832
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530833/* IRQ handler for version 2 of LCDC */
834static irqreturn_t lcdc_irq_handler_rev02(int irq, void *arg)
835{
836 struct da8xx_fb_par *par = arg;
837 u32 stat = lcdc_read(LCD_MASKED_STAT_REG);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530838
839 if ((stat & LCD_SYNC_LOST) && (stat & LCD_FIFO_UNDERFLOW)) {
Darren Etheridge26e71642013-08-05 17:02:30 -0500840 lcd_disable_raster(DA8XX_FRAME_NOWAIT);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530841 lcdc_write(stat, LCD_MASKED_STAT_REG);
842 lcd_enable_raster();
843 } else if (stat & LCD_PL_LOAD_DONE) {
844 /*
845 * Must disable raster before changing state of any control bit.
846 * And also must be disabled before clearing the PL loading
847 * interrupt via the following write to the status register. If
848 * this is done after then one gets multiple PL done interrupts.
849 */
Darren Etheridge26e71642013-08-05 17:02:30 -0500850 lcd_disable_raster(DA8XX_FRAME_NOWAIT);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530851
852 lcdc_write(stat, LCD_MASKED_STAT_REG);
853
Manjunathappa, Prakash8a81dcc2012-07-18 20:51:11 +0530854 /* Disable PL completion interrupt */
855 lcdc_write(LCD_V2_PL_INT_ENA, LCD_INT_ENABLE_CLR_REG);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530856
857 /* Setup and start data loading mode */
858 lcd_blit(LOAD_DATA, par);
859 } else {
860 lcdc_write(stat, LCD_MASKED_STAT_REG);
861
862 if (stat & LCD_END_OF_FRAME0) {
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +0530863 par->which_dma_channel_done = 0;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530864 lcdc_write(par->dma_start,
865 LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
866 lcdc_write(par->dma_end,
867 LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
868 par->vsync_flag = 1;
869 wake_up_interruptible(&par->vsync_wait);
870 }
871
872 if (stat & LCD_END_OF_FRAME1) {
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +0530873 par->which_dma_channel_done = 1;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530874 lcdc_write(par->dma_start,
875 LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
876 lcdc_write(par->dma_end,
877 LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
878 par->vsync_flag = 1;
879 wake_up_interruptible(&par->vsync_wait);
880 }
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530881
882 /* Set only when controller is disabled and at the end of
883 * active frame
884 */
885 if (stat & BIT(0)) {
886 frame_done_flag = 1;
887 wake_up_interruptible(&frame_done_wq);
888 }
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530889 }
890
891 lcdc_write(0, LCD_END_OF_INT_IND_REG);
892 return IRQ_HANDLED;
893}
894
895/* IRQ handler for version 1 LCDC */
896static irqreturn_t lcdc_irq_handler_rev01(int irq, void *arg)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700897{
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700898 struct da8xx_fb_par *par = arg;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700899 u32 stat = lcdc_read(LCD_STAT_REG);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700900 u32 reg_ras;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700901
902 if ((stat & LCD_SYNC_LOST) && (stat & LCD_FIFO_UNDERFLOW)) {
Darren Etheridge26e71642013-08-05 17:02:30 -0500903 lcd_disable_raster(DA8XX_FRAME_NOWAIT);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700904 lcdc_write(stat, LCD_STAT_REG);
Chaithrika U S36113802009-12-15 16:46:38 -0800905 lcd_enable_raster();
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700906 } else if (stat & LCD_PL_LOAD_DONE) {
907 /*
908 * Must disable raster before changing state of any control bit.
909 * And also must be disabled before clearing the PL loading
910 * interrupt via the following write to the status register. If
911 * this is done after then one gets multiple PL done interrupts.
912 */
Darren Etheridge26e71642013-08-05 17:02:30 -0500913 lcd_disable_raster(DA8XX_FRAME_NOWAIT);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700914
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700915 lcdc_write(stat, LCD_STAT_REG);
916
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700917 /* Disable PL completion inerrupt */
918 reg_ras = lcdc_read(LCD_RASTER_CTRL_REG);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530919 reg_ras &= ~LCD_V1_PL_INT_ENA;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700920 lcdc_write(reg_ras, LCD_RASTER_CTRL_REG);
921
922 /* Setup and start data loading mode */
923 lcd_blit(LOAD_DATA, par);
924 } else {
925 lcdc_write(stat, LCD_STAT_REG);
926
927 if (stat & LCD_END_OF_FRAME0) {
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +0530928 par->which_dma_channel_done = 0;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700929 lcdc_write(par->dma_start,
930 LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
931 lcdc_write(par->dma_end,
932 LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
933 par->vsync_flag = 1;
934 wake_up_interruptible(&par->vsync_wait);
935 }
936
937 if (stat & LCD_END_OF_FRAME1) {
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +0530938 par->which_dma_channel_done = 1;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700939 lcdc_write(par->dma_start,
940 LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
941 lcdc_write(par->dma_end,
942 LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
943 par->vsync_flag = 1;
944 wake_up_interruptible(&par->vsync_wait);
945 }
946 }
947
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700948 return IRQ_HANDLED;
949}
950
951static int fb_check_var(struct fb_var_screeninfo *var,
952 struct fb_info *info)
953{
954 int err = 0;
Afzal Mohammed87dac712013-08-05 17:02:20 -0500955 struct da8xx_fb_par *par = info->par;
956 int bpp = var->bits_per_pixel >> 3;
957 unsigned long line_size = var->xres_virtual * bpp;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700958
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530959 if (var->bits_per_pixel > 16 && lcd_revision == LCD_VERSION_1)
960 return -EINVAL;
961
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700962 switch (var->bits_per_pixel) {
963 case 1:
964 case 8:
965 var->red.offset = 0;
966 var->red.length = 8;
967 var->green.offset = 0;
968 var->green.length = 8;
969 var->blue.offset = 0;
970 var->blue.length = 8;
971 var->transp.offset = 0;
972 var->transp.length = 0;
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100973 var->nonstd = 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700974 break;
975 case 4:
976 var->red.offset = 0;
977 var->red.length = 4;
978 var->green.offset = 0;
979 var->green.length = 4;
980 var->blue.offset = 0;
981 var->blue.length = 4;
982 var->transp.offset = 0;
983 var->transp.length = 0;
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100984 var->nonstd = FB_NONSTD_REV_PIX_IN_B;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700985 break;
986 case 16: /* RGB 565 */
Sudhakar Rajashekhara3510b8f2009-12-01 13:17:43 -0800987 var->red.offset = 11;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700988 var->red.length = 5;
989 var->green.offset = 5;
990 var->green.length = 6;
Sudhakar Rajashekhara3510b8f2009-12-01 13:17:43 -0800991 var->blue.offset = 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700992 var->blue.length = 5;
993 var->transp.offset = 0;
994 var->transp.length = 0;
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100995 var->nonstd = 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700996 break;
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530997 case 24:
998 var->red.offset = 16;
999 var->red.length = 8;
1000 var->green.offset = 8;
1001 var->green.length = 8;
1002 var->blue.offset = 0;
1003 var->blue.length = 8;
1004 var->nonstd = 0;
1005 break;
1006 case 32:
1007 var->transp.offset = 24;
1008 var->transp.length = 8;
1009 var->red.offset = 16;
1010 var->red.length = 8;
1011 var->green.offset = 8;
1012 var->green.length = 8;
1013 var->blue.offset = 0;
1014 var->blue.length = 8;
1015 var->nonstd = 0;
1016 break;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001017 default:
1018 err = -EINVAL;
1019 }
1020
1021 var->red.msb_right = 0;
1022 var->green.msb_right = 0;
1023 var->blue.msb_right = 0;
1024 var->transp.msb_right = 0;
Afzal Mohammed87dac712013-08-05 17:02:20 -05001025
1026 if (line_size * var->yres_virtual > par->vram_size)
1027 var->yres_virtual = par->vram_size / line_size;
1028
1029 if (var->yres > var->yres_virtual)
1030 var->yres = var->yres_virtual;
1031
1032 if (var->xres > var->xres_virtual)
1033 var->xres = var->xres_virtual;
1034
1035 if (var->xres + var->xoffset > var->xres_virtual)
1036 var->xoffset = var->xres_virtual - var->xres;
1037 if (var->yres + var->yoffset > var->yres_virtual)
1038 var->yoffset = var->yres_virtual - var->yres;
1039
Afzal Mohammed404fdfe2013-08-05 17:02:28 -05001040 var->pixclock = da8xx_fb_round_clk(par, var->pixclock);
1041
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001042 return err;
1043}
1044
Chaithrika U Se04e5482009-12-15 16:46:29 -08001045#ifdef CONFIG_CPU_FREQ
1046static int lcd_da8xx_cpufreq_transition(struct notifier_block *nb,
1047 unsigned long val, void *data)
1048{
1049 struct da8xx_fb_par *par;
Chaithrika U Se04e5482009-12-15 16:46:29 -08001050
1051 par = container_of(nb, struct da8xx_fb_par, freq_transition);
Manjunathappa, Prakashf8209172012-01-03 18:10:51 +05301052 if (val == CPUFREQ_POSTCHANGE) {
Darren Etheridge0715c722013-08-05 17:02:37 -05001053 if (par->lcdc_clk_rate != clk_get_rate(par->lcdc_clk)) {
1054 par->lcdc_clk_rate = clk_get_rate(par->lcdc_clk);
Darren Etheridge26e71642013-08-05 17:02:30 -05001055 lcd_disable_raster(DA8XX_FRAME_WAIT);
Darren Etheridgea6a799f2013-08-05 17:02:26 -05001056 da8xx_fb_calc_config_clk_divider(par, &par->mode);
Manjunathappa, Prakash67900812012-08-31 19:48:59 +05301057 if (par->blank == FB_BLANK_UNBLANK)
1058 lcd_enable_raster();
Manjunathappa, Prakashf8209172012-01-03 18:10:51 +05301059 }
Chaithrika U Se04e5482009-12-15 16:46:29 -08001060 }
1061
1062 return 0;
1063}
1064
Darren Etheridgea9cd67c2013-08-05 17:02:38 -05001065static int lcd_da8xx_cpufreq_register(struct da8xx_fb_par *par)
Chaithrika U Se04e5482009-12-15 16:46:29 -08001066{
1067 par->freq_transition.notifier_call = lcd_da8xx_cpufreq_transition;
1068
1069 return cpufreq_register_notifier(&par->freq_transition,
1070 CPUFREQ_TRANSITION_NOTIFIER);
1071}
1072
Darren Etheridgea9cd67c2013-08-05 17:02:38 -05001073static void lcd_da8xx_cpufreq_deregister(struct da8xx_fb_par *par)
Chaithrika U Se04e5482009-12-15 16:46:29 -08001074{
1075 cpufreq_unregister_notifier(&par->freq_transition,
1076 CPUFREQ_TRANSITION_NOTIFIER);
1077}
1078#endif
1079
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001080static int fb_remove(struct platform_device *dev)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001081{
1082 struct fb_info *info = dev_get_drvdata(&dev->dev);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001083
1084 if (info) {
1085 struct da8xx_fb_par *par = info->par;
1086
Chaithrika U Se04e5482009-12-15 16:46:29 -08001087#ifdef CONFIG_CPU_FREQ
1088 lcd_da8xx_cpufreq_deregister(par);
1089#endif
Chaithrika U S36113802009-12-15 16:46:38 -08001090 if (par->panel_power_ctrl)
1091 par->panel_power_ctrl(0);
1092
Darren Etheridge26e71642013-08-05 17:02:30 -05001093 lcd_disable_raster(DA8XX_FRAME_WAIT);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001094 lcdc_write(0, LCD_RASTER_CTRL_REG);
1095
1096 /* disable DMA */
1097 lcdc_write(0, LCD_DMA_CTRL_REG);
1098
1099 unregister_framebuffer(info);
1100 fb_dealloc_cmap(&info->cmap);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001101 dma_free_coherent(NULL, PALETTE_SIZE, par->v_palette_base,
1102 par->p_palette_base);
1103 dma_free_coherent(NULL, par->vram_size, par->vram_virt,
1104 par->vram_phys);
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301105 pm_runtime_put_sync(&dev->dev);
1106 pm_runtime_disable(&dev->dev);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001107 framebuffer_release(info);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001108
1109 }
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -07001110 return 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001111}
1112
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001113/*
1114 * Function to wait for vertical sync which for this LCD peripheral
1115 * translates into waiting for the current raster frame to complete.
1116 */
1117static int fb_wait_for_vsync(struct fb_info *info)
1118{
1119 struct da8xx_fb_par *par = info->par;
1120 int ret;
1121
1122 /*
1123 * Set flag to 0 and wait for isr to set to 1. It would seem there is a
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001124 * race condition here where the ISR could have occurred just before or
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001125 * just after this set. But since we are just coarsely waiting for
1126 * a frame to complete then that's OK. i.e. if the frame completed
1127 * just before this code executed then we have to wait another full
1128 * frame time but there is no way to avoid such a situation. On the
1129 * other hand if the frame completed just after then we don't need
1130 * to wait long at all. Either way we are guaranteed to return to the
1131 * user immediately after a frame completion which is all that is
1132 * required.
1133 */
1134 par->vsync_flag = 0;
1135 ret = wait_event_interruptible_timeout(par->vsync_wait,
1136 par->vsync_flag != 0,
1137 par->vsync_timeout);
1138 if (ret < 0)
1139 return ret;
1140 if (ret == 0)
1141 return -ETIMEDOUT;
1142
1143 return 0;
1144}
1145
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001146static int fb_ioctl(struct fb_info *info, unsigned int cmd,
1147 unsigned long arg)
1148{
1149 struct lcd_sync_arg sync_arg;
1150
1151 switch (cmd) {
1152 case FBIOGET_CONTRAST:
1153 case FBIOPUT_CONTRAST:
1154 case FBIGET_BRIGHTNESS:
1155 case FBIPUT_BRIGHTNESS:
1156 case FBIGET_COLOR:
1157 case FBIPUT_COLOR:
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -07001158 return -ENOTTY;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001159 case FBIPUT_HSYNC:
1160 if (copy_from_user(&sync_arg, (char *)arg,
1161 sizeof(struct lcd_sync_arg)))
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -07001162 return -EFAULT;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001163 lcd_cfg_horizontal_sync(sync_arg.back_porch,
1164 sync_arg.pulse_width,
1165 sync_arg.front_porch);
1166 break;
1167 case FBIPUT_VSYNC:
1168 if (copy_from_user(&sync_arg, (char *)arg,
1169 sizeof(struct lcd_sync_arg)))
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -07001170 return -EFAULT;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001171 lcd_cfg_vertical_sync(sync_arg.back_porch,
1172 sync_arg.pulse_width,
1173 sync_arg.front_porch);
1174 break;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001175 case FBIO_WAITFORVSYNC:
1176 return fb_wait_for_vsync(info);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001177 default:
1178 return -EINVAL;
1179 }
1180 return 0;
1181}
1182
Chaithrika U S312d9712009-12-15 16:46:39 -08001183static int cfb_blank(int blank, struct fb_info *info)
1184{
1185 struct da8xx_fb_par *par = info->par;
1186 int ret = 0;
1187
1188 if (par->blank == blank)
1189 return 0;
1190
1191 par->blank = blank;
1192 switch (blank) {
1193 case FB_BLANK_UNBLANK:
Manjunathappa, Prakashf7c848b2012-07-24 09:45:25 +05301194 lcd_enable_raster();
1195
Chaithrika U S312d9712009-12-15 16:46:39 -08001196 if (par->panel_power_ctrl)
1197 par->panel_power_ctrl(1);
Chaithrika U S312d9712009-12-15 16:46:39 -08001198 break;
Yegor Yefremov99a647d2012-07-06 16:01:28 +02001199 case FB_BLANK_NORMAL:
1200 case FB_BLANK_VSYNC_SUSPEND:
1201 case FB_BLANK_HSYNC_SUSPEND:
Chaithrika U S312d9712009-12-15 16:46:39 -08001202 case FB_BLANK_POWERDOWN:
1203 if (par->panel_power_ctrl)
1204 par->panel_power_ctrl(0);
1205
Darren Etheridge26e71642013-08-05 17:02:30 -05001206 lcd_disable_raster(DA8XX_FRAME_WAIT);
Chaithrika U S312d9712009-12-15 16:46:39 -08001207 break;
1208 default:
1209 ret = -EINVAL;
1210 }
1211
1212 return ret;
1213}
1214
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001215/*
1216 * Set new x,y offsets in the virtual display for the visible area and switch
1217 * to the new mode.
1218 */
1219static int da8xx_pan_display(struct fb_var_screeninfo *var,
1220 struct fb_info *fbi)
1221{
1222 int ret = 0;
1223 struct fb_var_screeninfo new_var;
1224 struct da8xx_fb_par *par = fbi->par;
1225 struct fb_fix_screeninfo *fix = &fbi->fix;
1226 unsigned int end;
1227 unsigned int start;
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +05301228 unsigned long irq_flags;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001229
1230 if (var->xoffset != fbi->var.xoffset ||
1231 var->yoffset != fbi->var.yoffset) {
1232 memcpy(&new_var, &fbi->var, sizeof(new_var));
1233 new_var.xoffset = var->xoffset;
1234 new_var.yoffset = var->yoffset;
1235 if (fb_check_var(&new_var, fbi))
1236 ret = -EINVAL;
1237 else {
1238 memcpy(&fbi->var, &new_var, sizeof(new_var));
1239
1240 start = fix->smem_start +
1241 new_var.yoffset * fix->line_length +
Laurent Pincharte6c4d3d2011-06-14 09:24:45 +00001242 new_var.xoffset * fbi->var.bits_per_pixel / 8;
1243 end = start + fbi->var.yres * fix->line_length - 1;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001244 par->dma_start = start;
1245 par->dma_end = end;
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +05301246 spin_lock_irqsave(&par->lock_for_chan_update,
1247 irq_flags);
1248 if (par->which_dma_channel_done == 0) {
1249 lcdc_write(par->dma_start,
1250 LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
1251 lcdc_write(par->dma_end,
1252 LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
1253 } else if (par->which_dma_channel_done == 1) {
1254 lcdc_write(par->dma_start,
1255 LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
1256 lcdc_write(par->dma_end,
1257 LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
1258 }
1259 spin_unlock_irqrestore(&par->lock_for_chan_update,
1260 irq_flags);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001261 }
1262 }
1263
1264 return ret;
1265}
1266
Darren Etheridgefe8c98f2013-08-05 17:02:29 -05001267static int da8xxfb_set_par(struct fb_info *info)
1268{
1269 struct da8xx_fb_par *par = info->par;
1270 int ret;
1271 bool raster = da8xx_fb_is_raster_enabled();
1272
1273 if (raster)
Darren Etheridge26e71642013-08-05 17:02:30 -05001274 lcd_disable_raster(DA8XX_FRAME_WAIT);
Darren Etheridgefe8c98f2013-08-05 17:02:29 -05001275
1276 fb_var_to_videomode(&par->mode, &info->var);
1277
1278 par->cfg.bpp = info->var.bits_per_pixel;
1279
1280 info->fix.visual = (par->cfg.bpp <= 8) ?
1281 FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
1282 info->fix.line_length = (par->mode.xres * par->cfg.bpp) / 8;
1283
1284 ret = lcd_init(par, &par->cfg, &par->mode);
1285 if (ret < 0) {
1286 dev_err(par->dev, "lcd init failed\n");
1287 return ret;
1288 }
1289
1290 par->dma_start = info->fix.smem_start +
1291 info->var.yoffset * info->fix.line_length +
1292 info->var.xoffset * info->var.bits_per_pixel / 8;
1293 par->dma_end = par->dma_start +
1294 info->var.yres * info->fix.line_length - 1;
1295
1296 lcdc_write(par->dma_start, LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
1297 lcdc_write(par->dma_end, LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
1298 lcdc_write(par->dma_start, LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
1299 lcdc_write(par->dma_end, LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
1300
1301 if (raster)
1302 lcd_enable_raster();
1303
1304 return 0;
1305}
1306
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001307static struct fb_ops da8xx_fb_ops = {
1308 .owner = THIS_MODULE,
1309 .fb_check_var = fb_check_var,
Darren Etheridgefe8c98f2013-08-05 17:02:29 -05001310 .fb_set_par = da8xxfb_set_par,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001311 .fb_setcolreg = fb_setcolreg,
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001312 .fb_pan_display = da8xx_pan_display,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001313 .fb_ioctl = fb_ioctl,
1314 .fb_fillrect = cfb_fillrect,
1315 .fb_copyarea = cfb_copyarea,
1316 .fb_imageblit = cfb_imageblit,
Chaithrika U S312d9712009-12-15 16:46:39 -08001317 .fb_blank = cfb_blank,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001318};
1319
Afzal Mohammed2bdff062013-08-05 17:02:35 -05001320static struct fb_videomode *da8xx_fb_get_videomode(struct platform_device *dev)
1321{
Jingoo Han700601d2013-09-17 14:04:50 +09001322 struct da8xx_lcdc_platform_data *fb_pdata = dev_get_platdata(&dev->dev);
Afzal Mohammed2bdff062013-08-05 17:02:35 -05001323 struct fb_videomode *lcdc_info;
1324 int i;
1325
1326 for (i = 0, lcdc_info = known_lcd_panels;
1327 i < ARRAY_SIZE(known_lcd_panels); i++, lcdc_info++) {
1328 if (strcmp(fb_pdata->type, lcdc_info->name) == 0)
1329 break;
1330 }
1331
1332 if (i == ARRAY_SIZE(known_lcd_panels)) {
1333 dev_err(&dev->dev, "no panel found\n");
1334 return NULL;
1335 }
1336 dev_info(&dev->dev, "found %s panel\n", lcdc_info->name);
1337
1338 return lcdc_info;
1339}
1340
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001341static int fb_probe(struct platform_device *device)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001342{
1343 struct da8xx_lcdc_platform_data *fb_pdata =
Jingoo Han700601d2013-09-17 14:04:50 +09001344 dev_get_platdata(&device->dev);
Darren Etheridgec45757f2013-08-05 17:02:33 -05001345 static struct resource *lcdc_regs;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001346 struct lcd_ctrl_config *lcd_cfg;
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301347 struct fb_videomode *lcdc_info;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001348 struct fb_info *da8xx_fb_info;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001349 struct da8xx_fb_par *par;
Darren Etheridge0715c722013-08-05 17:02:37 -05001350 struct clk *tmp_lcdc_clk;
Afzal Mohammed2bdff062013-08-05 17:02:35 -05001351 int ret;
Aditya Nellutla3b9cc4e2012-05-23 11:36:31 +05301352 unsigned long ulcm;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001353
1354 if (fb_pdata == NULL) {
1355 dev_err(&device->dev, "Can not get platform data\n");
1356 return -ENOENT;
1357 }
1358
Afzal Mohammed2bdff062013-08-05 17:02:35 -05001359 lcdc_info = da8xx_fb_get_videomode(device);
1360 if (lcdc_info == NULL)
1361 return -ENODEV;
1362
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001363 lcdc_regs = platform_get_resource(device, IORESOURCE_MEM, 0);
Darren Etheridgec45757f2013-08-05 17:02:33 -05001364 da8xx_fb_reg_base = devm_ioremap_resource(&device->dev, lcdc_regs);
1365 if (IS_ERR(da8xx_fb_reg_base))
1366 return PTR_ERR(da8xx_fb_reg_base);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001367
Darren Etheridge0715c722013-08-05 17:02:37 -05001368 tmp_lcdc_clk = devm_clk_get(&device->dev, "fck");
1369 if (IS_ERR(tmp_lcdc_clk)) {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001370 dev_err(&device->dev, "Can not get device clock\n");
Darren Etheridge0715c722013-08-05 17:02:37 -05001371 return PTR_ERR(tmp_lcdc_clk);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001372 }
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301373
1374 pm_runtime_enable(&device->dev);
1375 pm_runtime_get_sync(&device->dev);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001376
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +05301377 /* Determine LCD IP Version */
1378 switch (lcdc_read(LCD_PID_REG)) {
1379 case 0x4C100102:
1380 lcd_revision = LCD_VERSION_1;
1381 break;
1382 case 0x4F200800:
Pantelis Antoniou8f22e8e2012-10-31 17:56:24 +02001383 case 0x4F201000:
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +05301384 lcd_revision = LCD_VERSION_2;
1385 break;
1386 default:
1387 dev_warn(&device->dev, "Unknown PID Reg value 0x%x, "
1388 "defaulting to LCD revision 1\n",
1389 lcdc_read(LCD_PID_REG));
1390 lcd_revision = LCD_VERSION_1;
1391 break;
1392 }
1393
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001394 lcd_cfg = (struct lcd_ctrl_config *)fb_pdata->controller_data;
1395
Afzal Mohammed3a581012013-08-05 17:02:34 -05001396 if (!lcd_cfg) {
1397 ret = -EINVAL;
1398 goto err_pm_runtime_disable;
1399 }
1400
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001401 da8xx_fb_info = framebuffer_alloc(sizeof(struct da8xx_fb_par),
1402 &device->dev);
1403 if (!da8xx_fb_info) {
1404 dev_dbg(&device->dev, "Memory allocation failed for fb_info\n");
1405 ret = -ENOMEM;
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301406 goto err_pm_runtime_disable;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001407 }
1408
1409 par = da8xx_fb_info->par;
Afzal Mohammeddbe8e482013-08-05 17:02:27 -05001410 par->dev = &device->dev;
Darren Etheridge0715c722013-08-05 17:02:37 -05001411 par->lcdc_clk = tmp_lcdc_clk;
1412 par->lcdc_clk_rate = clk_get_rate(par->lcdc_clk);
Chaithrika U S36113802009-12-15 16:46:38 -08001413 if (fb_pdata->panel_power_ctrl) {
1414 par->panel_power_ctrl = fb_pdata->panel_power_ctrl;
1415 par->panel_power_ctrl(1);
1416 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001417
Afzal Mohammedb8664582013-08-05 17:02:22 -05001418 fb_videomode_to_var(&da8xx_fb_var, lcdc_info);
Afzal Mohammedb6dbe8e2013-08-05 17:02:24 -05001419 par->cfg = *lcd_cfg;
Afzal Mohammedb8664582013-08-05 17:02:22 -05001420
Darren Etheridgefe8c98f2013-08-05 17:02:29 -05001421 da8xx_fb_lcd_reset();
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001422
1423 /* allocate frame buffer */
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301424 par->vram_size = lcdc_info->xres * lcdc_info->yres * lcd_cfg->bpp;
1425 ulcm = lcm((lcdc_info->xres * lcd_cfg->bpp)/8, PAGE_SIZE);
Aditya Nellutla3b9cc4e2012-05-23 11:36:31 +05301426 par->vram_size = roundup(par->vram_size/8, ulcm);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001427 par->vram_size = par->vram_size * LCD_NUM_BUFFERS;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001428
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001429 par->vram_virt = dma_alloc_coherent(NULL,
1430 par->vram_size,
1431 (resource_size_t *) &par->vram_phys,
1432 GFP_KERNEL | GFP_DMA);
1433 if (!par->vram_virt) {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001434 dev_err(&device->dev,
1435 "GLCD: kmalloc for frame buffer failed\n");
1436 ret = -EINVAL;
1437 goto err_release_fb;
1438 }
1439
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001440 da8xx_fb_info->screen_base = (char __iomem *) par->vram_virt;
1441 da8xx_fb_fix.smem_start = par->vram_phys;
1442 da8xx_fb_fix.smem_len = par->vram_size;
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301443 da8xx_fb_fix.line_length = (lcdc_info->xres * lcd_cfg->bpp) / 8;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001444
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001445 par->dma_start = par->vram_phys;
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301446 par->dma_end = par->dma_start + lcdc_info->yres *
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001447 da8xx_fb_fix.line_length - 1;
1448
1449 /* allocate palette buffer */
Joe Perches0d0b4b42014-06-15 13:37:54 -07001450 par->v_palette_base = dma_zalloc_coherent(NULL, PALETTE_SIZE,
1451 (resource_size_t *)&par->p_palette_base,
1452 GFP_KERNEL | GFP_DMA);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001453 if (!par->v_palette_base) {
1454 dev_err(&device->dev,
1455 "GLCD: kmalloc for palette buffer failed\n");
1456 ret = -EINVAL;
1457 goto err_release_fb_mem;
1458 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001459
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001460 par->irq = platform_get_irq(device, 0);
1461 if (par->irq < 0) {
1462 ret = -ENOENT;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001463 goto err_release_pl_mem;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001464 }
1465
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001466 da8xx_fb_var.grayscale =
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +05301467 lcd_cfg->panel_shade == MONOCHROME ? 1 : 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001468 da8xx_fb_var.bits_per_pixel = lcd_cfg->bpp;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001469
1470 /* Initialize fbinfo */
1471 da8xx_fb_info->flags = FBINFO_FLAG_DEFAULT;
1472 da8xx_fb_info->fix = da8xx_fb_fix;
1473 da8xx_fb_info->var = da8xx_fb_var;
1474 da8xx_fb_info->fbops = &da8xx_fb_ops;
1475 da8xx_fb_info->pseudo_palette = par->pseudo_palette;
Sudhakar Rajashekhara3510b8f2009-12-01 13:17:43 -08001476 da8xx_fb_info->fix.visual = (da8xx_fb_info->var.bits_per_pixel <= 8) ?
1477 FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001478
1479 ret = fb_alloc_cmap(&da8xx_fb_info->cmap, PALETTE_SIZE, 0);
1480 if (ret)
Caglar Akyuz93c176f2010-11-30 20:04:14 +00001481 goto err_release_pl_mem;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001482 da8xx_fb_info->cmap.len = par->palette_sz;
1483
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001484 /* initialize var_screeninfo */
1485 da8xx_fb_var.activate = FB_ACTIVATE_FORCE;
1486 fb_set_var(da8xx_fb_info, &da8xx_fb_var);
1487
1488 dev_set_drvdata(&device->dev, da8xx_fb_info);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001489
1490 /* initialize the vsync wait queue */
1491 init_waitqueue_head(&par->vsync_wait);
1492 par->vsync_timeout = HZ / 5;
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +05301493 par->which_dma_channel_done = -1;
1494 spin_lock_init(&par->lock_for_chan_update);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001495
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001496 /* Register the Frame Buffer */
1497 if (register_framebuffer(da8xx_fb_info) < 0) {
1498 dev_err(&device->dev,
1499 "GLCD: Frame Buffer Registration Failed!\n");
1500 ret = -EINVAL;
1501 goto err_dealloc_cmap;
1502 }
1503
Chaithrika U Se04e5482009-12-15 16:46:29 -08001504#ifdef CONFIG_CPU_FREQ
1505 ret = lcd_da8xx_cpufreq_register(par);
1506 if (ret) {
1507 dev_err(&device->dev, "failed to register cpufreq\n");
1508 goto err_cpu_freq;
1509 }
1510#endif
Caglar Akyuz93c176f2010-11-30 20:04:14 +00001511
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +05301512 if (lcd_revision == LCD_VERSION_1)
1513 lcdc_irq_handler = lcdc_irq_handler_rev01;
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +05301514 else {
1515 init_waitqueue_head(&frame_done_wq);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +05301516 lcdc_irq_handler = lcdc_irq_handler_rev02;
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +05301517 }
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +05301518
Darren Etheridgec45757f2013-08-05 17:02:33 -05001519 ret = devm_request_irq(&device->dev, par->irq, lcdc_irq_handler, 0,
1520 DRIVER_NAME, par);
Caglar Akyuz93c176f2010-11-30 20:04:14 +00001521 if (ret)
1522 goto irq_freq;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001523 return 0;
1524
Caglar Akyuz93c176f2010-11-30 20:04:14 +00001525irq_freq:
Chaithrika U Se04e5482009-12-15 16:46:29 -08001526#ifdef CONFIG_CPU_FREQ
axel lin360c2022011-01-20 03:50:51 +00001527 lcd_da8xx_cpufreq_deregister(par);
Chaithrika U Se04e5482009-12-15 16:46:29 -08001528err_cpu_freq:
Manjunathappa, Prakash3a844092012-02-09 10:34:38 +05301529#endif
Chaithrika U Se04e5482009-12-15 16:46:29 -08001530 unregister_framebuffer(da8xx_fb_info);
Chaithrika U Se04e5482009-12-15 16:46:29 -08001531
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001532err_dealloc_cmap:
1533 fb_dealloc_cmap(&da8xx_fb_info->cmap);
1534
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001535err_release_pl_mem:
1536 dma_free_coherent(NULL, PALETTE_SIZE, par->v_palette_base,
1537 par->p_palette_base);
1538
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001539err_release_fb_mem:
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001540 dma_free_coherent(NULL, par->vram_size, par->vram_virt, par->vram_phys);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001541
1542err_release_fb:
1543 framebuffer_release(da8xx_fb_info);
1544
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301545err_pm_runtime_disable:
1546 pm_runtime_put_sync(&device->dev);
1547 pm_runtime_disable(&device->dev);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001548
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001549 return ret;
1550}
1551
Manish Badarkhe622f7c92014-02-18 08:55:36 +05301552#ifdef CONFIG_PM_SLEEP
Sachin Kamat58f38532013-09-25 16:59:51 +05301553static struct lcdc_context {
Manjunathappa, Prakash7a93cbb2012-09-25 19:41:41 +05301554 u32 clk_enable;
1555 u32 ctrl;
1556 u32 dma_ctrl;
1557 u32 raster_timing_0;
1558 u32 raster_timing_1;
1559 u32 raster_timing_2;
1560 u32 int_enable_set;
1561 u32 dma_frm_buf_base_addr_0;
1562 u32 dma_frm_buf_ceiling_addr_0;
1563 u32 dma_frm_buf_base_addr_1;
1564 u32 dma_frm_buf_ceiling_addr_1;
1565 u32 raster_ctrl;
1566} reg_context;
1567
1568static void lcd_context_save(void)
1569{
1570 if (lcd_revision == LCD_VERSION_2) {
1571 reg_context.clk_enable = lcdc_read(LCD_CLK_ENABLE_REG);
1572 reg_context.int_enable_set = lcdc_read(LCD_INT_ENABLE_SET_REG);
1573 }
1574
1575 reg_context.ctrl = lcdc_read(LCD_CTRL_REG);
1576 reg_context.dma_ctrl = lcdc_read(LCD_DMA_CTRL_REG);
1577 reg_context.raster_timing_0 = lcdc_read(LCD_RASTER_TIMING_0_REG);
1578 reg_context.raster_timing_1 = lcdc_read(LCD_RASTER_TIMING_1_REG);
1579 reg_context.raster_timing_2 = lcdc_read(LCD_RASTER_TIMING_2_REG);
1580 reg_context.dma_frm_buf_base_addr_0 =
1581 lcdc_read(LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
1582 reg_context.dma_frm_buf_ceiling_addr_0 =
1583 lcdc_read(LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
1584 reg_context.dma_frm_buf_base_addr_1 =
1585 lcdc_read(LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
1586 reg_context.dma_frm_buf_ceiling_addr_1 =
1587 lcdc_read(LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
1588 reg_context.raster_ctrl = lcdc_read(LCD_RASTER_CTRL_REG);
1589 return;
1590}
1591
1592static void lcd_context_restore(void)
1593{
1594 if (lcd_revision == LCD_VERSION_2) {
1595 lcdc_write(reg_context.clk_enable, LCD_CLK_ENABLE_REG);
1596 lcdc_write(reg_context.int_enable_set, LCD_INT_ENABLE_SET_REG);
1597 }
1598
1599 lcdc_write(reg_context.ctrl, LCD_CTRL_REG);
1600 lcdc_write(reg_context.dma_ctrl, LCD_DMA_CTRL_REG);
1601 lcdc_write(reg_context.raster_timing_0, LCD_RASTER_TIMING_0_REG);
1602 lcdc_write(reg_context.raster_timing_1, LCD_RASTER_TIMING_1_REG);
1603 lcdc_write(reg_context.raster_timing_2, LCD_RASTER_TIMING_2_REG);
1604 lcdc_write(reg_context.dma_frm_buf_base_addr_0,
1605 LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
1606 lcdc_write(reg_context.dma_frm_buf_ceiling_addr_0,
1607 LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
1608 lcdc_write(reg_context.dma_frm_buf_base_addr_1,
1609 LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
1610 lcdc_write(reg_context.dma_frm_buf_ceiling_addr_1,
1611 LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
1612 lcdc_write(reg_context.raster_ctrl, LCD_RASTER_CTRL_REG);
1613 return;
1614}
1615
Manish Badarkhe622f7c92014-02-18 08:55:36 +05301616static int fb_suspend(struct device *dev)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001617{
Manish Badarkhe622f7c92014-02-18 08:55:36 +05301618 struct fb_info *info = dev_get_drvdata(dev);
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001619 struct da8xx_fb_par *par = info->par;
1620
Torben Hohnac751ef2011-01-25 15:07:35 -08001621 console_lock();
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001622 if (par->panel_power_ctrl)
1623 par->panel_power_ctrl(0);
1624
1625 fb_set_suspend(info, 1);
Darren Etheridge26e71642013-08-05 17:02:30 -05001626 lcd_disable_raster(DA8XX_FRAME_WAIT);
Manjunathappa, Prakash7a93cbb2012-09-25 19:41:41 +05301627 lcd_context_save();
Manish Badarkhe622f7c92014-02-18 08:55:36 +05301628 pm_runtime_put_sync(dev);
Torben Hohnac751ef2011-01-25 15:07:35 -08001629 console_unlock();
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001630
1631 return 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001632}
Manish Badarkhe622f7c92014-02-18 08:55:36 +05301633static int fb_resume(struct device *dev)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001634{
Manish Badarkhe622f7c92014-02-18 08:55:36 +05301635 struct fb_info *info = dev_get_drvdata(dev);
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001636 struct da8xx_fb_par *par = info->par;
1637
Torben Hohnac751ef2011-01-25 15:07:35 -08001638 console_lock();
Manish Badarkhe622f7c92014-02-18 08:55:36 +05301639 pm_runtime_get_sync(dev);
Manjunathappa, Prakash7a93cbb2012-09-25 19:41:41 +05301640 lcd_context_restore();
Manjunathappa, Prakash67900812012-08-31 19:48:59 +05301641 if (par->blank == FB_BLANK_UNBLANK) {
1642 lcd_enable_raster();
Manjunathappa, Prakashf7c848b2012-07-24 09:45:25 +05301643
Manjunathappa, Prakash67900812012-08-31 19:48:59 +05301644 if (par->panel_power_ctrl)
1645 par->panel_power_ctrl(1);
1646 }
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001647
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001648 fb_set_suspend(info, 0);
Torben Hohnac751ef2011-01-25 15:07:35 -08001649 console_unlock();
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001650
1651 return 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001652}
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001653#endif
1654
Manish Badarkhe622f7c92014-02-18 08:55:36 +05301655static SIMPLE_DEV_PM_OPS(fb_pm_ops, fb_suspend, fb_resume);
1656
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001657static struct platform_driver da8xx_fb_driver = {
1658 .probe = fb_probe,
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001659 .remove = fb_remove,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001660 .driver = {
1661 .name = DRIVER_NAME,
Manish Badarkhe622f7c92014-02-18 08:55:36 +05301662 .pm = &fb_pm_ops,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001663 },
1664};
Hanjun Guo44f544f2013-09-29 13:32:05 +08001665module_platform_driver(da8xx_fb_driver);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001666
1667MODULE_DESCRIPTION("Framebuffer driver for TI da8xx/omap-l1xx");
1668MODULE_AUTHOR("Texas Instruments");
1669MODULE_LICENSE("GPL");