blob: 37a6512feda0fb2042e8fe3676cc545de4a2ee36 [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 */
Manuel Lauss6b1889c2014-07-23 16:36:54 +020044#include <linux/clk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/module.h>
46#include <linux/kernel.h>
47#include <linux/errno.h>
48#include <linux/string.h>
49#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/fb.h>
51#include <linux/init.h>
Pete Popov3b495f22005-04-04 01:06:19 +000052#include <linux/interrupt.h>
53#include <linux/ctype.h>
54#include <linux/dma-mapping.h>
Freddy Spierenburgcacfc8c2006-02-24 13:04:17 -080055#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090056#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Pete Popov3b495f22005-04-04 01:06:19 +000058#include <asm/mach-au1x00/au1000.h>
59
60#define DEBUG 0
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include "au1100fb.h"
63
Pete Popov3b495f22005-04-04 01:06:19 +000064#define DRIVER_NAME "au1100fb"
65#define DRIVER_DESC "LCD controller driver for AU1100 processors"
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Pete Popov3b495f22005-04-04 01:06:19 +000067#define to_au1100fb_device(_info) \
68 (_info ? container_of(_info, struct au1100fb_device, info) : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Pete Popov3b495f22005-04-04 01:06:19 +000070/* Bitfields format supported by the controller. Note that the order of formats
71 * SHOULD be the same as in the LCD_CONTROL_SBPPF field, so we can retrieve the
72 * right pixel format by doing rgb_bitfields[LCD_CONTROL_SBPPF_XXX >> LCD_CONTROL_SBPPF]
73 */
74struct fb_bitfield rgb_bitfields[][4] =
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Pete Popov3b495f22005-04-04 01:06:19 +000076 /* Red, Green, Blue, Transp */
77 { { 10, 6, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 0, 0, 0 } },
78 { { 11, 5, 0 }, { 5, 6, 0 }, { 0, 5, 0 }, { 0, 0, 0 } },
79 { { 11, 5, 0 }, { 6, 5, 0 }, { 0, 6, 0 }, { 0, 0, 0 } },
80 { { 10, 5, 0 }, { 5, 5, 0 }, { 0, 5, 0 }, { 15, 1, 0 } },
81 { { 11, 5, 0 }, { 6, 5, 0 }, { 1, 5, 0 }, { 0, 1, 0 } },
82
83 /* The last is used to describe 12bpp format */
84 { { 8, 4, 0 }, { 4, 4, 0 }, { 0, 4, 0 }, { 0, 0, 0 } },
85};
86
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -080087static struct fb_fix_screeninfo au1100fb_fix = {
Pete Popov3b495f22005-04-04 01:06:19 +000088 .id = "AU1100 FB",
89 .xpanstep = 1,
90 .ypanstep = 1,
91 .type = FB_TYPE_PACKED_PIXELS,
92 .accel = FB_ACCEL_NONE,
93};
94
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -080095static struct fb_var_screeninfo au1100fb_var = {
Pete Popov3b495f22005-04-04 01:06:19 +000096 .activate = FB_ACTIVATE_NOW,
97 .height = -1,
98 .width = -1,
99 .vmode = FB_VMODE_NONINTERLACED,
100};
101
Yoichi Yuasa8e92f212007-08-22 14:02:03 -0700102/* fb_blank
103 * Blank the screen. Depending on the mode, the screen will be
104 * activated with the backlight color, or desactivated
105 */
106static int au1100fb_fb_blank(int blank_mode, struct fb_info *fbi)
107{
108 struct au1100fb_device *fbdev = to_au1100fb_device(fbi);
109
110 print_dbg("fb_blank %d %p", blank_mode, fbi);
111
112 switch (blank_mode) {
113
114 case VESA_NO_BLANKING:
Paul Bolle88564dd2013-03-25 20:27:19 +0000115 /* Turn on panel */
116 fbdev->regs->lcd_control |= LCD_CONTROL_GO;
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200117 wmb(); /* drain writebuffer */
Yoichi Yuasa8e92f212007-08-22 14:02:03 -0700118 break;
119
120 case VESA_VSYNC_SUSPEND:
121 case VESA_HSYNC_SUSPEND:
122 case VESA_POWERDOWN:
Paul Bolle88564dd2013-03-25 20:27:19 +0000123 /* Turn off panel */
124 fbdev->regs->lcd_control &= ~LCD_CONTROL_GO;
Manuel Lauss2f73bfb2014-07-23 16:36:26 +0200125 wmb(); /* drain writebuffer */
Yoichi Yuasa8e92f212007-08-22 14:02:03 -0700126 break;
127 default:
128 break;
129
130 }
131 return 0;
132}
133
Pete Popov3b495f22005-04-04 01:06:19 +0000134/*
135 * Set hardware with var settings. This will enable the controller with a specific
136 * mode, normally validated with the fb_check_var method
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 */
Pete Popov3b495f22005-04-04 01:06:19 +0000138int au1100fb_setmode(struct au1100fb_device *fbdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
Pete Popov3b495f22005-04-04 01:06:19 +0000140 struct fb_info *info = &fbdev->info;
141 u32 words;
142 int index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Pete Popov3b495f22005-04-04 01:06:19 +0000144 if (!fbdev)
145 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Pete Popov3b495f22005-04-04 01:06:19 +0000147 /* Update var-dependent FB info */
148 if (panel_is_active(fbdev->panel) || panel_is_color(fbdev->panel)) {
149 if (info->var.bits_per_pixel <= 8) {
150 /* palettized */
151 info->var.red.offset = 0;
152 info->var.red.length = info->var.bits_per_pixel;
153 info->var.red.msb_right = 0;
154
155 info->var.green.offset = 0;
156 info->var.green.length = info->var.bits_per_pixel;
157 info->var.green.msb_right = 0;
158
159 info->var.blue.offset = 0;
160 info->var.blue.length = info->var.bits_per_pixel;
161 info->var.blue.msb_right = 0;
162
163 info->var.transp.offset = 0;
164 info->var.transp.length = 0;
165 info->var.transp.msb_right = 0;
166
167 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
168 info->fix.line_length = info->var.xres_virtual /
169 (8/info->var.bits_per_pixel);
170 } else {
171 /* non-palettized */
172 index = (fbdev->panel->control_base & LCD_CONTROL_SBPPF_MASK) >> LCD_CONTROL_SBPPF_BIT;
173 info->var.red = rgb_bitfields[index][0];
174 info->var.green = rgb_bitfields[index][1];
175 info->var.blue = rgb_bitfields[index][2];
176 info->var.transp = rgb_bitfields[index][3];
177
178 info->fix.visual = FB_VISUAL_TRUECOLOR;
179 info->fix.line_length = info->var.xres_virtual << 1; /* depth=16 */
Rodolfo Giomettibb39e412006-08-05 12:14:22 -0700180 }
Pete Popov3b495f22005-04-04 01:06:19 +0000181 } else {
182 /* mono */
183 info->fix.visual = FB_VISUAL_MONO10;
184 info->fix.line_length = info->var.xres_virtual / 8;
185 }
186
187 info->screen_size = info->fix.line_length * info->var.yres_virtual;
Rodolfo Giomettifd2d5432006-08-05 12:14:19 -0700188 info->var.rotate = ((fbdev->panel->control_base&LCD_CONTROL_SM_MASK) \
189 >> LCD_CONTROL_SM_BIT) * 90;
Pete Popov3b495f22005-04-04 01:06:19 +0000190
191 /* Determine BPP mode and format */
Rodolfo Giomettifd2d5432006-08-05 12:14:19 -0700192 fbdev->regs->lcd_control = fbdev->panel->control_base;
Rodolfo Giomettibb39e412006-08-05 12:14:22 -0700193 fbdev->regs->lcd_horztiming = fbdev->panel->horztiming;
194 fbdev->regs->lcd_verttiming = fbdev->panel->verttiming;
195 fbdev->regs->lcd_clkcontrol = fbdev->panel->clkcontrol_base;
Pete Popov3b495f22005-04-04 01:06:19 +0000196 fbdev->regs->lcd_intenable = 0;
197 fbdev->regs->lcd_intstatus = 0;
Pete Popov3b495f22005-04-04 01:06:19 +0000198 fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(fbdev->fb_phys);
199
200 if (panel_is_dual(fbdev->panel)) {
201 /* Second panel display seconf half of screen if possible,
202 * otherwise display the same as the first panel */
203 if (info->var.yres_virtual >= (info->var.yres << 1)) {
204 fbdev->regs->lcd_dmaaddr1 = LCD_DMA_SA_N(fbdev->fb_phys +
205 (info->fix.line_length *
206 (info->var.yres_virtual >> 1)));
207 } else {
208 fbdev->regs->lcd_dmaaddr1 = LCD_DMA_SA_N(fbdev->fb_phys);
209 }
210 }
211
212 words = info->fix.line_length / sizeof(u32);
213 if (!info->var.rotate || (info->var.rotate == 180)) {
214 words *= info->var.yres_virtual;
215 if (info->var.rotate /* 180 */) {
216 words -= (words % 8); /* should be divisable by 8 */
217 }
218 }
219 fbdev->regs->lcd_words = LCD_WRD_WRDS_N(words);
220
221 fbdev->regs->lcd_pwmdiv = 0;
222 fbdev->regs->lcd_pwmhi = 0;
223
224 /* Resume controller */
225 fbdev->regs->lcd_control |= LCD_CONTROL_GO;
Rodolfo Giomettibb39e412006-08-05 12:14:22 -0700226 mdelay(10);
227 au1100fb_fb_blank(VESA_NO_BLANKING, info);
Pete Popov3b495f22005-04-04 01:06:19 +0000228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return 0;
230}
231
Pete Popov3b495f22005-04-04 01:06:19 +0000232/* fb_setcolreg
233 * Set color in LCD palette.
234 */
235int au1100fb_fb_setcolreg(unsigned regno, unsigned red, unsigned green, unsigned blue, unsigned transp, struct fb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700237 struct au1100fb_device *fbdev;
238 u32 *palette;
Pete Popov3b495f22005-04-04 01:06:19 +0000239 u32 value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700241 fbdev = to_au1100fb_device(fbi);
242 palette = fbdev->regs->lcd_pallettebase;
243
Pete Popov3b495f22005-04-04 01:06:19 +0000244 if (regno > (AU1100_LCD_NBR_PALETTE_ENTRIES - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return -EINVAL;
Pete Popov3b495f22005-04-04 01:06:19 +0000246
247 if (fbi->var.grayscale) {
248 /* Convert color to grayscale */
249 red = green = blue =
250 (19595 * red + 38470 * green + 7471 * blue) >> 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
Pete Popov3b495f22005-04-04 01:06:19 +0000253 if (fbi->fix.visual == FB_VISUAL_TRUECOLOR) {
254 /* Place color in the pseudopalette */
255 if (regno > 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 return -EINVAL;
257
Pete Popov3b495f22005-04-04 01:06:19 +0000258 palette = (u32*)fbi->pseudo_palette;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Pete Popov3b495f22005-04-04 01:06:19 +0000260 red >>= (16 - fbi->var.red.length);
261 green >>= (16 - fbi->var.green.length);
262 blue >>= (16 - fbi->var.blue.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Pete Popov3b495f22005-04-04 01:06:19 +0000264 value = (red << fbi->var.red.offset) |
265 (green << fbi->var.green.offset)|
266 (blue << fbi->var.blue.offset);
267 value &= 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Pete Popov3b495f22005-04-04 01:06:19 +0000269 } else if (panel_is_active(fbdev->panel)) {
270 /* COLOR TFT PALLETTIZED (use RGB 565) */
271 value = (red & 0xF800)|((green >> 5) & 0x07E0)|((blue >> 11) & 0x001F);
272 value &= 0xFFFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Pete Popov3b495f22005-04-04 01:06:19 +0000274 } else if (panel_is_color(fbdev->panel)) {
275 /* COLOR STN MODE */
276 value = (((panel_swap_rgb(fbdev->panel) ? blue : red) >> 12) & 0x000F) |
277 ((green >> 8) & 0x00F0) |
278 (((panel_swap_rgb(fbdev->panel) ? red : blue) >> 4) & 0x0F00);
279 value &= 0xFFF;
280 } else {
281 /* MONOCHROME MODE */
282 value = (green >> 12) & 0x000F;
283 value &= 0xF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285
Pete Popov3b495f22005-04-04 01:06:19 +0000286 palette[regno] = value;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return 0;
289}
290
Pete Popov3b495f22005-04-04 01:06:19 +0000291/* fb_pan_display
292 * Pan display in x and/or y as specified
293 */
294int au1100fb_fb_pan_display(struct fb_var_screeninfo *var, struct fb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700296 struct au1100fb_device *fbdev;
Pete Popov3b495f22005-04-04 01:06:19 +0000297 int dy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700299 fbdev = to_au1100fb_device(fbi);
300
Pete Popov3b495f22005-04-04 01:06:19 +0000301 print_dbg("fb_pan_display %p %p", var, fbi);
302
303 if (!var || !fbdev) {
304 return -EINVAL;
305 }
306
307 if (var->xoffset - fbi->var.xoffset) {
308 /* No support for X panning for now! */
309 return -EINVAL;
310 }
311
312 print_dbg("fb_pan_display 2 %p %p", var, fbi);
313 dy = var->yoffset - fbi->var.yoffset;
314 if (dy) {
315
316 u32 dmaaddr;
317
318 print_dbg("Panning screen of %d lines", dy);
319
320 dmaaddr = fbdev->regs->lcd_dmaaddr0;
321 dmaaddr += (fbi->fix.line_length * dy);
322
323 /* TODO: Wait for current frame to finished */
324 fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(dmaaddr);
325
326 if (panel_is_dual(fbdev->panel)) {
327 dmaaddr = fbdev->regs->lcd_dmaaddr1;
328 dmaaddr += (fbi->fix.line_length * dy);
329 fbdev->regs->lcd_dmaaddr0 = LCD_DMA_SA_N(dmaaddr);
330 }
331 }
332 print_dbg("fb_pan_display 3 %p %p", var, fbi);
333
334 return 0;
335}
336
Pete Popov3b495f22005-04-04 01:06:19 +0000337/* fb_mmap
338 * Map video memory in user space. We don't use the generic fb_mmap method mainly
339 * to allow the use of the TLB streaming flag (CCA=6)
340 */
Christoph Hellwig216d5262006-01-14 13:21:25 -0800341int au1100fb_fb_mmap(struct fb_info *fbi, struct vm_area_struct *vma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Christoph Hellwig67f30ad2019-04-28 13:47:05 -0500343 struct au1100fb_device *fbdev = to_au1100fb_device(fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 pgprot_val(vma->vm_page_prot) |= (6 << 9); //CCA=6
346
Christoph Hellwig67f30ad2019-04-28 13:47:05 -0500347 return dma_mmap_coherent(fbdev->dev, vma, fbdev->fb_mem, fbdev->fb_phys,
348 fbdev->fb_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
350
Jani Nikula8a48ac332019-12-03 18:38:50 +0200351static const struct fb_ops au1100fb_ops =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Pete Popov3b495f22005-04-04 01:06:19 +0000353 .owner = THIS_MODULE,
354 .fb_setcolreg = au1100fb_fb_setcolreg,
355 .fb_blank = au1100fb_fb_blank,
356 .fb_pan_display = au1100fb_fb_pan_display,
357 .fb_fillrect = cfb_fillrect,
358 .fb_copyarea = cfb_copyarea,
359 .fb_imageblit = cfb_imageblit,
Pete Popov3b495f22005-04-04 01:06:19 +0000360 .fb_mmap = au1100fb_fb_mmap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361};
362
363
Pete Popov3b495f22005-04-04 01:06:19 +0000364/*-------------------------------------------------------------------------*/
365
Manuel Laussd121c3f2011-09-30 20:49:43 +0200366static int au1100fb_setup(struct au1100fb_device *fbdev)
367{
368 char *this_opt, *options;
369 int num_panels = ARRAY_SIZE(known_lcd_panels);
370
371 if (num_panels <= 0) {
372 print_err("No LCD panels supported by driver!");
373 return -ENODEV;
374 }
375
376 if (fb_get_options(DRIVER_NAME, &options))
377 return -ENODEV;
378 if (!options)
379 return -ENODEV;
380
381 while ((this_opt = strsep(&options, ",")) != NULL) {
382 /* Panel option */
383 if (!strncmp(this_opt, "panel:", 6)) {
384 int i;
385 this_opt += 6;
386 for (i = 0; i < num_panels; i++) {
387 if (!strncmp(this_opt, known_lcd_panels[i].name,
388 strlen(this_opt))) {
389 fbdev->panel = &known_lcd_panels[i];
390 fbdev->panel_idx = i;
391 break;
392 }
393 }
394 if (i >= num_panels) {
395 print_warn("Panel '%s' not supported!", this_opt);
396 return -ENODEV;
397 }
398 }
399 /* Unsupported option */
400 else
401 print_warn("Unsupported option \"%s\"", this_opt);
402 }
403
404 print_info("Panel=%s", fbdev->panel->name);
405
406 return 0;
407}
Pete Popov3b495f22005-04-04 01:06:19 +0000408
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -0800409static int au1100fb_drv_probe(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Markus Elfring46953e62018-03-28 16:34:29 +0200411 struct au1100fb_device *fbdev;
Pete Popov3b495f22005-04-04 01:06:19 +0000412 struct resource *regs_res;
Manuel Lauss6b1889c2014-07-23 16:36:54 +0200413 struct clk *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Pete Popov3b495f22005-04-04 01:06:19 +0000415 /* Allocate new device private */
Markus Elfringdb66f022018-03-28 16:34:29 +0200416 fbdev = devm_kzalloc(&dev->dev, sizeof(*fbdev), GFP_KERNEL);
Markus Elfring29914ba2018-03-28 16:34:29 +0200417 if (!fbdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return -ENOMEM;
Pete Popov3b495f22005-04-04 01:06:19 +0000419
Manuel Laussd121c3f2011-09-30 20:49:43 +0200420 if (au1100fb_setup(fbdev))
421 goto failed;
Pete Popov3b495f22005-04-04 01:06:19 +0000422
Ming Lei7a192ec2009-02-06 23:40:12 +0800423 platform_set_drvdata(dev, (void *)fbdev);
Christoph Hellwig67f30ad2019-04-28 13:47:05 -0500424 fbdev->dev = &dev->dev;
Pete Popov3b495f22005-04-04 01:06:19 +0000425
426 /* Allocate region for our registers and map them */
Manuel Laussd121c3f2011-09-30 20:49:43 +0200427 regs_res = platform_get_resource(dev, IORESOURCE_MEM, 0);
428 if (!regs_res) {
Pete Popov3b495f22005-04-04 01:06:19 +0000429 print_err("fail to retrieve registers resource");
430 return -EFAULT;
431 }
432
433 au1100fb_fix.mmio_start = regs_res->start;
Joe Perches28f65c112011-06-09 09:13:32 -0700434 au1100fb_fix.mmio_len = resource_size(regs_res);
Pete Popov3b495f22005-04-04 01:06:19 +0000435
Manuel Lauss93019732012-03-24 11:38:02 +0100436 if (!devm_request_mem_region(&dev->dev,
437 au1100fb_fix.mmio_start,
Julia Lawall1c166972012-01-21 16:01:58 +0100438 au1100fb_fix.mmio_len,
439 DRIVER_NAME)) {
Rodolfo Giomettic05b7f32006-05-30 21:26:57 -0700440 print_err("fail to lock memory region at 0x%08lx",
Pete Popov3b495f22005-04-04 01:06:19 +0000441 au1100fb_fix.mmio_start);
442 return -EBUSY;
443 }
444
445 fbdev->regs = (struct au1100fb_regs*)KSEG1ADDR(au1100fb_fix.mmio_start);
446
447 print_dbg("Register memory map at %p", fbdev->regs);
448 print_dbg("phys=0x%08x, size=%d", fbdev->regs_phys, fbdev->regs_len);
449
Manuel Lauss6b1889c2014-07-23 16:36:54 +0200450 c = clk_get(NULL, "lcd_intclk");
451 if (!IS_ERR(c)) {
452 fbdev->lcdclk = c;
453 clk_set_rate(c, 48000000);
454 clk_prepare_enable(c);
455 }
456
Pete Popov3b495f22005-04-04 01:06:19 +0000457 /* Allocate the framebuffer to the maximum screen size * nbr of video buffers */
458 fbdev->fb_len = fbdev->panel->xres * fbdev->panel->yres *
459 (fbdev->panel->bpp >> 3) * AU1100FB_NBR_VIDEO_BUFFERS;
460
Manuel Lauss93019732012-03-24 11:38:02 +0100461 fbdev->fb_mem = dmam_alloc_coherent(&dev->dev,
Julia Lawall1c166972012-01-21 16:01:58 +0100462 PAGE_ALIGN(fbdev->fb_len),
463 &fbdev->fb_phys, GFP_KERNEL);
Pete Popov3b495f22005-04-04 01:06:19 +0000464 if (!fbdev->fb_mem) {
Colin Ian King38794902018-05-15 12:41:11 +0200465 print_err("fail to allocate framebuffer (size: %dK))",
Pete Popov3b495f22005-04-04 01:06:19 +0000466 fbdev->fb_len / 1024);
467 return -ENOMEM;
468 }
469
470 au1100fb_fix.smem_start = fbdev->fb_phys;
471 au1100fb_fix.smem_len = fbdev->fb_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Pete Popov3b495f22005-04-04 01:06:19 +0000473 print_dbg("Framebuffer memory map at %p", fbdev->fb_mem);
474 print_dbg("phys=0x%08x, size=%dK", fbdev->fb_phys, fbdev->fb_len / 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Pete Popov3b495f22005-04-04 01:06:19 +0000476 /* load the panel info into the var struct */
477 au1100fb_var.bits_per_pixel = fbdev->panel->bpp;
478 au1100fb_var.xres = fbdev->panel->xres;
479 au1100fb_var.xres_virtual = au1100fb_var.xres;
480 au1100fb_var.yres = fbdev->panel->yres;
481 au1100fb_var.yres_virtual = au1100fb_var.yres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Pete Popov3b495f22005-04-04 01:06:19 +0000483 fbdev->info.screen_base = fbdev->fb_mem;
484 fbdev->info.fbops = &au1100fb_ops;
485 fbdev->info.fix = au1100fb_fix;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Julia Lawall1c166972012-01-21 16:01:58 +0100487 fbdev->info.pseudo_palette =
Kees Cooka86854d2018-06-12 14:07:58 -0700488 devm_kcalloc(&dev->dev, 16, sizeof(u32), GFP_KERNEL);
Julia Lawall1c166972012-01-21 16:01:58 +0100489 if (!fbdev->info.pseudo_palette)
Pete Popov3b495f22005-04-04 01:06:19 +0000490 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Pete Popov3b495f22005-04-04 01:06:19 +0000492 if (fb_alloc_cmap(&fbdev->info.cmap, AU1100_LCD_NBR_PALETTE_ENTRIES, 0) < 0) {
493 print_err("Fail to allocate colormap (%d entries)",
494 AU1100_LCD_NBR_PALETTE_ENTRIES);
Pete Popov3b495f22005-04-04 01:06:19 +0000495 return -EFAULT;
496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Pete Popov3b495f22005-04-04 01:06:19 +0000498 fbdev->info.var = au1100fb_var;
499
500 /* Set h/w registers */
501 au1100fb_setmode(fbdev);
502
503 /* Register new framebuffer */
504 if (register_framebuffer(&fbdev->info) < 0) {
505 print_err("cannot register new framebuffer");
506 goto failed;
507 }
508
509 return 0;
510
511failed:
Manuel Lauss6b1889c2014-07-23 16:36:54 +0200512 if (fbdev->lcdclk) {
513 clk_disable_unprepare(fbdev->lcdclk);
514 clk_put(fbdev->lcdclk);
515 }
Pete Popov3b495f22005-04-04 01:06:19 +0000516 if (fbdev->info.cmap.len != 0) {
517 fb_dealloc_cmap(&fbdev->info.cmap);
518 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Julia Lawall1c166972012-01-21 16:01:58 +0100520 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Ming Lei7a192ec2009-02-06 23:40:12 +0800523int au1100fb_drv_remove(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Pete Popov3b495f22005-04-04 01:06:19 +0000525 struct au1100fb_device *fbdev = NULL;
526
527 if (!dev)
528 return -ENODEV;
529
Jingoo Han5a7bbe82013-09-09 14:49:14 +0900530 fbdev = platform_get_drvdata(dev);
Pete Popov3b495f22005-04-04 01:06:19 +0000531
532#if !defined(CONFIG_FRAMEBUFFER_CONSOLE) && defined(CONFIG_LOGO)
533 au1100fb_fb_blank(VESA_POWERDOWN, &fbdev->info);
534#endif
535 fbdev->regs->lcd_control &= ~LCD_CONTROL_GO;
536
537 /* Clean up all probe data */
538 unregister_framebuffer(&fbdev->info);
539
Pete Popov3b495f22005-04-04 01:06:19 +0000540 fb_dealloc_cmap(&fbdev->info.cmap);
Pete Popov3b495f22005-04-04 01:06:19 +0000541
Manuel Lauss6b1889c2014-07-23 16:36:54 +0200542 if (fbdev->lcdclk) {
543 clk_disable_unprepare(fbdev->lcdclk);
544 clk_put(fbdev->lcdclk);
545 }
546
Pete Popov3b495f22005-04-04 01:06:19 +0000547 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700550#ifdef CONFIG_PM
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700551static struct au1100fb_regs fbregs;
552
Ming Lei7a192ec2009-02-06 23:40:12 +0800553int au1100fb_drv_suspend(struct platform_device *dev, pm_message_t state)
Pete Popov3b495f22005-04-04 01:06:19 +0000554{
Ming Lei7a192ec2009-02-06 23:40:12 +0800555 struct au1100fb_device *fbdev = platform_get_drvdata(dev);
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700556
557 if (!fbdev)
558 return 0;
559
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700560 /* Blank the LCD */
561 au1100fb_fb_blank(VESA_POWERDOWN, &fbdev->info);
562
Manuel Lauss6b1889c2014-07-23 16:36:54 +0200563 if (fbdev->lcdclk)
564 clk_disable(fbdev->lcdclk);
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700565
566 memcpy(&fbregs, fbdev->regs, sizeof(struct au1100fb_regs));
567
Pete Popov3b495f22005-04-04 01:06:19 +0000568 return 0;
569}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Ming Lei7a192ec2009-02-06 23:40:12 +0800571int au1100fb_drv_resume(struct platform_device *dev)
Pete Popov3b495f22005-04-04 01:06:19 +0000572{
Ming Lei7a192ec2009-02-06 23:40:12 +0800573 struct au1100fb_device *fbdev = platform_get_drvdata(dev);
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700574
575 if (!fbdev)
576 return 0;
577
578 memcpy(fbdev->regs, &fbregs, sizeof(struct au1100fb_regs));
579
Manuel Lauss6b1889c2014-07-23 16:36:54 +0200580 if (fbdev->lcdclk)
581 clk_enable(fbdev->lcdclk);
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700582
583 /* Unblank the LCD */
584 au1100fb_fb_blank(VESA_NO_BLANKING, &fbdev->info);
585
Pete Popov3b495f22005-04-04 01:06:19 +0000586 return 0;
587}
Rodolfo Giomettif77f50c2006-06-26 00:26:49 -0700588#else
589#define au1100fb_drv_suspend NULL
590#define au1100fb_drv_resume NULL
591#endif
Pete Popov3b495f22005-04-04 01:06:19 +0000592
Ming Lei7a192ec2009-02-06 23:40:12 +0800593static struct platform_driver au1100fb_driver = {
594 .driver = {
595 .name = "au1100-lcd",
Ming Lei7a192ec2009-02-06 23:40:12 +0800596 },
Pete Popov3b495f22005-04-04 01:06:19 +0000597 .probe = au1100fb_drv_probe,
598 .remove = au1100fb_drv_remove,
599 .suspend = au1100fb_drv_suspend,
600 .resume = au1100fb_drv_resume,
601};
Hanjun Guo55be3102013-09-29 13:32:10 +0800602module_platform_driver(au1100fb_driver);
Pete Popov3b495f22005-04-04 01:06:19 +0000603
604MODULE_DESCRIPTION(DRIVER_DESC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605MODULE_LICENSE("GPL");