blob: 52977b14425f39a4e5855716f1de9ce8ddf206e6 [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
132#define WSI_TIMEOUT 50
133#define PALETTE_SIZE 256
134#define LEFT_MARGIN 64
135#define RIGHT_MARGIN 64
136#define UPPER_MARGIN 32
137#define LOWER_MARGIN 32
138
Arnd Bergmann34aef6e2012-09-14 20:33:43 +0000139static void __iomem *da8xx_fb_reg_base;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700140static struct resource *lcdc_regs;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530141static unsigned int lcd_revision;
142static irq_handler_t lcdc_irq_handler;
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530143static wait_queue_head_t frame_done_wq;
144static int frame_done_flag;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700145
146static inline unsigned int lcdc_read(unsigned int addr)
147{
148 return (unsigned int)__raw_readl(da8xx_fb_reg_base + (addr));
149}
150
151static inline void lcdc_write(unsigned int val, unsigned int addr)
152{
153 __raw_writel(val, da8xx_fb_reg_base + (addr));
154}
155
156struct da8xx_fb_par {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700157 resource_size_t p_palette_base;
158 unsigned char *v_palette_base;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700159 dma_addr_t vram_phys;
160 unsigned long vram_size;
161 void *vram_virt;
162 unsigned int dma_start;
163 unsigned int dma_end;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700164 struct clk *lcdc_clk;
165 int irq;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700166 unsigned int palette_sz;
Chaithrika U S8097b172009-12-15 16:46:29 -0800167 unsigned int pxl_clk;
Chaithrika U S36113802009-12-15 16:46:38 -0800168 int blank;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700169 wait_queue_head_t vsync_wait;
170 int vsync_flag;
171 int vsync_timeout;
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +0530172 spinlock_t lock_for_chan_update;
173
174 /*
175 * LCDC has 2 ping pong DMA channels, channel 0
176 * and channel 1.
177 */
178 unsigned int which_dma_channel_done;
Chaithrika U Se04e5482009-12-15 16:46:29 -0800179#ifdef CONFIG_CPU_FREQ
180 struct notifier_block freq_transition;
Manjunathappa, Prakashf8209172012-01-03 18:10:51 +0530181 unsigned int lcd_fck_rate;
Chaithrika U Se04e5482009-12-15 16:46:29 -0800182#endif
Chaithrika U S36113802009-12-15 16:46:38 -0800183 void (*panel_power_ctrl)(int);
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530184 u32 pseudo_palette[16];
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700185};
186
187/* Variable Screen Information */
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800188static struct fb_var_screeninfo da8xx_fb_var = {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700189 .xoffset = 0,
190 .yoffset = 0,
191 .transp = {0, 0, 0},
192 .nonstd = 0,
193 .activate = 0,
194 .height = -1,
195 .width = -1,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700196 .accel_flags = 0,
197 .left_margin = LEFT_MARGIN,
198 .right_margin = RIGHT_MARGIN,
199 .upper_margin = UPPER_MARGIN,
200 .lower_margin = LOWER_MARGIN,
201 .sync = 0,
202 .vmode = FB_VMODE_NONINTERLACED
203};
204
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800205static struct fb_fix_screeninfo da8xx_fb_fix = {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700206 .id = "DA8xx FB Drv",
207 .type = FB_TYPE_PACKED_PIXELS,
208 .type_aux = 0,
209 .visual = FB_VISUAL_PSEUDOCOLOR,
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700210 .xpanstep = 0,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700211 .ypanstep = 1,
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700212 .ywrapstep = 0,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700213 .accel = FB_ACCEL_NONE
214};
215
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530216static struct fb_videomode known_lcd_panels[] = {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700217 /* Sharp LCD035Q3DG01 */
218 [0] = {
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530219 .name = "Sharp_LCD035Q3DG01",
220 .xres = 320,
221 .yres = 240,
222 .pixclock = 4608000,
223 .left_margin = 6,
224 .right_margin = 8,
225 .upper_margin = 2,
226 .lower_margin = 2,
227 .hsync_len = 0,
228 .vsync_len = 0,
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530229 .sync = FB_SYNC_CLK_INVERT |
230 FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700231 },
232 /* Sharp LK043T1DG01 */
233 [1] = {
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530234 .name = "Sharp_LK043T1DG01",
235 .xres = 480,
236 .yres = 272,
237 .pixclock = 7833600,
238 .left_margin = 2,
239 .right_margin = 2,
240 .upper_margin = 2,
241 .lower_margin = 2,
242 .hsync_len = 41,
243 .vsync_len = 10,
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530244 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530245 .flag = 0,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700246 },
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100247 [2] = {
248 /* Hitachi SP10Q010 */
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530249 .name = "SP10Q010",
250 .xres = 320,
251 .yres = 240,
252 .pixclock = 7833600,
253 .left_margin = 10,
254 .right_margin = 10,
255 .upper_margin = 10,
256 .lower_margin = 10,
257 .hsync_len = 10,
258 .vsync_len = 10,
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530259 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530260 .flag = 0,
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100261 },
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700262};
263
Chaithrika U S36113802009-12-15 16:46:38 -0800264/* Enable the Raster Engine of the LCD Controller */
265static inline void lcd_enable_raster(void)
266{
267 u32 reg;
268
Manjunathappa, Prakash92b4e452012-07-20 21:21:11 +0530269 /* Put LCDC in reset for several cycles */
270 if (lcd_revision == LCD_VERSION_2)
271 /* Write 1 to reset LCDC */
272 lcdc_write(LCD_CLK_MAIN_RESET, LCD_CLK_RESET_REG);
273 mdelay(1);
274
Manjunathappa, Prakash74a0efd2011-11-15 17:32:23 +0530275 /* Bring LCDC out of reset */
276 if (lcd_revision == LCD_VERSION_2)
277 lcdc_write(0, LCD_CLK_RESET_REG);
Manjunathappa, Prakash92b4e452012-07-20 21:21:11 +0530278 mdelay(1);
Manjunathappa, Prakash74a0efd2011-11-15 17:32:23 +0530279
Manjunathappa, Prakash92b4e452012-07-20 21:21:11 +0530280 /* Above reset sequence doesnot reset register context */
Chaithrika U S36113802009-12-15 16:46:38 -0800281 reg = lcdc_read(LCD_RASTER_CTRL_REG);
282 if (!(reg & LCD_RASTER_ENABLE))
283 lcdc_write(reg | LCD_RASTER_ENABLE, LCD_RASTER_CTRL_REG);
284}
285
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700286/* Disable the Raster Engine of the LCD Controller */
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530287static inline void lcd_disable_raster(bool wait_for_frame_done)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700288{
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700289 u32 reg;
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530290 int ret;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700291
292 reg = lcdc_read(LCD_RASTER_CTRL_REG);
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -0700293 if (reg & LCD_RASTER_ENABLE)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700294 lcdc_write(reg & ~LCD_RASTER_ENABLE, LCD_RASTER_CTRL_REG);
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530295 else
296 /* return if already disabled */
297 return;
298
299 if ((wait_for_frame_done == true) && (lcd_revision == LCD_VERSION_2)) {
300 frame_done_flag = 0;
301 ret = wait_event_interruptible_timeout(frame_done_wq,
302 frame_done_flag != 0,
303 msecs_to_jiffies(50));
304 if (ret == 0)
305 pr_err("LCD Controller timed out\n");
306 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700307}
308
309static void lcd_blit(int load_mode, struct da8xx_fb_par *par)
310{
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700311 u32 start;
312 u32 end;
313 u32 reg_ras;
314 u32 reg_dma;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530315 u32 reg_int;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700316
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700317 /* init reg to clear PLM (loading mode) fields */
318 reg_ras = lcdc_read(LCD_RASTER_CTRL_REG);
319 reg_ras &= ~(3 << 20);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700320
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700321 reg_dma = lcdc_read(LCD_DMA_CTRL_REG);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700322
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700323 if (load_mode == LOAD_DATA) {
324 start = par->dma_start;
325 end = par->dma_end;
326
327 reg_ras |= LCD_PALETTE_LOAD_MODE(DATA_ONLY);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530328 if (lcd_revision == LCD_VERSION_1) {
329 reg_dma |= LCD_V1_END_OF_FRAME_INT_ENA;
330 } else {
331 reg_int = lcdc_read(LCD_INT_ENABLE_SET_REG) |
332 LCD_V2_END_OF_FRAME0_INT_ENA |
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530333 LCD_V2_END_OF_FRAME1_INT_ENA |
334 LCD_FRAME_DONE;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530335 lcdc_write(reg_int, LCD_INT_ENABLE_SET_REG);
336 }
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700337 reg_dma |= LCD_DUAL_FRAME_BUFFER_ENABLE;
338
339 lcdc_write(start, LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
340 lcdc_write(end, LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
341 lcdc_write(start, LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
342 lcdc_write(end, LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
343 } else if (load_mode == LOAD_PALETTE) {
344 start = par->p_palette_base;
345 end = start + par->palette_sz - 1;
346
347 reg_ras |= LCD_PALETTE_LOAD_MODE(PALETTE_ONLY);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530348
349 if (lcd_revision == LCD_VERSION_1) {
350 reg_ras |= LCD_V1_PL_INT_ENA;
351 } else {
352 reg_int = lcdc_read(LCD_INT_ENABLE_SET_REG) |
353 LCD_V2_PL_INT_ENA;
354 lcdc_write(reg_int, LCD_INT_ENABLE_SET_REG);
355 }
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700356
357 lcdc_write(start, LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
358 lcdc_write(end, LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
359 }
360
361 lcdc_write(reg_dma, LCD_DMA_CTRL_REG);
362 lcdc_write(reg_ras, LCD_RASTER_CTRL_REG);
363
364 /*
365 * The Raster enable bit must be set after all other control fields are
366 * set.
367 */
368 lcd_enable_raster();
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700369}
370
Manjunathappa, Prakashfb8fa942012-07-18 21:03:36 +0530371/* Configure the Burst Size and fifo threhold of DMA */
372static int lcd_cfg_dma(int burst_size, int fifo_th)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700373{
374 u32 reg;
375
376 reg = lcdc_read(LCD_DMA_CTRL_REG) & 0x00000001;
377 switch (burst_size) {
378 case 1:
379 reg |= LCD_DMA_BURST_SIZE(LCD_DMA_BURST_1);
380 break;
381 case 2:
382 reg |= LCD_DMA_BURST_SIZE(LCD_DMA_BURST_2);
383 break;
384 case 4:
385 reg |= LCD_DMA_BURST_SIZE(LCD_DMA_BURST_4);
386 break;
387 case 8:
388 reg |= LCD_DMA_BURST_SIZE(LCD_DMA_BURST_8);
389 break;
390 case 16:
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530391 default:
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700392 reg |= LCD_DMA_BURST_SIZE(LCD_DMA_BURST_16);
393 break;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700394 }
Manjunathappa, Prakashfb8fa942012-07-18 21:03:36 +0530395
396 reg |= (fifo_th << 8);
397
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -0700398 lcdc_write(reg, LCD_DMA_CTRL_REG);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700399
400 return 0;
401}
402
403static void lcd_cfg_ac_bias(int period, int transitions_per_int)
404{
405 u32 reg;
406
407 /* Set the AC Bias Period and Number of Transisitons per Interrupt */
408 reg = lcdc_read(LCD_RASTER_TIMING_2_REG) & 0xFFF00000;
409 reg |= LCD_AC_BIAS_FREQUENCY(period) |
410 LCD_AC_BIAS_TRANSITIONS_PER_INT(transitions_per_int);
411 lcdc_write(reg, LCD_RASTER_TIMING_2_REG);
412}
413
414static void lcd_cfg_horizontal_sync(int back_porch, int pulse_width,
415 int front_porch)
416{
417 u32 reg;
418
419 reg = lcdc_read(LCD_RASTER_TIMING_0_REG) & 0xf;
420 reg |= ((back_porch & 0xff) << 24)
421 | ((front_porch & 0xff) << 16)
422 | ((pulse_width & 0x3f) << 10);
423 lcdc_write(reg, LCD_RASTER_TIMING_0_REG);
424}
425
426static void lcd_cfg_vertical_sync(int back_porch, int pulse_width,
427 int front_porch)
428{
429 u32 reg;
430
431 reg = lcdc_read(LCD_RASTER_TIMING_1_REG) & 0x3ff;
432 reg |= ((back_porch & 0xff) << 24)
433 | ((front_porch & 0xff) << 16)
434 | ((pulse_width & 0x3f) << 10);
435 lcdc_write(reg, LCD_RASTER_TIMING_1_REG);
436}
437
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530438static int lcd_cfg_display(const struct lcd_ctrl_config *cfg,
439 struct fb_videomode *panel)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700440{
441 u32 reg;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530442 u32 reg_int;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700443
444 reg = lcdc_read(LCD_RASTER_CTRL_REG) & ~(LCD_TFT_MODE |
445 LCD_MONO_8BIT_MODE |
446 LCD_MONOCHROME_MODE);
447
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530448 switch (cfg->panel_shade) {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700449 case MONOCHROME:
450 reg |= LCD_MONOCHROME_MODE;
451 if (cfg->mono_8bit_mode)
452 reg |= LCD_MONO_8BIT_MODE;
453 break;
454 case COLOR_ACTIVE:
455 reg |= LCD_TFT_MODE;
456 if (cfg->tft_alt_mode)
457 reg |= LCD_TFT_ALT_ENABLE;
458 break;
459
460 case COLOR_PASSIVE:
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530461 /* AC bias applicable only for Pasive panels */
462 lcd_cfg_ac_bias(cfg->ac_bias, cfg->ac_bias_intrpt);
463 if (cfg->bpp == 12 && cfg->stn_565_mode)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700464 reg |= LCD_STN_565_ENABLE;
465 break;
466
467 default:
468 return -EINVAL;
469 }
470
471 /* enable additional interrupts here */
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530472 if (lcd_revision == LCD_VERSION_1) {
473 reg |= LCD_V1_UNDERFLOW_INT_ENA;
474 } else {
475 reg_int = lcdc_read(LCD_INT_ENABLE_SET_REG) |
476 LCD_V2_UNDERFLOW_INT_ENA;
477 lcdc_write(reg_int, LCD_INT_ENABLE_SET_REG);
478 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700479
480 lcdc_write(reg, LCD_RASTER_CTRL_REG);
481
482 reg = lcdc_read(LCD_RASTER_TIMING_2_REG);
483
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530484 reg |= LCD_SYNC_CTRL;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700485
486 if (cfg->sync_edge)
487 reg |= LCD_SYNC_EDGE;
488 else
489 reg &= ~LCD_SYNC_EDGE;
490
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530491 if (panel->sync & FB_SYNC_HOR_HIGH_ACT)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700492 reg |= LCD_INVERT_LINE_CLOCK;
493 else
494 reg &= ~LCD_INVERT_LINE_CLOCK;
495
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530496 if (panel->sync & FB_SYNC_VERT_HIGH_ACT)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700497 reg |= LCD_INVERT_FRAME_CLOCK;
498 else
499 reg &= ~LCD_INVERT_FRAME_CLOCK;
500
501 lcdc_write(reg, LCD_RASTER_TIMING_2_REG);
502
503 return 0;
504}
505
506static int lcd_cfg_frame_buffer(struct da8xx_fb_par *par, u32 width, u32 height,
507 u32 bpp, u32 raster_order)
508{
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700509 u32 reg;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700510
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530511 if (bpp > 16 && lcd_revision == LCD_VERSION_1)
512 return -EINVAL;
513
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700514 /* Set the Panel Width */
515 /* Pixels per line = (PPL + 1)*16 */
Manjunathappa, Prakash4d740802011-07-18 09:58:53 +0530516 if (lcd_revision == LCD_VERSION_1) {
517 /*
518 * 0x3F in bits 4..9 gives max horizontal resolution = 1024
519 * pixels.
520 */
521 width &= 0x3f0;
522 } else {
523 /*
524 * 0x7F in bits 4..10 gives max horizontal resolution = 2048
525 * pixels.
526 */
527 width &= 0x7f0;
528 }
529
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700530 reg = lcdc_read(LCD_RASTER_TIMING_0_REG);
531 reg &= 0xfffffc00;
Manjunathappa, Prakash4d740802011-07-18 09:58:53 +0530532 if (lcd_revision == LCD_VERSION_1) {
533 reg |= ((width >> 4) - 1) << 4;
534 } else {
535 width = (width >> 4) - 1;
536 reg |= ((width & 0x3f) << 4) | ((width & 0x40) >> 3);
537 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700538 lcdc_write(reg, LCD_RASTER_TIMING_0_REG);
539
540 /* Set the Panel Height */
Manjunathappa, Prakash4d740802011-07-18 09:58:53 +0530541 /* Set bits 9:0 of Lines Per Pixel */
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700542 reg = lcdc_read(LCD_RASTER_TIMING_1_REG);
543 reg = ((height - 1) & 0x3ff) | (reg & 0xfffffc00);
544 lcdc_write(reg, LCD_RASTER_TIMING_1_REG);
545
Manjunathappa, Prakash4d740802011-07-18 09:58:53 +0530546 /* Set bit 10 of Lines Per Pixel */
547 if (lcd_revision == LCD_VERSION_2) {
548 reg = lcdc_read(LCD_RASTER_TIMING_2_REG);
549 reg |= ((height - 1) & 0x400) << 16;
550 lcdc_write(reg, LCD_RASTER_TIMING_2_REG);
551 }
552
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700553 /* Set the Raster Order of the Frame Buffer */
554 reg = lcdc_read(LCD_RASTER_CTRL_REG) & ~(1 << 8);
555 if (raster_order)
556 reg |= LCD_RASTER_ORDER;
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530557
558 par->palette_sz = 16 * 2;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700559
560 switch (bpp) {
561 case 1:
562 case 2:
563 case 4:
564 case 16:
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530565 break;
566 case 24:
567 reg |= LCD_V2_TFT_24BPP_MODE;
568 case 32:
569 reg |= LCD_V2_TFT_24BPP_UNPACK;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700570 break;
571
572 case 8:
573 par->palette_sz = 256 * 2;
574 break;
575
576 default:
577 return -EINVAL;
578 }
579
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530580 lcdc_write(reg, LCD_RASTER_CTRL_REG);
581
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700582 return 0;
583}
584
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530585#define CNVT_TOHW(val, width) ((((val) << (width)) + 0x7FFF - (val)) >> 16)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700586static int fb_setcolreg(unsigned regno, unsigned red, unsigned green,
587 unsigned blue, unsigned transp,
588 struct fb_info *info)
589{
590 struct da8xx_fb_par *par = info->par;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700591 unsigned short *palette = (unsigned short *) par->v_palette_base;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700592 u_short pal;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700593 int update_hw = 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700594
595 if (regno > 255)
596 return 1;
597
598 if (info->fix.visual == FB_VISUAL_DIRECTCOLOR)
599 return 1;
600
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530601 if (info->var.bits_per_pixel > 16 && lcd_revision == LCD_VERSION_1)
602 return -EINVAL;
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100603
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530604 switch (info->fix.visual) {
605 case FB_VISUAL_TRUECOLOR:
606 red = CNVT_TOHW(red, info->var.red.length);
607 green = CNVT_TOHW(green, info->var.green.length);
608 blue = CNVT_TOHW(blue, info->var.blue.length);
609 break;
610 case FB_VISUAL_PSEUDOCOLOR:
611 switch (info->var.bits_per_pixel) {
612 case 4:
613 if (regno > 15)
614 return -EINVAL;
615
616 if (info->var.grayscale) {
617 pal = regno;
618 } else {
619 red >>= 4;
620 green >>= 8;
621 blue >>= 12;
622
623 pal = red & 0x0f00;
624 pal |= green & 0x00f0;
625 pal |= blue & 0x000f;
626 }
627 if (regno == 0)
628 pal |= 0x2000;
629 palette[regno] = pal;
630 break;
631
632 case 8:
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100633 red >>= 4;
634 green >>= 8;
635 blue >>= 12;
636
637 pal = (red & 0x0f00);
638 pal |= (green & 0x00f0);
639 pal |= (blue & 0x000f);
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530640
641 if (palette[regno] != pal) {
642 update_hw = 1;
643 palette[regno] = pal;
644 }
645 break;
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100646 }
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530647 break;
648 }
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100649
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530650 /* Truecolor has hardware independent palette */
651 if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
652 u32 v;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700653
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530654 if (regno > 15)
655 return -EINVAL;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700656
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530657 v = (red << info->var.red.offset) |
658 (green << info->var.green.offset) |
659 (blue << info->var.blue.offset);
660
661 switch (info->var.bits_per_pixel) {
662 case 16:
663 ((u16 *) (info->pseudo_palette))[regno] = v;
664 break;
665 case 24:
666 case 32:
667 ((u32 *) (info->pseudo_palette))[regno] = v;
668 break;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700669 }
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700670 if (palette[0] != 0x4000) {
671 update_hw = 1;
672 palette[0] = 0x4000;
673 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700674 }
675
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700676 /* Update the palette in the h/w as needed. */
677 if (update_hw)
678 lcd_blit(LOAD_PALETTE, par);
679
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700680 return 0;
681}
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530682#undef CNVT_TOHW
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700683
Afzal Mohammed39c87d42013-08-05 17:02:21 -0500684static void da8xx_fb_lcd_reset(void)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700685{
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700686 /* Disable the Raster if previously Enabled */
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530687 lcd_disable_raster(false);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700688
689 /* DMA has to be disabled */
690 lcdc_write(0, LCD_DMA_CTRL_REG);
691 lcdc_write(0, LCD_RASTER_CTRL_REG);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530692
Manjunathappa, Prakash74a0efd2011-11-15 17:32:23 +0530693 if (lcd_revision == LCD_VERSION_2) {
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530694 lcdc_write(0, LCD_INT_ENABLE_SET_REG);
Manjunathappa, Prakash74a0efd2011-11-15 17:32:23 +0530695 /* Write 1 to reset */
696 lcdc_write(LCD_CLK_MAIN_RESET, LCD_CLK_RESET_REG);
697 lcdc_write(0, LCD_CLK_RESET_REG);
698 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700699}
700
Chaithrika U S8097b172009-12-15 16:46:29 -0800701static void lcd_calc_clk_divider(struct da8xx_fb_par *par)
702{
703 unsigned int lcd_clk, div;
704
705 lcd_clk = clk_get_rate(par->lcdc_clk);
706 div = lcd_clk / par->pxl_clk;
707
708 /* Configure the LCD clock divisor. */
709 lcdc_write(LCD_CLK_DIVISOR(div) |
710 (LCD_RASTER_MODE & 0x1), LCD_CTRL_REG);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530711
712 if (lcd_revision == LCD_VERSION_2)
713 lcdc_write(LCD_V2_DMA_CLK_EN | LCD_V2_LIDD_CLK_EN |
714 LCD_V2_CORE_CLK_EN, LCD_CLK_ENABLE_REG);
715
Chaithrika U S8097b172009-12-15 16:46:29 -0800716}
717
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700718static int lcd_init(struct da8xx_fb_par *par, const struct lcd_ctrl_config *cfg,
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530719 struct fb_videomode *panel)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700720{
721 u32 bpp;
722 int ret = 0;
723
Afzal Mohammed39c87d42013-08-05 17:02:21 -0500724 da8xx_fb_lcd_reset();
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700725
Chaithrika U S8097b172009-12-15 16:46:29 -0800726 /* Calculate the divider */
727 lcd_calc_clk_divider(par);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700728
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530729 if (panel->sync & FB_SYNC_CLK_INVERT)
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -0700730 lcdc_write((lcdc_read(LCD_RASTER_TIMING_2_REG) |
731 LCD_INVERT_PIXEL_CLOCK), LCD_RASTER_TIMING_2_REG);
732 else
733 lcdc_write((lcdc_read(LCD_RASTER_TIMING_2_REG) &
734 ~LCD_INVERT_PIXEL_CLOCK), LCD_RASTER_TIMING_2_REG);
735
Manjunathappa, Prakashfb8fa942012-07-18 21:03:36 +0530736 /* Configure the DMA burst size and fifo threshold. */
737 ret = lcd_cfg_dma(cfg->dma_burst_sz, cfg->fifo_th);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700738 if (ret < 0)
739 return ret;
740
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700741 /* Configure the vertical and horizontal sync properties. */
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530742 lcd_cfg_vertical_sync(panel->lower_margin, panel->vsync_len,
743 panel->upper_margin);
744 lcd_cfg_horizontal_sync(panel->right_margin, panel->hsync_len,
745 panel->left_margin);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700746
747 /* Configure for disply */
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530748 ret = lcd_cfg_display(cfg, panel);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700749 if (ret < 0)
750 return ret;
751
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +0530752 bpp = cfg->bpp;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700753
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700754 if (bpp == 12)
755 bpp = 16;
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +0530756 ret = lcd_cfg_frame_buffer(par, (unsigned int)panel->xres,
757 (unsigned int)panel->yres, bpp,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700758 cfg->raster_order);
759 if (ret < 0)
760 return ret;
761
762 /* Configure FDD */
763 lcdc_write((lcdc_read(LCD_RASTER_CTRL_REG) & 0xfff00fff) |
764 (cfg->fdd << 12), LCD_RASTER_CTRL_REG);
765
766 return 0;
767}
768
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530769/* IRQ handler for version 2 of LCDC */
770static irqreturn_t lcdc_irq_handler_rev02(int irq, void *arg)
771{
772 struct da8xx_fb_par *par = arg;
773 u32 stat = lcdc_read(LCD_MASKED_STAT_REG);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530774
775 if ((stat & LCD_SYNC_LOST) && (stat & LCD_FIFO_UNDERFLOW)) {
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530776 lcd_disable_raster(false);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530777 lcdc_write(stat, LCD_MASKED_STAT_REG);
778 lcd_enable_raster();
779 } else if (stat & LCD_PL_LOAD_DONE) {
780 /*
781 * Must disable raster before changing state of any control bit.
782 * And also must be disabled before clearing the PL loading
783 * interrupt via the following write to the status register. If
784 * this is done after then one gets multiple PL done interrupts.
785 */
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530786 lcd_disable_raster(false);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530787
788 lcdc_write(stat, LCD_MASKED_STAT_REG);
789
Manjunathappa, Prakash8a81dcc2012-07-18 20:51:11 +0530790 /* Disable PL completion interrupt */
791 lcdc_write(LCD_V2_PL_INT_ENA, LCD_INT_ENABLE_CLR_REG);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530792
793 /* Setup and start data loading mode */
794 lcd_blit(LOAD_DATA, par);
795 } else {
796 lcdc_write(stat, LCD_MASKED_STAT_REG);
797
798 if (stat & LCD_END_OF_FRAME0) {
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +0530799 par->which_dma_channel_done = 0;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530800 lcdc_write(par->dma_start,
801 LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
802 lcdc_write(par->dma_end,
803 LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
804 par->vsync_flag = 1;
805 wake_up_interruptible(&par->vsync_wait);
806 }
807
808 if (stat & LCD_END_OF_FRAME1) {
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +0530809 par->which_dma_channel_done = 1;
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530810 lcdc_write(par->dma_start,
811 LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
812 lcdc_write(par->dma_end,
813 LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
814 par->vsync_flag = 1;
815 wake_up_interruptible(&par->vsync_wait);
816 }
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530817
818 /* Set only when controller is disabled and at the end of
819 * active frame
820 */
821 if (stat & BIT(0)) {
822 frame_done_flag = 1;
823 wake_up_interruptible(&frame_done_wq);
824 }
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530825 }
826
827 lcdc_write(0, LCD_END_OF_INT_IND_REG);
828 return IRQ_HANDLED;
829}
830
831/* IRQ handler for version 1 LCDC */
832static irqreturn_t lcdc_irq_handler_rev01(int irq, void *arg)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700833{
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700834 struct da8xx_fb_par *par = arg;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700835 u32 stat = lcdc_read(LCD_STAT_REG);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700836 u32 reg_ras;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700837
838 if ((stat & LCD_SYNC_LOST) && (stat & LCD_FIFO_UNDERFLOW)) {
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530839 lcd_disable_raster(false);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700840 lcdc_write(stat, LCD_STAT_REG);
Chaithrika U S36113802009-12-15 16:46:38 -0800841 lcd_enable_raster();
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700842 } else if (stat & LCD_PL_LOAD_DONE) {
843 /*
844 * Must disable raster before changing state of any control bit.
845 * And also must be disabled before clearing the PL loading
846 * interrupt via the following write to the status register. If
847 * this is done after then one gets multiple PL done interrupts.
848 */
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530849 lcd_disable_raster(false);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700850
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700851 lcdc_write(stat, LCD_STAT_REG);
852
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700853 /* Disable PL completion inerrupt */
854 reg_ras = lcdc_read(LCD_RASTER_CTRL_REG);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +0530855 reg_ras &= ~LCD_V1_PL_INT_ENA;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700856 lcdc_write(reg_ras, LCD_RASTER_CTRL_REG);
857
858 /* Setup and start data loading mode */
859 lcd_blit(LOAD_DATA, par);
860 } else {
861 lcdc_write(stat, LCD_STAT_REG);
862
863 if (stat & LCD_END_OF_FRAME0) {
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +0530864 par->which_dma_channel_done = 0;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700865 lcdc_write(par->dma_start,
866 LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
867 lcdc_write(par->dma_end,
868 LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
869 par->vsync_flag = 1;
870 wake_up_interruptible(&par->vsync_wait);
871 }
872
873 if (stat & LCD_END_OF_FRAME1) {
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +0530874 par->which_dma_channel_done = 1;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -0700875 lcdc_write(par->dma_start,
876 LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
877 lcdc_write(par->dma_end,
878 LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
879 par->vsync_flag = 1;
880 wake_up_interruptible(&par->vsync_wait);
881 }
882 }
883
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700884 return IRQ_HANDLED;
885}
886
887static int fb_check_var(struct fb_var_screeninfo *var,
888 struct fb_info *info)
889{
890 int err = 0;
Afzal Mohammed87dac712013-08-05 17:02:20 -0500891 struct da8xx_fb_par *par = info->par;
892 int bpp = var->bits_per_pixel >> 3;
893 unsigned long line_size = var->xres_virtual * bpp;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700894
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530895 if (var->bits_per_pixel > 16 && lcd_revision == LCD_VERSION_1)
896 return -EINVAL;
897
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700898 switch (var->bits_per_pixel) {
899 case 1:
900 case 8:
901 var->red.offset = 0;
902 var->red.length = 8;
903 var->green.offset = 0;
904 var->green.length = 8;
905 var->blue.offset = 0;
906 var->blue.length = 8;
907 var->transp.offset = 0;
908 var->transp.length = 0;
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100909 var->nonstd = 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700910 break;
911 case 4:
912 var->red.offset = 0;
913 var->red.length = 4;
914 var->green.offset = 0;
915 var->green.length = 4;
916 var->blue.offset = 0;
917 var->blue.length = 4;
918 var->transp.offset = 0;
919 var->transp.length = 0;
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100920 var->nonstd = FB_NONSTD_REV_PIX_IN_B;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700921 break;
922 case 16: /* RGB 565 */
Sudhakar Rajashekhara3510b8f2009-12-01 13:17:43 -0800923 var->red.offset = 11;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700924 var->red.length = 5;
925 var->green.offset = 5;
926 var->green.length = 6;
Sudhakar Rajashekhara3510b8f2009-12-01 13:17:43 -0800927 var->blue.offset = 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700928 var->blue.length = 5;
929 var->transp.offset = 0;
930 var->transp.length = 0;
Anatolij Gustschinf4130702012-03-13 14:13:57 +0100931 var->nonstd = 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700932 break;
Manjunathappa, Prakash1a2b7502012-08-14 18:51:42 +0530933 case 24:
934 var->red.offset = 16;
935 var->red.length = 8;
936 var->green.offset = 8;
937 var->green.length = 8;
938 var->blue.offset = 0;
939 var->blue.length = 8;
940 var->nonstd = 0;
941 break;
942 case 32:
943 var->transp.offset = 24;
944 var->transp.length = 8;
945 var->red.offset = 16;
946 var->red.length = 8;
947 var->green.offset = 8;
948 var->green.length = 8;
949 var->blue.offset = 0;
950 var->blue.length = 8;
951 var->nonstd = 0;
952 break;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700953 default:
954 err = -EINVAL;
955 }
956
957 var->red.msb_right = 0;
958 var->green.msb_right = 0;
959 var->blue.msb_right = 0;
960 var->transp.msb_right = 0;
Afzal Mohammed87dac712013-08-05 17:02:20 -0500961
962 if (line_size * var->yres_virtual > par->vram_size)
963 var->yres_virtual = par->vram_size / line_size;
964
965 if (var->yres > var->yres_virtual)
966 var->yres = var->yres_virtual;
967
968 if (var->xres > var->xres_virtual)
969 var->xres = var->xres_virtual;
970
971 if (var->xres + var->xoffset > var->xres_virtual)
972 var->xoffset = var->xres_virtual - var->xres;
973 if (var->yres + var->yoffset > var->yres_virtual)
974 var->yoffset = var->yres_virtual - var->yres;
975
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -0700976 return err;
977}
978
Chaithrika U Se04e5482009-12-15 16:46:29 -0800979#ifdef CONFIG_CPU_FREQ
980static int lcd_da8xx_cpufreq_transition(struct notifier_block *nb,
981 unsigned long val, void *data)
982{
983 struct da8xx_fb_par *par;
Chaithrika U Se04e5482009-12-15 16:46:29 -0800984
985 par = container_of(nb, struct da8xx_fb_par, freq_transition);
Manjunathappa, Prakashf8209172012-01-03 18:10:51 +0530986 if (val == CPUFREQ_POSTCHANGE) {
987 if (par->lcd_fck_rate != clk_get_rate(par->lcdc_clk)) {
988 par->lcd_fck_rate = clk_get_rate(par->lcdc_clk);
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +0530989 lcd_disable_raster(true);
Manjunathappa, Prakashf8209172012-01-03 18:10:51 +0530990 lcd_calc_clk_divider(par);
Manjunathappa, Prakash67900812012-08-31 19:48:59 +0530991 if (par->blank == FB_BLANK_UNBLANK)
992 lcd_enable_raster();
Manjunathappa, Prakashf8209172012-01-03 18:10:51 +0530993 }
Chaithrika U Se04e5482009-12-15 16:46:29 -0800994 }
995
996 return 0;
997}
998
999static inline int lcd_da8xx_cpufreq_register(struct da8xx_fb_par *par)
1000{
1001 par->freq_transition.notifier_call = lcd_da8xx_cpufreq_transition;
1002
1003 return cpufreq_register_notifier(&par->freq_transition,
1004 CPUFREQ_TRANSITION_NOTIFIER);
1005}
1006
1007static inline void lcd_da8xx_cpufreq_deregister(struct da8xx_fb_par *par)
1008{
1009 cpufreq_unregister_notifier(&par->freq_transition,
1010 CPUFREQ_TRANSITION_NOTIFIER);
1011}
1012#endif
1013
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001014static int fb_remove(struct platform_device *dev)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001015{
1016 struct fb_info *info = dev_get_drvdata(&dev->dev);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001017
1018 if (info) {
1019 struct da8xx_fb_par *par = info->par;
1020
Chaithrika U Se04e5482009-12-15 16:46:29 -08001021#ifdef CONFIG_CPU_FREQ
1022 lcd_da8xx_cpufreq_deregister(par);
1023#endif
Chaithrika U S36113802009-12-15 16:46:38 -08001024 if (par->panel_power_ctrl)
1025 par->panel_power_ctrl(0);
1026
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +05301027 lcd_disable_raster(true);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001028 lcdc_write(0, LCD_RASTER_CTRL_REG);
1029
1030 /* disable DMA */
1031 lcdc_write(0, LCD_DMA_CTRL_REG);
1032
1033 unregister_framebuffer(info);
1034 fb_dealloc_cmap(&info->cmap);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001035 dma_free_coherent(NULL, PALETTE_SIZE, par->v_palette_base,
1036 par->p_palette_base);
1037 dma_free_coherent(NULL, par->vram_size, par->vram_virt,
1038 par->vram_phys);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001039 free_irq(par->irq, par);
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301040 pm_runtime_put_sync(&dev->dev);
1041 pm_runtime_disable(&dev->dev);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001042 framebuffer_release(info);
Arnd Bergmann34aef6e2012-09-14 20:33:43 +00001043 iounmap(da8xx_fb_reg_base);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001044 release_mem_region(lcdc_regs->start, resource_size(lcdc_regs));
1045
1046 }
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -07001047 return 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001048}
1049
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001050/*
1051 * Function to wait for vertical sync which for this LCD peripheral
1052 * translates into waiting for the current raster frame to complete.
1053 */
1054static int fb_wait_for_vsync(struct fb_info *info)
1055{
1056 struct da8xx_fb_par *par = info->par;
1057 int ret;
1058
1059 /*
1060 * 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 -03001061 * race condition here where the ISR could have occurred just before or
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001062 * just after this set. But since we are just coarsely waiting for
1063 * a frame to complete then that's OK. i.e. if the frame completed
1064 * just before this code executed then we have to wait another full
1065 * frame time but there is no way to avoid such a situation. On the
1066 * other hand if the frame completed just after then we don't need
1067 * to wait long at all. Either way we are guaranteed to return to the
1068 * user immediately after a frame completion which is all that is
1069 * required.
1070 */
1071 par->vsync_flag = 0;
1072 ret = wait_event_interruptible_timeout(par->vsync_wait,
1073 par->vsync_flag != 0,
1074 par->vsync_timeout);
1075 if (ret < 0)
1076 return ret;
1077 if (ret == 0)
1078 return -ETIMEDOUT;
1079
1080 return 0;
1081}
1082
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001083static int fb_ioctl(struct fb_info *info, unsigned int cmd,
1084 unsigned long arg)
1085{
1086 struct lcd_sync_arg sync_arg;
1087
1088 switch (cmd) {
1089 case FBIOGET_CONTRAST:
1090 case FBIOPUT_CONTRAST:
1091 case FBIGET_BRIGHTNESS:
1092 case FBIPUT_BRIGHTNESS:
1093 case FBIGET_COLOR:
1094 case FBIPUT_COLOR:
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -07001095 return -ENOTTY;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001096 case FBIPUT_HSYNC:
1097 if (copy_from_user(&sync_arg, (char *)arg,
1098 sizeof(struct lcd_sync_arg)))
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -07001099 return -EFAULT;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001100 lcd_cfg_horizontal_sync(sync_arg.back_porch,
1101 sync_arg.pulse_width,
1102 sync_arg.front_porch);
1103 break;
1104 case FBIPUT_VSYNC:
1105 if (copy_from_user(&sync_arg, (char *)arg,
1106 sizeof(struct lcd_sync_arg)))
Sudhakar Rajashekhara2f93e8f2009-09-22 16:47:06 -07001107 return -EFAULT;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001108 lcd_cfg_vertical_sync(sync_arg.back_porch,
1109 sync_arg.pulse_width,
1110 sync_arg.front_porch);
1111 break;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001112 case FBIO_WAITFORVSYNC:
1113 return fb_wait_for_vsync(info);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001114 default:
1115 return -EINVAL;
1116 }
1117 return 0;
1118}
1119
Chaithrika U S312d9712009-12-15 16:46:39 -08001120static int cfb_blank(int blank, struct fb_info *info)
1121{
1122 struct da8xx_fb_par *par = info->par;
1123 int ret = 0;
1124
1125 if (par->blank == blank)
1126 return 0;
1127
1128 par->blank = blank;
1129 switch (blank) {
1130 case FB_BLANK_UNBLANK:
Manjunathappa, Prakashf7c848b2012-07-24 09:45:25 +05301131 lcd_enable_raster();
1132
Chaithrika U S312d9712009-12-15 16:46:39 -08001133 if (par->panel_power_ctrl)
1134 par->panel_power_ctrl(1);
Chaithrika U S312d9712009-12-15 16:46:39 -08001135 break;
Yegor Yefremov99a647d2012-07-06 16:01:28 +02001136 case FB_BLANK_NORMAL:
1137 case FB_BLANK_VSYNC_SUSPEND:
1138 case FB_BLANK_HSYNC_SUSPEND:
Chaithrika U S312d9712009-12-15 16:46:39 -08001139 case FB_BLANK_POWERDOWN:
1140 if (par->panel_power_ctrl)
1141 par->panel_power_ctrl(0);
1142
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +05301143 lcd_disable_raster(true);
Chaithrika U S312d9712009-12-15 16:46:39 -08001144 break;
1145 default:
1146 ret = -EINVAL;
1147 }
1148
1149 return ret;
1150}
1151
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001152/*
1153 * Set new x,y offsets in the virtual display for the visible area and switch
1154 * to the new mode.
1155 */
1156static int da8xx_pan_display(struct fb_var_screeninfo *var,
1157 struct fb_info *fbi)
1158{
1159 int ret = 0;
1160 struct fb_var_screeninfo new_var;
1161 struct da8xx_fb_par *par = fbi->par;
1162 struct fb_fix_screeninfo *fix = &fbi->fix;
1163 unsigned int end;
1164 unsigned int start;
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +05301165 unsigned long irq_flags;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001166
1167 if (var->xoffset != fbi->var.xoffset ||
1168 var->yoffset != fbi->var.yoffset) {
1169 memcpy(&new_var, &fbi->var, sizeof(new_var));
1170 new_var.xoffset = var->xoffset;
1171 new_var.yoffset = var->yoffset;
1172 if (fb_check_var(&new_var, fbi))
1173 ret = -EINVAL;
1174 else {
1175 memcpy(&fbi->var, &new_var, sizeof(new_var));
1176
1177 start = fix->smem_start +
1178 new_var.yoffset * fix->line_length +
Laurent Pincharte6c4d3d2011-06-14 09:24:45 +00001179 new_var.xoffset * fbi->var.bits_per_pixel / 8;
1180 end = start + fbi->var.yres * fix->line_length - 1;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001181 par->dma_start = start;
1182 par->dma_end = end;
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +05301183 spin_lock_irqsave(&par->lock_for_chan_update,
1184 irq_flags);
1185 if (par->which_dma_channel_done == 0) {
1186 lcdc_write(par->dma_start,
1187 LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
1188 lcdc_write(par->dma_end,
1189 LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
1190 } else if (par->which_dma_channel_done == 1) {
1191 lcdc_write(par->dma_start,
1192 LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
1193 lcdc_write(par->dma_end,
1194 LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
1195 }
1196 spin_unlock_irqrestore(&par->lock_for_chan_update,
1197 irq_flags);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001198 }
1199 }
1200
1201 return ret;
1202}
1203
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001204static struct fb_ops da8xx_fb_ops = {
1205 .owner = THIS_MODULE,
1206 .fb_check_var = fb_check_var,
1207 .fb_setcolreg = fb_setcolreg,
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001208 .fb_pan_display = da8xx_pan_display,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001209 .fb_ioctl = fb_ioctl,
1210 .fb_fillrect = cfb_fillrect,
1211 .fb_copyarea = cfb_copyarea,
1212 .fb_imageblit = cfb_imageblit,
Chaithrika U S312d9712009-12-15 16:46:39 -08001213 .fb_blank = cfb_blank,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001214};
1215
Manjunathappa, Prakash12fa8352012-02-09 11:54:06 +05301216/* Calculate and return pixel clock period in pico seconds */
1217static unsigned int da8xxfb_pixel_clk_period(struct da8xx_fb_par *par)
1218{
1219 unsigned int lcd_clk, div;
1220 unsigned int configured_pix_clk;
1221 unsigned long long pix_clk_period_picosec = 1000000000000ULL;
1222
1223 lcd_clk = clk_get_rate(par->lcdc_clk);
1224 div = lcd_clk / par->pxl_clk;
1225 configured_pix_clk = (lcd_clk / div);
1226
1227 do_div(pix_clk_period_picosec, configured_pix_clk);
1228
1229 return pix_clk_period_picosec;
1230}
1231
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001232static int fb_probe(struct platform_device *device)
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001233{
1234 struct da8xx_lcdc_platform_data *fb_pdata =
1235 device->dev.platform_data;
1236 struct lcd_ctrl_config *lcd_cfg;
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301237 struct fb_videomode *lcdc_info;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001238 struct fb_info *da8xx_fb_info;
1239 struct clk *fb_clk = NULL;
1240 struct da8xx_fb_par *par;
1241 resource_size_t len;
1242 int ret, i;
Aditya Nellutla3b9cc4e2012-05-23 11:36:31 +05301243 unsigned long ulcm;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001244
1245 if (fb_pdata == NULL) {
1246 dev_err(&device->dev, "Can not get platform data\n");
1247 return -ENOENT;
1248 }
1249
1250 lcdc_regs = platform_get_resource(device, IORESOURCE_MEM, 0);
1251 if (!lcdc_regs) {
1252 dev_err(&device->dev,
1253 "Can not get memory resource for LCD controller\n");
1254 return -ENOENT;
1255 }
1256
1257 len = resource_size(lcdc_regs);
1258
1259 lcdc_regs = request_mem_region(lcdc_regs->start, len, lcdc_regs->name);
1260 if (!lcdc_regs)
1261 return -EBUSY;
1262
Arnd Bergmann34aef6e2012-09-14 20:33:43 +00001263 da8xx_fb_reg_base = ioremap(lcdc_regs->start, len);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001264 if (!da8xx_fb_reg_base) {
1265 ret = -EBUSY;
1266 goto err_request_mem;
1267 }
1268
Manjunathappa81cec3c2012-11-20 18:11:01 +05301269 fb_clk = clk_get(&device->dev, "fck");
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001270 if (IS_ERR(fb_clk)) {
1271 dev_err(&device->dev, "Can not get device clock\n");
1272 ret = -ENODEV;
1273 goto err_ioremap;
1274 }
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301275
1276 pm_runtime_enable(&device->dev);
1277 pm_runtime_get_sync(&device->dev);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001278
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +05301279 /* Determine LCD IP Version */
1280 switch (lcdc_read(LCD_PID_REG)) {
1281 case 0x4C100102:
1282 lcd_revision = LCD_VERSION_1;
1283 break;
1284 case 0x4F200800:
Pantelis Antoniou8f22e8e2012-10-31 17:56:24 +02001285 case 0x4F201000:
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +05301286 lcd_revision = LCD_VERSION_2;
1287 break;
1288 default:
1289 dev_warn(&device->dev, "Unknown PID Reg value 0x%x, "
1290 "defaulting to LCD revision 1\n",
1291 lcdc_read(LCD_PID_REG));
1292 lcd_revision = LCD_VERSION_1;
1293 break;
1294 }
1295
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001296 for (i = 0, lcdc_info = known_lcd_panels;
1297 i < ARRAY_SIZE(known_lcd_panels);
1298 i++, lcdc_info++) {
1299 if (strcmp(fb_pdata->type, lcdc_info->name) == 0)
1300 break;
1301 }
1302
1303 if (i == ARRAY_SIZE(known_lcd_panels)) {
1304 dev_err(&device->dev, "GLCD: No valid panel found\n");
Roel Kluindd04a6b2009-11-17 14:06:15 -08001305 ret = -ENODEV;
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301306 goto err_pm_runtime_disable;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001307 } else
1308 dev_info(&device->dev, "GLCD: Found %s panel\n",
1309 fb_pdata->type);
1310
1311 lcd_cfg = (struct lcd_ctrl_config *)fb_pdata->controller_data;
1312
1313 da8xx_fb_info = framebuffer_alloc(sizeof(struct da8xx_fb_par),
1314 &device->dev);
1315 if (!da8xx_fb_info) {
1316 dev_dbg(&device->dev, "Memory allocation failed for fb_info\n");
1317 ret = -ENOMEM;
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301318 goto err_pm_runtime_disable;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001319 }
1320
1321 par = da8xx_fb_info->par;
Chaithrika U S8097b172009-12-15 16:46:29 -08001322 par->lcdc_clk = fb_clk;
Manjunathappa, Prakashf8209172012-01-03 18:10:51 +05301323#ifdef CONFIG_CPU_FREQ
1324 par->lcd_fck_rate = clk_get_rate(fb_clk);
1325#endif
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301326 par->pxl_clk = lcdc_info->pixclock;
Chaithrika U S36113802009-12-15 16:46:38 -08001327 if (fb_pdata->panel_power_ctrl) {
1328 par->panel_power_ctrl = fb_pdata->panel_power_ctrl;
1329 par->panel_power_ctrl(1);
1330 }
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001331
1332 if (lcd_init(par, lcd_cfg, lcdc_info) < 0) {
1333 dev_err(&device->dev, "lcd_init failed\n");
1334 ret = -EFAULT;
1335 goto err_release_fb;
1336 }
1337
1338 /* allocate frame buffer */
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301339 par->vram_size = lcdc_info->xres * lcdc_info->yres * lcd_cfg->bpp;
1340 ulcm = lcm((lcdc_info->xres * lcd_cfg->bpp)/8, PAGE_SIZE);
Aditya Nellutla3b9cc4e2012-05-23 11:36:31 +05301341 par->vram_size = roundup(par->vram_size/8, ulcm);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001342 par->vram_size = par->vram_size * LCD_NUM_BUFFERS;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001343
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001344 par->vram_virt = dma_alloc_coherent(NULL,
1345 par->vram_size,
1346 (resource_size_t *) &par->vram_phys,
1347 GFP_KERNEL | GFP_DMA);
1348 if (!par->vram_virt) {
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001349 dev_err(&device->dev,
1350 "GLCD: kmalloc for frame buffer failed\n");
1351 ret = -EINVAL;
1352 goto err_release_fb;
1353 }
1354
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001355 da8xx_fb_info->screen_base = (char __iomem *) par->vram_virt;
1356 da8xx_fb_fix.smem_start = par->vram_phys;
1357 da8xx_fb_fix.smem_len = par->vram_size;
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301358 da8xx_fb_fix.line_length = (lcdc_info->xres * lcd_cfg->bpp) / 8;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001359
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001360 par->dma_start = par->vram_phys;
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301361 par->dma_end = par->dma_start + lcdc_info->yres *
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001362 da8xx_fb_fix.line_length - 1;
1363
1364 /* allocate palette buffer */
1365 par->v_palette_base = dma_alloc_coherent(NULL,
1366 PALETTE_SIZE,
1367 (resource_size_t *)
1368 &par->p_palette_base,
1369 GFP_KERNEL | GFP_DMA);
1370 if (!par->v_palette_base) {
1371 dev_err(&device->dev,
1372 "GLCD: kmalloc for palette buffer failed\n");
1373 ret = -EINVAL;
1374 goto err_release_fb_mem;
1375 }
1376 memset(par->v_palette_base, 0, PALETTE_SIZE);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001377
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001378 par->irq = platform_get_irq(device, 0);
1379 if (par->irq < 0) {
1380 ret = -ENOENT;
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001381 goto err_release_pl_mem;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001382 }
1383
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001384 /* Initialize par */
1385 da8xx_fb_info->var.bits_per_pixel = lcd_cfg->bpp;
1386
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301387 da8xx_fb_var.xres = lcdc_info->xres;
1388 da8xx_fb_var.xres_virtual = lcdc_info->xres;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001389
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301390 da8xx_fb_var.yres = lcdc_info->yres;
1391 da8xx_fb_var.yres_virtual = lcdc_info->yres * LCD_NUM_BUFFERS;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001392
1393 da8xx_fb_var.grayscale =
Manjunathappa, Prakash3b43ad22012-10-16 10:23:16 +05301394 lcd_cfg->panel_shade == MONOCHROME ? 1 : 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001395 da8xx_fb_var.bits_per_pixel = lcd_cfg->bpp;
1396
Manjunathappa, Prakashf772fab2012-10-16 10:23:15 +05301397 da8xx_fb_var.hsync_len = lcdc_info->hsync_len;
1398 da8xx_fb_var.vsync_len = lcdc_info->vsync_len;
1399 da8xx_fb_var.right_margin = lcdc_info->right_margin;
1400 da8xx_fb_var.left_margin = lcdc_info->left_margin;
1401 da8xx_fb_var.lower_margin = lcdc_info->lower_margin;
1402 da8xx_fb_var.upper_margin = lcdc_info->upper_margin;
Manjunathappa, Prakash12fa8352012-02-09 11:54:06 +05301403 da8xx_fb_var.pixclock = da8xxfb_pixel_clk_period(par);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001404
1405 /* Initialize fbinfo */
1406 da8xx_fb_info->flags = FBINFO_FLAG_DEFAULT;
1407 da8xx_fb_info->fix = da8xx_fb_fix;
1408 da8xx_fb_info->var = da8xx_fb_var;
1409 da8xx_fb_info->fbops = &da8xx_fb_ops;
1410 da8xx_fb_info->pseudo_palette = par->pseudo_palette;
Sudhakar Rajashekhara3510b8f2009-12-01 13:17:43 -08001411 da8xx_fb_info->fix.visual = (da8xx_fb_info->var.bits_per_pixel <= 8) ?
1412 FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001413
1414 ret = fb_alloc_cmap(&da8xx_fb_info->cmap, PALETTE_SIZE, 0);
1415 if (ret)
Caglar Akyuz93c176f2010-11-30 20:04:14 +00001416 goto err_release_pl_mem;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001417 da8xx_fb_info->cmap.len = par->palette_sz;
1418
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001419 /* initialize var_screeninfo */
1420 da8xx_fb_var.activate = FB_ACTIVATE_FORCE;
1421 fb_set_var(da8xx_fb_info, &da8xx_fb_var);
1422
1423 dev_set_drvdata(&device->dev, da8xx_fb_info);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001424
1425 /* initialize the vsync wait queue */
1426 init_waitqueue_head(&par->vsync_wait);
1427 par->vsync_timeout = HZ / 5;
Manjunathappa, Prakashdeb95c62012-07-18 21:01:56 +05301428 par->which_dma_channel_done = -1;
1429 spin_lock_init(&par->lock_for_chan_update);
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001430
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001431 /* Register the Frame Buffer */
1432 if (register_framebuffer(da8xx_fb_info) < 0) {
1433 dev_err(&device->dev,
1434 "GLCD: Frame Buffer Registration Failed!\n");
1435 ret = -EINVAL;
1436 goto err_dealloc_cmap;
1437 }
1438
Chaithrika U Se04e5482009-12-15 16:46:29 -08001439#ifdef CONFIG_CPU_FREQ
1440 ret = lcd_da8xx_cpufreq_register(par);
1441 if (ret) {
1442 dev_err(&device->dev, "failed to register cpufreq\n");
1443 goto err_cpu_freq;
1444 }
1445#endif
Caglar Akyuz93c176f2010-11-30 20:04:14 +00001446
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +05301447 if (lcd_revision == LCD_VERSION_1)
1448 lcdc_irq_handler = lcdc_irq_handler_rev01;
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +05301449 else {
1450 init_waitqueue_head(&frame_done_wq);
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +05301451 lcdc_irq_handler = lcdc_irq_handler_rev02;
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +05301452 }
Manjunathappa, Prakashc6daf052011-07-05 15:51:20 +05301453
1454 ret = request_irq(par->irq, lcdc_irq_handler, 0,
1455 DRIVER_NAME, par);
Caglar Akyuz93c176f2010-11-30 20:04:14 +00001456 if (ret)
1457 goto irq_freq;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001458 return 0;
1459
Caglar Akyuz93c176f2010-11-30 20:04:14 +00001460irq_freq:
Chaithrika U Se04e5482009-12-15 16:46:29 -08001461#ifdef CONFIG_CPU_FREQ
axel lin360c2022011-01-20 03:50:51 +00001462 lcd_da8xx_cpufreq_deregister(par);
Chaithrika U Se04e5482009-12-15 16:46:29 -08001463err_cpu_freq:
Manjunathappa, Prakash3a844092012-02-09 10:34:38 +05301464#endif
Chaithrika U Se04e5482009-12-15 16:46:29 -08001465 unregister_framebuffer(da8xx_fb_info);
Chaithrika U Se04e5482009-12-15 16:46:29 -08001466
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001467err_dealloc_cmap:
1468 fb_dealloc_cmap(&da8xx_fb_info->cmap);
1469
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001470err_release_pl_mem:
1471 dma_free_coherent(NULL, PALETTE_SIZE, par->v_palette_base,
1472 par->p_palette_base);
1473
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001474err_release_fb_mem:
Martin Ambrose1f9c3e12010-05-24 14:34:01 -07001475 dma_free_coherent(NULL, par->vram_size, par->vram_virt, par->vram_phys);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001476
1477err_release_fb:
1478 framebuffer_release(da8xx_fb_info);
1479
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301480err_pm_runtime_disable:
1481 pm_runtime_put_sync(&device->dev);
1482 pm_runtime_disable(&device->dev);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001483
1484err_ioremap:
Arnd Bergmann34aef6e2012-09-14 20:33:43 +00001485 iounmap(da8xx_fb_reg_base);
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001486
1487err_request_mem:
1488 release_mem_region(lcdc_regs->start, len);
1489
1490 return ret;
1491}
1492
1493#ifdef CONFIG_PM
Manjunathappa, Prakash7a93cbb2012-09-25 19:41:41 +05301494struct lcdc_context {
1495 u32 clk_enable;
1496 u32 ctrl;
1497 u32 dma_ctrl;
1498 u32 raster_timing_0;
1499 u32 raster_timing_1;
1500 u32 raster_timing_2;
1501 u32 int_enable_set;
1502 u32 dma_frm_buf_base_addr_0;
1503 u32 dma_frm_buf_ceiling_addr_0;
1504 u32 dma_frm_buf_base_addr_1;
1505 u32 dma_frm_buf_ceiling_addr_1;
1506 u32 raster_ctrl;
1507} reg_context;
1508
1509static void lcd_context_save(void)
1510{
1511 if (lcd_revision == LCD_VERSION_2) {
1512 reg_context.clk_enable = lcdc_read(LCD_CLK_ENABLE_REG);
1513 reg_context.int_enable_set = lcdc_read(LCD_INT_ENABLE_SET_REG);
1514 }
1515
1516 reg_context.ctrl = lcdc_read(LCD_CTRL_REG);
1517 reg_context.dma_ctrl = lcdc_read(LCD_DMA_CTRL_REG);
1518 reg_context.raster_timing_0 = lcdc_read(LCD_RASTER_TIMING_0_REG);
1519 reg_context.raster_timing_1 = lcdc_read(LCD_RASTER_TIMING_1_REG);
1520 reg_context.raster_timing_2 = lcdc_read(LCD_RASTER_TIMING_2_REG);
1521 reg_context.dma_frm_buf_base_addr_0 =
1522 lcdc_read(LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
1523 reg_context.dma_frm_buf_ceiling_addr_0 =
1524 lcdc_read(LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
1525 reg_context.dma_frm_buf_base_addr_1 =
1526 lcdc_read(LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
1527 reg_context.dma_frm_buf_ceiling_addr_1 =
1528 lcdc_read(LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
1529 reg_context.raster_ctrl = lcdc_read(LCD_RASTER_CTRL_REG);
1530 return;
1531}
1532
1533static void lcd_context_restore(void)
1534{
1535 if (lcd_revision == LCD_VERSION_2) {
1536 lcdc_write(reg_context.clk_enable, LCD_CLK_ENABLE_REG);
1537 lcdc_write(reg_context.int_enable_set, LCD_INT_ENABLE_SET_REG);
1538 }
1539
1540 lcdc_write(reg_context.ctrl, LCD_CTRL_REG);
1541 lcdc_write(reg_context.dma_ctrl, LCD_DMA_CTRL_REG);
1542 lcdc_write(reg_context.raster_timing_0, LCD_RASTER_TIMING_0_REG);
1543 lcdc_write(reg_context.raster_timing_1, LCD_RASTER_TIMING_1_REG);
1544 lcdc_write(reg_context.raster_timing_2, LCD_RASTER_TIMING_2_REG);
1545 lcdc_write(reg_context.dma_frm_buf_base_addr_0,
1546 LCD_DMA_FRM_BUF_BASE_ADDR_0_REG);
1547 lcdc_write(reg_context.dma_frm_buf_ceiling_addr_0,
1548 LCD_DMA_FRM_BUF_CEILING_ADDR_0_REG);
1549 lcdc_write(reg_context.dma_frm_buf_base_addr_1,
1550 LCD_DMA_FRM_BUF_BASE_ADDR_1_REG);
1551 lcdc_write(reg_context.dma_frm_buf_ceiling_addr_1,
1552 LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
1553 lcdc_write(reg_context.raster_ctrl, LCD_RASTER_CTRL_REG);
1554 return;
1555}
1556
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001557static int fb_suspend(struct platform_device *dev, pm_message_t state)
1558{
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001559 struct fb_info *info = platform_get_drvdata(dev);
1560 struct da8xx_fb_par *par = info->par;
1561
Torben Hohnac751ef2011-01-25 15:07:35 -08001562 console_lock();
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001563 if (par->panel_power_ctrl)
1564 par->panel_power_ctrl(0);
1565
1566 fb_set_suspend(info, 1);
Manjunathappa, Prakasha481b372012-08-24 18:43:00 +05301567 lcd_disable_raster(true);
Manjunathappa, Prakash7a93cbb2012-09-25 19:41:41 +05301568 lcd_context_save();
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301569 pm_runtime_put_sync(&dev->dev);
Torben Hohnac751ef2011-01-25 15:07:35 -08001570 console_unlock();
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001571
1572 return 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001573}
1574static int fb_resume(struct platform_device *dev)
1575{
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001576 struct fb_info *info = platform_get_drvdata(dev);
1577 struct da8xx_fb_par *par = info->par;
1578
Torben Hohnac751ef2011-01-25 15:07:35 -08001579 console_lock();
Manjunathappa, Prakash9dd44d52012-09-21 21:20:57 +05301580 pm_runtime_get_sync(&dev->dev);
Manjunathappa, Prakash7a93cbb2012-09-25 19:41:41 +05301581 lcd_context_restore();
Manjunathappa, Prakash67900812012-08-31 19:48:59 +05301582 if (par->blank == FB_BLANK_UNBLANK) {
1583 lcd_enable_raster();
Manjunathappa, Prakashf7c848b2012-07-24 09:45:25 +05301584
Manjunathappa, Prakash67900812012-08-31 19:48:59 +05301585 if (par->panel_power_ctrl)
1586 par->panel_power_ctrl(1);
1587 }
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001588
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001589 fb_set_suspend(info, 0);
Torben Hohnac751ef2011-01-25 15:07:35 -08001590 console_unlock();
Chaithrika U S1d3c6c72009-12-15 16:46:39 -08001591
1592 return 0;
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001593}
1594#else
1595#define fb_suspend NULL
1596#define fb_resume NULL
1597#endif
1598
1599static struct platform_driver da8xx_fb_driver = {
1600 .probe = fb_probe,
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001601 .remove = fb_remove,
Sudhakar Rajashekhara4ed824d2009-09-22 16:47:06 -07001602 .suspend = fb_suspend,
1603 .resume = fb_resume,
1604 .driver = {
1605 .name = DRIVER_NAME,
1606 .owner = THIS_MODULE,
1607 },
1608};
1609
1610static int __init da8xx_fb_init(void)
1611{
1612 return platform_driver_register(&da8xx_fb_driver);
1613}
1614
1615static void __exit da8xx_fb_cleanup(void)
1616{
1617 platform_driver_unregister(&da8xx_fb_driver);
1618}
1619
1620module_init(da8xx_fb_init);
1621module_exit(da8xx_fb_cleanup);
1622
1623MODULE_DESCRIPTION("Framebuffer driver for TI da8xx/omap-l1xx");
1624MODULE_AUTHOR("Texas Instruments");
1625MODULE_LICENSE("GPL");