1 /* drivers/video/pvr2fb.c
3 * Frame buffer and fbcon support for the NEC PowerVR2 found within the Sega
6 * Copyright (c) 2001 M. R. Brown <mrbrown@0xd6.org>
7 * Copyright (c) 2001, 2002, 2003, 2004, 2005 Paul Mundt <lethal@linux-sh.org>
9 * This file is part of the LinuxDC project (linuxdc.sourceforge.net).
14 * This driver is mostly based on the excellent amifb and vfb sources. It uses
15 * an odd scheme for converting hardware values to/from framebuffer values,
16 * here are some hacked-up formulas:
18 * The Dreamcast has screen offsets from each side of its four borders and
19 * the start offsets of the display window. I used these values to calculate
20 * 'pseudo' values (think of them as placeholders) for the fb video mode, so
21 * that when it came time to convert these values back into their hardware
22 * values, I could just add mode- specific offsets to get the correct mode
25 * left_margin = diwstart_h - borderstart_h;
26 * right_margin = borderstop_h - (diwstart_h + xres);
27 * upper_margin = diwstart_v - borderstart_v;
28 * lower_margin = borderstop_v - (diwstart_h + yres);
30 * hsync_len = borderstart_h + (hsync_total - borderstop_h);
31 * vsync_len = borderstart_v + (vsync_total - borderstop_v);
33 * Then, when it's time to convert back to hardware settings, the only
34 * constants are the borderstart_* offsets, all other values are derived from
38 * borderstart_h = 116;
41 * borderstop_h = borderstart_h + hsync_total - hsync_len;
43 * diwstart_v = borderstart_v - upper_margin;
45 * However, in the current implementation, the borderstart values haven't had
46 * the benefit of being fully researched, so some modes may be broken.
51 #include <linux/module.h>
52 #include <linux/kernel.h>
53 #include <linux/errno.h>
54 #include <linux/string.h>
56 #include <linux/slab.h>
57 #include <linux/delay.h>
58 #include <linux/interrupt.h>
60 #include <linux/init.h>
61 #include <linux/pci.h>
63 #ifdef CONFIG_SH_DREAMCAST
64 #include <asm/machvec.h>
65 #include <asm/mach/sysasic.h>
69 #include <linux/pagemap.h>
70 #include <asm/mach/dma.h>
74 #ifdef CONFIG_SH_STORE_QUEUES
75 #include <linux/uaccess.h>
76 #include <asm/cpu/sq.h>
79 #ifndef PCI_DEVICE_ID_NEC_NEON250
80 # define PCI_DEVICE_ID_NEC_NEON250 0x0067
83 /* 2D video registers */
84 #define DISP_BASE par->mmio_base
85 #define DISP_BRDRCOLR (DISP_BASE + 0x40)
86 #define DISP_DIWMODE (DISP_BASE + 0x44)
87 #define DISP_DIWADDRL (DISP_BASE + 0x50)
88 #define DISP_DIWADDRS (DISP_BASE + 0x54)
89 #define DISP_DIWSIZE (DISP_BASE + 0x5c)
90 #define DISP_SYNCCONF (DISP_BASE + 0xd0)
91 #define DISP_BRDRHORZ (DISP_BASE + 0xd4)
92 #define DISP_SYNCSIZE (DISP_BASE + 0xd8)
93 #define DISP_BRDRVERT (DISP_BASE + 0xdc)
94 #define DISP_DIWCONF (DISP_BASE + 0xe8)
95 #define DISP_DIWHSTRT (DISP_BASE + 0xec)
96 #define DISP_DIWVSTRT (DISP_BASE + 0xf0)
97 #define DISP_PIXDEPTH (DISP_BASE + 0x108)
99 /* Pixel clocks, one for TV output, doubled for VGA output */
101 #define VGA_CLK 37119
103 /* This is for 60Hz - the VTOTAL is doubled for interlaced modes */
104 #define PAL_HTOTAL 863
105 #define PAL_VTOTAL 312
106 #define NTSC_HTOTAL 857
107 #define NTSC_VTOTAL 262
109 /* Supported cable types */
110 enum { CT_VGA
, CT_NONE
, CT_RGB
, CT_COMPOSITE
};
112 /* Supported video output types */
113 enum { VO_PAL
, VO_NTSC
, VO_VGA
};
115 /* Supported palette types */
116 enum { PAL_ARGB1555
, PAL_RGB565
, PAL_ARGB4444
, PAL_ARGB8888
};
118 struct pvr2_params
{ unsigned int val
; char *name
; };
119 static struct pvr2_params cables
[] __devinitdata
= {
120 { CT_VGA
, "VGA" }, { CT_RGB
, "RGB" }, { CT_COMPOSITE
, "COMPOSITE" },
123 static struct pvr2_params outputs
[] __devinitdata
= {
124 { VO_PAL
, "PAL" }, { VO_NTSC
, "NTSC" }, { VO_VGA
, "VGA" },
128 * This describes the current video mode
131 static struct pvr2fb_par
{
132 unsigned int hsync_total
; /* Clocks/line */
133 unsigned int vsync_total
; /* Lines/field */
134 unsigned int borderstart_h
;
135 unsigned int borderstop_h
;
136 unsigned int borderstart_v
;
137 unsigned int borderstop_v
;
138 unsigned int diwstart_h
; /* Horizontal offset of the display field */
139 unsigned int diwstart_v
; /* Vertical offset of the display field, for
140 interlaced modes, this is the long field */
141 unsigned long disp_start
; /* Address of image within VRAM */
142 unsigned char is_interlaced
; /* Is the display interlaced? */
143 unsigned char is_doublescan
; /* Are scanlines output twice? (doublescan) */
144 unsigned char is_lowres
; /* Is horizontal pixel-doubling enabled? */
146 unsigned long mmio_base
; /* MMIO base */
150 static struct fb_info
*fb_info
;
152 static struct fb_fix_screeninfo pvr2_fix __devinitdata
= {
153 .id
= "NEC PowerVR2",
154 .type
= FB_TYPE_PACKED_PIXELS
,
155 .visual
= FB_VISUAL_TRUECOLOR
,
158 .accel
= FB_ACCEL_NONE
,
161 static struct fb_var_screeninfo pvr2_var __devinitdata
= {
168 .green
= { 5, 6, 0 },
170 .activate
= FB_ACTIVATE_NOW
,
173 .vmode
= FB_VMODE_NONINTERLACED
,
176 static int cable_type
= CT_VGA
;
177 static int video_output
= VO_VGA
;
179 static int nopan
= 0;
180 static int nowrap
= 1;
183 * We do all updating, blanking, etc. during the vertical retrace period
185 static unsigned int do_vmode_full
= 0; /* Change the video mode */
186 static unsigned int do_vmode_pan
= 0; /* Update the video mode */
187 static short do_blank
= 0; /* (Un)Blank the screen */
189 static unsigned int is_blanked
= 0; /* Is the screen blanked? */
191 #ifdef CONFIG_SH_STORE_QUEUES
192 static unsigned long pvr2fb_map
;
196 static unsigned int shdma
= PVR2_CASCADE_CHAN
;
197 static unsigned int pvr2dma
= ONCHIP_NR_DMA_CHANNELS
;
200 static int pvr2fb_setcolreg(unsigned int regno
, unsigned int red
, unsigned int green
, unsigned int blue
,
201 unsigned int transp
, struct fb_info
*info
);
202 static int pvr2fb_blank(int blank
, struct fb_info
*info
);
203 static unsigned long get_line_length(int xres_virtual
, int bpp
);
204 static void set_color_bitfields(struct fb_var_screeninfo
*var
);
205 static int pvr2fb_check_var(struct fb_var_screeninfo
*var
, struct fb_info
*info
);
206 static int pvr2fb_set_par(struct fb_info
*info
);
207 static void pvr2_update_display(struct fb_info
*info
);
208 static void pvr2_init_display(struct fb_info
*info
);
209 static void pvr2_do_blank(void);
210 static irqreturn_t
pvr2fb_interrupt(int irq
, void *dev_id
);
211 static int pvr2_init_cable(void);
212 static int pvr2_get_param(const struct pvr2_params
*p
, const char *s
,
215 static ssize_t
pvr2fb_write(struct fb_info
*info
, const char *buf
,
216 size_t count
, loff_t
*ppos
);
219 static struct fb_ops pvr2fb_ops
= {
220 .owner
= THIS_MODULE
,
221 .fb_setcolreg
= pvr2fb_setcolreg
,
222 .fb_blank
= pvr2fb_blank
,
223 .fb_check_var
= pvr2fb_check_var
,
224 .fb_set_par
= pvr2fb_set_par
,
226 .fb_write
= pvr2fb_write
,
228 .fb_fillrect
= cfb_fillrect
,
229 .fb_copyarea
= cfb_copyarea
,
230 .fb_imageblit
= cfb_imageblit
,
233 static struct fb_videomode pvr2_modedb
[] __devinitdata
= {
235 * Broadcast video modes (PAL and NTSC). I'm unfamiliar with
236 * PAL-M and PAL-N, but from what I've read both modes parallel PAL and
237 * NTSC, so it shouldn't be a problem (I hope).
241 /* 640x480 @ 60Hz interlaced (NTSC) */
242 "ntsc_640x480i", 60, 640, 480, TV_CLK
, 38, 33, 0, 18, 146, 26,
243 FB_SYNC_BROADCAST
, FB_VMODE_INTERLACED
| FB_VMODE_YWRAP
245 /* 640x240 @ 60Hz (NTSC) */
246 /* XXX: Broken! Don't use... */
247 "ntsc_640x240", 60, 640, 240, TV_CLK
, 38, 33, 0, 0, 146, 22,
248 FB_SYNC_BROADCAST
, FB_VMODE_YWRAP
250 /* 640x480 @ 60hz (VGA) */
251 "vga_640x480", 60, 640, 480, VGA_CLK
, 38, 33, 0, 18, 146, 26,
256 #define NUM_TOTAL_MODES ARRAY_SIZE(pvr2_modedb)
258 #define DEFMODE_NTSC 0
259 #define DEFMODE_PAL 0
260 #define DEFMODE_VGA 2
262 static int defmode
= DEFMODE_NTSC
;
263 static char *mode_option __devinitdata
= NULL
;
265 static inline void pvr2fb_set_pal_type(unsigned int type
)
267 struct pvr2fb_par
*par
= (struct pvr2fb_par
*)fb_info
->par
;
269 fb_writel(type
, par
->mmio_base
+ 0x108);
272 static inline void pvr2fb_set_pal_entry(struct pvr2fb_par
*par
,
276 fb_writel(val
, par
->mmio_base
+ 0x1000 + (4 * regno
));
279 static int pvr2fb_blank(int blank
, struct fb_info
*info
)
281 do_blank
= blank
? blank
: -1;
285 static inline unsigned long get_line_length(int xres_virtual
, int bpp
)
287 return (unsigned long)((((xres_virtual
*bpp
)+31)&~31) >> 3);
290 static void set_color_bitfields(struct fb_var_screeninfo
*var
)
292 switch (var
->bits_per_pixel
) {
293 case 16: /* RGB 565 */
294 pvr2fb_set_pal_type(PAL_RGB565
);
295 var
->red
.offset
= 11; var
->red
.length
= 5;
296 var
->green
.offset
= 5; var
->green
.length
= 6;
297 var
->blue
.offset
= 0; var
->blue
.length
= 5;
298 var
->transp
.offset
= 0; var
->transp
.length
= 0;
300 case 24: /* RGB 888 */
301 var
->red
.offset
= 16; var
->red
.length
= 8;
302 var
->green
.offset
= 8; var
->green
.length
= 8;
303 var
->blue
.offset
= 0; var
->blue
.length
= 8;
304 var
->transp
.offset
= 0; var
->transp
.length
= 0;
306 case 32: /* ARGB 8888 */
307 pvr2fb_set_pal_type(PAL_ARGB8888
);
308 var
->red
.offset
= 16; var
->red
.length
= 8;
309 var
->green
.offset
= 8; var
->green
.length
= 8;
310 var
->blue
.offset
= 0; var
->blue
.length
= 8;
311 var
->transp
.offset
= 24; var
->transp
.length
= 8;
316 static int pvr2fb_setcolreg(unsigned int regno
, unsigned int red
,
317 unsigned int green
, unsigned int blue
,
318 unsigned int transp
, struct fb_info
*info
)
320 struct pvr2fb_par
*par
= (struct pvr2fb_par
*)info
->par
;
323 if (regno
> info
->cmap
.len
)
327 * We only support the hardware palette for 16 and 32bpp. It's also
328 * expected that the palette format has been set by the time we get
329 * here, so we don't waste time setting it again.
331 switch (info
->var
.bits_per_pixel
) {
332 case 16: /* RGB 565 */
333 tmp
= (red
& 0xf800) |
334 ((green
& 0xfc00) >> 5) |
335 ((blue
& 0xf800) >> 11);
337 pvr2fb_set_pal_entry(par
, regno
, tmp
);
339 case 24: /* RGB 888 */
340 red
>>= 8; green
>>= 8; blue
>>= 8;
341 tmp
= (red
<< 16) | (green
<< 8) | blue
;
343 case 32: /* ARGB 8888 */
344 red
>>= 8; green
>>= 8; blue
>>= 8;
345 tmp
= (transp
<< 24) | (red
<< 16) | (green
<< 8) | blue
;
347 pvr2fb_set_pal_entry(par
, regno
, tmp
);
350 pr_debug("Invalid bit depth %d?!?\n", info
->var
.bits_per_pixel
);
355 ((u32
*)(info
->pseudo_palette
))[regno
] = tmp
;
360 static int pvr2fb_set_par(struct fb_info
*info
)
362 struct pvr2fb_par
*par
= (struct pvr2fb_par
*)info
->par
;
363 struct fb_var_screeninfo
*var
= &info
->var
;
364 unsigned long line_length
;
368 * XXX: It's possible that a user could use a VGA box, change the cable
369 * type in hardware (i.e. switch from VGA<->composite), then change
370 * modes (i.e. switching to another VT). If that happens we should
371 * automagically change the output format to cope, but currently I
372 * don't have a VGA box to make sure this works properly.
374 cable_type
= pvr2_init_cable();
375 if (cable_type
== CT_VGA
&& video_output
!= VO_VGA
)
376 video_output
= VO_VGA
;
378 var
->vmode
&= FB_VMODE_MASK
;
379 if (var
->vmode
& FB_VMODE_INTERLACED
&& video_output
!= VO_VGA
)
380 par
->is_interlaced
= 1;
382 * XXX: Need to be more creative with this (i.e. allow doublecan for
385 if (var
->vmode
& FB_VMODE_DOUBLE
&& video_output
== VO_VGA
)
386 par
->is_doublescan
= 1;
388 par
->hsync_total
= var
->left_margin
+ var
->xres
+ var
->right_margin
+
390 par
->vsync_total
= var
->upper_margin
+ var
->yres
+ var
->lower_margin
+
393 if (var
->sync
& FB_SYNC_BROADCAST
) {
394 vtotal
= par
->vsync_total
;
395 if (par
->is_interlaced
)
397 if (vtotal
> (PAL_VTOTAL
+ NTSC_VTOTAL
)/2) {
398 /* XXX: Check for start values here... */
399 /* XXX: Check hardware for PAL-compatibility */
400 par
->borderstart_h
= 116;
401 par
->borderstart_v
= 44;
403 /* NTSC video output */
404 par
->borderstart_h
= 126;
405 par
->borderstart_v
= 18;
409 /* XXX: What else needs to be checked? */
411 * XXX: We have a little freedom in VGA modes, what ranges
412 * should be here (i.e. hsync/vsync totals, etc.)?
414 par
->borderstart_h
= 126;
415 par
->borderstart_v
= 40;
418 /* Calculate the remainding offsets */
419 par
->diwstart_h
= par
->borderstart_h
+ var
->left_margin
;
420 par
->diwstart_v
= par
->borderstart_v
+ var
->upper_margin
;
421 par
->borderstop_h
= par
->diwstart_h
+ var
->xres
+
423 par
->borderstop_v
= par
->diwstart_v
+ var
->yres
+
426 if (!par
->is_interlaced
)
427 par
->borderstop_v
/= 2;
428 if (info
->var
.xres
< 640)
431 line_length
= get_line_length(var
->xres_virtual
, var
->bits_per_pixel
);
432 par
->disp_start
= info
->fix
.smem_start
+ (line_length
* var
->yoffset
) * line_length
;
433 info
->fix
.line_length
= line_length
;
437 static int pvr2fb_check_var(struct fb_var_screeninfo
*var
, struct fb_info
*info
)
439 struct pvr2fb_par
*par
= (struct pvr2fb_par
*)info
->par
;
440 unsigned int vtotal
, hsync_total
;
441 unsigned long line_length
;
443 if (var
->pixclock
!= TV_CLK
&& var
->pixclock
!= VGA_CLK
) {
444 pr_debug("Invalid pixclock value %d\n", var
->pixclock
);
452 if (var
->xres_virtual
< var
->xres
)
453 var
->xres_virtual
= var
->xres
;
454 if (var
->yres_virtual
< var
->yres
)
455 var
->yres_virtual
= var
->yres
;
457 if (var
->bits_per_pixel
<= 16)
458 var
->bits_per_pixel
= 16;
459 else if (var
->bits_per_pixel
<= 24)
460 var
->bits_per_pixel
= 24;
461 else if (var
->bits_per_pixel
<= 32)
462 var
->bits_per_pixel
= 32;
464 set_color_bitfields(var
);
466 if (var
->vmode
& FB_VMODE_YWRAP
) {
467 if (var
->xoffset
|| var
->yoffset
< 0 ||
468 var
->yoffset
>= var
->yres_virtual
) {
469 var
->xoffset
= var
->yoffset
= 0;
471 if (var
->xoffset
> var
->xres_virtual
- var
->xres
||
472 var
->yoffset
> var
->yres_virtual
- var
->yres
||
473 var
->xoffset
< 0 || var
->yoffset
< 0)
474 var
->xoffset
= var
->yoffset
= 0;
477 var
->xoffset
= var
->yoffset
= 0;
481 * XXX: Need to be more creative with this (i.e. allow doublecan for
484 if (var
->yres
< 480 && video_output
== VO_VGA
)
485 var
->vmode
|= FB_VMODE_DOUBLE
;
487 if (video_output
!= VO_VGA
) {
488 var
->sync
|= FB_SYNC_BROADCAST
;
489 var
->vmode
|= FB_VMODE_INTERLACED
;
491 var
->sync
&= ~FB_SYNC_BROADCAST
;
492 var
->vmode
&= ~FB_VMODE_INTERLACED
;
493 var
->vmode
|= pvr2_var
.vmode
;
496 if ((var
->activate
& FB_ACTIVATE_MASK
) != FB_ACTIVATE_TEST
) {
497 var
->right_margin
= par
->borderstop_h
-
498 (par
->diwstart_h
+ var
->xres
);
499 var
->left_margin
= par
->diwstart_h
- par
->borderstart_h
;
500 var
->hsync_len
= par
->borderstart_h
+
501 (par
->hsync_total
- par
->borderstop_h
);
503 var
->upper_margin
= par
->diwstart_v
- par
->borderstart_v
;
504 var
->lower_margin
= par
->borderstop_v
-
505 (par
->diwstart_v
+ var
->yres
);
506 var
->vsync_len
= par
->borderstop_v
+
507 (par
->vsync_total
- par
->borderstop_v
);
510 hsync_total
= var
->left_margin
+ var
->xres
+ var
->right_margin
+
512 vtotal
= var
->upper_margin
+ var
->yres
+ var
->lower_margin
+
515 if (var
->sync
& FB_SYNC_BROADCAST
) {
516 if (var
->vmode
& FB_VMODE_INTERLACED
)
518 if (vtotal
> (PAL_VTOTAL
+ NTSC_VTOTAL
)/2) {
519 /* PAL video output */
520 /* XXX: Should be using a range here ... ? */
521 if (hsync_total
!= PAL_HTOTAL
) {
522 pr_debug("invalid hsync total for PAL\n");
526 /* NTSC video output */
527 if (hsync_total
!= NTSC_HTOTAL
) {
528 pr_debug("invalid hsync total for NTSC\n");
534 /* Check memory sizes */
535 line_length
= get_line_length(var
->xres_virtual
, var
->bits_per_pixel
);
536 if (line_length
* var
->yres_virtual
> info
->fix
.smem_len
)
542 static void pvr2_update_display(struct fb_info
*info
)
544 struct pvr2fb_par
*par
= (struct pvr2fb_par
*) info
->par
;
545 struct fb_var_screeninfo
*var
= &info
->var
;
547 /* Update the start address of the display image */
548 fb_writel(par
->disp_start
, DISP_DIWADDRL
);
549 fb_writel(par
->disp_start
+
550 get_line_length(var
->xoffset
+var
->xres
, var
->bits_per_pixel
),
555 * Initialize the video mode. Currently, the 16bpp and 24bpp modes aren't
556 * very stable. It's probably due to the fact that a lot of the 2D video
557 * registers are still undocumented.
560 static void pvr2_init_display(struct fb_info
*info
)
562 struct pvr2fb_par
*par
= (struct pvr2fb_par
*) info
->par
;
563 struct fb_var_screeninfo
*var
= &info
->var
;
564 unsigned int diw_height
, diw_width
, diw_modulo
= 1;
565 unsigned int bytesperpixel
= var
->bits_per_pixel
>> 3;
567 /* hsync and vsync totals */
568 fb_writel((par
->vsync_total
<< 16) | par
->hsync_total
, DISP_SYNCSIZE
);
570 /* column height, modulo, row width */
571 /* since we're "panning" within vram, we need to offset things based
572 * on the offset from the virtual x start to our real gfx. */
573 if (video_output
!= VO_VGA
&& par
->is_interlaced
)
574 diw_modulo
+= info
->fix
.line_length
/ 4;
575 diw_height
= (par
->is_interlaced
? var
->yres
/ 2 : var
->yres
);
576 diw_width
= get_line_length(var
->xres
, var
->bits_per_pixel
) / 4;
577 fb_writel((diw_modulo
<< 20) | (--diw_height
<< 10) | --diw_width
,
580 /* display address, long and short fields */
581 fb_writel(par
->disp_start
, DISP_DIWADDRL
);
582 fb_writel(par
->disp_start
+
583 get_line_length(var
->xoffset
+var
->xres
, var
->bits_per_pixel
),
586 /* border horizontal, border vertical, border color */
587 fb_writel((par
->borderstart_h
<< 16) | par
->borderstop_h
, DISP_BRDRHORZ
);
588 fb_writel((par
->borderstart_v
<< 16) | par
->borderstop_v
, DISP_BRDRVERT
);
589 fb_writel(0, DISP_BRDRCOLR
);
591 /* display window start position */
592 fb_writel(par
->diwstart_h
, DISP_DIWHSTRT
);
593 fb_writel((par
->diwstart_v
<< 16) | par
->diwstart_v
, DISP_DIWVSTRT
);
596 fb_writel((0x16 << 16) | par
->is_lowres
, DISP_DIWCONF
);
598 /* clock doubler (for VGA), scan doubler, display enable */
599 fb_writel(((video_output
== VO_VGA
) << 23) |
600 (par
->is_doublescan
<< 1) | 1, DISP_DIWMODE
);
603 fb_writel(fb_readl(DISP_DIWMODE
) | (--bytesperpixel
<< 2), DISP_DIWMODE
);
604 fb_writel(bytesperpixel
<< 2, DISP_PIXDEPTH
);
606 /* video enable, color sync, interlace,
607 * hsync and vsync polarity (currently unused) */
608 fb_writel(0x100 | ((par
->is_interlaced
/*|4*/) << 4), DISP_SYNCCONF
);
611 /* Simulate blanking by making the border cover the entire screen */
613 #define BLANK_BIT (1<<3)
615 static void pvr2_do_blank(void)
617 struct pvr2fb_par
*par
= currentpar
;
618 unsigned long diwconf
;
620 diwconf
= fb_readl(DISP_DIWCONF
);
622 fb_writel(diwconf
| BLANK_BIT
, DISP_DIWCONF
);
624 fb_writel(diwconf
& ~BLANK_BIT
, DISP_DIWCONF
);
626 is_blanked
= do_blank
> 0 ? do_blank
: 0;
629 static irqreturn_t
pvr2fb_interrupt(int irq
, void *dev_id
)
631 struct fb_info
*info
= dev_id
;
633 if (do_vmode_pan
|| do_vmode_full
)
634 pvr2_update_display(info
);
636 pvr2_init_display(info
);
649 * Determine the cable type and initialize the cable output format. Don't do
650 * anything if the cable type has been overidden (via "cable:XX").
653 #define PCTRA 0xff80002c
654 #define PDTRA 0xff800030
655 #define VOUTC 0xa0702c00
657 static int pvr2_init_cable(void)
659 if (cable_type
< 0) {
660 fb_writel((fb_readl(PCTRA
) & 0xfff0ffff) | 0x000a0000,
662 cable_type
= (fb_readw(PDTRA
) >> 8) & 3;
665 /* Now select the output format (either composite or other) */
666 /* XXX: Save the previous val first, as this reg is also AICA
668 if (cable_type
== CT_COMPOSITE
)
669 fb_writel(3 << 8, VOUTC
);
670 else if (cable_type
== CT_RGB
)
671 fb_writel(1 << 9, VOUTC
);
679 static ssize_t
pvr2fb_write(struct fb_info
*info
, const char *buf
,
680 size_t count
, loff_t
*ppos
)
682 unsigned long dst
, start
, end
, len
;
683 unsigned int nr_pages
;
687 nr_pages
= (count
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
689 pages
= kmalloc(nr_pages
* sizeof(struct page
*), GFP_KERNEL
);
693 down_read(¤t
->mm
->mmap_sem
);
694 ret
= get_user_pages(current
, current
->mm
, (unsigned long)buf
,
695 nr_pages
, WRITE
, 0, pages
, NULL
);
696 up_read(¤t
->mm
->mmap_sem
);
698 if (ret
< nr_pages
) {
704 dma_configure_channel(shdma
, 0x12c1);
706 dst
= (unsigned long)fb_info
->screen_base
+ *ppos
;
707 start
= (unsigned long)page_address(pages
[0]);
708 end
= (unsigned long)page_address(pages
[nr_pages
]);
709 len
= nr_pages
<< PAGE_SHIFT
;
711 /* Half-assed contig check */
712 if (start
+ len
== end
) {
713 /* As we do this in one shot, it's either all or nothing.. */
714 if ((*ppos
+ len
) > fb_info
->fix
.smem_len
) {
719 dma_write(shdma
, start
, 0, len
);
720 dma_write(pvr2dma
, 0, dst
, len
);
721 dma_wait_for_completion(pvr2dma
);
726 /* Not contiguous, writeout per-page instead.. */
727 for (i
= 0; i
< nr_pages
; i
++, dst
+= PAGE_SIZE
) {
728 if ((*ppos
+ (i
<< PAGE_SHIFT
)) > fb_info
->fix
.smem_len
) {
733 dma_write_page(shdma
, (unsigned long)page_address(pages
[i
]), 0);
734 dma_write_page(pvr2dma
, 0, dst
);
735 dma_wait_for_completion(pvr2dma
);
743 for (i
= 0; i
< nr_pages
; i
++)
744 page_cache_release(pages
[i
]);
750 #endif /* CONFIG_SH_DMA */
755 * Common init code for the PVR2 chips.
757 * This mostly takes care of the common aspects of the fb setup and
758 * registration. It's expected that the board-specific init code has
759 * already setup pvr2_fix with something meaningful at this point.
761 * Device info reporting is also done here, as well as picking a sane
762 * default from the modedb. For board-specific modelines, simply define
763 * a per-board modedb.
765 * Also worth noting is that the cable and video output types are likely
766 * always going to be VGA for the PCI-based PVR2 boards, but we leave this
767 * in for flexibility anyways. Who knows, maybe someone has tv-out on a
768 * PCI-based version of these things ;-)
770 static int __devinit
pvr2fb_common_init(void)
772 struct pvr2fb_par
*par
= currentpar
;
773 unsigned long modememused
, rev
;
775 fb_info
->screen_base
= ioremap_nocache(pvr2_fix
.smem_start
,
778 if (!fb_info
->screen_base
) {
779 printk(KERN_ERR
"pvr2fb: Failed to remap smem space\n");
783 par
->mmio_base
= (unsigned long)ioremap_nocache(pvr2_fix
.mmio_start
,
785 if (!par
->mmio_base
) {
786 printk(KERN_ERR
"pvr2fb: Failed to remap mmio space\n");
790 fb_memset(fb_info
->screen_base
, 0, pvr2_fix
.smem_len
);
792 pvr2_fix
.ypanstep
= nopan
? 0 : 1;
793 pvr2_fix
.ywrapstep
= nowrap
? 0 : 1;
795 fb_info
->fbops
= &pvr2fb_ops
;
796 fb_info
->fix
= pvr2_fix
;
797 fb_info
->par
= currentpar
;
798 fb_info
->pseudo_palette
= currentpar
->palette
;
799 fb_info
->flags
= FBINFO_DEFAULT
| FBINFO_HWACCEL_YPAN
;
801 if (video_output
== VO_VGA
)
802 defmode
= DEFMODE_VGA
;
805 mode_option
= "640x480@60";
807 if (!fb_find_mode(&fb_info
->var
, fb_info
, mode_option
, pvr2_modedb
,
808 NUM_TOTAL_MODES
, &pvr2_modedb
[defmode
], 16))
809 fb_info
->var
= pvr2_var
;
811 fb_alloc_cmap(&fb_info
->cmap
, 256, 0);
813 if (register_framebuffer(fb_info
) < 0)
815 /*Must write PIXDEPTH to register before anything is displayed - so force init */
816 pvr2_init_display(fb_info
);
818 modememused
= get_line_length(fb_info
->var
.xres_virtual
,
819 fb_info
->var
.bits_per_pixel
);
820 modememused
*= fb_info
->var
.yres_virtual
;
822 rev
= fb_readl(par
->mmio_base
+ 0x04);
824 printk("fb%d: %s (rev %ld.%ld) frame buffer device, using %ldk/%ldk of video memory\n",
825 fb_info
->node
, fb_info
->fix
.id
, (rev
>> 4) & 0x0f, rev
& 0x0f,
826 modememused
>> 10, (unsigned long)(fb_info
->fix
.smem_len
>> 10));
827 printk("fb%d: Mode %dx%d-%d pitch = %ld cable: %s video output: %s\n",
828 fb_info
->node
, fb_info
->var
.xres
, fb_info
->var
.yres
,
829 fb_info
->var
.bits_per_pixel
,
830 get_line_length(fb_info
->var
.xres
, fb_info
->var
.bits_per_pixel
),
831 (char *)pvr2_get_param(cables
, NULL
, cable_type
, 3),
832 (char *)pvr2_get_param(outputs
, NULL
, video_output
, 3));
834 #ifdef CONFIG_SH_STORE_QUEUES
835 printk(KERN_NOTICE
"fb%d: registering with SQ API\n", fb_info
->node
);
837 pvr2fb_map
= sq_remap(fb_info
->fix
.smem_start
, fb_info
->fix
.smem_len
,
838 fb_info
->fix
.id
, pgprot_val(PAGE_SHARED
));
840 printk(KERN_NOTICE
"fb%d: Mapped video memory to SQ addr 0x%lx\n",
841 fb_info
->node
, pvr2fb_map
);
847 if (fb_info
->screen_base
)
848 iounmap(fb_info
->screen_base
);
850 iounmap((void *)par
->mmio_base
);
855 #ifdef CONFIG_SH_DREAMCAST
856 static int __init
pvr2fb_dc_init(void)
858 if (!mach_is_dreamcast())
861 /* Make a guess at the monitor based on the attached cable */
862 if (pvr2_init_cable() == CT_VGA
) {
863 fb_info
->monspecs
.hfmin
= 30000;
864 fb_info
->monspecs
.hfmax
= 70000;
865 fb_info
->monspecs
.vfmin
= 60;
866 fb_info
->monspecs
.vfmax
= 60;
868 /* Not VGA, using a TV (taken from acornfb) */
869 fb_info
->monspecs
.hfmin
= 15469;
870 fb_info
->monspecs
.hfmax
= 15781;
871 fb_info
->monspecs
.vfmin
= 49;
872 fb_info
->monspecs
.vfmax
= 51;
876 * XXX: This needs to pull default video output via BIOS or other means
878 if (video_output
< 0) {
879 if (cable_type
== CT_VGA
) {
880 video_output
= VO_VGA
;
882 video_output
= VO_NTSC
;
887 * Nothing exciting about the DC PVR2 .. only a measly 8MiB.
889 pvr2_fix
.smem_start
= 0xa5000000; /* RAM starts here */
890 pvr2_fix
.smem_len
= 8 << 20;
892 pvr2_fix
.mmio_start
= 0xa05f8000; /* registers start here */
893 pvr2_fix
.mmio_len
= 0x2000;
895 if (request_irq(HW_EVENT_VSYNC
, pvr2fb_interrupt
, IRQF_SHARED
,
896 "pvr2 VBL handler", fb_info
)) {
901 if (request_dma(pvr2dma
, "pvr2") != 0) {
902 free_irq(HW_EVENT_VSYNC
, 0);
907 return pvr2fb_common_init();
910 static void __exit
pvr2fb_dc_exit(void)
912 if (fb_info
->screen_base
) {
913 iounmap(fb_info
->screen_base
);
914 fb_info
->screen_base
= NULL
;
916 if (currentpar
->mmio_base
) {
917 iounmap((void *)currentpar
->mmio_base
);
918 currentpar
->mmio_base
= 0;
921 free_irq(HW_EVENT_VSYNC
, 0);
926 #endif /* CONFIG_SH_DREAMCAST */
929 static int __devinit
pvr2fb_pci_probe(struct pci_dev
*pdev
,
930 const struct pci_device_id
*ent
)
934 ret
= pci_enable_device(pdev
);
936 printk(KERN_ERR
"pvr2fb: PCI enable failed\n");
940 ret
= pci_request_regions(pdev
, "pvr2fb");
942 printk(KERN_ERR
"pvr2fb: PCI request regions failed\n");
947 * Slightly more exciting than the DC PVR2 .. 16MiB!
949 pvr2_fix
.smem_start
= pci_resource_start(pdev
, 0);
950 pvr2_fix
.smem_len
= pci_resource_len(pdev
, 0);
952 pvr2_fix
.mmio_start
= pci_resource_start(pdev
, 1);
953 pvr2_fix
.mmio_len
= pci_resource_len(pdev
, 1);
955 fb_info
->device
= &pdev
->dev
;
957 return pvr2fb_common_init();
960 static void __devexit
pvr2fb_pci_remove(struct pci_dev
*pdev
)
962 if (fb_info
->screen_base
) {
963 iounmap(fb_info
->screen_base
);
964 fb_info
->screen_base
= NULL
;
966 if (currentpar
->mmio_base
) {
967 iounmap((void *)currentpar
->mmio_base
);
968 currentpar
->mmio_base
= 0;
971 pci_release_regions(pdev
);
974 static struct pci_device_id pvr2fb_pci_tbl
[] __devinitdata
= {
975 { PCI_VENDOR_ID_NEC
, PCI_DEVICE_ID_NEC_NEON250
,
976 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
980 MODULE_DEVICE_TABLE(pci
, pvr2fb_pci_tbl
);
982 static struct pci_driver pvr2fb_pci_driver
= {
984 .id_table
= pvr2fb_pci_tbl
,
985 .probe
= pvr2fb_pci_probe
,
986 .remove
= __devexit_p(pvr2fb_pci_remove
),
989 static int __init
pvr2fb_pci_init(void)
991 return pci_register_driver(&pvr2fb_pci_driver
);
994 static void __exit
pvr2fb_pci_exit(void)
996 pci_unregister_driver(&pvr2fb_pci_driver
);
998 #endif /* CONFIG_PCI */
1000 static int __devinit
pvr2_get_param(const struct pvr2_params
*p
, const char *s
,
1005 for (i
= 0 ; i
< size
; i
++ ) {
1007 if (!strnicmp(p
[i
].name
, s
, strlen(s
)))
1010 if (p
[i
].val
== val
)
1011 return (int)p
[i
].name
;
1018 * Parse command arguments. Supported arguments are:
1019 * inverse Use inverse color maps
1020 * cable:composite|rgb|vga Override the video cable type
1021 * output:NTSC|PAL|VGA Override the video output format
1023 * <xres>x<yres>[-<bpp>][@<refresh>] or,
1024 * <name>[-<bpp>][@<refresh>] Startup using this video mode
1028 static int __init
pvr2fb_setup(char *options
)
1032 char output_arg
[80];
1034 if (!options
|| !*options
)
1037 while ((this_opt
= strsep(&options
, ","))) {
1040 if (!strcmp(this_opt
, "inverse")) {
1042 } else if (!strncmp(this_opt
, "cable:", 6)) {
1043 strcpy(cable_arg
, this_opt
+ 6);
1044 } else if (!strncmp(this_opt
, "output:", 7)) {
1045 strcpy(output_arg
, this_opt
+ 7);
1046 } else if (!strncmp(this_opt
, "nopan", 5)) {
1048 } else if (!strncmp(this_opt
, "nowrap", 6)) {
1051 mode_option
= this_opt
;
1056 cable_type
= pvr2_get_param(cables
, cable_arg
, 0, 3);
1058 video_output
= pvr2_get_param(outputs
, output_arg
, 0, 3);
1064 static struct pvr2_board
{
1068 } board_driver
[] = {
1069 #ifdef CONFIG_SH_DREAMCAST
1070 { pvr2fb_dc_init
, pvr2fb_dc_exit
, "Sega DC PVR2" },
1073 { pvr2fb_pci_init
, pvr2fb_pci_exit
, "PCI PVR2" },
1078 static int __init
pvr2fb_init(void)
1080 int i
, ret
= -ENODEV
;
1084 char *option
= NULL
;
1086 if (fb_get_options("pvr2fb", &option
))
1088 pvr2fb_setup(option
);
1090 size
= sizeof(struct fb_info
) + sizeof(struct pvr2fb_par
) + 16 * sizeof(u32
);
1092 fb_info
= framebuffer_alloc(sizeof(struct pvr2fb_par
), NULL
);
1095 printk(KERN_ERR
"Failed to allocate memory for fb_info\n");
1100 currentpar
= fb_info
->par
;
1102 for (i
= 0; i
< ARRAY_SIZE(board_driver
); i
++) {
1103 struct pvr2_board
*pvr_board
= board_driver
+ i
;
1105 if (!pvr_board
->init
)
1108 ret
= pvr_board
->init();
1111 printk(KERN_ERR
"pvr2fb: Failed init of %s device\n",
1113 framebuffer_release(fb_info
);
1121 static void __exit
pvr2fb_exit(void)
1125 for (i
= 0; i
< ARRAY_SIZE(board_driver
); i
++) {
1126 struct pvr2_board
*pvr_board
= board_driver
+ i
;
1128 if (pvr_board
->exit
)
1132 #ifdef CONFIG_SH_STORE_QUEUES
1133 sq_unmap(pvr2fb_map
);
1136 unregister_framebuffer(fb_info
);
1137 framebuffer_release(fb_info
);
1140 module_init(pvr2fb_init
);
1141 module_exit(pvr2fb_exit
);
1143 MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>, M. R. Brown <mrbrown@0xd6.org>");
1144 MODULE_DESCRIPTION("Framebuffer driver for NEC PowerVR 2 based graphics boards");
1145 MODULE_LICENSE("GPL");