Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / drivers / video / sm501fb.c
blob742b5c656d668d447b02984d1fe4c2ba237c6743
1 /* linux/drivers/video/sm501fb.c
3 * Copyright (c) 2006 Simtec Electronics
4 * Vincent Sanders <vince@simtec.co.uk>
5 * Ben Dooks <ben@simtec.co.uk>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * Framebuffer driver for the Silicon Motion SM501
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/errno.h>
17 #include <linux/string.h>
18 #include <linux/mm.h>
19 #include <linux/tty.h>
20 #include <linux/slab.h>
21 #include <linux/delay.h>
22 #include <linux/fb.h>
23 #include <linux/init.h>
24 #include <linux/vmalloc.h>
25 #include <linux/dma-mapping.h>
26 #include <linux/interrupt.h>
27 #include <linux/workqueue.h>
28 #include <linux/wait.h>
29 #include <linux/platform_device.h>
30 #include <linux/clk.h>
31 #include <linux/console.h>
33 #include <asm/io.h>
34 #include <asm/uaccess.h>
35 #include <asm/div64.h>
37 #ifdef CONFIG_PM
38 #include <linux/pm.h>
39 #endif
41 #include <linux/sm501.h>
42 #include <linux/sm501-regs.h>
44 #define NR_PALETTE 256
46 enum sm501_controller {
47 HEAD_CRT = 0,
48 HEAD_PANEL = 1,
51 /* SM501 memory address */
52 struct sm501_mem {
53 unsigned long size;
54 unsigned long sm_addr;
55 void __iomem *k_addr;
58 /* private data that is shared between all frambuffers* */
59 struct sm501fb_info {
60 struct device *dev;
61 struct fb_info *fb[2]; /* fb info for both heads */
62 struct resource *fbmem_res; /* framebuffer resource */
63 struct resource *regs_res; /* registers resource */
64 struct sm501_platdata_fb *pdata; /* our platform data */
66 unsigned long pm_crt_ctrl; /* pm: crt ctrl save */
68 int irq;
69 int swap_endian; /* set to swap rgb=>bgr */
70 void __iomem *regs; /* remapped registers */
71 void __iomem *fbmem; /* remapped framebuffer */
72 size_t fbmem_len; /* length of remapped region */
75 /* per-framebuffer private data */
76 struct sm501fb_par {
77 u32 pseudo_palette[16];
79 enum sm501_controller head;
80 struct sm501_mem cursor;
81 struct sm501_mem screen;
82 struct fb_ops ops;
84 void *store_fb;
85 void *store_cursor;
86 void __iomem *cursor_regs;
87 struct sm501fb_info *info;
90 /* Helper functions */
92 static inline int h_total(struct fb_var_screeninfo *var)
94 return var->xres + var->left_margin +
95 var->right_margin + var->hsync_len;
98 static inline int v_total(struct fb_var_screeninfo *var)
100 return var->yres + var->upper_margin +
101 var->lower_margin + var->vsync_len;
104 /* sm501fb_sync_regs()
106 * This call is mainly for PCI bus systems where we need to
107 * ensure that any writes to the bus are completed before the
108 * next phase, or after completing a function.
111 static inline void sm501fb_sync_regs(struct sm501fb_info *info)
113 readl(info->regs);
116 /* sm501_alloc_mem
118 * This is an attempt to lay out memory for the two framebuffers and
119 * everything else
121 * |fbmem_res->start fbmem_res->end|
122 * | |
123 * |fb[0].fix.smem_start | |fb[1].fix.smem_start | 2K |
124 * |-> fb[0].fix.smem_len <-| spare |-> fb[1].fix.smem_len <-|-> cursors <-|
126 * The "spare" space is for the 2d engine data
127 * the fixed is space for the cursors (2x1Kbyte)
129 * we need to allocate memory for the 2D acceleration engine
130 * command list and the data for the engine to deal with.
132 * - all allocations must be 128bit aligned
133 * - cursors are 64x64x2 bits (1Kbyte)
137 #define SM501_MEMF_CURSOR (1)
138 #define SM501_MEMF_PANEL (2)
139 #define SM501_MEMF_CRT (4)
140 #define SM501_MEMF_ACCEL (8)
142 static int sm501_alloc_mem(struct sm501fb_info *inf, struct sm501_mem *mem,
143 unsigned int why, size_t size)
145 unsigned int ptr = 0;
147 switch (why) {
148 case SM501_MEMF_CURSOR:
149 ptr = inf->fbmem_len - size;
150 inf->fbmem_len = ptr;
151 break;
153 case SM501_MEMF_PANEL:
154 ptr = inf->fbmem_len - size;
155 if (ptr < inf->fb[0]->fix.smem_len)
156 return -ENOMEM;
158 break;
160 case SM501_MEMF_CRT:
161 ptr = 0;
162 break;
164 case SM501_MEMF_ACCEL:
165 ptr = inf->fb[0]->fix.smem_len;
167 if ((ptr + size) >
168 (inf->fb[1]->fix.smem_start - inf->fbmem_res->start))
169 return -ENOMEM;
170 break;
172 default:
173 return -EINVAL;
176 mem->size = size;
177 mem->sm_addr = ptr;
178 mem->k_addr = inf->fbmem + ptr;
180 dev_dbg(inf->dev, "%s: result %08lx, %p - %u, %zd\n",
181 __func__, mem->sm_addr, mem->k_addr, why, size);
183 return 0;
186 /* sm501fb_ps_to_hz
188 * Converts a period in picoseconds to Hz.
190 * Note, we try to keep this in Hz to minimise rounding with
191 * the limited PLL settings on the SM501.
194 static unsigned long sm501fb_ps_to_hz(unsigned long psvalue)
196 unsigned long long numerator=1000000000000ULL;
198 /* 10^12 / picosecond period gives frequency in Hz */
199 do_div(numerator, psvalue);
200 return (unsigned long)numerator;
203 /* sm501fb_hz_to_ps is identical to the oposite transform */
205 #define sm501fb_hz_to_ps(x) sm501fb_ps_to_hz(x)
207 /* sm501fb_setup_gamma
209 * Programs a linear 1.0 gamma ramp in case the gamma
210 * correction is enabled without programming anything else.
213 static void sm501fb_setup_gamma(struct sm501fb_info *fbi,
214 unsigned long palette)
216 unsigned long value = 0;
217 int offset;
219 /* set gamma values */
220 for (offset = 0; offset < 256 * 4; offset += 4) {
221 writel(value, fbi->regs + palette + offset);
222 value += 0x010101; /* Advance RGB by 1,1,1.*/
226 /* sm501fb_check_var
228 * check common variables for both panel and crt
231 static int sm501fb_check_var(struct fb_var_screeninfo *var,
232 struct fb_info *info)
234 struct sm501fb_par *par = info->par;
235 struct sm501fb_info *sm = par->info;
236 unsigned long tmp;
238 /* check we can fit these values into the registers */
240 if (var->hsync_len > 255 || var->vsync_len > 63)
241 return -EINVAL;
243 /* hdisplay end and hsync start */
244 if ((var->xres + var->right_margin) > 4096)
245 return -EINVAL;
247 /* vdisplay end and vsync start */
248 if ((var->yres + var->lower_margin) > 2048)
249 return -EINVAL;
251 /* hard limits of device */
253 if (h_total(var) > 4096 || v_total(var) > 2048)
254 return -EINVAL;
256 /* check our line length is going to be 128 bit aligned */
258 tmp = (var->xres * var->bits_per_pixel) / 8;
259 if ((tmp & 15) != 0)
260 return -EINVAL;
262 /* check the virtual size */
264 if (var->xres_virtual > 4096 || var->yres_virtual > 2048)
265 return -EINVAL;
267 /* can cope with 8,16 or 32bpp */
269 if (var->bits_per_pixel <= 8)
270 var->bits_per_pixel = 8;
271 else if (var->bits_per_pixel <= 16)
272 var->bits_per_pixel = 16;
273 else if (var->bits_per_pixel == 24)
274 var->bits_per_pixel = 32;
276 /* set r/g/b positions and validate bpp */
277 switch(var->bits_per_pixel) {
278 case 8:
279 var->red.length = var->bits_per_pixel;
280 var->red.offset = 0;
281 var->green.length = var->bits_per_pixel;
282 var->green.offset = 0;
283 var->blue.length = var->bits_per_pixel;
284 var->blue.offset = 0;
285 var->transp.length = 0;
286 var->transp.offset = 0;
288 break;
290 case 16:
291 if (sm->pdata->flags & SM501_FBPD_SWAP_FB_ENDIAN) {
292 var->blue.offset = 11;
293 var->green.offset = 5;
294 var->red.offset = 0;
295 } else {
296 var->red.offset = 11;
297 var->green.offset = 5;
298 var->blue.offset = 0;
300 var->transp.offset = 0;
302 var->red.length = 5;
303 var->green.length = 6;
304 var->blue.length = 5;
305 var->transp.length = 0;
306 break;
308 case 32:
309 if (sm->pdata->flags & SM501_FBPD_SWAP_FB_ENDIAN) {
310 var->transp.offset = 0;
311 var->red.offset = 8;
312 var->green.offset = 16;
313 var->blue.offset = 24;
314 } else {
315 var->transp.offset = 24;
316 var->red.offset = 16;
317 var->green.offset = 8;
318 var->blue.offset = 0;
321 var->red.length = 8;
322 var->green.length = 8;
323 var->blue.length = 8;
324 var->transp.length = 0;
325 break;
327 default:
328 return -EINVAL;
331 return 0;
335 * sm501fb_check_var_crt():
337 * check the parameters for the CRT head, and either bring them
338 * back into range, or return -EINVAL.
341 static int sm501fb_check_var_crt(struct fb_var_screeninfo *var,
342 struct fb_info *info)
344 return sm501fb_check_var(var, info);
347 /* sm501fb_check_var_pnl():
349 * check the parameters for the CRT head, and either bring them
350 * back into range, or return -EINVAL.
353 static int sm501fb_check_var_pnl(struct fb_var_screeninfo *var,
354 struct fb_info *info)
356 return sm501fb_check_var(var, info);
359 /* sm501fb_set_par_common
361 * set common registers for framebuffers
364 static int sm501fb_set_par_common(struct fb_info *info,
365 struct fb_var_screeninfo *var)
367 struct sm501fb_par *par = info->par;
368 struct sm501fb_info *fbi = par->info;
369 unsigned long pixclock; /* pixelclock in Hz */
370 unsigned long sm501pixclock; /* pixelclock the 501 can achive in Hz */
371 unsigned int mem_type;
372 unsigned int clock_type;
373 unsigned int head_addr;
375 dev_dbg(fbi->dev, "%s: %dx%d, bpp = %d, virtual %dx%d\n",
376 __func__, var->xres, var->yres, var->bits_per_pixel,
377 var->xres_virtual, var->yres_virtual);
379 switch (par->head) {
380 case HEAD_CRT:
381 mem_type = SM501_MEMF_CRT;
382 clock_type = SM501_CLOCK_V2XCLK;
383 head_addr = SM501_DC_CRT_FB_ADDR;
384 break;
386 case HEAD_PANEL:
387 mem_type = SM501_MEMF_PANEL;
388 clock_type = SM501_CLOCK_P2XCLK;
389 head_addr = SM501_DC_PANEL_FB_ADDR;
390 break;
392 default:
393 mem_type = 0; /* stop compiler warnings */
394 head_addr = 0;
395 clock_type = 0;
398 switch (var->bits_per_pixel) {
399 case 8:
400 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
401 break;
403 case 16:
404 info->fix.visual = FB_VISUAL_TRUECOLOR;
405 break;
407 case 32:
408 info->fix.visual = FB_VISUAL_TRUECOLOR;
409 break;
412 /* allocate fb memory within 501 */
413 info->fix.line_length = (var->xres_virtual * var->bits_per_pixel)/8;
414 info->fix.smem_len = info->fix.line_length * var->yres_virtual;
416 dev_dbg(fbi->dev, "%s: line length = %u\n", __func__,
417 info->fix.line_length);
419 if (sm501_alloc_mem(fbi, &par->screen, mem_type,
420 info->fix.smem_len)) {
421 dev_err(fbi->dev, "no memory available\n");
422 return -ENOMEM;
425 info->fix.smem_start = fbi->fbmem_res->start + par->screen.sm_addr;
427 info->screen_base = fbi->fbmem + par->screen.sm_addr;
428 info->screen_size = info->fix.smem_len;
430 /* set start of framebuffer to the screen */
432 writel(par->screen.sm_addr | SM501_ADDR_FLIP, fbi->regs + head_addr);
434 /* program CRT clock */
436 pixclock = sm501fb_ps_to_hz(var->pixclock);
438 sm501pixclock = sm501_set_clock(fbi->dev->parent, clock_type,
439 pixclock);
441 /* update fb layer with actual clock used */
442 var->pixclock = sm501fb_hz_to_ps(sm501pixclock);
444 dev_dbg(fbi->dev, "%s: pixclock(ps) = %u, pixclock(Hz) = %lu, "
445 "sm501pixclock = %lu, error = %ld%%\n",
446 __func__, var->pixclock, pixclock, sm501pixclock,
447 ((pixclock - sm501pixclock)*100)/pixclock);
449 return 0;
452 /* sm501fb_set_par_geometry
454 * set the geometry registers for specified framebuffer.
457 static void sm501fb_set_par_geometry(struct fb_info *info,
458 struct fb_var_screeninfo *var)
460 struct sm501fb_par *par = info->par;
461 struct sm501fb_info *fbi = par->info;
462 void __iomem *base = fbi->regs;
463 unsigned long reg;
465 if (par->head == HEAD_CRT)
466 base += SM501_DC_CRT_H_TOT;
467 else
468 base += SM501_DC_PANEL_H_TOT;
470 /* set framebuffer width and display width */
472 reg = info->fix.line_length;
473 reg |= ((var->xres * var->bits_per_pixel)/8) << 16;
475 writel(reg, fbi->regs + (par->head == HEAD_CRT ?
476 SM501_DC_CRT_FB_OFFSET : SM501_DC_PANEL_FB_OFFSET));
478 /* program horizontal total */
480 reg = (h_total(var) - 1) << 16;
481 reg |= (var->xres - 1);
483 writel(reg, base + SM501_OFF_DC_H_TOT);
485 /* program horizontal sync */
487 reg = var->hsync_len << 16;
488 reg |= var->xres + var->right_margin - 1;
490 writel(reg, base + SM501_OFF_DC_H_SYNC);
492 /* program vertical total */
494 reg = (v_total(var) - 1) << 16;
495 reg |= (var->yres - 1);
497 writel(reg, base + SM501_OFF_DC_V_TOT);
499 /* program vertical sync */
500 reg = var->vsync_len << 16;
501 reg |= var->yres + var->lower_margin - 1;
503 writel(reg, base + SM501_OFF_DC_V_SYNC);
506 /* sm501fb_pan_crt
508 * pan the CRT display output within an virtual framebuffer
511 static int sm501fb_pan_crt(struct fb_var_screeninfo *var,
512 struct fb_info *info)
514 struct sm501fb_par *par = info->par;
515 struct sm501fb_info *fbi = par->info;
516 unsigned int bytes_pixel = var->bits_per_pixel / 8;
517 unsigned long reg;
518 unsigned long xoffs;
520 xoffs = var->xoffset * bytes_pixel;
522 reg = readl(fbi->regs + SM501_DC_CRT_CONTROL);
524 reg &= ~SM501_DC_CRT_CONTROL_PIXEL_MASK;
525 reg |= ((xoffs & 15) / bytes_pixel) << 4;
526 writel(reg, fbi->regs + SM501_DC_CRT_CONTROL);
528 reg = (par->screen.sm_addr + xoffs +
529 var->yoffset * info->fix.line_length);
530 writel(reg | SM501_ADDR_FLIP, fbi->regs + SM501_DC_CRT_FB_ADDR);
532 sm501fb_sync_regs(fbi);
533 return 0;
536 /* sm501fb_pan_pnl
538 * pan the panel display output within an virtual framebuffer
541 static int sm501fb_pan_pnl(struct fb_var_screeninfo *var,
542 struct fb_info *info)
544 struct sm501fb_par *par = info->par;
545 struct sm501fb_info *fbi = par->info;
546 unsigned long reg;
548 reg = var->xoffset | (var->xres_virtual << 16);
549 writel(reg, fbi->regs + SM501_DC_PANEL_FB_WIDTH);
551 reg = var->yoffset | (var->yres_virtual << 16);
552 writel(reg, fbi->regs + SM501_DC_PANEL_FB_HEIGHT);
554 sm501fb_sync_regs(fbi);
555 return 0;
558 /* sm501fb_set_par_crt
560 * Set the CRT video mode from the fb_info structure
563 static int sm501fb_set_par_crt(struct fb_info *info)
565 struct sm501fb_par *par = info->par;
566 struct sm501fb_info *fbi = par->info;
567 struct fb_var_screeninfo *var = &info->var;
568 unsigned long control; /* control register */
569 int ret;
571 /* activate new configuration */
573 dev_dbg(fbi->dev, "%s(%p)\n", __func__, info);
575 /* enable CRT DAC - note 0 is on!*/
576 sm501_misc_control(fbi->dev->parent, 0, SM501_MISC_DAC_POWER);
578 control = readl(fbi->regs + SM501_DC_CRT_CONTROL);
580 control &= (SM501_DC_CRT_CONTROL_PIXEL_MASK |
581 SM501_DC_CRT_CONTROL_GAMMA |
582 SM501_DC_CRT_CONTROL_BLANK |
583 SM501_DC_CRT_CONTROL_SEL |
584 SM501_DC_CRT_CONTROL_CP |
585 SM501_DC_CRT_CONTROL_TVP);
587 /* set the sync polarities before we check data source */
589 if ((var->sync & FB_SYNC_HOR_HIGH_ACT) == 0)
590 control |= SM501_DC_CRT_CONTROL_HSP;
592 if ((var->sync & FB_SYNC_VERT_HIGH_ACT) == 0)
593 control |= SM501_DC_CRT_CONTROL_VSP;
595 if ((control & SM501_DC_CRT_CONTROL_SEL) == 0) {
596 /* the head is displaying panel data... */
598 sm501_alloc_mem(fbi, &par->screen, SM501_MEMF_CRT, 0);
599 goto out_update;
602 ret = sm501fb_set_par_common(info, var);
603 if (ret) {
604 dev_err(fbi->dev, "failed to set common parameters\n");
605 return ret;
608 sm501fb_pan_crt(var, info);
609 sm501fb_set_par_geometry(info, var);
611 control |= SM501_FIFO_3; /* fill if >3 free slots */
613 switch(var->bits_per_pixel) {
614 case 8:
615 control |= SM501_DC_CRT_CONTROL_8BPP;
616 break;
618 case 16:
619 control |= SM501_DC_CRT_CONTROL_16BPP;
620 sm501fb_setup_gamma(fbi, SM501_DC_CRT_PALETTE);
621 break;
623 case 32:
624 control |= SM501_DC_CRT_CONTROL_32BPP;
625 sm501fb_setup_gamma(fbi, SM501_DC_CRT_PALETTE);
626 break;
628 default:
629 BUG();
632 control |= SM501_DC_CRT_CONTROL_SEL; /* CRT displays CRT data */
633 control |= SM501_DC_CRT_CONTROL_TE; /* enable CRT timing */
634 control |= SM501_DC_CRT_CONTROL_ENABLE; /* enable CRT plane */
636 out_update:
637 dev_dbg(fbi->dev, "new control is %08lx\n", control);
639 writel(control, fbi->regs + SM501_DC_CRT_CONTROL);
640 sm501fb_sync_regs(fbi);
642 return 0;
645 static void sm501fb_panel_power(struct sm501fb_info *fbi, int to)
647 unsigned long control;
648 void __iomem *ctrl_reg = fbi->regs + SM501_DC_PANEL_CONTROL;
649 struct sm501_platdata_fbsub *pd = fbi->pdata->fb_pnl;
651 control = readl(ctrl_reg);
653 if (to && (control & SM501_DC_PANEL_CONTROL_VDD) == 0) {
654 /* enable panel power */
656 control |= SM501_DC_PANEL_CONTROL_VDD; /* FPVDDEN */
657 writel(control, ctrl_reg);
658 sm501fb_sync_regs(fbi);
659 mdelay(10);
661 control |= SM501_DC_PANEL_CONTROL_DATA; /* DATA */
662 writel(control, ctrl_reg);
663 sm501fb_sync_regs(fbi);
664 mdelay(10);
666 if (pd->flags & SM501FB_FLAG_PANEL_USE_VBIASEN) {
667 control |= SM501_DC_PANEL_CONTROL_BIAS; /* VBIASEN */
668 writel(control, ctrl_reg);
669 sm501fb_sync_regs(fbi);
670 mdelay(10);
673 if (pd->flags & SM501FB_FLAG_PANEL_USE_FPEN) {
674 control |= SM501_DC_PANEL_CONTROL_FPEN;
675 writel(control, ctrl_reg);
676 sm501fb_sync_regs(fbi);
677 mdelay(10);
679 } else if (!to && (control & SM501_DC_PANEL_CONTROL_VDD) != 0) {
680 /* disable panel power */
681 if (pd->flags & SM501FB_FLAG_PANEL_USE_FPEN) {
682 control &= ~SM501_DC_PANEL_CONTROL_FPEN;
683 writel(control, ctrl_reg);
684 sm501fb_sync_regs(fbi);
685 mdelay(10);
688 if (pd->flags & SM501FB_FLAG_PANEL_USE_VBIASEN) {
689 control &= ~SM501_DC_PANEL_CONTROL_BIAS;
690 writel(control, ctrl_reg);
691 sm501fb_sync_regs(fbi);
692 mdelay(10);
695 control &= ~SM501_DC_PANEL_CONTROL_DATA;
696 writel(control, ctrl_reg);
697 sm501fb_sync_regs(fbi);
698 mdelay(10);
700 control &= ~SM501_DC_PANEL_CONTROL_VDD;
701 writel(control, ctrl_reg);
702 sm501fb_sync_regs(fbi);
703 mdelay(10);
706 sm501fb_sync_regs(fbi);
709 /* sm501fb_set_par_pnl
711 * Set the panel video mode from the fb_info structure
714 static int sm501fb_set_par_pnl(struct fb_info *info)
716 struct sm501fb_par *par = info->par;
717 struct sm501fb_info *fbi = par->info;
718 struct fb_var_screeninfo *var = &info->var;
719 unsigned long control;
720 unsigned long reg;
721 int ret;
723 dev_dbg(fbi->dev, "%s(%p)\n", __func__, info);
725 /* activate this new configuration */
727 ret = sm501fb_set_par_common(info, var);
728 if (ret)
729 return ret;
731 sm501fb_pan_pnl(var, info);
732 sm501fb_set_par_geometry(info, var);
734 /* update control register */
736 control = readl(fbi->regs + SM501_DC_PANEL_CONTROL);
737 control &= (SM501_DC_PANEL_CONTROL_GAMMA |
738 SM501_DC_PANEL_CONTROL_VDD |
739 SM501_DC_PANEL_CONTROL_DATA |
740 SM501_DC_PANEL_CONTROL_BIAS |
741 SM501_DC_PANEL_CONTROL_FPEN |
742 SM501_DC_PANEL_CONTROL_CP |
743 SM501_DC_PANEL_CONTROL_CK |
744 SM501_DC_PANEL_CONTROL_HP |
745 SM501_DC_PANEL_CONTROL_VP |
746 SM501_DC_PANEL_CONTROL_HPD |
747 SM501_DC_PANEL_CONTROL_VPD);
749 control |= SM501_FIFO_3; /* fill if >3 free slots */
751 switch(var->bits_per_pixel) {
752 case 8:
753 control |= SM501_DC_PANEL_CONTROL_8BPP;
754 break;
756 case 16:
757 control |= SM501_DC_PANEL_CONTROL_16BPP;
758 sm501fb_setup_gamma(fbi, SM501_DC_PANEL_PALETTE);
759 break;
761 case 32:
762 control |= SM501_DC_PANEL_CONTROL_32BPP;
763 sm501fb_setup_gamma(fbi, SM501_DC_PANEL_PALETTE);
764 break;
766 default:
767 BUG();
770 writel(0x0, fbi->regs + SM501_DC_PANEL_PANNING_CONTROL);
772 /* panel plane top left and bottom right location */
774 writel(0x00, fbi->regs + SM501_DC_PANEL_TL_LOC);
776 reg = var->xres - 1;
777 reg |= (var->yres - 1) << 16;
779 writel(reg, fbi->regs + SM501_DC_PANEL_BR_LOC);
781 /* program panel control register */
783 control |= SM501_DC_PANEL_CONTROL_TE; /* enable PANEL timing */
784 control |= SM501_DC_PANEL_CONTROL_EN; /* enable PANEL gfx plane */
786 if ((var->sync & FB_SYNC_HOR_HIGH_ACT) == 0)
787 control |= SM501_DC_PANEL_CONTROL_HSP;
789 if ((var->sync & FB_SYNC_VERT_HIGH_ACT) == 0)
790 control |= SM501_DC_PANEL_CONTROL_VSP;
792 writel(control, fbi->regs + SM501_DC_PANEL_CONTROL);
793 sm501fb_sync_regs(fbi);
795 /* ensure the panel interface is not tristated at this point */
797 sm501_modify_reg(fbi->dev->parent, SM501_SYSTEM_CONTROL,
798 0, SM501_SYSCTRL_PANEL_TRISTATE);
800 /* power the panel up */
801 sm501fb_panel_power(fbi, 1);
802 return 0;
806 /* chan_to_field
808 * convert a colour value into a field position
810 * from pxafb.c
813 static inline unsigned int chan_to_field(unsigned int chan,
814 struct fb_bitfield *bf)
816 chan &= 0xffff;
817 chan >>= 16 - bf->length;
818 return chan << bf->offset;
821 /* sm501fb_setcolreg
823 * set the colour mapping for modes that support palettised data
826 static int sm501fb_setcolreg(unsigned regno,
827 unsigned red, unsigned green, unsigned blue,
828 unsigned transp, struct fb_info *info)
830 struct sm501fb_par *par = info->par;
831 struct sm501fb_info *fbi = par->info;
832 void __iomem *base = fbi->regs;
833 unsigned int val;
835 if (par->head == HEAD_CRT)
836 base += SM501_DC_CRT_PALETTE;
837 else
838 base += SM501_DC_PANEL_PALETTE;
840 switch (info->fix.visual) {
841 case FB_VISUAL_TRUECOLOR:
842 /* true-colour, use pseuo-palette */
844 if (regno < 16) {
845 u32 *pal = par->pseudo_palette;
847 val = chan_to_field(red, &info->var.red);
848 val |= chan_to_field(green, &info->var.green);
849 val |= chan_to_field(blue, &info->var.blue);
851 pal[regno] = val;
853 break;
855 case FB_VISUAL_PSEUDOCOLOR:
856 if (regno < 256) {
857 val = (red >> 8) << 16;
858 val |= (green >> 8) << 8;
859 val |= blue >> 8;
861 writel(val, base + (regno * 4));
864 break;
866 default:
867 return 1; /* unknown type */
870 return 0;
873 /* sm501fb_blank_pnl
875 * Blank or un-blank the panel interface
878 static int sm501fb_blank_pnl(int blank_mode, struct fb_info *info)
880 struct sm501fb_par *par = info->par;
881 struct sm501fb_info *fbi = par->info;
883 dev_dbg(fbi->dev, "%s(mode=%d, %p)\n", __func__, blank_mode, info);
885 switch (blank_mode) {
886 case FB_BLANK_POWERDOWN:
887 sm501fb_panel_power(fbi, 0);
888 break;
890 case FB_BLANK_UNBLANK:
891 sm501fb_panel_power(fbi, 1);
892 break;
894 case FB_BLANK_NORMAL:
895 case FB_BLANK_VSYNC_SUSPEND:
896 case FB_BLANK_HSYNC_SUSPEND:
897 default:
898 return 1;
901 return 0;
904 /* sm501fb_blank_crt
906 * Blank or un-blank the crt interface
909 static int sm501fb_blank_crt(int blank_mode, struct fb_info *info)
911 struct sm501fb_par *par = info->par;
912 struct sm501fb_info *fbi = par->info;
913 unsigned long ctrl;
915 dev_dbg(fbi->dev, "%s(mode=%d, %p)\n", __func__, blank_mode, info);
917 ctrl = readl(fbi->regs + SM501_DC_CRT_CONTROL);
919 switch (blank_mode) {
920 case FB_BLANK_POWERDOWN:
921 ctrl &= ~SM501_DC_CRT_CONTROL_ENABLE;
922 sm501_misc_control(fbi->dev->parent, SM501_MISC_DAC_POWER, 0);
924 case FB_BLANK_NORMAL:
925 ctrl |= SM501_DC_CRT_CONTROL_BLANK;
926 break;
928 case FB_BLANK_UNBLANK:
929 ctrl &= ~SM501_DC_CRT_CONTROL_BLANK;
930 ctrl |= SM501_DC_CRT_CONTROL_ENABLE;
931 sm501_misc_control(fbi->dev->parent, 0, SM501_MISC_DAC_POWER);
932 break;
934 case FB_BLANK_VSYNC_SUSPEND:
935 case FB_BLANK_HSYNC_SUSPEND:
936 default:
937 return 1;
941 writel(ctrl, fbi->regs + SM501_DC_CRT_CONTROL);
942 sm501fb_sync_regs(fbi);
944 return 0;
947 /* sm501fb_cursor
949 * set or change the hardware cursor parameters
952 static int sm501fb_cursor(struct fb_info *info, struct fb_cursor *cursor)
954 struct sm501fb_par *par = info->par;
955 struct sm501fb_info *fbi = par->info;
956 void __iomem *base = fbi->regs;
957 unsigned long hwc_addr;
958 unsigned long fg, bg;
960 dev_dbg(fbi->dev, "%s(%p,%p)\n", __func__, info, cursor);
962 if (par->head == HEAD_CRT)
963 base += SM501_DC_CRT_HWC_BASE;
964 else
965 base += SM501_DC_PANEL_HWC_BASE;
967 /* check not being asked to exceed capabilities */
969 if (cursor->image.width > 64)
970 return -EINVAL;
972 if (cursor->image.height > 64)
973 return -EINVAL;
975 if (cursor->image.depth > 1)
976 return -EINVAL;
978 hwc_addr = readl(base + SM501_OFF_HWC_ADDR);
980 if (cursor->enable)
981 writel(hwc_addr | SM501_HWC_EN, base + SM501_OFF_HWC_ADDR);
982 else
983 writel(hwc_addr & ~SM501_HWC_EN, base + SM501_OFF_HWC_ADDR);
985 /* set data */
986 if (cursor->set & FB_CUR_SETPOS) {
987 unsigned int x = cursor->image.dx;
988 unsigned int y = cursor->image.dy;
990 if (x >= 2048 || y >= 2048 )
991 return -EINVAL;
993 dev_dbg(fbi->dev, "set position %d,%d\n", x, y);
995 //y += cursor->image.height;
997 writel(x | (y << 16), base + SM501_OFF_HWC_LOC);
1000 if (cursor->set & FB_CUR_SETCMAP) {
1001 unsigned int bg_col = cursor->image.bg_color;
1002 unsigned int fg_col = cursor->image.fg_color;
1004 dev_dbg(fbi->dev, "%s: update cmap (%08x,%08x)\n",
1005 __func__, bg_col, fg_col);
1007 bg = ((info->cmap.red[bg_col] & 0xF8) << 8) |
1008 ((info->cmap.green[bg_col] & 0xFC) << 3) |
1009 ((info->cmap.blue[bg_col] & 0xF8) >> 3);
1011 fg = ((info->cmap.red[fg_col] & 0xF8) << 8) |
1012 ((info->cmap.green[fg_col] & 0xFC) << 3) |
1013 ((info->cmap.blue[fg_col] & 0xF8) >> 3);
1015 dev_dbg(fbi->dev, "fgcol %08lx, bgcol %08lx\n", fg, bg);
1017 writel(bg, base + SM501_OFF_HWC_COLOR_1_2);
1018 writel(fg, base + SM501_OFF_HWC_COLOR_3);
1021 if (cursor->set & FB_CUR_SETSIZE ||
1022 cursor->set & (FB_CUR_SETIMAGE | FB_CUR_SETSHAPE)) {
1023 /* SM501 cursor is a two bpp 64x64 bitmap this routine
1024 * clears it to transparent then combines the cursor
1025 * shape plane with the colour plane to set the
1026 * cursor */
1027 int x, y;
1028 const unsigned char *pcol = cursor->image.data;
1029 const unsigned char *pmsk = cursor->mask;
1030 void __iomem *dst = par->cursor.k_addr;
1031 unsigned char dcol = 0;
1032 unsigned char dmsk = 0;
1033 unsigned int op;
1035 dev_dbg(fbi->dev, "%s: setting shape (%d,%d)\n",
1036 __func__, cursor->image.width, cursor->image.height);
1038 for (op = 0; op < (64*64*2)/8; op+=4)
1039 writel(0x0, dst + op);
1041 for (y = 0; y < cursor->image.height; y++) {
1042 for (x = 0; x < cursor->image.width; x++) {
1043 if ((x % 8) == 0) {
1044 dcol = *pcol++;
1045 dmsk = *pmsk++;
1046 } else {
1047 dcol >>= 1;
1048 dmsk >>= 1;
1051 if (dmsk & 1) {
1052 op = (dcol & 1) ? 1 : 3;
1053 op <<= ((x % 4) * 2);
1055 op |= readb(dst + (x / 4));
1056 writeb(op, dst + (x / 4));
1059 dst += (64*2)/8;
1063 sm501fb_sync_regs(fbi); /* ensure cursor data flushed */
1064 return 0;
1067 /* sm501fb_crtsrc_show
1069 * device attribute code to show where the crt output is sourced from
1072 static ssize_t sm501fb_crtsrc_show(struct device *dev,
1073 struct device_attribute *attr, char *buf)
1075 struct sm501fb_info *info = dev_get_drvdata(dev);
1076 unsigned long ctrl;
1078 ctrl = readl(info->regs + SM501_DC_CRT_CONTROL);
1079 ctrl &= SM501_DC_CRT_CONTROL_SEL;
1081 return snprintf(buf, PAGE_SIZE, "%s\n", ctrl ? "crt" : "panel");
1084 /* sm501fb_crtsrc_show
1086 * device attribute code to set where the crt output is sourced from
1089 static ssize_t sm501fb_crtsrc_store(struct device *dev,
1090 struct device_attribute *attr,
1091 const char *buf, size_t len)
1093 struct sm501fb_info *info = dev_get_drvdata(dev);
1094 enum sm501_controller head;
1095 unsigned long ctrl;
1097 if (len < 1)
1098 return -EINVAL;
1100 if (strnicmp(buf, "crt", 3) == 0)
1101 head = HEAD_CRT;
1102 else if (strnicmp(buf, "panel", 5) == 0)
1103 head = HEAD_PANEL;
1104 else
1105 return -EINVAL;
1107 dev_info(dev, "setting crt source to head %d\n", head);
1109 ctrl = readl(info->regs + SM501_DC_CRT_CONTROL);
1111 if (head == HEAD_CRT) {
1112 ctrl |= SM501_DC_CRT_CONTROL_SEL;
1113 ctrl |= SM501_DC_CRT_CONTROL_ENABLE;
1114 ctrl |= SM501_DC_CRT_CONTROL_TE;
1115 } else {
1116 ctrl &= ~SM501_DC_CRT_CONTROL_SEL;
1117 ctrl &= ~SM501_DC_CRT_CONTROL_ENABLE;
1118 ctrl &= ~SM501_DC_CRT_CONTROL_TE;
1121 writel(ctrl, info->regs + SM501_DC_CRT_CONTROL);
1122 sm501fb_sync_regs(info);
1124 return len;
1127 /* Prepare the device_attr for registration with sysfs later */
1128 static DEVICE_ATTR(crt_src, 0666, sm501fb_crtsrc_show, sm501fb_crtsrc_store);
1130 /* sm501fb_show_regs
1132 * show the primary sm501 registers
1134 static int sm501fb_show_regs(struct sm501fb_info *info, char *ptr,
1135 unsigned int start, unsigned int len)
1137 void __iomem *mem = info->regs;
1138 char *buf = ptr;
1139 unsigned int reg;
1141 for (reg = start; reg < (len + start); reg += 4)
1142 ptr += sprintf(ptr, "%08x = %08x\n", reg, readl(mem + reg));
1144 return ptr - buf;
1147 /* sm501fb_debug_show_crt
1149 * show the crt control and cursor registers
1152 static ssize_t sm501fb_debug_show_crt(struct device *dev,
1153 struct device_attribute *attr, char *buf)
1155 struct sm501fb_info *info = dev_get_drvdata(dev);
1156 char *ptr = buf;
1158 ptr += sm501fb_show_regs(info, ptr, SM501_DC_CRT_CONTROL, 0x40);
1159 ptr += sm501fb_show_regs(info, ptr, SM501_DC_CRT_HWC_BASE, 0x10);
1161 return ptr - buf;
1164 static DEVICE_ATTR(fbregs_crt, 0444, sm501fb_debug_show_crt, NULL);
1166 /* sm501fb_debug_show_pnl
1168 * show the panel control and cursor registers
1171 static ssize_t sm501fb_debug_show_pnl(struct device *dev,
1172 struct device_attribute *attr, char *buf)
1174 struct sm501fb_info *info = dev_get_drvdata(dev);
1175 char *ptr = buf;
1177 ptr += sm501fb_show_regs(info, ptr, 0x0, 0x40);
1178 ptr += sm501fb_show_regs(info, ptr, SM501_DC_PANEL_HWC_BASE, 0x10);
1180 return ptr - buf;
1183 static DEVICE_ATTR(fbregs_pnl, 0444, sm501fb_debug_show_pnl, NULL);
1185 /* framebuffer ops */
1187 static struct fb_ops sm501fb_ops_crt = {
1188 .owner = THIS_MODULE,
1189 .fb_check_var = sm501fb_check_var_crt,
1190 .fb_set_par = sm501fb_set_par_crt,
1191 .fb_blank = sm501fb_blank_crt,
1192 .fb_setcolreg = sm501fb_setcolreg,
1193 .fb_pan_display = sm501fb_pan_crt,
1194 .fb_cursor = sm501fb_cursor,
1195 .fb_fillrect = cfb_fillrect,
1196 .fb_copyarea = cfb_copyarea,
1197 .fb_imageblit = cfb_imageblit,
1200 static struct fb_ops sm501fb_ops_pnl = {
1201 .owner = THIS_MODULE,
1202 .fb_check_var = sm501fb_check_var_pnl,
1203 .fb_set_par = sm501fb_set_par_pnl,
1204 .fb_pan_display = sm501fb_pan_pnl,
1205 .fb_blank = sm501fb_blank_pnl,
1206 .fb_setcolreg = sm501fb_setcolreg,
1207 .fb_cursor = sm501fb_cursor,
1208 .fb_fillrect = cfb_fillrect,
1209 .fb_copyarea = cfb_copyarea,
1210 .fb_imageblit = cfb_imageblit,
1213 /* sm501fb_info_alloc
1215 * creates and initialises an sm501fb_info structure
1218 static struct sm501fb_info *sm501fb_info_alloc(struct fb_info *fbinfo_crt,
1219 struct fb_info *fbinfo_pnl)
1221 struct sm501fb_info *info;
1222 struct sm501fb_par *par;
1224 info = kzalloc(sizeof(struct sm501fb_info), GFP_KERNEL);
1225 if (info) {
1226 /* set the references back */
1228 par = fbinfo_crt->par;
1229 par->info = info;
1230 par->head = HEAD_CRT;
1231 fbinfo_crt->pseudo_palette = &par->pseudo_palette;
1233 par = fbinfo_pnl->par;
1234 par->info = info;
1235 par->head = HEAD_PANEL;
1236 fbinfo_pnl->pseudo_palette = &par->pseudo_palette;
1238 /* store the two fbs into our info */
1239 info->fb[HEAD_CRT] = fbinfo_crt;
1240 info->fb[HEAD_PANEL] = fbinfo_pnl;
1243 return info;
1246 /* sm501_init_cursor
1248 * initialise hw cursor parameters
1251 static int sm501_init_cursor(struct fb_info *fbi, unsigned int reg_base)
1253 struct sm501fb_par *par = fbi->par;
1254 struct sm501fb_info *info = par->info;
1255 int ret;
1257 par->cursor_regs = info->regs + reg_base;
1259 ret = sm501_alloc_mem(info, &par->cursor, SM501_MEMF_CURSOR, 1024);
1260 if (ret < 0)
1261 return ret;
1263 /* initialise the colour registers */
1265 writel(par->cursor.sm_addr, par->cursor_regs + SM501_OFF_HWC_ADDR);
1267 writel(0x00, par->cursor_regs + SM501_OFF_HWC_LOC);
1268 writel(0x00, par->cursor_regs + SM501_OFF_HWC_COLOR_1_2);
1269 writel(0x00, par->cursor_regs + SM501_OFF_HWC_COLOR_3);
1270 sm501fb_sync_regs(info);
1272 return 0;
1275 /* sm501fb_info_start
1277 * fills the par structure claiming resources and remapping etc.
1280 static int sm501fb_start(struct sm501fb_info *info,
1281 struct platform_device *pdev)
1283 struct resource *res;
1284 struct device *dev;
1285 int k;
1286 int ret;
1288 info->dev = dev = &pdev->dev;
1289 platform_set_drvdata(pdev, info);
1291 info->irq = ret = platform_get_irq(pdev, 0);
1292 if (ret < 0) {
1293 /* we currently do not use the IRQ */
1294 dev_warn(dev, "no irq for device\n");
1297 /* allocate, reserve and remap resources for registers */
1298 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1299 if (res == NULL) {
1300 dev_err(dev, "no resource definition for registers\n");
1301 ret = -ENOENT;
1302 goto err_release;
1305 info->regs_res = request_mem_region(res->start,
1306 res->end - res->start,
1307 pdev->name);
1309 if (info->regs_res == NULL) {
1310 dev_err(dev, "cannot claim registers\n");
1311 ret = -ENXIO;
1312 goto err_release;
1315 info->regs = ioremap(res->start, (res->end - res->start)+1);
1316 if (info->regs == NULL) {
1317 dev_err(dev, "cannot remap registers\n");
1318 ret = -ENXIO;
1319 goto err_regs_res;
1322 /* allocate, reserve resources for framebuffer */
1323 res = platform_get_resource(pdev, IORESOURCE_MEM, 2);
1324 if (res == NULL) {
1325 dev_err(dev, "no memory resource defined\n");
1326 ret = -ENXIO;
1327 goto err_regs_map;
1330 info->fbmem_res = request_mem_region(res->start,
1331 (res->end - res->start)+1,
1332 pdev->name);
1333 if (info->fbmem_res == NULL) {
1334 dev_err(dev, "cannot claim framebuffer\n");
1335 ret = -ENXIO;
1336 goto err_regs_map;
1339 info->fbmem = ioremap(res->start, (res->end - res->start)+1);
1340 if (info->fbmem == NULL) {
1341 dev_err(dev, "cannot remap framebuffer\n");
1342 goto err_mem_res;
1345 info->fbmem_len = (res->end - res->start)+1;
1347 /* clear framebuffer memory - avoids garbage data on unused fb */
1348 memset(info->fbmem, 0, info->fbmem_len);
1350 /* clear palette ram - undefined at power on */
1351 for (k = 0; k < (256 * 3); k++)
1352 writel(0, info->regs + SM501_DC_PANEL_PALETTE + (k * 4));
1354 /* enable display controller */
1355 sm501_unit_power(dev->parent, SM501_GATE_DISPLAY, 1);
1357 /* setup cursors */
1359 sm501_init_cursor(info->fb[HEAD_CRT], SM501_DC_CRT_HWC_ADDR);
1360 sm501_init_cursor(info->fb[HEAD_PANEL], SM501_DC_PANEL_HWC_ADDR);
1362 return 0; /* everything is setup */
1364 err_mem_res:
1365 release_resource(info->fbmem_res);
1366 kfree(info->fbmem_res);
1368 err_regs_map:
1369 iounmap(info->regs);
1371 err_regs_res:
1372 release_resource(info->regs_res);
1373 kfree(info->regs_res);
1375 err_release:
1376 return ret;
1379 static void sm501fb_stop(struct sm501fb_info *info)
1381 /* disable display controller */
1382 sm501_unit_power(info->dev->parent, SM501_GATE_DISPLAY, 0);
1384 iounmap(info->fbmem);
1385 release_resource(info->fbmem_res);
1386 kfree(info->fbmem_res);
1388 iounmap(info->regs);
1389 release_resource(info->regs_res);
1390 kfree(info->regs_res);
1393 static void sm501fb_info_release(struct sm501fb_info *info)
1395 kfree(info);
1398 static int sm501fb_init_fb(struct fb_info *fb,
1399 enum sm501_controller head,
1400 const char *fbname)
1402 struct sm501_platdata_fbsub *pd;
1403 struct sm501fb_par *par = fb->par;
1404 struct sm501fb_info *info = par->info;
1405 unsigned long ctrl;
1406 unsigned int enable;
1407 int ret;
1409 switch (head) {
1410 case HEAD_CRT:
1411 pd = info->pdata->fb_crt;
1412 ctrl = readl(info->regs + SM501_DC_CRT_CONTROL);
1413 enable = (ctrl & SM501_DC_CRT_CONTROL_ENABLE) ? 1 : 0;
1415 /* ensure we set the correct source register */
1416 if (info->pdata->fb_route != SM501_FB_CRT_PANEL) {
1417 ctrl |= SM501_DC_CRT_CONTROL_SEL;
1418 writel(ctrl, info->regs + SM501_DC_CRT_CONTROL);
1421 break;
1423 case HEAD_PANEL:
1424 pd = info->pdata->fb_pnl;
1425 ctrl = readl(info->regs + SM501_DC_PANEL_CONTROL);
1426 enable = (ctrl & SM501_DC_PANEL_CONTROL_EN) ? 1 : 0;
1427 break;
1429 default:
1430 pd = NULL; /* stop compiler warnings */
1431 ctrl = 0;
1432 enable = 0;
1433 BUG();
1436 dev_info(info->dev, "fb %s %sabled at start\n",
1437 fbname, enable ? "en" : "dis");
1439 /* check to see if our routing allows this */
1441 if (head == HEAD_CRT && info->pdata->fb_route == SM501_FB_CRT_PANEL) {
1442 ctrl &= ~SM501_DC_CRT_CONTROL_SEL;
1443 writel(ctrl, info->regs + SM501_DC_CRT_CONTROL);
1444 enable = 0;
1447 strlcpy(fb->fix.id, fbname, sizeof(fb->fix.id));
1449 memcpy(&par->ops,
1450 (head == HEAD_CRT) ? &sm501fb_ops_crt : &sm501fb_ops_pnl,
1451 sizeof(struct fb_ops));
1453 /* update ops dependant on what we've been passed */
1455 if ((pd->flags & SM501FB_FLAG_USE_HWCURSOR) == 0)
1456 par->ops.fb_cursor = NULL;
1458 fb->fbops = &par->ops;
1459 fb->flags = FBINFO_FLAG_DEFAULT |
1460 FBINFO_HWACCEL_XPAN | FBINFO_HWACCEL_YPAN;
1462 /* fixed data */
1464 fb->fix.type = FB_TYPE_PACKED_PIXELS;
1465 fb->fix.type_aux = 0;
1466 fb->fix.xpanstep = 1;
1467 fb->fix.ypanstep = 1;
1468 fb->fix.ywrapstep = 0;
1469 fb->fix.accel = FB_ACCEL_NONE;
1471 /* screenmode */
1473 fb->var.nonstd = 0;
1474 fb->var.activate = FB_ACTIVATE_NOW;
1475 fb->var.accel_flags = 0;
1476 fb->var.vmode = FB_VMODE_NONINTERLACED;
1477 fb->var.bits_per_pixel = 16;
1479 if (enable && (pd->flags & SM501FB_FLAG_USE_INIT_MODE) && 0) {
1480 /* TODO read the mode from the current display */
1482 } else {
1483 if (pd->def_mode) {
1484 dev_info(info->dev, "using supplied mode\n");
1485 fb_videomode_to_var(&fb->var, pd->def_mode);
1487 fb->var.bits_per_pixel = pd->def_bpp ? pd->def_bpp : 8;
1488 fb->var.xres_virtual = fb->var.xres;
1489 fb->var.yres_virtual = fb->var.yres;
1490 } else {
1491 ret = fb_find_mode(&fb->var, fb,
1492 NULL, NULL, 0, NULL, 8);
1494 if (ret == 0 || ret == 4) {
1495 dev_err(info->dev,
1496 "failed to get initial mode\n");
1497 return -EINVAL;
1502 /* initialise and set the palette */
1503 fb_alloc_cmap(&fb->cmap, NR_PALETTE, 0);
1504 fb_set_cmap(&fb->cmap, fb);
1506 ret = (fb->fbops->fb_check_var)(&fb->var, fb);
1507 if (ret)
1508 dev_err(info->dev, "check_var() failed on initial setup?\n");
1510 /* ensure we've activated our new configuration */
1511 (fb->fbops->fb_set_par)(fb);
1513 return 0;
1516 /* default platform data if none is supplied (ie, PCI device) */
1518 static struct sm501_platdata_fbsub sm501fb_pdata_crt = {
1519 .flags = (SM501FB_FLAG_USE_INIT_MODE |
1520 SM501FB_FLAG_USE_HWCURSOR |
1521 SM501FB_FLAG_USE_HWACCEL |
1522 SM501FB_FLAG_DISABLE_AT_EXIT),
1526 static struct sm501_platdata_fbsub sm501fb_pdata_pnl = {
1527 .flags = (SM501FB_FLAG_USE_INIT_MODE |
1528 SM501FB_FLAG_USE_HWCURSOR |
1529 SM501FB_FLAG_USE_HWACCEL |
1530 SM501FB_FLAG_DISABLE_AT_EXIT),
1533 static struct sm501_platdata_fb sm501fb_def_pdata = {
1534 .fb_route = SM501_FB_OWN,
1535 .fb_crt = &sm501fb_pdata_crt,
1536 .fb_pnl = &sm501fb_pdata_pnl,
1539 static char driver_name_crt[] = "sm501fb-crt";
1540 static char driver_name_pnl[] = "sm501fb-panel";
1542 static int __init sm501fb_probe(struct platform_device *pdev)
1544 struct sm501fb_info *info;
1545 struct device *dev = &pdev->dev;
1546 struct fb_info *fbinfo_crt;
1547 struct fb_info *fbinfo_pnl;
1548 int ret;
1550 /* allocate our framebuffers */
1552 fbinfo_crt = framebuffer_alloc(sizeof(struct sm501fb_par), dev);
1553 if (fbinfo_crt == NULL) {
1554 dev_err(dev, "cannot allocate crt framebuffer\n");
1555 return -ENOMEM;
1558 fbinfo_pnl = framebuffer_alloc(sizeof(struct sm501fb_par), dev);
1559 if (fbinfo_pnl == NULL) {
1560 dev_err(dev, "cannot allocate panel framebuffer\n");
1561 ret = -ENOMEM;
1562 goto fbinfo_crt_alloc_fail;
1565 info = sm501fb_info_alloc(fbinfo_crt, fbinfo_pnl);
1566 if (info == NULL) {
1567 dev_err(dev, "cannot allocate par\n");
1568 ret = -ENOMEM;
1569 goto sm501fb_alloc_fail;
1572 if (dev->parent->platform_data) {
1573 struct sm501_platdata *pd = dev->parent->platform_data;
1574 info->pdata = pd->fb;
1577 if (info->pdata == NULL) {
1578 dev_info(dev, "using default configuration data\n");
1579 info->pdata = &sm501fb_def_pdata;
1582 /* start the framebuffers */
1584 ret = sm501fb_start(info, pdev);
1585 if (ret) {
1586 dev_err(dev, "cannot initialise SM501\n");
1587 goto sm501fb_start_fail;
1590 /* CRT framebuffer setup */
1592 ret = sm501fb_init_fb(fbinfo_crt, HEAD_CRT, driver_name_crt);
1593 if (ret) {
1594 dev_err(dev, "cannot initialise CRT fb\n");
1595 goto sm501fb_start_fail;
1598 /* Panel framebuffer setup */
1600 ret = sm501fb_init_fb(fbinfo_pnl, HEAD_PANEL, driver_name_pnl);
1601 if (ret) {
1602 dev_err(dev, "cannot initialise Panel fb\n");
1603 goto sm501fb_start_fail;
1606 /* register framebuffers */
1608 ret = register_framebuffer(fbinfo_crt);
1609 if (ret < 0) {
1610 dev_err(dev, "failed to register CRT fb (%d)\n", ret);
1611 goto register_crt_fail;
1614 ret = register_framebuffer(fbinfo_pnl);
1615 if (ret < 0) {
1616 dev_err(dev, "failed to register panel fb (%d)\n", ret);
1617 goto register_pnl_fail;
1620 dev_info(dev, "fb%d: %s frame buffer device\n",
1621 fbinfo_crt->node, fbinfo_crt->fix.id);
1623 dev_info(dev, "fb%d: %s frame buffer device\n",
1624 fbinfo_pnl->node, fbinfo_pnl->fix.id);
1626 /* create device files */
1628 ret = device_create_file(dev, &dev_attr_crt_src);
1629 if (ret)
1630 goto crtsrc_fail;
1632 ret = device_create_file(dev, &dev_attr_fbregs_pnl);
1633 if (ret)
1634 goto fbregs_pnl_fail;
1636 ret = device_create_file(dev, &dev_attr_fbregs_crt);
1637 if (ret)
1638 goto fbregs_crt_fail;
1640 /* we registered, return ok */
1641 return 0;
1643 fbregs_crt_fail:
1644 device_remove_file(dev, &dev_attr_fbregs_pnl);
1646 fbregs_pnl_fail:
1647 device_remove_file(dev, &dev_attr_crt_src);
1649 crtsrc_fail:
1650 unregister_framebuffer(fbinfo_pnl);
1652 register_pnl_fail:
1653 unregister_framebuffer(fbinfo_crt);
1655 register_crt_fail:
1656 sm501fb_stop(info);
1658 sm501fb_start_fail:
1659 sm501fb_info_release(info);
1661 sm501fb_alloc_fail:
1662 framebuffer_release(fbinfo_pnl);
1664 fbinfo_crt_alloc_fail:
1665 framebuffer_release(fbinfo_crt);
1667 return ret;
1672 * Cleanup
1674 static int sm501fb_remove(struct platform_device *pdev)
1676 struct sm501fb_info *info = platform_get_drvdata(pdev);
1677 struct fb_info *fbinfo_crt = info->fb[0];
1678 struct fb_info *fbinfo_pnl = info->fb[1];
1680 device_remove_file(&pdev->dev, &dev_attr_fbregs_crt);
1681 device_remove_file(&pdev->dev, &dev_attr_fbregs_pnl);
1682 device_remove_file(&pdev->dev, &dev_attr_crt_src);
1684 unregister_framebuffer(fbinfo_crt);
1685 unregister_framebuffer(fbinfo_pnl);
1687 sm501fb_stop(info);
1688 sm501fb_info_release(info);
1690 framebuffer_release(fbinfo_pnl);
1691 framebuffer_release(fbinfo_crt);
1693 return 0;
1696 #ifdef CONFIG_PM
1698 static int sm501fb_suspend_fb(struct sm501fb_info *info,
1699 enum sm501_controller head)
1701 struct fb_info *fbi = info->fb[head];
1702 struct sm501fb_par *par = fbi->par;
1704 if (par->screen.size == 0)
1705 return 0;
1707 /* blank the relevant interface to ensure unit power minimised */
1708 (par->ops.fb_blank)(FB_BLANK_POWERDOWN, fbi);
1710 /* tell console/fb driver we are suspending */
1712 acquire_console_sem();
1713 fb_set_suspend(fbi, 1);
1714 release_console_sem();
1716 /* backup copies in case chip is powered down over suspend */
1718 par->store_fb = vmalloc(par->screen.size);
1719 if (par->store_fb == NULL) {
1720 dev_err(info->dev, "no memory to store screen\n");
1721 return -ENOMEM;
1724 par->store_cursor = vmalloc(par->cursor.size);
1725 if (par->store_cursor == NULL) {
1726 dev_err(info->dev, "no memory to store cursor\n");
1727 goto err_nocursor;
1730 dev_dbg(info->dev, "suspending screen to %p\n", par->store_fb);
1731 dev_dbg(info->dev, "suspending cursor to %p\n", par->store_cursor);
1733 memcpy_fromio(par->store_fb, par->screen.k_addr, par->screen.size);
1734 memcpy_fromio(par->store_cursor, par->cursor.k_addr, par->cursor.size);
1736 return 0;
1738 err_nocursor:
1739 vfree(par->store_fb);
1740 par->store_fb = NULL;
1742 return -ENOMEM;
1745 static void sm501fb_resume_fb(struct sm501fb_info *info,
1746 enum sm501_controller head)
1748 struct fb_info *fbi = info->fb[head];
1749 struct sm501fb_par *par = fbi->par;
1751 if (par->screen.size == 0)
1752 return;
1754 /* re-activate the configuration */
1756 (par->ops.fb_set_par)(fbi);
1758 /* restore the data */
1760 dev_dbg(info->dev, "restoring screen from %p\n", par->store_fb);
1761 dev_dbg(info->dev, "restoring cursor from %p\n", par->store_cursor);
1763 if (par->store_fb)
1764 memcpy_toio(par->screen.k_addr, par->store_fb,
1765 par->screen.size);
1767 if (par->store_cursor)
1768 memcpy_toio(par->cursor.k_addr, par->store_cursor,
1769 par->cursor.size);
1771 acquire_console_sem();
1772 fb_set_suspend(fbi, 0);
1773 release_console_sem();
1775 vfree(par->store_fb);
1776 vfree(par->store_cursor);
1780 /* suspend and resume support */
1782 static int sm501fb_suspend(struct platform_device *pdev, pm_message_t state)
1784 struct sm501fb_info *info = platform_get_drvdata(pdev);
1786 /* store crt control to resume with */
1787 info->pm_crt_ctrl = readl(info->regs + SM501_DC_CRT_CONTROL);
1789 sm501fb_suspend_fb(info, HEAD_CRT);
1790 sm501fb_suspend_fb(info, HEAD_PANEL);
1792 /* turn off the clocks, in case the device is not powered down */
1793 sm501_unit_power(info->dev->parent, SM501_GATE_DISPLAY, 0);
1795 return 0;
1798 #define SM501_CRT_CTRL_SAVE (SM501_DC_CRT_CONTROL_TVP | \
1799 SM501_DC_CRT_CONTROL_SEL)
1802 static int sm501fb_resume(struct platform_device *pdev)
1804 struct sm501fb_info *info = platform_get_drvdata(pdev);
1805 unsigned long crt_ctrl;
1807 sm501_unit_power(info->dev->parent, SM501_GATE_DISPLAY, 1);
1809 /* restore the items we want to be saved for crt control */
1811 crt_ctrl = readl(info->regs + SM501_DC_CRT_CONTROL);
1812 crt_ctrl &= ~SM501_CRT_CTRL_SAVE;
1813 crt_ctrl |= info->pm_crt_ctrl & SM501_CRT_CTRL_SAVE;
1814 writel(crt_ctrl, info->regs + SM501_DC_CRT_CONTROL);
1816 sm501fb_resume_fb(info, HEAD_CRT);
1817 sm501fb_resume_fb(info, HEAD_PANEL);
1819 return 0;
1822 #else
1823 #define sm501fb_suspend NULL
1824 #define sm501fb_resume NULL
1825 #endif
1827 static struct platform_driver sm501fb_driver = {
1828 .probe = sm501fb_probe,
1829 .remove = sm501fb_remove,
1830 .suspend = sm501fb_suspend,
1831 .resume = sm501fb_resume,
1832 .driver = {
1833 .name = "sm501-fb",
1834 .owner = THIS_MODULE,
1838 static int __devinit sm501fb_init(void)
1840 return platform_driver_register(&sm501fb_driver);
1843 static void __exit sm501fb_cleanup(void)
1845 platform_driver_unregister(&sm501fb_driver);
1848 module_init(sm501fb_init);
1849 module_exit(sm501fb_cleanup);
1851 MODULE_AUTHOR("Ben Dooks, Vincent Sanders");
1852 MODULE_DESCRIPTION("SM501 Framebuffer driver");
1853 MODULE_LICENSE("GPL v2");