blob: 1d8d91a776bc443a392aba44fb03af24abd32f73 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * BRIEF MODULE DESCRIPTION
3 * Au1100 LCD Driver.
4 *
Pete Popov3b495f22005-04-04 01:06:19 +00005 * Rewritten for 2.6 by Embedded Alley Solutions
6 * <source@embeddedalley.com>, based on submissions by
7 * Karl Lessard <klessard@sunrisetelecom.com>
8 * <c.pellegrin@exadron.com>
9 *
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -070010 * PM support added by Rodolfo Giometti <giometti@linux.it>
Rodolfo Giomettica27ac42006-10-03 01:14:36 -070011 * Cursor enable/disable by Rodolfo Giometti <giometti@linux.it>
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -070012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Copyright 2002 MontaVista Software
14 * Author: MontaVista Software, Inc.
15 * ppopov@mvista.com or source@mvista.com
16 *
17 * Copyright 2002 Alchemy Semiconductor
18 * Author: Alchemy Semiconductor
19 *
20 * Based on:
21 * linux/drivers/video/skeletonfb.c -- Skeleton for a frame buffer device
22 * Created 28 Dec 1997 by Geert Uytterhoeven
23 *
24 * This program is free software; you can redistribute it and/or modify it
25 * under the terms of the GNU General Public License as published by the
26 * Free Software Foundation; either version 2 of the License, or (at your
27 * option) any later version.
28 *
29 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
30 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
31 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
32 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
35 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
36 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * You should have received a copy of the GNU General Public License along
41 * with this program; if not, write to the Free Software Foundation, Inc.,
42 * 675 Mass Ave, Cambridge, MA 02139, USA.
43 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/module.h>
45#include <linux/kernel.h>
46#include <linux/errno.h>
47#include <linux/string.h>
48#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/fb.h>
50#include <linux/init.h>
Pete Popov3b495f22005-04-04 01:06:19 +000051#include <linux/interrupt.h>
52#include <linux/ctype.h>
53#include <linux/dma-mapping.h>
Freddy Spierenburgcacfc8c2006-02-24 13:04:17 -080054#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090055#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Pete Popov3b495f22005-04-04 01:06:19 +000057#include <asm/mach-au1x00/au1000.h>
58
59#define DEBUG 0
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include "au1100fb.h"
62
Pete Popov3b495f22005-04-04 01:06:19 +000063#define DRIVER_NAME "au1100fb"
64#define DRIVER_DESC "LCD controller driver for AU1100 processors"
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Pete Popov3b495f22005-04-04 01:06:19 +000066#define to_au1100fb_device(_info) \
67 (_info ? container_of(_info, struct au1100fb_device, info) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Pete Popov3b495f22005-04-04 01:06:19 +000069/* Bitfields format supported by the controller. Note that the order of formats
70 * SHOULD be the same as in the LCD_CONTROL_SBPPF field, so we can retrieve the
71 * right pixel format by doing rgb_bitfields[LCD_CONTROL_SBPPF_XXX >> LCD_CONTROL_SBPPF]
72 */
73struct fb_bitfield rgb_bitfields[][4] =
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Pete Popov3b495f22005-04-04 01:06:19 +000075 /* Red, Green, Blue, Transp */
76 { { 10, 6, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 0, 0, 0 } },
77 { { 11, 5, 0 }, { 5, 6, 0 }, { 0, 5, 0 }, { 0, 0, 0 } },
78 { { 11, 5, 0 }, { 6, 5, 0 }, { 0, 6, 0 }, { 0, 0, 0 } },
79 { { 10, 5, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 15, 1, 0 } },
80 { { 11, 5, 0 }, { 6, 5, 0 }, { 1, 5, 0 }, { 0, 1, 0 } },
81
82 /* The last is used to describe 12bpp format */
83 { { 8, 4, 0 }, { 4, 4, 0 }, { 0, 4, 0 }, { 0, 0, 0 } },
84};
85
Ralf Baechle362992b2010-07-26 19:08:15 +010086static struct fb_fix_screeninfo au1100fb_fix __devinitdata = {
Pete Popov3b495f22005-04-04 01:06:19 +000087 .id = "AU1100 FB",
88 .xpanstep = 1,
89 .ypanstep = 1,
90 .type = FB_TYPE_PACKED_PIXELS,
91 .accel = FB_ACCEL_NONE,
92};
93
Ralf Baechle362992b2010-07-26 19:08:15 +010094static struct fb_var_screeninfo au1100fb_var __devinitdata = {
Pete Popov3b495f22005-04-04 01:06:19 +000095 .activate = FB_ACTIVATE_NOW,
96 .height = -1,
97 .width = -1,
98 .vmode = FB_VMODE_NONINTERLACED,
99};
100
Yoichi Yuasa8e92f212007-08-22 14:02:03 -0700101/* fb_blank
102 * Blank the screen. Depending on the mode, the screen will be
103 * activated with the backlight color, or desactivated
104 */
105static int au1100fb_fb_blank(int blank_mode, struct fb_info *fbi)
106{
107 struct au1100fb_device *fbdev = to_au1100fb_device(fbi);
108
109 print_dbg("fb_blank %d %p", blank_mode, fbi);
110
111 switch (blank_mode) {
112
113 case VESA_NO_BLANKING:
114 /* Turn on panel */
115 fbdev->regs->lcd_control |= LCD_CONTROL_GO;
116#ifdef CONFIG_MIPS_PB1100
Manuel Laussd121c3f2011-09-30 20:49:43 +0200117 if (fbdev->panel_idx == 1) {
Yoichi Yuasa8e92f212007-08-22 14:02:03 -0700118 au_writew(au_readw(PB1100_G_CONTROL)
119 | (PB1100_G_CONTROL_BL | PB1100_G_CONTROL_VDD),
120 PB1100_G_CONTROL);
121 }
122#endif
123 au_sync();
124 break;
125
126 case VESA_VSYNC_SUSPEND:
127 case VESA_HSYNC_SUSPEND:
128 case VESA_POWERDOWN:
129 /* Turn off panel */
130 fbdev->regs->lcd_control &= ~LCD_CONTROL_GO;
131#ifdef CONFIG_MIPS_PB1100
Manuel Laussd121c3f2011-09-30 20:49:43 +0200132 if (fbdev->panel_idx == 1) {
Yoichi Yuasa8e92f212007-08-22 14:02:03 -0700133 au_writew(au_readw(PB1100_G_CONTROL)
134 & ~(PB1100_G_CONTROL_BL | PB1100_G_CONTROL_VDD),
135 PB1100_G_CONTROL);
136 }
137#endif
138 au_sync();
139 break;
140 default:
141 break;
142
143 }
144 return 0;
145}
146
Pete Popov3b495f22005-04-04 01:06:19 +0000147/*
148 * Set hardware with var settings. This will enable the controller with a specific
149 * mode, normally validated with the fb_check_var method
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 */
Pete Popov3b495f22005-04-04 01:06:19 +0000151int au1100fb_setmode(struct au1100fb_device *fbdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Pete Popov3b495f22005-04-04 01:06:19 +0000153 struct fb_info *info = &fbdev->info;
154 u32 words;
155 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Pete Popov3b495f22005-04-04 01:06:19 +0000157 if (!fbdev)
158 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Pete Popov3b495f22005-04-04 01:06:19 +0000160 /* Update var-dependent FB info */
161 if (panel_is_active(fbdev->panel) || panel_is_color(fbdev->panel)) {
162 if (info->var.bits_per_pixel <= 8) {
163 /* palettized */
164 info->var.red.offset = 0;
165 info->var.red.length = info->var.bits_per_pixel;
166 info->var.red.msb_right = 0;
167
168 info->var.green.offset = 0;
169 info->var.green.length = info->var.bits_per_pixel;
170 info->var.green.msb_right = 0;
171
172 info->var.blue.offset = 0;
173 info->var.blue.length = info->var.bits_per_pixel;
174 info->var.blue.msb_right = 0;
175
176 info->var.transp.offset = 0;
177 info->var.transp.length = 0;
178 info->var.transp.msb_right = 0;
179
180 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
181 info->fix.line_length = info->var.xres_virtual /
182 (8/info->var.bits_per_pixel);
183 } else {
184 /* non-palettized */
185 index = (fbdev->panel->control_base & LCD_CONTROL_SBPPF_MASK) >> LCD_CONTROL_SBPPF_BIT;
186 info->var.red = rgb_bitfields[index][0];
187 info->var.green = rgb_bitfields[index][1];
188 info->var.blue = rgb_bitfields[index][2];
189 info->var.transp = rgb_bitfields[index][3];
190
191 info->fix.visual = FB_VISUAL_TRUECOLOR;
192 info->fix.line_length = info->var.xres_virtual << 1; /* depth=16 */
Rodolfo Giomettibb39e412006-08-05 12:14:22 -0700193 }
Pete Popov3b495f22005-04-04 01:06:19 +0000194 } else {
195 /* mono */
196 info->fix.visual = FB_VISUAL_MONO10;
197 info->fix.line_length = info->var.xres_virtual / 8;
198 }
199
200 info->screen_size = info->fix.line_length * info->var.yres_virtual;
Rodolfo Giomettifd2d5432006-08-05 12:14:19 -0700201 info->var.rotate = ((fbdev->panel->control_base&LCD_CONTROL_SM_MASK) \
202 >> LCD_CONTROL_SM_BIT) * 90;
Pete Popov3b495f22005-04-04 01:06:19 +0000203
204 /* Determine BPP mode and format */
Rodolfo Giomettifd2d5432006-08-05 12:14:19 -0700205 fbdev->regs->lcd_control = fbdev->panel->control_base;
Rodolfo Giomettibb39e412006-08-05 12:14:22 -0700206 fbdev->regs->lcd_horztiming = fbdev->panel->horztiming;
207 fbdev->regs->lcd_verttiming = fbdev->panel->verttiming;
208 fbdev->regs->lcd_clkcontrol = fbdev->panel->clkcontrol_base;
Pete Popov3b495f22005-04-04 01:06:19 +0000209 fbdev->regs->lcd_intenable = 0;
210 fbdev->regs->lcd_intstatus = 0;
Pete Popov3b495f22005-04-04 01:06:19 +0000211 fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(fbdev->fb_phys);
212
213 if (panel_is_dual(fbdev->panel)) {
214 /* Second panel display seconf half of screen if possible,
215 * otherwise display the same as the first panel */
216 if (info->var.yres_virtual >= (info->var.yres << 1)) {
217 fbdev->regs->lcd_dmaaddr1 = LCD_DMA_SA_N(fbdev->fb_phys +
218 (info->fix.line_length *
219 (info->var.yres_virtual >> 1)));
220 } else {
221 fbdev->regs->lcd_dmaaddr1 = LCD_DMA_SA_N(fbdev->fb_phys);
222 }
223 }
224
225 words = info->fix.line_length / sizeof(u32);
226 if (!info->var.rotate || (info->var.rotate == 180)) {
227 words *= info->var.yres_virtual;
228 if (info->var.rotate /* 180 */) {
229 words -= (words % 8); /* should be divisable by 8 */
230 }
231 }
232 fbdev->regs->lcd_words = LCD_WRD_WRDS_N(words);
233
234 fbdev->regs->lcd_pwmdiv = 0;
235 fbdev->regs->lcd_pwmhi = 0;
236
237 /* Resume controller */
238 fbdev->regs->lcd_control |= LCD_CONTROL_GO;
Rodolfo Giomettibb39e412006-08-05 12:14:22 -0700239 mdelay(10);
240 au1100fb_fb_blank(VESA_NO_BLANKING, info);
Pete Popov3b495f22005-04-04 01:06:19 +0000241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 return 0;
243}
244
Pete Popov3b495f22005-04-04 01:06:19 +0000245/* fb_setcolreg
246 * Set color in LCD palette.
247 */
248int au1100fb_fb_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue, unsigned transp, struct fb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700250 struct au1100fb_device *fbdev;
251 u32 *palette;
Pete Popov3b495f22005-04-04 01:06:19 +0000252 u32 value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700254 fbdev = to_au1100fb_device(fbi);
255 palette = fbdev->regs->lcd_pallettebase;
256
Pete Popov3b495f22005-04-04 01:06:19 +0000257 if (regno > (AU1100_LCD_NBR_PALETTE_ENTRIES - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return -EINVAL;
Pete Popov3b495f22005-04-04 01:06:19 +0000259
260 if (fbi->var.grayscale) {
261 /* Convert color to grayscale */
262 red = green = blue =
263 (19595 * red + 38470 * green + 7471 * blue) >> 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265
Pete Popov3b495f22005-04-04 01:06:19 +0000266 if (fbi->fix.visual == FB_VISUAL_TRUECOLOR) {
267 /* Place color in the pseudopalette */
268 if (regno > 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return -EINVAL;
270
Pete Popov3b495f22005-04-04 01:06:19 +0000271 palette = (u32*)fbi->pseudo_palette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Pete Popov3b495f22005-04-04 01:06:19 +0000273 red >>= (16 - fbi->var.red.length);
274 green >>= (16 - fbi->var.green.length);
275 blue >>= (16 - fbi->var.blue.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Pete Popov3b495f22005-04-04 01:06:19 +0000277 value = (red << fbi->var.red.offset) |
278 (green << fbi->var.green.offset)|
279 (blue << fbi->var.blue.offset);
280 value &= 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Pete Popov3b495f22005-04-04 01:06:19 +0000282 } else if (panel_is_active(fbdev->panel)) {
283 /* COLOR TFT PALLETTIZED (use RGB 565) */
284 value = (red & 0xF800)|((green >> 5) & 0x07E0)|((blue >> 11) & 0x001F);
285 value &= 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Pete Popov3b495f22005-04-04 01:06:19 +0000287 } else if (panel_is_color(fbdev->panel)) {
288 /* COLOR STN MODE */
289 value = (((panel_swap_rgb(fbdev->panel) ? blue : red) >> 12) & 0x000F) |
290 ((green >> 8) & 0x00F0) |
291 (((panel_swap_rgb(fbdev->panel) ? red : blue) >> 4) & 0x0F00);
292 value &= 0xFFF;
293 } else {
294 /* MONOCHROME MODE */
295 value = (green >> 12) & 0x000F;
296 value &= 0xF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
298
Pete Popov3b495f22005-04-04 01:06:19 +0000299 palette[regno] = value;
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return 0;
302}
303
Pete Popov3b495f22005-04-04 01:06:19 +0000304/* fb_pan_display
305 * Pan display in x and/or y as specified
306 */
307int au1100fb_fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700309 struct au1100fb_device *fbdev;
Pete Popov3b495f22005-04-04 01:06:19 +0000310 int dy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700312 fbdev = to_au1100fb_device(fbi);
313
Pete Popov3b495f22005-04-04 01:06:19 +0000314 print_dbg("fb_pan_display %p %p", var, fbi);
315
316 if (!var || !fbdev) {
317 return -EINVAL;
318 }
319
320 if (var->xoffset - fbi->var.xoffset) {
321 /* No support for X panning for now! */
322 return -EINVAL;
323 }
324
325 print_dbg("fb_pan_display 2 %p %p", var, fbi);
326 dy = var->yoffset - fbi->var.yoffset;
327 if (dy) {
328
329 u32 dmaaddr;
330
331 print_dbg("Panning screen of %d lines", dy);
332
333 dmaaddr = fbdev->regs->lcd_dmaaddr0;
334 dmaaddr += (fbi->fix.line_length * dy);
335
336 /* TODO: Wait for current frame to finished */
337 fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(dmaaddr);
338
339 if (panel_is_dual(fbdev->panel)) {
340 dmaaddr = fbdev->regs->lcd_dmaaddr1;
341 dmaaddr += (fbi->fix.line_length * dy);
342 fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(dmaaddr);
343 }
344 }
345 print_dbg("fb_pan_display 3 %p %p", var, fbi);
346
347 return 0;
348}
349
350/* fb_rotate
351 * Rotate the display of this angle. This doesn't seems to be used by the core,
352 * but as our hardware supports it, so why not implementing it...
353 */
354void au1100fb_fb_rotate(struct fb_info *fbi, int angle)
355{
356 struct au1100fb_device *fbdev = to_au1100fb_device(fbi);
357
358 print_dbg("fb_rotate %p %d", fbi, angle);
359
360 if (fbdev && (angle > 0) && !(angle % 90)) {
361
362 fbdev->regs->lcd_control &= ~LCD_CONTROL_GO;
363
364 fbdev->regs->lcd_control &= ~(LCD_CONTROL_SM_MASK);
365 fbdev->regs->lcd_control |= ((angle/90) << LCD_CONTROL_SM_BIT);
366
367 fbdev->regs->lcd_control |= LCD_CONTROL_GO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
369}
370
Pete Popov3b495f22005-04-04 01:06:19 +0000371/* fb_mmap
372 * Map video memory in user space. We don't use the generic fb_mmap method mainly
373 * to allow the use of the TLB streaming flag (CCA=6)
374 */
Christoph Hellwig216d5262006-01-14 13:21:25 -0800375int au1100fb_fb_mmap(struct fb_info *fbi, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700377 struct au1100fb_device *fbdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700379 fbdev = to_au1100fb_device(fbi);
380
Pete Popov3b495f22005-04-04 01:06:19 +0000381 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 pgprot_val(vma->vm_page_prot) |= (6 << 9); //CCA=6
383
Linus Torvaldse48f1b12014-01-28 09:01:19 +0530384 return vm_iomap_memory(vma, fbdev->fb_phys, fbdev->fb_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
Pete Popov3b495f22005-04-04 01:06:19 +0000387static struct fb_ops au1100fb_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Pete Popov3b495f22005-04-04 01:06:19 +0000389 .owner = THIS_MODULE,
390 .fb_setcolreg = au1100fb_fb_setcolreg,
391 .fb_blank = au1100fb_fb_blank,
392 .fb_pan_display = au1100fb_fb_pan_display,
393 .fb_fillrect = cfb_fillrect,
394 .fb_copyarea = cfb_copyarea,
395 .fb_imageblit = cfb_imageblit,
396 .fb_rotate = au1100fb_fb_rotate,
397 .fb_mmap = au1100fb_fb_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398};
399
400
Pete Popov3b495f22005-04-04 01:06:19 +0000401/*-------------------------------------------------------------------------*/
402
Manuel Laussd121c3f2011-09-30 20:49:43 +0200403static int au1100fb_setup(struct au1100fb_device *fbdev)
404{
405 char *this_opt, *options;
406 int num_panels = ARRAY_SIZE(known_lcd_panels);
407
408 if (num_panels <= 0) {
409 print_err("No LCD panels supported by driver!");
410 return -ENODEV;
411 }
412
413 if (fb_get_options(DRIVER_NAME, &options))
414 return -ENODEV;
415 if (!options)
416 return -ENODEV;
417
418 while ((this_opt = strsep(&options, ",")) != NULL) {
419 /* Panel option */
420 if (!strncmp(this_opt, "panel:", 6)) {
421 int i;
422 this_opt += 6;
423 for (i = 0; i < num_panels; i++) {
424 if (!strncmp(this_opt, known_lcd_panels[i].name,
425 strlen(this_opt))) {
426 fbdev->panel = &known_lcd_panels[i];
427 fbdev->panel_idx = i;
428 break;
429 }
430 }
431 if (i >= num_panels) {
432 print_warn("Panel '%s' not supported!", this_opt);
433 return -ENODEV;
434 }
435 }
436 /* Unsupported option */
437 else
438 print_warn("Unsupported option \"%s\"", this_opt);
439 }
440
441 print_info("Panel=%s", fbdev->panel->name);
442
443 return 0;
444}
Pete Popov3b495f22005-04-04 01:06:19 +0000445
Ralf Baechle362992b2010-07-26 19:08:15 +0100446static int __devinit au1100fb_drv_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Pete Popov3b495f22005-04-04 01:06:19 +0000448 struct au1100fb_device *fbdev = NULL;
449 struct resource *regs_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 unsigned long page;
Pete Popov3b495f22005-04-04 01:06:19 +0000451 u32 sys_clksrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Pete Popov3b495f22005-04-04 01:06:19 +0000453 /* Allocate new device private */
Julia Lawall1c166972012-01-21 16:01:58 +0100454 fbdev = devm_kzalloc(&dev->dev, sizeof(struct au1100fb_device),
455 GFP_KERNEL);
Manuel Laussd121c3f2011-09-30 20:49:43 +0200456 if (!fbdev) {
Pete Popov3b495f22005-04-04 01:06:19 +0000457 print_err("fail to allocate device private record");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return -ENOMEM;
459 }
Pete Popov3b495f22005-04-04 01:06:19 +0000460
Manuel Laussd121c3f2011-09-30 20:49:43 +0200461 if (au1100fb_setup(fbdev))
462 goto failed;
Pete Popov3b495f22005-04-04 01:06:19 +0000463
Ming Lei7a192ec2009-02-06 23:40:12 +0800464 platform_set_drvdata(dev, (void *)fbdev);
Pete Popov3b495f22005-04-04 01:06:19 +0000465
466 /* Allocate region for our registers and map them */
Manuel Laussd121c3f2011-09-30 20:49:43 +0200467 regs_res = platform_get_resource(dev, IORESOURCE_MEM, 0);
468 if (!regs_res) {
Pete Popov3b495f22005-04-04 01:06:19 +0000469 print_err("fail to retrieve registers resource");
470 return -EFAULT;
471 }
472
473 au1100fb_fix.mmio_start = regs_res->start;
Joe Perches28f65c12011-06-09 09:13:32 -0700474 au1100fb_fix.mmio_len = resource_size(regs_res);
Pete Popov3b495f22005-04-04 01:06:19 +0000475
Manuel Lauss93019732012-03-24 11:38:02 +0100476 if (!devm_request_mem_region(&dev->dev,
477 au1100fb_fix.mmio_start,
Julia Lawall1c166972012-01-21 16:01:58 +0100478 au1100fb_fix.mmio_len,
479 DRIVER_NAME)) {
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700480 print_err("fail to lock memory region at 0x%08lx",
Pete Popov3b495f22005-04-04 01:06:19 +0000481 au1100fb_fix.mmio_start);
482 return -EBUSY;
483 }
484
485 fbdev->regs = (struct au1100fb_regs*)KSEG1ADDR(au1100fb_fix.mmio_start);
486
487 print_dbg("Register memory map at %p", fbdev->regs);
488 print_dbg("phys=0x%08x, size=%d", fbdev->regs_phys, fbdev->regs_len);
489
Pete Popov3b495f22005-04-04 01:06:19 +0000490 /* Allocate the framebuffer to the maximum screen size * nbr of video buffers */
491 fbdev->fb_len = fbdev->panel->xres * fbdev->panel->yres *
492 (fbdev->panel->bpp >> 3) * AU1100FB_NBR_VIDEO_BUFFERS;
493
Manuel Lauss93019732012-03-24 11:38:02 +0100494 fbdev->fb_mem = dmam_alloc_coherent(&dev->dev,
Julia Lawall1c166972012-01-21 16:01:58 +0100495 PAGE_ALIGN(fbdev->fb_len),
496 &fbdev->fb_phys, GFP_KERNEL);
Pete Popov3b495f22005-04-04 01:06:19 +0000497 if (!fbdev->fb_mem) {
498 print_err("fail to allocate frambuffer (size: %dK))",
499 fbdev->fb_len / 1024);
500 return -ENOMEM;
501 }
502
503 au1100fb_fix.smem_start = fbdev->fb_phys;
504 au1100fb_fix.smem_len = fbdev->fb_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 /*
507 * Set page reserved so that mmap will work. This is necessary
508 * since we'll be remapping normal memory.
509 */
Pete Popov3b495f22005-04-04 01:06:19 +0000510 for (page = (unsigned long)fbdev->fb_mem;
511 page < PAGE_ALIGN((unsigned long)fbdev->fb_mem + fbdev->fb_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 page += PAGE_SIZE) {
Pete Popov3b495f22005-04-04 01:06:19 +0000513#if CONFIG_DMA_NONCOHERENT
Manuel Laussd121c3f2011-09-30 20:49:43 +0200514 SetPageReserved(virt_to_page(CAC_ADDR((void *)page)));
Pete Popov3b495f22005-04-04 01:06:19 +0000515#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 SetPageReserved(virt_to_page(page));
Pete Popov3b495f22005-04-04 01:06:19 +0000517#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
Pete Popov3b495f22005-04-04 01:06:19 +0000520 print_dbg("Framebuffer memory map at %p", fbdev->fb_mem);
521 print_dbg("phys=0x%08x, size=%dK", fbdev->fb_phys, fbdev->fb_len / 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Pete Popov3b495f22005-04-04 01:06:19 +0000523 /* Setup LCD clock to AUX (48 MHz) */
524 sys_clksrc = au_readl(SYS_CLKSRC) & ~(SYS_CS_ML_MASK | SYS_CS_DL | SYS_CS_CL);
525 au_writel((sys_clksrc | (1 << SYS_CS_ML_BIT)), SYS_CLKSRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Pete Popov3b495f22005-04-04 01:06:19 +0000527 /* load the panel info into the var struct */
528 au1100fb_var.bits_per_pixel = fbdev->panel->bpp;
529 au1100fb_var.xres = fbdev->panel->xres;
530 au1100fb_var.xres_virtual = au1100fb_var.xres;
531 au1100fb_var.yres = fbdev->panel->yres;
532 au1100fb_var.yres_virtual = au1100fb_var.yres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Pete Popov3b495f22005-04-04 01:06:19 +0000534 fbdev->info.screen_base = fbdev->fb_mem;
535 fbdev->info.fbops = &au1100fb_ops;
536 fbdev->info.fix = au1100fb_fix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Julia Lawall1c166972012-01-21 16:01:58 +0100538 fbdev->info.pseudo_palette =
539 devm_kzalloc(&dev->dev, sizeof(u32) * 16, GFP_KERNEL);
540 if (!fbdev->info.pseudo_palette)
Pete Popov3b495f22005-04-04 01:06:19 +0000541 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Pete Popov3b495f22005-04-04 01:06:19 +0000543 if (fb_alloc_cmap(&fbdev->info.cmap, AU1100_LCD_NBR_PALETTE_ENTRIES, 0) < 0) {
544 print_err("Fail to allocate colormap (%d entries)",
545 AU1100_LCD_NBR_PALETTE_ENTRIES);
Pete Popov3b495f22005-04-04 01:06:19 +0000546 return -EFAULT;
547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Pete Popov3b495f22005-04-04 01:06:19 +0000549 fbdev->info.var = au1100fb_var;
550
551 /* Set h/w registers */
552 au1100fb_setmode(fbdev);
553
554 /* Register new framebuffer */
555 if (register_framebuffer(&fbdev->info) < 0) {
556 print_err("cannot register new framebuffer");
557 goto failed;
558 }
559
560 return 0;
561
562failed:
Pete Popov3b495f22005-04-04 01:06:19 +0000563 if (fbdev->fb_mem) {
Manuel Laussd121c3f2011-09-30 20:49:43 +0200564 dma_free_noncoherent(&dev->dev, fbdev->fb_len, fbdev->fb_mem,
565 fbdev->fb_phys);
Pete Popov3b495f22005-04-04 01:06:19 +0000566 }
567 if (fbdev->info.cmap.len != 0) {
568 fb_dealloc_cmap(&fbdev->info.cmap);
569 }
Ming Lei7a192ec2009-02-06 23:40:12 +0800570 platform_set_drvdata(dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Julia Lawall1c166972012-01-21 16:01:58 +0100572 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Ming Lei7a192ec2009-02-06 23:40:12 +0800575int au1100fb_drv_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Pete Popov3b495f22005-04-04 01:06:19 +0000577 struct au1100fb_device *fbdev = NULL;
578
579 if (!dev)
580 return -ENODEV;
581
Ming Lei7a192ec2009-02-06 23:40:12 +0800582 fbdev = (struct au1100fb_device *) platform_get_drvdata(dev);
Pete Popov3b495f22005-04-04 01:06:19 +0000583
584#if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO)
585 au1100fb_fb_blank(VESA_POWERDOWN, &fbdev->info);
586#endif
587 fbdev->regs->lcd_control &= ~LCD_CONTROL_GO;
588
589 /* Clean up all probe data */
590 unregister_framebuffer(&fbdev->info);
591
Pete Popov3b495f22005-04-04 01:06:19 +0000592 fb_dealloc_cmap(&fbdev->info.cmap);
Pete Popov3b495f22005-04-04 01:06:19 +0000593
594 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700597#ifdef CONFIG_PM
598static u32 sys_clksrc;
599static struct au1100fb_regs fbregs;
600
Ming Lei7a192ec2009-02-06 23:40:12 +0800601int au1100fb_drv_suspend(struct platform_device *dev, pm_message_t state)
Pete Popov3b495f22005-04-04 01:06:19 +0000602{
Ming Lei7a192ec2009-02-06 23:40:12 +0800603 struct au1100fb_device *fbdev = platform_get_drvdata(dev);
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700604
605 if (!fbdev)
606 return 0;
607
608 /* Save the clock source state */
609 sys_clksrc = au_readl(SYS_CLKSRC);
610
611 /* Blank the LCD */
612 au1100fb_fb_blank(VESA_POWERDOWN, &fbdev->info);
613
614 /* Stop LCD clocking */
615 au_writel(sys_clksrc & ~SYS_CS_ML_MASK, SYS_CLKSRC);
616
617 memcpy(&fbregs, fbdev->regs, sizeof(struct au1100fb_regs));
618
Pete Popov3b495f22005-04-04 01:06:19 +0000619 return 0;
620}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Ming Lei7a192ec2009-02-06 23:40:12 +0800622int au1100fb_drv_resume(struct platform_device *dev)
Pete Popov3b495f22005-04-04 01:06:19 +0000623{
Ming Lei7a192ec2009-02-06 23:40:12 +0800624 struct au1100fb_device *fbdev = platform_get_drvdata(dev);
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700625
626 if (!fbdev)
627 return 0;
628
629 memcpy(fbdev->regs, &fbregs, sizeof(struct au1100fb_regs));
630
631 /* Restart LCD clocking */
632 au_writel(sys_clksrc, SYS_CLKSRC);
633
634 /* Unblank the LCD */
635 au1100fb_fb_blank(VESA_NO_BLANKING, &fbdev->info);
636
Pete Popov3b495f22005-04-04 01:06:19 +0000637 return 0;
638}
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700639#else
640#define au1100fb_drv_suspend NULL
641#define au1100fb_drv_resume NULL
642#endif
Pete Popov3b495f22005-04-04 01:06:19 +0000643
Ming Lei7a192ec2009-02-06 23:40:12 +0800644static struct platform_driver au1100fb_driver = {
645 .driver = {
646 .name = "au1100-lcd",
647 .owner = THIS_MODULE,
648 },
Pete Popov3b495f22005-04-04 01:06:19 +0000649 .probe = au1100fb_drv_probe,
650 .remove = au1100fb_drv_remove,
651 .suspend = au1100fb_drv_suspend,
652 .resume = au1100fb_drv_resume,
653};
654
Manuel Laussd121c3f2011-09-30 20:49:43 +0200655static int __init au1100fb_load(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
Ming Lei7a192ec2009-02-06 23:40:12 +0800657 return platform_driver_register(&au1100fb_driver);
Pete Popov3b495f22005-04-04 01:06:19 +0000658}
659
Manuel Laussd121c3f2011-09-30 20:49:43 +0200660static void __exit au1100fb_unload(void)
Pete Popov3b495f22005-04-04 01:06:19 +0000661{
Ming Lei7a192ec2009-02-06 23:40:12 +0800662 platform_driver_unregister(&au1100fb_driver);
Pete Popov3b495f22005-04-04 01:06:19 +0000663}
664
Manuel Laussd121c3f2011-09-30 20:49:43 +0200665module_init(au1100fb_load);
666module_exit(au1100fb_unload);
Pete Popov3b495f22005-04-04 01:06:19 +0000667
668MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669MODULE_LICENSE("GPL");