blob: 8f5557a12ff8cb936e89f1fcf51178143523e208 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/video/sa1100fb.c
3 *
4 * Copyright (C) 1999 Eric A. Thomas
5 * Based on acornfb.c Copyright (C) Russell King.
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file COPYING in the main directory of this archive for
9 * more details.
10 *
11 * StrongARM 1100 LCD Controller Frame Buffer Driver
12 *
13 * Please direct your questions and comments on this driver to the following
14 * email address:
15 *
16 * linux-arm-kernel@lists.arm.linux.org.uk
17 *
18 * Clean patches should be sent to the ARM Linux Patch System. Please see the
19 * following web page for more information:
20 *
21 * http://www.arm.linux.org.uk/developer/patches/info.shtml
22 *
23 * Thank you.
24 *
25 * Known problems:
26 * - With the Neponset plugged into an Assabet, LCD powerdown
27 * doesn't work (LCD stays powered up). Therefore we shouldn't
28 * blank the screen.
29 * - We don't limit the CPU clock rate nor the mode selection
30 * according to the available SDRAM bandwidth.
31 *
32 * Other notes:
33 * - Linear grayscale palettes and the kernel.
34 * Such code does not belong in the kernel. The kernel frame buffer
35 * drivers do not expect a linear colourmap, but a colourmap based on
36 * the VT100 standard mapping.
37 *
38 * If your _userspace_ requires a linear colourmap, then the setup of
39 * such a colourmap belongs _in userspace_, not in the kernel. Code
40 * to set the colourmap correctly from user space has been sent to
41 * David Neuer. It's around 8 lines of C code, plus another 4 to
42 * detect if we are using grayscale.
43 *
44 * - The following must never be specified in a panel definition:
45 * LCCR0_LtlEnd, LCCR3_PixClkDiv, LCCR3_VrtSnchL, LCCR3_HorSnchL
46 *
47 * - The following should be specified:
48 * either LCCR0_Color or LCCR0_Mono
49 * either LCCR0_Sngl or LCCR0_Dual
50 * either LCCR0_Act or LCCR0_Pas
51 * either LCCR3_OutEnH or LCCD3_OutEnL
52 * either LCCR3_PixRsEdg or LCCR3_PixFlEdg
53 * either LCCR3_ACBsDiv or LCCR3_ACBsCntOff
54 *
55 * Code Status:
56 * 1999/04/01:
57 * - Driver appears to be working for Brutus 320x200x8bpp mode. Other
58 * resolutions are working, but only the 8bpp mode is supported.
59 * Changes need to be made to the palette encode and decode routines
60 * to support 4 and 16 bpp modes.
61 * Driver is not designed to be a module. The FrameBuffer is statically
62 * allocated since dynamic allocation of a 300k buffer cannot be
63 * guaranteed.
64 *
65 * 1999/06/17:
66 * - FrameBuffer memory is now allocated at run-time when the
67 * driver is initialized.
68 *
Nicolas Pitre2f82af02009-09-14 03:25:28 -040069 * 2000/04/10: Nicolas Pitre <nico@fluxnic.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 * - Big cleanup for dynamic selection of machine type at run time.
71 *
72 * 2000/07/19: Jamey Hicks <jamey@crl.dec.com>
73 * - Support for Bitsy aka Compaq iPAQ H3600 added.
74 *
75 * 2000/08/07: Tak-Shing Chan <tchan.rd@idthk.com>
76 * Jeff Sutherland <jsutherland@accelent.com>
77 * - Resolved an issue caused by a change made to the Assabet's PLD
78 * earlier this year which broke the framebuffer driver for newer
79 * Phase 4 Assabets. Some other parameters were changed to optimize
80 * for the Sharp display.
81 *
82 * 2000/08/09: Kunihiko IMAI <imai@vasara.co.jp>
83 * - XP860 support added
84 *
85 * 2000/08/19: Mark Huang <mhuang@livetoy.com>
86 * - Allows standard options to be passed on the kernel command line
87 * for most common passive displays.
88 *
89 * 2000/08/29:
90 * - s/save_flags_cli/local_irq_save/
91 * - remove unneeded extra save_flags_cli in sa1100fb_enable_lcd_controller
92 *
93 * 2000/10/10: Erik Mouw <J.A.K.Mouw@its.tudelft.nl>
94 * - Updated LART stuff. Fixed some minor bugs.
95 *
96 * 2000/10/30: Murphy Chen <murphy@mail.dialogue.com.tw>
97 * - Pangolin support added
98 *
99 * 2000/10/31: Roman Jordan <jor@hoeft-wessel.de>
100 * - Huw Webpanel support added
101 *
102 * 2000/11/23: Eric Peng <ericpeng@coventive.com>
103 * - Freebird add
104 *
105 * 2001/02/07: Jamey Hicks <jamey.hicks@compaq.com>
106 * Cliff Brake <cbrake@accelent.com>
107 * - Added PM callback
108 *
109 * 2001/05/26: <rmk@arm.linux.org.uk>
110 * - Fix 16bpp so that (a) we use the right colours rather than some
111 * totally random colour depending on what was in page 0, and (b)
112 * we don't de-reference a NULL pointer.
113 * - remove duplicated implementation of consistent_alloc()
114 * - convert dma address types to dma_addr_t
115 * - remove unused 'montype' stuff
116 * - remove redundant zero inits of init_var after the initial
Russell King59f0cb02008-10-27 11:24:09 +0000117 * memset.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 * - remove allow_modeset (acornfb idea does not belong here)
119 *
120 * 2001/05/28: <rmk@arm.linux.org.uk>
121 * - massive cleanup - move machine dependent data into structures
122 * - I've left various #warnings in - if you see one, and know
123 * the hardware concerned, please get in contact with me.
124 *
125 * 2001/05/31: <rmk@arm.linux.org.uk>
126 * - Fix LCCR1 HSW value, fix all machine type specifications to
127 * keep values in line. (Please check your machine type specs)
128 *
129 * 2001/06/10: <rmk@arm.linux.org.uk>
130 * - Fiddle with the LCD controller from task context only; mainly
131 * so that we can run with interrupts on, and sleep.
132 * - Convert #warnings into #errors. No pain, no gain. ;)
133 *
134 * 2001/06/14: <rmk@arm.linux.org.uk>
135 * - Make the palette BPS value for 12bpp come out correctly.
136 * - Take notice of "greyscale" on any colour depth.
137 * - Make truecolor visuals use the RGB channel encoding information.
138 *
139 * 2001/07/02: <rmk@arm.linux.org.uk>
140 * - Fix colourmap problems.
141 *
142 * 2001/07/13: <abraham@2d3d.co.za>
143 * - Added support for the ICP LCD-Kit01 on LART. This LCD is
144 * manufactured by Prime View, model no V16C6448AB
145 *
146 * 2001/07/23: <rmk@arm.linux.org.uk>
147 * - Hand merge version from handhelds.org CVS tree. See patch
148 * notes for 595/1 for more information.
149 * - Drop 12bpp (it's 16bpp with different colour register mappings).
150 * - This hardware can not do direct colour. Therefore we don't
151 * support it.
152 *
153 * 2001/07/27: <rmk@arm.linux.org.uk>
154 * - Halve YRES on dual scan LCDs.
155 *
156 * 2001/08/22: <rmk@arm.linux.org.uk>
157 * - Add b/w iPAQ pixclock value.
158 *
159 * 2001/10/12: <rmk@arm.linux.org.uk>
160 * - Add patch 681/1 and clean up stork definitions.
161 */
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#include <linux/module.h>
164#include <linux/kernel.h>
165#include <linux/sched.h>
166#include <linux/errno.h>
167#include <linux/string.h>
168#include <linux/interrupt.h>
169#include <linux/slab.h>
Andrea Righi27ac7922008-07-23 21:28:13 -0700170#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#include <linux/fb.h>
172#include <linux/delay.h>
173#include <linux/init.h>
174#include <linux/ioport.h>
175#include <linux/cpufreq.h>
Russell Kingd052d1b2005-10-29 19:07:23 +0100176#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#include <linux/dma-mapping.h>
Matthias Kaehlcke7951ac92008-07-23 21:31:16 -0700178#include <linux/mutex.h>
Russell King99730222009-03-25 10:21:35 +0000179#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Russell King9e6720f2012-01-14 10:56:06 +0000181#include <video/sa1100fb.h>
182
Russell Kinga09e64f2008-08-05 16:14:15 +0100183#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#include <asm/mach-types.h>
Russell Kinga09e64f2008-08-05 16:14:15 +0100185#include <mach/assabet.h>
186#include <mach/shannon.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 * Complain if VAR is out of range.
190 */
191#define DEBUG_VAR 1
192
193#undef ASSABET_PAL_VIDEO
194
195#include "sa1100fb.h"
196
197extern void (*sa1100fb_backlight_power)(int on);
198extern void (*sa1100fb_lcd_power)(int on);
199
Russell King58f5cbf2012-01-14 10:13:30 +0000200static const struct sa1100fb_rgb rgb_4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 .red = { .offset = 0, .length = 4, },
202 .green = { .offset = 0, .length = 4, },
203 .blue = { .offset = 0, .length = 4, },
204 .transp = { .offset = 0, .length = 0, },
205};
206
Russell King58f5cbf2012-01-14 10:13:30 +0000207static const struct sa1100fb_rgb rgb_8 = {
Michal Januszewski0a453482009-04-13 14:39:51 -0700208 .red = { .offset = 0, .length = 8, },
209 .green = { .offset = 0, .length = 8, },
210 .blue = { .offset = 0, .length = 8, },
211 .transp = { .offset = 0, .length = 0, },
212};
213
Russell King58f5cbf2012-01-14 10:13:30 +0000214static const struct sa1100fb_rgb def_rgb_16 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 .red = { .offset = 11, .length = 5, },
216 .green = { .offset = 5, .length = 6, },
217 .blue = { .offset = 0, .length = 5, },
218 .transp = { .offset = 0, .length = 0, },
219};
220
221#ifdef CONFIG_SA1100_ASSABET
222#ifndef ASSABET_PAL_VIDEO
223/*
224 * The assabet uses a sharp LQ039Q2DS54 LCD module. It is actually
225 * takes an RGB666 signal, but we provide it with an RGB565 signal
226 * instead (def_rgb_16).
227 */
Russell King66564d82012-01-14 10:00:38 +0000228static struct sa1100fb_mach_info lq039q2ds54_info __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 .pixclock = 171521, .bpp = 16,
230 .xres = 320, .yres = 240,
231
232 .hsync_len = 5, .vsync_len = 1,
233 .left_margin = 61, .upper_margin = 3,
234 .right_margin = 9, .lower_margin = 0,
235
236 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
237
238 .lccr0 = LCCR0_Color | LCCR0_Sngl | LCCR0_Act,
239 .lccr3 = LCCR3_OutEnH | LCCR3_PixRsEdg | LCCR3_ACBsDiv(2),
240};
241#else
Russell King66564d82012-01-14 10:00:38 +0000242static struct sa1100fb_mach_info pal_info __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 .pixclock = 67797, .bpp = 16,
244 .xres = 640, .yres = 512,
245
246 .hsync_len = 64, .vsync_len = 6,
247 .left_margin = 125, .upper_margin = 70,
248 .right_margin = 115, .lower_margin = 36,
249
250 .lccr0 = LCCR0_Color | LCCR0_Sngl | LCCR0_Act,
251 .lccr3 = LCCR3_OutEnH | LCCR3_PixRsEdg | LCCR3_ACBsDiv(512),
252};
253#endif
254#endif
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#ifdef CONFIG_SA1100_H3600
Russell King531060f2012-01-14 10:49:44 +0000257static const struct sa1100fb_rgb h3600_rgb_16 = {
258 .red = { .offset = 12, .length = 4, },
259 .green = { .offset = 7, .length = 4, },
260 .blue = { .offset = 1, .length = 4, },
261 .transp = { .offset = 0, .length = 0, },
262};
263
Russell King66564d82012-01-14 10:00:38 +0000264static struct sa1100fb_mach_info h3600_info __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 .pixclock = 174757, .bpp = 16,
266 .xres = 320, .yres = 240,
267
268 .hsync_len = 3, .vsync_len = 3,
269 .left_margin = 12, .upper_margin = 10,
270 .right_margin = 17, .lower_margin = 1,
271
272 .cmap_static = 1,
273
274 .lccr0 = LCCR0_Color | LCCR0_Sngl | LCCR0_Act,
275 .lccr3 = LCCR3_OutEnH | LCCR3_PixRsEdg | LCCR3_ACBsDiv(2),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Russell King531060f2012-01-14 10:49:44 +0000277 .rgb[RGB_16] = &h3600_rgb_16,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278};
279#endif
280
281#ifdef CONFIG_SA1100_H3100
Russell King66564d82012-01-14 10:00:38 +0000282static struct sa1100fb_mach_info h3100_info __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 .pixclock = 406977, .bpp = 4,
284 .xres = 320, .yres = 240,
285
286 .hsync_len = 26, .vsync_len = 41,
287 .left_margin = 4, .upper_margin = 0,
288 .right_margin = 4, .lower_margin = 0,
289
290 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
291 .cmap_greyscale = 1,
292 .cmap_inverse = 1,
293
294 .lccr0 = LCCR0_Mono | LCCR0_4PixMono | LCCR0_Sngl | LCCR0_Pas,
295 .lccr3 = LCCR3_OutEnH | LCCR3_PixRsEdg | LCCR3_ACBsDiv(2),
296};
297#endif
298
299#ifdef CONFIG_SA1100_COLLIE
Russell King66564d82012-01-14 10:00:38 +0000300static struct sa1100fb_mach_info collie_info __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 .pixclock = 171521, .bpp = 16,
302 .xres = 320, .yres = 240,
303
304 .hsync_len = 5, .vsync_len = 1,
305 .left_margin = 11, .upper_margin = 2,
306 .right_margin = 30, .lower_margin = 0,
307
308 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
309
310 .lccr0 = LCCR0_Color | LCCR0_Sngl | LCCR0_Act,
311 .lccr3 = LCCR3_OutEnH | LCCR3_PixRsEdg | LCCR3_ACBsDiv(2),
312};
313#endif
314
315#ifdef LART_GREY_LCD
Russell King66564d82012-01-14 10:00:38 +0000316static struct sa1100fb_mach_info lart_grey_info __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 .pixclock = 150000, .bpp = 4,
318 .xres = 320, .yres = 240,
319
320 .hsync_len = 1, .vsync_len = 1,
321 .left_margin = 4, .upper_margin = 0,
322 .right_margin = 2, .lower_margin = 0,
323
324 .cmap_greyscale = 1,
325 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
326
327 .lccr0 = LCCR0_Mono | LCCR0_Sngl | LCCR0_Pas | LCCR0_4PixMono,
328 .lccr3 = LCCR3_OutEnH | LCCR3_PixRsEdg | LCCR3_ACBsDiv(512),
329};
330#endif
331#ifdef LART_COLOR_LCD
Russell King66564d82012-01-14 10:00:38 +0000332static struct sa1100fb_mach_info lart_color_info __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 .pixclock = 150000, .bpp = 16,
334 .xres = 320, .yres = 240,
335
336 .hsync_len = 2, .vsync_len = 3,
337 .left_margin = 69, .upper_margin = 14,
338 .right_margin = 8, .lower_margin = 4,
339
340 .lccr0 = LCCR0_Color | LCCR0_Sngl | LCCR0_Act,
341 .lccr3 = LCCR3_OutEnH | LCCR3_PixFlEdg | LCCR3_ACBsDiv(512),
342};
343#endif
344#ifdef LART_VIDEO_OUT
Russell King66564d82012-01-14 10:00:38 +0000345static struct sa1100fb_mach_info lart_video_info __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 .pixclock = 39721, .bpp = 16,
347 .xres = 640, .yres = 480,
348
349 .hsync_len = 95, .vsync_len = 2,
350 .left_margin = 40, .upper_margin = 32,
351 .right_margin = 24, .lower_margin = 11,
352
353 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
354
355 .lccr0 = LCCR0_Color | LCCR0_Sngl | LCCR0_Act,
356 .lccr3 = LCCR3_OutEnL | LCCR3_PixFlEdg | LCCR3_ACBsDiv(512),
357};
358#endif
359
360#ifdef LART_KIT01_LCD
Russell King66564d82012-01-14 10:00:38 +0000361static struct sa1100fb_mach_info lart_kit01_info __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 .pixclock = 63291, .bpp = 16,
363 .xres = 640, .yres = 480,
364
365 .hsync_len = 64, .vsync_len = 3,
366 .left_margin = 122, .upper_margin = 45,
367 .right_margin = 10, .lower_margin = 10,
368
369 .lccr0 = LCCR0_Color | LCCR0_Sngl | LCCR0_Act,
370 .lccr3 = LCCR3_OutEnH | LCCR3_PixFlEdg
371};
372#endif
373
374#ifdef CONFIG_SA1100_SHANNON
Russell King66564d82012-01-14 10:00:38 +0000375static struct sa1100fb_mach_info shannon_info __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 .pixclock = 152500, .bpp = 8,
377 .xres = 640, .yres = 480,
378
379 .hsync_len = 4, .vsync_len = 3,
380 .left_margin = 2, .upper_margin = 0,
381 .right_margin = 1, .lower_margin = 0,
382
383 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
384
385 .lccr0 = LCCR0_Color | LCCR0_Dual | LCCR0_Pas,
386 .lccr3 = LCCR3_ACBsDiv(512),
387};
388#endif
389
390
391
Russell King66564d82012-01-14 10:00:38 +0000392static struct sa1100fb_mach_info * __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393sa1100fb_get_machine_info(struct sa1100fb_info *fbi)
394{
395 struct sa1100fb_mach_info *inf = NULL;
396
397 /*
398 * R G B T
399 * default {11,5}, { 5,6}, { 0,5}, { 0,0}
400 * h3600 {12,4}, { 7,4}, { 1,4}, { 0,0}
401 * freebird { 8,4}, { 4,4}, { 0,4}, {12,4}
402 */
403#ifdef CONFIG_SA1100_ASSABET
404 if (machine_is_assabet()) {
405#ifndef ASSABET_PAL_VIDEO
406 inf = &lq039q2ds54_info;
407#else
408 inf = &pal_info;
409#endif
410 }
411#endif
412#ifdef CONFIG_SA1100_H3100
413 if (machine_is_h3100()) {
414 inf = &h3100_info;
415 }
416#endif
417#ifdef CONFIG_SA1100_H3600
418 if (machine_is_h3600()) {
419 inf = &h3600_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422#ifdef CONFIG_SA1100_COLLIE
423 if (machine_is_collie()) {
424 inf = &collie_info;
425 }
426#endif
427#ifdef CONFIG_SA1100_LART
428 if (machine_is_lart()) {
429#ifdef LART_GREY_LCD
430 inf = &lart_grey_info;
431#endif
432#ifdef LART_COLOR_LCD
433 inf = &lart_color_info;
434#endif
435#ifdef LART_VIDEO_OUT
436 inf = &lart_video_info;
437#endif
438#ifdef LART_KIT01_LCD
439 inf = &lart_kit01_info;
440#endif
441 }
442#endif
443#ifdef CONFIG_SA1100_SHANNON
444 if (machine_is_shannon()) {
445 inf = &shannon_info;
446 }
447#endif
448 return inf;
449}
450
451static int sa1100fb_activate_var(struct fb_var_screeninfo *var, struct sa1100fb_info *);
452static void set_ctrlr_state(struct sa1100fb_info *fbi, u_int state);
453
454static inline void sa1100fb_schedule_work(struct sa1100fb_info *fbi, u_int state)
455{
456 unsigned long flags;
457
458 local_irq_save(flags);
459 /*
460 * We need to handle two requests being made at the same time.
461 * There are two important cases:
462 * 1. When we are changing VT (C_REENABLE) while unblanking (C_ENABLE)
463 * We must perform the unblanking, which will do our REENABLE for us.
464 * 2. When we are blanking, but immediately unblank before we have
465 * blanked. We do the "REENABLE" thing here as well, just to be sure.
466 */
467 if (fbi->task_state == C_ENABLE && state == C_REENABLE)
468 state = (u_int) -1;
469 if (fbi->task_state == C_DISABLE && state == C_ENABLE)
470 state = C_REENABLE;
471
472 if (state != (u_int)-1) {
473 fbi->task_state = state;
474 schedule_work(&fbi->task);
475 }
476 local_irq_restore(flags);
477}
478
479static inline u_int chan_to_field(u_int chan, struct fb_bitfield *bf)
480{
481 chan &= 0xffff;
482 chan >>= 16 - bf->length;
483 return chan << bf->offset;
484}
485
486/*
487 * Convert bits-per-pixel to a hardware palette PBS value.
488 */
489static inline u_int palette_pbs(struct fb_var_screeninfo *var)
490{
491 int ret = 0;
492 switch (var->bits_per_pixel) {
493 case 4: ret = 0 << 12; break;
494 case 8: ret = 1 << 12; break;
495 case 16: ret = 2 << 12; break;
496 }
497 return ret;
498}
499
500static int
501sa1100fb_setpalettereg(u_int regno, u_int red, u_int green, u_int blue,
502 u_int trans, struct fb_info *info)
503{
504 struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;
505 u_int val, ret = 1;
506
507 if (regno < fbi->palette_size) {
508 val = ((red >> 4) & 0xf00);
509 val |= ((green >> 8) & 0x0f0);
510 val |= ((blue >> 12) & 0x00f);
511
512 if (regno == 0)
513 val |= palette_pbs(&fbi->fb.var);
514
515 fbi->palette_cpu[regno] = val;
516 ret = 0;
517 }
518 return ret;
519}
520
521static int
522sa1100fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
523 u_int trans, struct fb_info *info)
524{
525 struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;
526 unsigned int val;
527 int ret = 1;
528
529 /*
530 * If inverse mode was selected, invert all the colours
531 * rather than the register number. The register number
532 * is what you poke into the framebuffer to produce the
533 * colour you requested.
534 */
535 if (fbi->cmap_inverse) {
536 red = 0xffff - red;
537 green = 0xffff - green;
538 blue = 0xffff - blue;
539 }
540
541 /*
542 * If greyscale is true, then we convert the RGB value
543 * to greyscale no mater what visual we are using.
544 */
545 if (fbi->fb.var.grayscale)
546 red = green = blue = (19595 * red + 38470 * green +
547 7471 * blue) >> 16;
548
549 switch (fbi->fb.fix.visual) {
550 case FB_VISUAL_TRUECOLOR:
551 /*
552 * 12 or 16-bit True Colour. We encode the RGB value
553 * according to the RGB bitfield information.
554 */
555 if (regno < 16) {
556 u32 *pal = fbi->fb.pseudo_palette;
557
558 val = chan_to_field(red, &fbi->fb.var.red);
559 val |= chan_to_field(green, &fbi->fb.var.green);
560 val |= chan_to_field(blue, &fbi->fb.var.blue);
561
562 pal[regno] = val;
563 ret = 0;
564 }
565 break;
566
567 case FB_VISUAL_STATIC_PSEUDOCOLOR:
568 case FB_VISUAL_PSEUDOCOLOR:
569 ret = sa1100fb_setpalettereg(regno, red, green, blue, trans, info);
570 break;
571 }
572
573 return ret;
574}
575
Pavel Machek6edb7462005-10-14 15:59:01 -0700576#ifdef CONFIG_CPU_FREQ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/*
578 * sa1100fb_display_dma_period()
579 * Calculate the minimum period (in picoseconds) between two DMA
580 * requests for the LCD controller. If we hit this, it means we're
581 * doing nothing but LCD DMA.
582 */
Russell Kingfc1df37e32005-08-07 14:20:26 +0100583static inline unsigned int sa1100fb_display_dma_period(struct fb_var_screeninfo *var)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
585 /*
586 * Period = pixclock * bits_per_byte * bytes_per_transfer
587 * / memory_bits_per_pixel;
588 */
589 return var->pixclock * 8 * 16 / var->bits_per_pixel;
590}
Pavel Machek6edb7462005-10-14 15:59:01 -0700591#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593/*
594 * sa1100fb_check_var():
595 * Round up in the following order: bits_per_pixel, xres,
596 * yres, xres_virtual, yres_virtual, xoffset, yoffset, grayscale,
597 * bitfields, horizontal timing, vertical timing.
598 */
599static int
600sa1100fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
601{
602 struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;
603 int rgbidx;
604
605 if (var->xres < MIN_XRES)
606 var->xres = MIN_XRES;
607 if (var->yres < MIN_YRES)
608 var->yres = MIN_YRES;
609 if (var->xres > fbi->max_xres)
610 var->xres = fbi->max_xres;
611 if (var->yres > fbi->max_yres)
612 var->yres = fbi->max_yres;
613 var->xres_virtual = max(var->xres_virtual, var->xres);
614 var->yres_virtual = max(var->yres_virtual, var->yres);
615
Russell King79889292012-01-14 10:22:56 +0000616 dev_dbg(fbi->dev, "var->bits_per_pixel=%d\n", var->bits_per_pixel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 switch (var->bits_per_pixel) {
618 case 4:
Michal Januszewski0a453482009-04-13 14:39:51 -0700619 rgbidx = RGB_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 break;
621 case 8:
622 rgbidx = RGB_8;
623 break;
624 case 16:
625 rgbidx = RGB_16;
626 break;
627 default:
628 return -EINVAL;
629 }
630
631 /*
632 * Copy the RGB parameters for this display
633 * from the machine specific parameters.
634 */
635 var->red = fbi->rgb[rgbidx]->red;
636 var->green = fbi->rgb[rgbidx]->green;
637 var->blue = fbi->rgb[rgbidx]->blue;
638 var->transp = fbi->rgb[rgbidx]->transp;
639
Russell King79889292012-01-14 10:22:56 +0000640 dev_dbg(fbi->dev, "RGBT length = %d:%d:%d:%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 var->red.length, var->green.length, var->blue.length,
642 var->transp.length);
643
Russell King79889292012-01-14 10:22:56 +0000644 dev_dbg(fbi->dev, "RGBT offset = %d:%d:%d:%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 var->red.offset, var->green.offset, var->blue.offset,
646 var->transp.offset);
647
648#ifdef CONFIG_CPU_FREQ
Russell King79889292012-01-14 10:22:56 +0000649 dev_dbg(fbi->dev, "dma period = %d ps, clock = %d kHz\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 sa1100fb_display_dma_period(var),
651 cpufreq_get(smp_processor_id()));
652#endif
653
654 return 0;
655}
656
657static inline void sa1100fb_set_truecolor(u_int is_true_color)
658{
659 if (machine_is_assabet()) {
660#if 1 // phase 4 or newer Assabet's
661 if (is_true_color)
662 ASSABET_BCR_set(ASSABET_BCR_LCD_12RGB);
663 else
664 ASSABET_BCR_clear(ASSABET_BCR_LCD_12RGB);
665#else
666 // older Assabet's
667 if (is_true_color)
668 ASSABET_BCR_clear(ASSABET_BCR_LCD_12RGB);
669 else
670 ASSABET_BCR_set(ASSABET_BCR_LCD_12RGB);
671#endif
672 }
673}
674
675/*
676 * sa1100fb_set_par():
677 * Set the user defined part of the display for the specified console
678 */
679static int sa1100fb_set_par(struct fb_info *info)
680{
681 struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;
682 struct fb_var_screeninfo *var = &info->var;
683 unsigned long palette_mem_size;
684
Russell King79889292012-01-14 10:22:56 +0000685 dev_dbg(fbi->dev, "set_par\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 if (var->bits_per_pixel == 16)
688 fbi->fb.fix.visual = FB_VISUAL_TRUECOLOR;
689 else if (!fbi->cmap_static)
690 fbi->fb.fix.visual = FB_VISUAL_PSEUDOCOLOR;
691 else {
692 /*
693 * Some people have weird ideas about wanting static
694 * pseudocolor maps. I suspect their user space
695 * applications are broken.
696 */
697 fbi->fb.fix.visual = FB_VISUAL_STATIC_PSEUDOCOLOR;
698 }
699
700 fbi->fb.fix.line_length = var->xres_virtual *
701 var->bits_per_pixel / 8;
702 fbi->palette_size = var->bits_per_pixel == 8 ? 256 : 16;
703
704 palette_mem_size = fbi->palette_size * sizeof(u16);
705
Russell King79889292012-01-14 10:22:56 +0000706 dev_dbg(fbi->dev, "palette_mem_size = 0x%08lx\n", palette_mem_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 fbi->palette_cpu = (u16 *)(fbi->map_cpu + PAGE_SIZE - palette_mem_size);
709 fbi->palette_dma = fbi->map_dma + PAGE_SIZE - palette_mem_size;
710
711 /*
712 * Set (any) board control register to handle new color depth
713 */
714 sa1100fb_set_truecolor(fbi->fb.fix.visual == FB_VISUAL_TRUECOLOR);
715 sa1100fb_activate_var(var, fbi);
716
717 return 0;
718}
719
720#if 0
721static int
722sa1100fb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
723 struct fb_info *info)
724{
725 struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;
726
727 /*
728 * Make sure the user isn't doing something stupid.
729 */
730 if (!kspc && (fbi->fb.var.bits_per_pixel == 16 || fbi->cmap_static))
731 return -EINVAL;
732
733 return gen_set_cmap(cmap, kspc, con, info);
734}
735#endif
736
737/*
738 * Formal definition of the VESA spec:
739 * On
740 * This refers to the state of the display when it is in full operation
741 * Stand-By
742 * This defines an optional operating state of minimal power reduction with
743 * the shortest recovery time
744 * Suspend
745 * This refers to a level of power management in which substantial power
746 * reduction is achieved by the display. The display can have a longer
747 * recovery time from this state than from the Stand-by state
748 * Off
749 * This indicates that the display is consuming the lowest level of power
750 * and is non-operational. Recovery from this state may optionally require
751 * the user to manually power on the monitor
752 *
753 * Now, the fbdev driver adds an additional state, (blank), where they
754 * turn off the video (maybe by colormap tricks), but don't mess with the
755 * video itself: think of it semantically between on and Stand-By.
756 *
757 * So here's what we should do in our fbdev blank routine:
758 *
759 * VESA_NO_BLANKING (mode 0) Video on, front/back light on
760 * VESA_VSYNC_SUSPEND (mode 1) Video on, front/back light off
761 * VESA_HSYNC_SUSPEND (mode 2) Video on, front/back light off
762 * VESA_POWERDOWN (mode 3) Video off, front/back light off
763 *
764 * This will match the matrox implementation.
765 */
766/*
767 * sa1100fb_blank():
768 * Blank the display by setting all palette values to zero. Note, the
769 * 12 and 16 bpp modes don't really use the palette, so this will not
770 * blank the display in all modes.
771 */
772static int sa1100fb_blank(int blank, struct fb_info *info)
773{
774 struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;
775 int i;
776
Russell King79889292012-01-14 10:22:56 +0000777 dev_dbg(fbi->dev, "sa1100fb_blank: blank=%d\n", blank);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 switch (blank) {
780 case FB_BLANK_POWERDOWN:
781 case FB_BLANK_VSYNC_SUSPEND:
782 case FB_BLANK_HSYNC_SUSPEND:
783 case FB_BLANK_NORMAL:
784 if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
785 fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
786 for (i = 0; i < fbi->palette_size; i++)
787 sa1100fb_setpalettereg(i, 0, 0, 0, 0, info);
788 sa1100fb_schedule_work(fbi, C_DISABLE);
789 break;
790
791 case FB_BLANK_UNBLANK:
792 if (fbi->fb.fix.visual == FB_VISUAL_PSEUDOCOLOR ||
793 fbi->fb.fix.visual == FB_VISUAL_STATIC_PSEUDOCOLOR)
794 fb_set_cmap(&fbi->fb.cmap, info);
795 sa1100fb_schedule_work(fbi, C_ENABLE);
796 }
797 return 0;
798}
799
Christoph Hellwig216d5262006-01-14 13:21:25 -0800800static int sa1100fb_mmap(struct fb_info *info,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 struct vm_area_struct *vma)
802{
803 struct sa1100fb_info *fbi = (struct sa1100fb_info *)info;
804 unsigned long start, len, off = vma->vm_pgoff << PAGE_SHIFT;
805
806 if (off < info->fix.smem_len) {
807 vma->vm_pgoff += 1; /* skip over the palette */
808 return dma_mmap_writecombine(fbi->dev, vma, fbi->map_cpu,
809 fbi->map_dma, fbi->map_size);
810 }
811
812 start = info->fix.mmio_start;
813 len = PAGE_ALIGN((start & ~PAGE_MASK) + info->fix.mmio_len);
814
815 if ((vma->vm_end - vma->vm_start + off) > len)
816 return -EINVAL;
817
818 off += start & PAGE_MASK;
819 vma->vm_pgoff = off >> PAGE_SHIFT;
820 vma->vm_flags |= VM_IO;
821 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
822 return io_remap_pfn_range(vma, vma->vm_start, off >> PAGE_SHIFT,
823 vma->vm_end - vma->vm_start,
824 vma->vm_page_prot);
825}
826
827static struct fb_ops sa1100fb_ops = {
828 .owner = THIS_MODULE,
829 .fb_check_var = sa1100fb_check_var,
830 .fb_set_par = sa1100fb_set_par,
831// .fb_set_cmap = sa1100fb_set_cmap,
832 .fb_setcolreg = sa1100fb_setcolreg,
833 .fb_fillrect = cfb_fillrect,
834 .fb_copyarea = cfb_copyarea,
835 .fb_imageblit = cfb_imageblit,
836 .fb_blank = sa1100fb_blank,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 .fb_mmap = sa1100fb_mmap,
838};
839
840/*
841 * Calculate the PCD value from the clock rate (in picoseconds).
842 * We take account of the PPCR clock setting.
843 */
844static inline unsigned int get_pcd(unsigned int pixclock, unsigned int cpuclock)
845{
846 unsigned int pcd = cpuclock / 100;
847
848 pcd *= pixclock;
849 pcd /= 10000000;
850
851 return pcd + 1; /* make up for integer math truncations */
852}
853
854/*
855 * sa1100fb_activate_var():
856 * Configures LCD Controller based on entries in var parameter. Settings are
857 * only written to the controller if changes were made.
858 */
859static int sa1100fb_activate_var(struct fb_var_screeninfo *var, struct sa1100fb_info *fbi)
860{
861 struct sa1100fb_lcd_reg new_regs;
862 u_int half_screen_size, yres, pcd;
863 u_long flags;
864
Russell King79889292012-01-14 10:22:56 +0000865 dev_dbg(fbi->dev, "Configuring SA1100 LCD\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Russell King79889292012-01-14 10:22:56 +0000867 dev_dbg(fbi->dev, "var: xres=%d hslen=%d lm=%d rm=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 var->xres, var->hsync_len,
869 var->left_margin, var->right_margin);
Russell King79889292012-01-14 10:22:56 +0000870 dev_dbg(fbi->dev, "var: yres=%d vslen=%d um=%d bm=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 var->yres, var->vsync_len,
872 var->upper_margin, var->lower_margin);
873
874#if DEBUG_VAR
875 if (var->xres < 16 || var->xres > 1024)
Russell King79889292012-01-14 10:22:56 +0000876 dev_err(fbi->dev, "%s: invalid xres %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 fbi->fb.fix.id, var->xres);
878 if (var->hsync_len < 1 || var->hsync_len > 64)
Russell King79889292012-01-14 10:22:56 +0000879 dev_err(fbi->dev, "%s: invalid hsync_len %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 fbi->fb.fix.id, var->hsync_len);
881 if (var->left_margin < 1 || var->left_margin > 255)
Russell King79889292012-01-14 10:22:56 +0000882 dev_err(fbi->dev, "%s: invalid left_margin %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 fbi->fb.fix.id, var->left_margin);
884 if (var->right_margin < 1 || var->right_margin > 255)
Russell King79889292012-01-14 10:22:56 +0000885 dev_err(fbi->dev, "%s: invalid right_margin %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 fbi->fb.fix.id, var->right_margin);
887 if (var->yres < 1 || var->yres > 1024)
Russell King79889292012-01-14 10:22:56 +0000888 dev_err(fbi->dev, "%s: invalid yres %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 fbi->fb.fix.id, var->yres);
890 if (var->vsync_len < 1 || var->vsync_len > 64)
Russell King79889292012-01-14 10:22:56 +0000891 dev_err(fbi->dev, "%s: invalid vsync_len %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 fbi->fb.fix.id, var->vsync_len);
893 if (var->upper_margin < 0 || var->upper_margin > 255)
Russell King79889292012-01-14 10:22:56 +0000894 dev_err(fbi->dev, "%s: invalid upper_margin %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 fbi->fb.fix.id, var->upper_margin);
896 if (var->lower_margin < 0 || var->lower_margin > 255)
Russell King79889292012-01-14 10:22:56 +0000897 dev_err(fbi->dev, "%s: invalid lower_margin %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 fbi->fb.fix.id, var->lower_margin);
899#endif
900
901 new_regs.lccr0 = fbi->lccr0 |
902 LCCR0_LEN | LCCR0_LDM | LCCR0_BAM |
903 LCCR0_ERM | LCCR0_LtlEnd | LCCR0_DMADel(0);
904
905 new_regs.lccr1 =
906 LCCR1_DisWdth(var->xres) +
907 LCCR1_HorSnchWdth(var->hsync_len) +
908 LCCR1_BegLnDel(var->left_margin) +
909 LCCR1_EndLnDel(var->right_margin);
910
911 /*
912 * If we have a dual scan LCD, then we need to halve
913 * the YRES parameter.
914 */
915 yres = var->yres;
916 if (fbi->lccr0 & LCCR0_Dual)
917 yres /= 2;
918
919 new_regs.lccr2 =
920 LCCR2_DisHght(yres) +
921 LCCR2_VrtSnchWdth(var->vsync_len) +
922 LCCR2_BegFrmDel(var->upper_margin) +
923 LCCR2_EndFrmDel(var->lower_margin);
924
925 pcd = get_pcd(var->pixclock, cpufreq_get(0));
926 new_regs.lccr3 = LCCR3_PixClkDiv(pcd) | fbi->lccr3 |
927 (var->sync & FB_SYNC_HOR_HIGH_ACT ? LCCR3_HorSnchH : LCCR3_HorSnchL) |
928 (var->sync & FB_SYNC_VERT_HIGH_ACT ? LCCR3_VrtSnchH : LCCR3_VrtSnchL);
929
Russell King79889292012-01-14 10:22:56 +0000930 dev_dbg(fbi->dev, "nlccr0 = 0x%08lx\n", new_regs.lccr0);
931 dev_dbg(fbi->dev, "nlccr1 = 0x%08lx\n", new_regs.lccr1);
932 dev_dbg(fbi->dev, "nlccr2 = 0x%08lx\n", new_regs.lccr2);
933 dev_dbg(fbi->dev, "nlccr3 = 0x%08lx\n", new_regs.lccr3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 half_screen_size = var->bits_per_pixel;
936 half_screen_size = half_screen_size * var->xres * var->yres / 16;
937
938 /* Update shadow copy atomically */
939 local_irq_save(flags);
940 fbi->dbar1 = fbi->palette_dma;
941 fbi->dbar2 = fbi->screen_dma + half_screen_size;
942
943 fbi->reg_lccr0 = new_regs.lccr0;
944 fbi->reg_lccr1 = new_regs.lccr1;
945 fbi->reg_lccr2 = new_regs.lccr2;
946 fbi->reg_lccr3 = new_regs.lccr3;
947 local_irq_restore(flags);
948
949 /*
950 * Only update the registers if the controller is enabled
951 * and something has changed.
952 */
953 if ((LCCR0 != fbi->reg_lccr0) || (LCCR1 != fbi->reg_lccr1) ||
954 (LCCR2 != fbi->reg_lccr2) || (LCCR3 != fbi->reg_lccr3) ||
955 (DBAR1 != fbi->dbar1) || (DBAR2 != fbi->dbar2))
956 sa1100fb_schedule_work(fbi, C_REENABLE);
957
958 return 0;
959}
960
961/*
962 * NOTE! The following functions are purely helpers for set_ctrlr_state.
963 * Do not call them directly; set_ctrlr_state does the correct serialisation
964 * to ensure that things happen in the right way 100% of time time.
965 * -- rmk
966 */
967static inline void __sa1100fb_backlight_power(struct sa1100fb_info *fbi, int on)
968{
Russell King79889292012-01-14 10:22:56 +0000969 dev_dbg(fbi->dev, "backlight o%s\n", on ? "n" : "ff");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 if (sa1100fb_backlight_power)
972 sa1100fb_backlight_power(on);
973}
974
975static inline void __sa1100fb_lcd_power(struct sa1100fb_info *fbi, int on)
976{
Russell King79889292012-01-14 10:22:56 +0000977 dev_dbg(fbi->dev, "LCD power o%s\n", on ? "n" : "ff");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 if (sa1100fb_lcd_power)
980 sa1100fb_lcd_power(on);
981}
982
983static void sa1100fb_setup_gpio(struct sa1100fb_info *fbi)
984{
985 u_int mask = 0;
986
987 /*
988 * Enable GPIO<9:2> for LCD use if:
989 * 1. Active display, or
990 * 2. Color Dual Passive display
991 *
992 * see table 11.8 on page 11-27 in the SA1100 manual
993 * -- Erik.
994 *
995 * SA1110 spec update nr. 25 says we can and should
996 * clear LDD15 to 12 for 4 or 8bpp modes with active
997 * panels.
998 */
999 if ((fbi->reg_lccr0 & LCCR0_CMS) == LCCR0_Color &&
1000 (fbi->reg_lccr0 & (LCCR0_Dual|LCCR0_Act)) != 0) {
1001 mask = GPIO_LDD11 | GPIO_LDD10 | GPIO_LDD9 | GPIO_LDD8;
1002
1003 if (fbi->fb.var.bits_per_pixel > 8 ||
1004 (fbi->reg_lccr0 & (LCCR0_Dual|LCCR0_Act)) == LCCR0_Dual)
1005 mask |= GPIO_LDD15 | GPIO_LDD14 | GPIO_LDD13 | GPIO_LDD12;
1006
1007 }
1008
1009 if (mask) {
1010 GPDR |= mask;
1011 GAFR |= mask;
1012 }
1013}
1014
1015static void sa1100fb_enable_controller(struct sa1100fb_info *fbi)
1016{
Russell King79889292012-01-14 10:22:56 +00001017 dev_dbg(fbi->dev, "Enabling LCD controller\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 /*
1020 * Make sure the mode bits are present in the first palette entry
1021 */
1022 fbi->palette_cpu[0] &= 0xcfff;
1023 fbi->palette_cpu[0] |= palette_pbs(&fbi->fb.var);
1024
1025 /* Sequence from 11.7.10 */
1026 LCCR3 = fbi->reg_lccr3;
1027 LCCR2 = fbi->reg_lccr2;
1028 LCCR1 = fbi->reg_lccr1;
1029 LCCR0 = fbi->reg_lccr0 & ~LCCR0_LEN;
1030 DBAR1 = fbi->dbar1;
1031 DBAR2 = fbi->dbar2;
1032 LCCR0 |= LCCR0_LEN;
1033
1034 if (machine_is_shannon()) {
1035 GPDR |= SHANNON_GPIO_DISP_EN;
1036 GPSR |= SHANNON_GPIO_DISP_EN;
1037 }
1038
Russell King79889292012-01-14 10:22:56 +00001039 dev_dbg(fbi->dev, "DBAR1 = 0x%08lx\n", DBAR1);
1040 dev_dbg(fbi->dev, "DBAR2 = 0x%08lx\n", DBAR2);
1041 dev_dbg(fbi->dev, "LCCR0 = 0x%08lx\n", LCCR0);
1042 dev_dbg(fbi->dev, "LCCR1 = 0x%08lx\n", LCCR1);
1043 dev_dbg(fbi->dev, "LCCR2 = 0x%08lx\n", LCCR2);
1044 dev_dbg(fbi->dev, "LCCR3 = 0x%08lx\n", LCCR3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045}
1046
1047static void sa1100fb_disable_controller(struct sa1100fb_info *fbi)
1048{
1049 DECLARE_WAITQUEUE(wait, current);
1050
Russell King79889292012-01-14 10:22:56 +00001051 dev_dbg(fbi->dev, "Disabling LCD controller\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 if (machine_is_shannon()) {
1054 GPCR |= SHANNON_GPIO_DISP_EN;
1055 }
1056
1057 set_current_state(TASK_UNINTERRUPTIBLE);
1058 add_wait_queue(&fbi->ctrlr_wait, &wait);
1059
1060 LCSR = 0xffffffff; /* Clear LCD Status Register */
1061 LCCR0 &= ~LCCR0_LDM; /* Enable LCD Disable Done Interrupt */
1062 LCCR0 &= ~LCCR0_LEN; /* Disable LCD Controller */
1063
1064 schedule_timeout(20 * HZ / 1000);
1065 remove_wait_queue(&fbi->ctrlr_wait, &wait);
1066}
1067
1068/*
1069 * sa1100fb_handle_irq: Handle 'LCD DONE' interrupts.
1070 */
David Howells7d12e782006-10-05 14:55:46 +01001071static irqreturn_t sa1100fb_handle_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
1073 struct sa1100fb_info *fbi = dev_id;
1074 unsigned int lcsr = LCSR;
1075
1076 if (lcsr & LCSR_LDD) {
1077 LCCR0 |= LCCR0_LDM;
1078 wake_up(&fbi->ctrlr_wait);
1079 }
1080
1081 LCSR = lcsr;
1082 return IRQ_HANDLED;
1083}
1084
1085/*
1086 * This function must be called from task context only, since it will
1087 * sleep when disabling the LCD controller, or if we get two contending
1088 * processes trying to alter state.
1089 */
1090static void set_ctrlr_state(struct sa1100fb_info *fbi, u_int state)
1091{
1092 u_int old_state;
1093
Matthias Kaehlcke7951ac92008-07-23 21:31:16 -07001094 mutex_lock(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 old_state = fbi->state;
1097
1098 /*
1099 * Hack around fbcon initialisation.
1100 */
1101 if (old_state == C_STARTUP && state == C_REENABLE)
1102 state = C_ENABLE;
1103
1104 switch (state) {
1105 case C_DISABLE_CLKCHANGE:
1106 /*
1107 * Disable controller for clock change. If the
1108 * controller is already disabled, then do nothing.
1109 */
1110 if (old_state != C_DISABLE && old_state != C_DISABLE_PM) {
1111 fbi->state = state;
1112 sa1100fb_disable_controller(fbi);
1113 }
1114 break;
1115
1116 case C_DISABLE_PM:
1117 case C_DISABLE:
1118 /*
1119 * Disable controller
1120 */
1121 if (old_state != C_DISABLE) {
1122 fbi->state = state;
1123
1124 __sa1100fb_backlight_power(fbi, 0);
1125 if (old_state != C_DISABLE_CLKCHANGE)
1126 sa1100fb_disable_controller(fbi);
1127 __sa1100fb_lcd_power(fbi, 0);
1128 }
1129 break;
1130
1131 case C_ENABLE_CLKCHANGE:
1132 /*
1133 * Enable the controller after clock change. Only
1134 * do this if we were disabled for the clock change.
1135 */
1136 if (old_state == C_DISABLE_CLKCHANGE) {
1137 fbi->state = C_ENABLE;
1138 sa1100fb_enable_controller(fbi);
1139 }
1140 break;
1141
1142 case C_REENABLE:
1143 /*
1144 * Re-enable the controller only if it was already
1145 * enabled. This is so we reprogram the control
1146 * registers.
1147 */
1148 if (old_state == C_ENABLE) {
1149 sa1100fb_disable_controller(fbi);
1150 sa1100fb_setup_gpio(fbi);
1151 sa1100fb_enable_controller(fbi);
1152 }
1153 break;
1154
1155 case C_ENABLE_PM:
1156 /*
1157 * Re-enable the controller after PM. This is not
1158 * perfect - think about the case where we were doing
1159 * a clock change, and we suspended half-way through.
1160 */
1161 if (old_state != C_DISABLE_PM)
1162 break;
1163 /* fall through */
1164
1165 case C_ENABLE:
1166 /*
1167 * Power up the LCD screen, enable controller, and
1168 * turn on the backlight.
1169 */
1170 if (old_state != C_ENABLE) {
1171 fbi->state = C_ENABLE;
1172 sa1100fb_setup_gpio(fbi);
1173 __sa1100fb_lcd_power(fbi, 1);
1174 sa1100fb_enable_controller(fbi);
1175 __sa1100fb_backlight_power(fbi, 1);
1176 }
1177 break;
1178 }
Matthias Kaehlcke7951ac92008-07-23 21:31:16 -07001179 mutex_unlock(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
1182/*
1183 * Our LCD controller task (which is called when we blank or unblank)
1184 * via keventd.
1185 */
Pavel Machek23432172006-12-17 13:21:05 +01001186static void sa1100fb_task(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Pavel Machek23432172006-12-17 13:21:05 +01001188 struct sa1100fb_info *fbi = container_of(w, struct sa1100fb_info, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 u_int state = xchg(&fbi->task_state, -1);
1190
1191 set_ctrlr_state(fbi, state);
1192}
1193
1194#ifdef CONFIG_CPU_FREQ
1195/*
1196 * Calculate the minimum DMA period over all displays that we own.
1197 * This, together with the SDRAM bandwidth defines the slowest CPU
1198 * frequency that can be selected.
1199 */
1200static unsigned int sa1100fb_min_dma_period(struct sa1100fb_info *fbi)
1201{
1202#if 0
1203 unsigned int min_period = (unsigned int)-1;
1204 int i;
1205
1206 for (i = 0; i < MAX_NR_CONSOLES; i++) {
1207 struct display *disp = &fb_display[i];
1208 unsigned int period;
1209
1210 /*
1211 * Do we own this display?
1212 */
1213 if (disp->fb_info != &fbi->fb)
1214 continue;
1215
1216 /*
1217 * Ok, calculate its DMA period
1218 */
1219 period = sa1100fb_display_dma_period(&disp->var);
1220 if (period < min_period)
1221 min_period = period;
1222 }
1223
1224 return min_period;
1225#else
1226 /*
1227 * FIXME: we need to verify _all_ consoles.
1228 */
1229 return sa1100fb_display_dma_period(&fbi->fb.var);
1230#endif
1231}
1232
1233/*
1234 * CPU clock speed change handler. We need to adjust the LCD timing
1235 * parameters when the CPU clock is adjusted by the power management
1236 * subsystem.
1237 */
1238static int
1239sa1100fb_freq_transition(struct notifier_block *nb, unsigned long val,
1240 void *data)
1241{
1242 struct sa1100fb_info *fbi = TO_INF(nb, freq_transition);
1243 struct cpufreq_freqs *f = data;
1244 u_int pcd;
1245
1246 switch (val) {
1247 case CPUFREQ_PRECHANGE:
1248 set_ctrlr_state(fbi, C_DISABLE_CLKCHANGE);
1249 break;
1250
1251 case CPUFREQ_POSTCHANGE:
1252 pcd = get_pcd(fbi->fb.var.pixclock, f->new);
1253 fbi->reg_lccr3 = (fbi->reg_lccr3 & ~0xff) | LCCR3_PixClkDiv(pcd);
1254 set_ctrlr_state(fbi, C_ENABLE_CLKCHANGE);
1255 break;
1256 }
1257 return 0;
1258}
1259
1260static int
1261sa1100fb_freq_policy(struct notifier_block *nb, unsigned long val,
1262 void *data)
1263{
1264 struct sa1100fb_info *fbi = TO_INF(nb, freq_policy);
1265 struct cpufreq_policy *policy = data;
1266
1267 switch (val) {
1268 case CPUFREQ_ADJUST:
1269 case CPUFREQ_INCOMPATIBLE:
Russell King79889292012-01-14 10:22:56 +00001270 dev_dbg(fbi->dev, "min dma period: %d ps, "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 "new clock %d kHz\n", sa1100fb_min_dma_period(fbi),
1272 policy->max);
1273 /* todo: fill in min/max values */
1274 break;
1275 case CPUFREQ_NOTIFY:
1276 do {} while(0);
1277 /* todo: panic if min/max values aren't fulfilled
1278 * [can't really happen unless there's a bug in the
1279 * CPU policy verififcation process *
1280 */
1281 break;
1282 }
1283 return 0;
1284}
1285#endif
1286
1287#ifdef CONFIG_PM
1288/*
1289 * Power management hooks. Note that we won't be called from IRQ context,
1290 * unlike the blank functions above, so we may sleep.
1291 */
Russell King3ae5eae2005-11-09 22:32:44 +00001292static int sa1100fb_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
Russell King3ae5eae2005-11-09 22:32:44 +00001294 struct sa1100fb_info *fbi = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Russell King9480e302005-10-28 09:52:56 -07001296 set_ctrlr_state(fbi, C_DISABLE_PM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return 0;
1298}
1299
Russell King3ae5eae2005-11-09 22:32:44 +00001300static int sa1100fb_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Russell King3ae5eae2005-11-09 22:32:44 +00001302 struct sa1100fb_info *fbi = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Russell King9480e302005-10-28 09:52:56 -07001304 set_ctrlr_state(fbi, C_ENABLE_PM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 return 0;
1306}
1307#else
1308#define sa1100fb_suspend NULL
1309#define sa1100fb_resume NULL
1310#endif
1311
1312/*
1313 * sa1100fb_map_video_memory():
1314 * Allocates the DRAM memory for the frame buffer. This buffer is
1315 * remapped into a non-cached, non-buffered, memory region to
1316 * allow palette and pixel writes to occur without flushing the
1317 * cache. Once this area is remapped, all virtual memory
1318 * access to the video memory should occur at the new region.
1319 */
Russell King66564d82012-01-14 10:00:38 +00001320static int __devinit sa1100fb_map_video_memory(struct sa1100fb_info *fbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
1322 /*
1323 * We reserve one page for the palette, plus the size
1324 * of the framebuffer.
1325 */
1326 fbi->map_size = PAGE_ALIGN(fbi->fb.fix.smem_len + PAGE_SIZE);
1327 fbi->map_cpu = dma_alloc_writecombine(fbi->dev, fbi->map_size,
1328 &fbi->map_dma, GFP_KERNEL);
1329
1330 if (fbi->map_cpu) {
1331 fbi->fb.screen_base = fbi->map_cpu + PAGE_SIZE;
1332 fbi->screen_dma = fbi->map_dma + PAGE_SIZE;
1333 /*
1334 * FIXME: this is actually the wrong thing to place in
1335 * smem_start. But fbdev suffers from the problem that
1336 * it needs an API which doesn't exist (in this case,
1337 * dma_writecombine_mmap)
1338 */
1339 fbi->fb.fix.smem_start = fbi->screen_dma;
1340 }
1341
1342 return fbi->map_cpu ? 0 : -ENOMEM;
1343}
1344
1345/* Fake monspecs to fill in fbinfo structure */
Russell King66564d82012-01-14 10:00:38 +00001346static struct fb_monspecs monspecs __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 .hfmin = 30000,
1348 .hfmax = 70000,
1349 .vfmin = 50,
1350 .vfmax = 65,
1351};
1352
1353
Russell King66564d82012-01-14 10:00:38 +00001354static struct sa1100fb_info * __devinit sa1100fb_init_fbinfo(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
1356 struct sa1100fb_mach_info *inf;
1357 struct sa1100fb_info *fbi;
Russell King531060f2012-01-14 10:49:44 +00001358 unsigned i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 fbi = kmalloc(sizeof(struct sa1100fb_info) + sizeof(u32) * 16,
1361 GFP_KERNEL);
1362 if (!fbi)
1363 return NULL;
1364
1365 memset(fbi, 0, sizeof(struct sa1100fb_info));
1366 fbi->dev = dev;
1367
1368 strcpy(fbi->fb.fix.id, SA1100_NAME);
1369
1370 fbi->fb.fix.type = FB_TYPE_PACKED_PIXELS;
1371 fbi->fb.fix.type_aux = 0;
1372 fbi->fb.fix.xpanstep = 0;
1373 fbi->fb.fix.ypanstep = 0;
1374 fbi->fb.fix.ywrapstep = 0;
1375 fbi->fb.fix.accel = FB_ACCEL_NONE;
1376
1377 fbi->fb.var.nonstd = 0;
1378 fbi->fb.var.activate = FB_ACTIVATE_NOW;
1379 fbi->fb.var.height = -1;
1380 fbi->fb.var.width = -1;
1381 fbi->fb.var.accel_flags = 0;
1382 fbi->fb.var.vmode = FB_VMODE_NONINTERLACED;
1383
1384 fbi->fb.fbops = &sa1100fb_ops;
1385 fbi->fb.flags = FBINFO_DEFAULT;
1386 fbi->fb.monspecs = monspecs;
1387 fbi->fb.pseudo_palette = (fbi + 1);
1388
Michal Januszewski0a453482009-04-13 14:39:51 -07001389 fbi->rgb[RGB_4] = &rgb_4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 fbi->rgb[RGB_8] = &rgb_8;
1391 fbi->rgb[RGB_16] = &def_rgb_16;
1392
Russell King9e6720f2012-01-14 10:56:06 +00001393 inf = dev->platform_data;
1394 if (!inf)
1395 inf = sa1100fb_get_machine_info(fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 /*
1398 * People just don't seem to get this. We don't support
1399 * anything but correct entries now, so panic if someone
1400 * does something stupid.
1401 */
1402 if (inf->lccr3 & (LCCR3_VrtSnchL|LCCR3_HorSnchL|0xff) ||
1403 inf->pixclock == 0)
1404 panic("sa1100fb error: invalid LCCR3 fields set or zero "
1405 "pixclock.");
1406
1407 fbi->max_xres = inf->xres;
1408 fbi->fb.var.xres = inf->xres;
1409 fbi->fb.var.xres_virtual = inf->xres;
1410 fbi->max_yres = inf->yres;
1411 fbi->fb.var.yres = inf->yres;
1412 fbi->fb.var.yres_virtual = inf->yres;
1413 fbi->max_bpp = inf->bpp;
1414 fbi->fb.var.bits_per_pixel = inf->bpp;
1415 fbi->fb.var.pixclock = inf->pixclock;
1416 fbi->fb.var.hsync_len = inf->hsync_len;
1417 fbi->fb.var.left_margin = inf->left_margin;
1418 fbi->fb.var.right_margin = inf->right_margin;
1419 fbi->fb.var.vsync_len = inf->vsync_len;
1420 fbi->fb.var.upper_margin = inf->upper_margin;
1421 fbi->fb.var.lower_margin = inf->lower_margin;
1422 fbi->fb.var.sync = inf->sync;
1423 fbi->fb.var.grayscale = inf->cmap_greyscale;
1424 fbi->cmap_inverse = inf->cmap_inverse;
1425 fbi->cmap_static = inf->cmap_static;
1426 fbi->lccr0 = inf->lccr0;
1427 fbi->lccr3 = inf->lccr3;
1428 fbi->state = C_STARTUP;
1429 fbi->task_state = (u_char)-1;
1430 fbi->fb.fix.smem_len = fbi->max_xres * fbi->max_yres *
1431 fbi->max_bpp / 8;
1432
Russell King531060f2012-01-14 10:49:44 +00001433 /* Copy the RGB bitfield overrides */
1434 for (i = 0; i < NR_RGB; i++)
1435 if (inf->rgb[i])
1436 fbi->rgb[i] = inf->rgb[i];
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 init_waitqueue_head(&fbi->ctrlr_wait);
Pavel Machek23432172006-12-17 13:21:05 +01001439 INIT_WORK(&fbi->task, sa1100fb_task);
Matthias Kaehlcke7951ac92008-07-23 21:31:16 -07001440 mutex_init(&fbi->ctrlr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 return fbi;
1443}
1444
Uwe Kleine-Königc2e13032010-02-04 20:56:51 +01001445static int __devinit sa1100fb_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
1447 struct sa1100fb_info *fbi;
Russell Kinge9368f82006-01-09 13:56:42 +00001448 int ret, irq;
1449
1450 irq = platform_get_irq(pdev, 0);
David Vrabel48944732006-01-19 17:56:29 +00001451 if (irq < 0)
Russell Kinge9368f82006-01-09 13:56:42 +00001452 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 if (!request_mem_region(0xb0100000, 0x10000, "LCD"))
1455 return -EBUSY;
1456
Russell King3ae5eae2005-11-09 22:32:44 +00001457 fbi = sa1100fb_init_fbinfo(&pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 ret = -ENOMEM;
1459 if (!fbi)
1460 goto failed;
1461
1462 /* Initialize video memory */
1463 ret = sa1100fb_map_video_memory(fbi);
1464 if (ret)
1465 goto failed;
1466
Yong Zhangf8798cc2011-09-22 16:59:16 +08001467 ret = request_irq(irq, sa1100fb_handle_irq, 0, "LCD", fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 if (ret) {
Russell King79889292012-01-14 10:22:56 +00001469 dev_err(&pdev->dev, "request_irq failed: %d\n", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 goto failed;
1471 }
1472
1473#ifdef ASSABET_PAL_VIDEO
1474 if (machine_is_assabet())
1475 ASSABET_BCR_clear(ASSABET_BCR_LCD_ON);
1476#endif
1477
1478 /*
1479 * This makes sure that our colour bitfield
1480 * descriptors are correctly initialised.
1481 */
1482 sa1100fb_check_var(&fbi->fb.var, &fbi->fb);
1483
Russell King3ae5eae2005-11-09 22:32:44 +00001484 platform_set_drvdata(pdev, fbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
1486 ret = register_framebuffer(&fbi->fb);
1487 if (ret < 0)
Russell Kinge9368f82006-01-09 13:56:42 +00001488 goto err_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490#ifdef CONFIG_CPU_FREQ
1491 fbi->freq_transition.notifier_call = sa1100fb_freq_transition;
1492 fbi->freq_policy.notifier_call = sa1100fb_freq_policy;
1493 cpufreq_register_notifier(&fbi->freq_transition, CPUFREQ_TRANSITION_NOTIFIER);
1494 cpufreq_register_notifier(&fbi->freq_policy, CPUFREQ_POLICY_NOTIFIER);
1495#endif
1496
1497 /* This driver cannot be unloaded at the moment */
1498 return 0;
1499
Russell Kinge9368f82006-01-09 13:56:42 +00001500 err_free_irq:
1501 free_irq(irq, fbi);
1502 failed:
Russell King3ae5eae2005-11-09 22:32:44 +00001503 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 kfree(fbi);
1505 release_mem_region(0xb0100000, 0x10000);
1506 return ret;
1507}
1508
Russell King3ae5eae2005-11-09 22:32:44 +00001509static struct platform_driver sa1100fb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 .probe = sa1100fb_probe,
1511 .suspend = sa1100fb_suspend,
1512 .resume = sa1100fb_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001513 .driver = {
1514 .name = "sa11x0-fb",
Russell King4f7e34f2012-01-14 10:11:03 +00001515 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00001516 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517};
1518
1519int __init sa1100fb_init(void)
1520{
1521 if (fb_get_options("sa1100fb", NULL))
1522 return -ENODEV;
1523
Russell King3ae5eae2005-11-09 22:32:44 +00001524 return platform_driver_register(&sa1100fb_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
1527int __init sa1100fb_setup(char *options)
1528{
1529#if 0
1530 char *this_opt;
1531
1532 if (!options || !*options)
1533 return 0;
1534
1535 while ((this_opt = strsep(&options, ",")) != NULL) {
1536
1537 if (!strncmp(this_opt, "bpp:", 4))
1538 current_par.max_bpp =
1539 simple_strtoul(this_opt + 4, NULL, 0);
1540
1541 if (!strncmp(this_opt, "lccr0:", 6))
1542 lcd_shadow.lccr0 =
1543 simple_strtoul(this_opt + 6, NULL, 0);
1544 if (!strncmp(this_opt, "lccr1:", 6)) {
1545 lcd_shadow.lccr1 =
1546 simple_strtoul(this_opt + 6, NULL, 0);
1547 current_par.max_xres =
1548 (lcd_shadow.lccr1 & 0x3ff) + 16;
1549 }
1550 if (!strncmp(this_opt, "lccr2:", 6)) {
1551 lcd_shadow.lccr2 =
1552 simple_strtoul(this_opt + 6, NULL, 0);
1553 current_par.max_yres =
1554 (lcd_shadow.
1555 lccr0 & LCCR0_SDS) ? ((lcd_shadow.
1556 lccr2 & 0x3ff) +
1557 1) *
1558 2 : ((lcd_shadow.lccr2 & 0x3ff) + 1);
1559 }
1560 if (!strncmp(this_opt, "lccr3:", 6))
1561 lcd_shadow.lccr3 =
1562 simple_strtoul(this_opt + 6, NULL, 0);
1563 }
1564#endif
1565 return 0;
1566}
1567
1568module_init(sa1100fb_init);
1569MODULE_DESCRIPTION("StrongARM-1100/1110 framebuffer driver");
1570MODULE_LICENSE("GPL");