blob: a54ccdc4d6618bf4bdcfd5202f3e8489f22cec34 [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
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -080086static struct fb_fix_screeninfo au1100fb_fix = {
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
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -080094static struct fb_var_screeninfo au1100fb_var = {
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:
Paul Bolle88564dd2013-03-25 20:27:19 +0000114 /* Turn on panel */
115 fbdev->regs->lcd_control |= LCD_CONTROL_GO;
Yoichi Yuasa8e92f212007-08-22 14:02:03 -0700116 au_sync();
117 break;
118
119 case VESA_VSYNC_SUSPEND:
120 case VESA_HSYNC_SUSPEND:
121 case VESA_POWERDOWN:
Paul Bolle88564dd2013-03-25 20:27:19 +0000122 /* Turn off panel */
123 fbdev->regs->lcd_control &= ~LCD_CONTROL_GO;
Yoichi Yuasa8e92f212007-08-22 14:02:03 -0700124 au_sync();
125 break;
126 default:
127 break;
128
129 }
130 return 0;
131}
132
Pete Popov3b495f22005-04-04 01:06:19 +0000133/*
134 * Set hardware with var settings. This will enable the controller with a specific
135 * mode, normally validated with the fb_check_var method
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 */
Pete Popov3b495f22005-04-04 01:06:19 +0000137int au1100fb_setmode(struct au1100fb_device *fbdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Pete Popov3b495f22005-04-04 01:06:19 +0000139 struct fb_info *info = &fbdev->info;
140 u32 words;
141 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Pete Popov3b495f22005-04-04 01:06:19 +0000143 if (!fbdev)
144 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Pete Popov3b495f22005-04-04 01:06:19 +0000146 /* Update var-dependent FB info */
147 if (panel_is_active(fbdev->panel) || panel_is_color(fbdev->panel)) {
148 if (info->var.bits_per_pixel <= 8) {
149 /* palettized */
150 info->var.red.offset = 0;
151 info->var.red.length = info->var.bits_per_pixel;
152 info->var.red.msb_right = 0;
153
154 info->var.green.offset = 0;
155 info->var.green.length = info->var.bits_per_pixel;
156 info->var.green.msb_right = 0;
157
158 info->var.blue.offset = 0;
159 info->var.blue.length = info->var.bits_per_pixel;
160 info->var.blue.msb_right = 0;
161
162 info->var.transp.offset = 0;
163 info->var.transp.length = 0;
164 info->var.transp.msb_right = 0;
165
166 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
167 info->fix.line_length = info->var.xres_virtual /
168 (8/info->var.bits_per_pixel);
169 } else {
170 /* non-palettized */
171 index = (fbdev->panel->control_base & LCD_CONTROL_SBPPF_MASK) >> LCD_CONTROL_SBPPF_BIT;
172 info->var.red = rgb_bitfields[index][0];
173 info->var.green = rgb_bitfields[index][1];
174 info->var.blue = rgb_bitfields[index][2];
175 info->var.transp = rgb_bitfields[index][3];
176
177 info->fix.visual = FB_VISUAL_TRUECOLOR;
178 info->fix.line_length = info->var.xres_virtual << 1; /* depth=16 */
Rodolfo Giomettibb39e412006-08-05 12:14:22 -0700179 }
Pete Popov3b495f22005-04-04 01:06:19 +0000180 } else {
181 /* mono */
182 info->fix.visual = FB_VISUAL_MONO10;
183 info->fix.line_length = info->var.xres_virtual / 8;
184 }
185
186 info->screen_size = info->fix.line_length * info->var.yres_virtual;
Rodolfo Giomettifd2d5432006-08-05 12:14:19 -0700187 info->var.rotate = ((fbdev->panel->control_base&LCD_CONTROL_SM_MASK) \
188 >> LCD_CONTROL_SM_BIT) * 90;
Pete Popov3b495f22005-04-04 01:06:19 +0000189
190 /* Determine BPP mode and format */
Rodolfo Giomettifd2d5432006-08-05 12:14:19 -0700191 fbdev->regs->lcd_control = fbdev->panel->control_base;
Rodolfo Giomettibb39e412006-08-05 12:14:22 -0700192 fbdev->regs->lcd_horztiming = fbdev->panel->horztiming;
193 fbdev->regs->lcd_verttiming = fbdev->panel->verttiming;
194 fbdev->regs->lcd_clkcontrol = fbdev->panel->clkcontrol_base;
Pete Popov3b495f22005-04-04 01:06:19 +0000195 fbdev->regs->lcd_intenable = 0;
196 fbdev->regs->lcd_intstatus = 0;
Pete Popov3b495f22005-04-04 01:06:19 +0000197 fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(fbdev->fb_phys);
198
199 if (panel_is_dual(fbdev->panel)) {
200 /* Second panel display seconf half of screen if possible,
201 * otherwise display the same as the first panel */
202 if (info->var.yres_virtual >= (info->var.yres << 1)) {
203 fbdev->regs->lcd_dmaaddr1 = LCD_DMA_SA_N(fbdev->fb_phys +
204 (info->fix.line_length *
205 (info->var.yres_virtual >> 1)));
206 } else {
207 fbdev->regs->lcd_dmaaddr1 = LCD_DMA_SA_N(fbdev->fb_phys);
208 }
209 }
210
211 words = info->fix.line_length / sizeof(u32);
212 if (!info->var.rotate || (info->var.rotate == 180)) {
213 words *= info->var.yres_virtual;
214 if (info->var.rotate /* 180 */) {
215 words -= (words % 8); /* should be divisable by 8 */
216 }
217 }
218 fbdev->regs->lcd_words = LCD_WRD_WRDS_N(words);
219
220 fbdev->regs->lcd_pwmdiv = 0;
221 fbdev->regs->lcd_pwmhi = 0;
222
223 /* Resume controller */
224 fbdev->regs->lcd_control |= LCD_CONTROL_GO;
Rodolfo Giomettibb39e412006-08-05 12:14:22 -0700225 mdelay(10);
226 au1100fb_fb_blank(VESA_NO_BLANKING, info);
Pete Popov3b495f22005-04-04 01:06:19 +0000227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 return 0;
229}
230
Pete Popov3b495f22005-04-04 01:06:19 +0000231/* fb_setcolreg
232 * Set color in LCD palette.
233 */
234int au1100fb_fb_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue, unsigned transp, struct fb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700236 struct au1100fb_device *fbdev;
237 u32 *palette;
Pete Popov3b495f22005-04-04 01:06:19 +0000238 u32 value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700240 fbdev = to_au1100fb_device(fbi);
241 palette = fbdev->regs->lcd_pallettebase;
242
Pete Popov3b495f22005-04-04 01:06:19 +0000243 if (regno > (AU1100_LCD_NBR_PALETTE_ENTRIES - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return -EINVAL;
Pete Popov3b495f22005-04-04 01:06:19 +0000245
246 if (fbi->var.grayscale) {
247 /* Convert color to grayscale */
248 red = green = blue =
249 (19595 * red + 38470 * green + 7471 * blue) >> 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
251
Pete Popov3b495f22005-04-04 01:06:19 +0000252 if (fbi->fix.visual == FB_VISUAL_TRUECOLOR) {
253 /* Place color in the pseudopalette */
254 if (regno > 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 return -EINVAL;
256
Pete Popov3b495f22005-04-04 01:06:19 +0000257 palette = (u32*)fbi->pseudo_palette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Pete Popov3b495f22005-04-04 01:06:19 +0000259 red >>= (16 - fbi->var.red.length);
260 green >>= (16 - fbi->var.green.length);
261 blue >>= (16 - fbi->var.blue.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Pete Popov3b495f22005-04-04 01:06:19 +0000263 value = (red << fbi->var.red.offset) |
264 (green << fbi->var.green.offset)|
265 (blue << fbi->var.blue.offset);
266 value &= 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Pete Popov3b495f22005-04-04 01:06:19 +0000268 } else if (panel_is_active(fbdev->panel)) {
269 /* COLOR TFT PALLETTIZED (use RGB 565) */
270 value = (red & 0xF800)|((green >> 5) & 0x07E0)|((blue >> 11) & 0x001F);
271 value &= 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Pete Popov3b495f22005-04-04 01:06:19 +0000273 } else if (panel_is_color(fbdev->panel)) {
274 /* COLOR STN MODE */
275 value = (((panel_swap_rgb(fbdev->panel) ? blue : red) >> 12) & 0x000F) |
276 ((green >> 8) & 0x00F0) |
277 (((panel_swap_rgb(fbdev->panel) ? red : blue) >> 4) & 0x0F00);
278 value &= 0xFFF;
279 } else {
280 /* MONOCHROME MODE */
281 value = (green >> 12) & 0x000F;
282 value &= 0xF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
284
Pete Popov3b495f22005-04-04 01:06:19 +0000285 palette[regno] = value;
286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
288}
289
Pete Popov3b495f22005-04-04 01:06:19 +0000290/* fb_pan_display
291 * Pan display in x and/or y as specified
292 */
293int au1100fb_fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700295 struct au1100fb_device *fbdev;
Pete Popov3b495f22005-04-04 01:06:19 +0000296 int dy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700298 fbdev = to_au1100fb_device(fbi);
299
Pete Popov3b495f22005-04-04 01:06:19 +0000300 print_dbg("fb_pan_display %p %p", var, fbi);
301
302 if (!var || !fbdev) {
303 return -EINVAL;
304 }
305
306 if (var->xoffset - fbi->var.xoffset) {
307 /* No support for X panning for now! */
308 return -EINVAL;
309 }
310
311 print_dbg("fb_pan_display 2 %p %p", var, fbi);
312 dy = var->yoffset - fbi->var.yoffset;
313 if (dy) {
314
315 u32 dmaaddr;
316
317 print_dbg("Panning screen of %d lines", dy);
318
319 dmaaddr = fbdev->regs->lcd_dmaaddr0;
320 dmaaddr += (fbi->fix.line_length * dy);
321
322 /* TODO: Wait for current frame to finished */
323 fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(dmaaddr);
324
325 if (panel_is_dual(fbdev->panel)) {
326 dmaaddr = fbdev->regs->lcd_dmaaddr1;
327 dmaaddr += (fbi->fix.line_length * dy);
328 fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(dmaaddr);
329 }
330 }
331 print_dbg("fb_pan_display 3 %p %p", var, fbi);
332
333 return 0;
334}
335
336/* fb_rotate
337 * Rotate the display of this angle. This doesn't seems to be used by the core,
338 * but as our hardware supports it, so why not implementing it...
339 */
340void au1100fb_fb_rotate(struct fb_info *fbi, int angle)
341{
342 struct au1100fb_device *fbdev = to_au1100fb_device(fbi);
343
344 print_dbg("fb_rotate %p %d", fbi, angle);
345
346 if (fbdev && (angle > 0) && !(angle % 90)) {
347
348 fbdev->regs->lcd_control &= ~LCD_CONTROL_GO;
349
350 fbdev->regs->lcd_control &= ~(LCD_CONTROL_SM_MASK);
351 fbdev->regs->lcd_control |= ((angle/90) << LCD_CONTROL_SM_BIT);
352
353 fbdev->regs->lcd_control |= LCD_CONTROL_GO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355}
356
Pete Popov3b495f22005-04-04 01:06:19 +0000357/* fb_mmap
358 * Map video memory in user space. We don't use the generic fb_mmap method mainly
359 * to allow the use of the TLB streaming flag (CCA=6)
360 */
Christoph Hellwig216d5262006-01-14 13:21:25 -0800361int au1100fb_fb_mmap(struct fb_info *fbi, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700363 struct au1100fb_device *fbdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 unsigned int len;
365 unsigned long start=0, off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700367 fbdev = to_au1100fb_device(fbi);
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (vma->vm_pgoff > (~0UL >> PAGE_SHIFT)) {
370 return -EINVAL;
371 }
372
Pete Popov3b495f22005-04-04 01:06:19 +0000373 start = fbdev->fb_phys & PAGE_MASK;
374 len = PAGE_ALIGN((start & ~PAGE_MASK) + fbdev->fb_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 off = vma->vm_pgoff << PAGE_SHIFT;
377
378 if ((vma->vm_end - vma->vm_start + off) > len) {
379 return -EINVAL;
380 }
381
382 off += start;
383 vma->vm_pgoff = off >> PAGE_SHIFT;
384
Pete Popov3b495f22005-04-04 01:06:19 +0000385 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 pgprot_val(vma->vm_page_prot) |= (6 << 9); //CCA=6
387
Freddy Spierenburgcacfc8c2006-02-24 13:04:17 -0800388 if (io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 vma->vm_end - vma->vm_start,
390 vma->vm_page_prot)) {
391 return -EAGAIN;
392 }
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return 0;
395}
396
Pete Popov3b495f22005-04-04 01:06:19 +0000397static struct fb_ops au1100fb_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Pete Popov3b495f22005-04-04 01:06:19 +0000399 .owner = THIS_MODULE,
400 .fb_setcolreg = au1100fb_fb_setcolreg,
401 .fb_blank = au1100fb_fb_blank,
402 .fb_pan_display = au1100fb_fb_pan_display,
403 .fb_fillrect = cfb_fillrect,
404 .fb_copyarea = cfb_copyarea,
405 .fb_imageblit = cfb_imageblit,
406 .fb_rotate = au1100fb_fb_rotate,
407 .fb_mmap = au1100fb_fb_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408};
409
410
Pete Popov3b495f22005-04-04 01:06:19 +0000411/*-------------------------------------------------------------------------*/
412
Manuel Laussd121c3f2011-09-30 20:49:43 +0200413static int au1100fb_setup(struct au1100fb_device *fbdev)
414{
415 char *this_opt, *options;
416 int num_panels = ARRAY_SIZE(known_lcd_panels);
417
418 if (num_panels <= 0) {
419 print_err("No LCD panels supported by driver!");
420 return -ENODEV;
421 }
422
423 if (fb_get_options(DRIVER_NAME, &options))
424 return -ENODEV;
425 if (!options)
426 return -ENODEV;
427
428 while ((this_opt = strsep(&options, ",")) != NULL) {
429 /* Panel option */
430 if (!strncmp(this_opt, "panel:", 6)) {
431 int i;
432 this_opt += 6;
433 for (i = 0; i < num_panels; i++) {
434 if (!strncmp(this_opt, known_lcd_panels[i].name,
435 strlen(this_opt))) {
436 fbdev->panel = &known_lcd_panels[i];
437 fbdev->panel_idx = i;
438 break;
439 }
440 }
441 if (i >= num_panels) {
442 print_warn("Panel '%s' not supported!", this_opt);
443 return -ENODEV;
444 }
445 }
446 /* Unsupported option */
447 else
448 print_warn("Unsupported option \"%s\"", this_opt);
449 }
450
451 print_info("Panel=%s", fbdev->panel->name);
452
453 return 0;
454}
Pete Popov3b495f22005-04-04 01:06:19 +0000455
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800456static int au1100fb_drv_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Pete Popov3b495f22005-04-04 01:06:19 +0000458 struct au1100fb_device *fbdev = NULL;
459 struct resource *regs_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 unsigned long page;
Pete Popov3b495f22005-04-04 01:06:19 +0000461 u32 sys_clksrc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Pete Popov3b495f22005-04-04 01:06:19 +0000463 /* Allocate new device private */
Julia Lawall1c166972012-01-21 16:01:58 +0100464 fbdev = devm_kzalloc(&dev->dev, sizeof(struct au1100fb_device),
465 GFP_KERNEL);
Manuel Laussd121c3f2011-09-30 20:49:43 +0200466 if (!fbdev) {
Pete Popov3b495f22005-04-04 01:06:19 +0000467 print_err("fail to allocate device private record");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return -ENOMEM;
469 }
Pete Popov3b495f22005-04-04 01:06:19 +0000470
Manuel Laussd121c3f2011-09-30 20:49:43 +0200471 if (au1100fb_setup(fbdev))
472 goto failed;
Pete Popov3b495f22005-04-04 01:06:19 +0000473
Ming Lei7a192ec2009-02-06 23:40:12 +0800474 platform_set_drvdata(dev, (void *)fbdev);
Pete Popov3b495f22005-04-04 01:06:19 +0000475
476 /* Allocate region for our registers and map them */
Manuel Laussd121c3f2011-09-30 20:49:43 +0200477 regs_res = platform_get_resource(dev, IORESOURCE_MEM, 0);
478 if (!regs_res) {
Pete Popov3b495f22005-04-04 01:06:19 +0000479 print_err("fail to retrieve registers resource");
480 return -EFAULT;
481 }
482
483 au1100fb_fix.mmio_start = regs_res->start;
Joe Perches28f65c112011-06-09 09:13:32 -0700484 au1100fb_fix.mmio_len = resource_size(regs_res);
Pete Popov3b495f22005-04-04 01:06:19 +0000485
Manuel Lauss93019732012-03-24 11:38:02 +0100486 if (!devm_request_mem_region(&dev->dev,
487 au1100fb_fix.mmio_start,
Julia Lawall1c166972012-01-21 16:01:58 +0100488 au1100fb_fix.mmio_len,
489 DRIVER_NAME)) {
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700490 print_err("fail to lock memory region at 0x%08lx",
Pete Popov3b495f22005-04-04 01:06:19 +0000491 au1100fb_fix.mmio_start);
492 return -EBUSY;
493 }
494
495 fbdev->regs = (struct au1100fb_regs*)KSEG1ADDR(au1100fb_fix.mmio_start);
496
497 print_dbg("Register memory map at %p", fbdev->regs);
498 print_dbg("phys=0x%08x, size=%d", fbdev->regs_phys, fbdev->regs_len);
499
Pete Popov3b495f22005-04-04 01:06:19 +0000500 /* Allocate the framebuffer to the maximum screen size * nbr of video buffers */
501 fbdev->fb_len = fbdev->panel->xres * fbdev->panel->yres *
502 (fbdev->panel->bpp >> 3) * AU1100FB_NBR_VIDEO_BUFFERS;
503
Manuel Lauss93019732012-03-24 11:38:02 +0100504 fbdev->fb_mem = dmam_alloc_coherent(&dev->dev,
Julia Lawall1c166972012-01-21 16:01:58 +0100505 PAGE_ALIGN(fbdev->fb_len),
506 &fbdev->fb_phys, GFP_KERNEL);
Pete Popov3b495f22005-04-04 01:06:19 +0000507 if (!fbdev->fb_mem) {
508 print_err("fail to allocate frambuffer (size: %dK))",
509 fbdev->fb_len / 1024);
510 return -ENOMEM;
511 }
512
513 au1100fb_fix.smem_start = fbdev->fb_phys;
514 au1100fb_fix.smem_len = fbdev->fb_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 /*
517 * Set page reserved so that mmap will work. This is necessary
518 * since we'll be remapping normal memory.
519 */
Pete Popov3b495f22005-04-04 01:06:19 +0000520 for (page = (unsigned long)fbdev->fb_mem;
521 page < PAGE_ALIGN((unsigned long)fbdev->fb_mem + fbdev->fb_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 page += PAGE_SIZE) {
Geert Uytterhoevencde0e2cc2012-02-19 16:11:59 +0100523#ifdef CONFIG_DMA_NONCOHERENT
Manuel Laussd121c3f2011-09-30 20:49:43 +0200524 SetPageReserved(virt_to_page(CAC_ADDR((void *)page)));
Pete Popov3b495f22005-04-04 01:06:19 +0000525#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 SetPageReserved(virt_to_page(page));
Pete Popov3b495f22005-04-04 01:06:19 +0000527#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
Pete Popov3b495f22005-04-04 01:06:19 +0000530 print_dbg("Framebuffer memory map at %p", fbdev->fb_mem);
531 print_dbg("phys=0x%08x, size=%dK", fbdev->fb_phys, fbdev->fb_len / 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Pete Popov3b495f22005-04-04 01:06:19 +0000533 /* Setup LCD clock to AUX (48 MHz) */
534 sys_clksrc = au_readl(SYS_CLKSRC) & ~(SYS_CS_ML_MASK | SYS_CS_DL | SYS_CS_CL);
535 au_writel((sys_clksrc | (1 << SYS_CS_ML_BIT)), SYS_CLKSRC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Pete Popov3b495f22005-04-04 01:06:19 +0000537 /* load the panel info into the var struct */
538 au1100fb_var.bits_per_pixel = fbdev->panel->bpp;
539 au1100fb_var.xres = fbdev->panel->xres;
540 au1100fb_var.xres_virtual = au1100fb_var.xres;
541 au1100fb_var.yres = fbdev->panel->yres;
542 au1100fb_var.yres_virtual = au1100fb_var.yres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Pete Popov3b495f22005-04-04 01:06:19 +0000544 fbdev->info.screen_base = fbdev->fb_mem;
545 fbdev->info.fbops = &au1100fb_ops;
546 fbdev->info.fix = au1100fb_fix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Julia Lawall1c166972012-01-21 16:01:58 +0100548 fbdev->info.pseudo_palette =
549 devm_kzalloc(&dev->dev, sizeof(u32) * 16, GFP_KERNEL);
550 if (!fbdev->info.pseudo_palette)
Pete Popov3b495f22005-04-04 01:06:19 +0000551 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Pete Popov3b495f22005-04-04 01:06:19 +0000553 if (fb_alloc_cmap(&fbdev->info.cmap, AU1100_LCD_NBR_PALETTE_ENTRIES, 0) < 0) {
554 print_err("Fail to allocate colormap (%d entries)",
555 AU1100_LCD_NBR_PALETTE_ENTRIES);
Pete Popov3b495f22005-04-04 01:06:19 +0000556 return -EFAULT;
557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Pete Popov3b495f22005-04-04 01:06:19 +0000559 fbdev->info.var = au1100fb_var;
560
561 /* Set h/w registers */
562 au1100fb_setmode(fbdev);
563
564 /* Register new framebuffer */
565 if (register_framebuffer(&fbdev->info) < 0) {
566 print_err("cannot register new framebuffer");
567 goto failed;
568 }
569
570 return 0;
571
572failed:
Pete Popov3b495f22005-04-04 01:06:19 +0000573 if (fbdev->fb_mem) {
Manuel Laussd121c3f2011-09-30 20:49:43 +0200574 dma_free_noncoherent(&dev->dev, fbdev->fb_len, fbdev->fb_mem,
575 fbdev->fb_phys);
Pete Popov3b495f22005-04-04 01:06:19 +0000576 }
577 if (fbdev->info.cmap.len != 0) {
578 fb_dealloc_cmap(&fbdev->info.cmap);
579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Julia Lawall1c166972012-01-21 16:01:58 +0100581 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Ming Lei7a192ec2009-02-06 23:40:12 +0800584int au1100fb_drv_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Pete Popov3b495f22005-04-04 01:06:19 +0000586 struct au1100fb_device *fbdev = NULL;
587
588 if (!dev)
589 return -ENODEV;
590
Ming Lei7a192ec2009-02-06 23:40:12 +0800591 fbdev = (struct au1100fb_device *) platform_get_drvdata(dev);
Pete Popov3b495f22005-04-04 01:06:19 +0000592
593#if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO)
594 au1100fb_fb_blank(VESA_POWERDOWN, &fbdev->info);
595#endif
596 fbdev->regs->lcd_control &= ~LCD_CONTROL_GO;
597
598 /* Clean up all probe data */
599 unregister_framebuffer(&fbdev->info);
600
Pete Popov3b495f22005-04-04 01:06:19 +0000601 fb_dealloc_cmap(&fbdev->info.cmap);
Pete Popov3b495f22005-04-04 01:06:19 +0000602
603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700606#ifdef CONFIG_PM
607static u32 sys_clksrc;
608static struct au1100fb_regs fbregs;
609
Ming Lei7a192ec2009-02-06 23:40:12 +0800610int au1100fb_drv_suspend(struct platform_device *dev, pm_message_t state)
Pete Popov3b495f22005-04-04 01:06:19 +0000611{
Ming Lei7a192ec2009-02-06 23:40:12 +0800612 struct au1100fb_device *fbdev = platform_get_drvdata(dev);
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700613
614 if (!fbdev)
615 return 0;
616
617 /* Save the clock source state */
618 sys_clksrc = au_readl(SYS_CLKSRC);
619
620 /* Blank the LCD */
621 au1100fb_fb_blank(VESA_POWERDOWN, &fbdev->info);
622
623 /* Stop LCD clocking */
624 au_writel(sys_clksrc & ~SYS_CS_ML_MASK, SYS_CLKSRC);
625
626 memcpy(&fbregs, fbdev->regs, sizeof(struct au1100fb_regs));
627
Pete Popov3b495f22005-04-04 01:06:19 +0000628 return 0;
629}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Ming Lei7a192ec2009-02-06 23:40:12 +0800631int au1100fb_drv_resume(struct platform_device *dev)
Pete Popov3b495f22005-04-04 01:06:19 +0000632{
Ming Lei7a192ec2009-02-06 23:40:12 +0800633 struct au1100fb_device *fbdev = platform_get_drvdata(dev);
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700634
635 if (!fbdev)
636 return 0;
637
638 memcpy(fbdev->regs, &fbregs, sizeof(struct au1100fb_regs));
639
640 /* Restart LCD clocking */
641 au_writel(sys_clksrc, SYS_CLKSRC);
642
643 /* Unblank the LCD */
644 au1100fb_fb_blank(VESA_NO_BLANKING, &fbdev->info);
645
Pete Popov3b495f22005-04-04 01:06:19 +0000646 return 0;
647}
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700648#else
649#define au1100fb_drv_suspend NULL
650#define au1100fb_drv_resume NULL
651#endif
Pete Popov3b495f22005-04-04 01:06:19 +0000652
Ming Lei7a192ec2009-02-06 23:40:12 +0800653static struct platform_driver au1100fb_driver = {
654 .driver = {
655 .name = "au1100-lcd",
656 .owner = THIS_MODULE,
657 },
Pete Popov3b495f22005-04-04 01:06:19 +0000658 .probe = au1100fb_drv_probe,
659 .remove = au1100fb_drv_remove,
660 .suspend = au1100fb_drv_suspend,
661 .resume = au1100fb_drv_resume,
662};
663
Manuel Laussd121c3f2011-09-30 20:49:43 +0200664static int __init au1100fb_load(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Ming Lei7a192ec2009-02-06 23:40:12 +0800666 return platform_driver_register(&au1100fb_driver);
Pete Popov3b495f22005-04-04 01:06:19 +0000667}
668
Manuel Laussd121c3f2011-09-30 20:49:43 +0200669static void __exit au1100fb_unload(void)
Pete Popov3b495f22005-04-04 01:06:19 +0000670{
Ming Lei7a192ec2009-02-06 23:40:12 +0800671 platform_driver_unregister(&au1100fb_driver);
Pete Popov3b495f22005-04-04 01:06:19 +0000672}
673
Manuel Laussd121c3f2011-09-30 20:49:43 +0200674module_init(au1100fb_load);
675module_exit(au1100fb_unload);
Pete Popov3b495f22005-04-04 01:06:19 +0000676
677MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678MODULE_LICENSE("GPL");