Blame view

drivers/video/pvr2fb.c 31.1 KB
fcb1fec7f   Paul Mundt   fb: pvr2fb: Fix u...
1
2
  /*
   * drivers/video/pvr2fb.c
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
5
6
7
   *
   * Frame buffer and fbcon support for the NEC PowerVR2 found within the Sega
   * Dreamcast.
   *
   * Copyright (c) 2001 M. R. Brown <mrbrown@0xd6.org>
fcb1fec7f   Paul Mundt   fb: pvr2fb: Fix u...
8
   * Copyright (c) 2001 - 2008  Paul Mundt <lethal@linux-sh.org>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
9
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
   * This driver is mostly based on the excellent amifb and vfb sources.  It uses
   * an odd scheme for converting hardware values to/from framebuffer values,
   * here are some hacked-up formulas:
   *
   *  The Dreamcast has screen offsets from each side of its four borders and
   *  the start offsets of the display window.  I used these values to calculate
   *  'pseudo' values (think of them as placeholders) for the fb video mode, so
   *  that when it came time to convert these values back into their hardware
   *  values, I could just add mode- specific offsets to get the correct mode
   *  settings:
   *
   *      left_margin = diwstart_h - borderstart_h;
   *      right_margin = borderstop_h - (diwstart_h + xres);
   *      upper_margin = diwstart_v - borderstart_v;
   *      lower_margin = borderstop_v - (diwstart_h + yres);
   *
   *      hsync_len = borderstart_h + (hsync_total - borderstop_h);
   *      vsync_len = borderstart_v + (vsync_total - borderstop_v);
   *
   *  Then, when it's time to convert back to hardware settings, the only
   *  constants are the borderstart_* offsets, all other values are derived from
   *  the fb video mode:
   *
   *      // PAL
   *      borderstart_h = 116;
   *      borderstart_v = 44;
   *      ...
   *      borderstop_h = borderstart_h + hsync_total - hsync_len;
   *      ...
   *      diwstart_v = borderstart_v - upper_margin;
   *
   *  However, in the current implementation, the borderstart values haven't had
   *  the benefit of being fully researched, so some modes may be broken.
   */
  
  #undef DEBUG
  
  #include <linux/module.h>
  #include <linux/kernel.h>
  #include <linux/errno.h>
  #include <linux/string.h>
  #include <linux/mm.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
53
  #include <linux/slab.h>
  #include <linux/delay.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54
55
56
57
58
59
60
  #include <linux/interrupt.h>
  #include <linux/fb.h>
  #include <linux/init.h>
  #include <linux/pci.h>
  
  #ifdef CONFIG_SH_DREAMCAST
  #include <asm/machvec.h>
0764bff44   Paul Mundt   sh: More header p...
61
  #include <mach-dreamcast/mach/sysasic.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62
  #endif
da62e71d1   Paul Mundt   sh: dma: Make PVR...
63
  #ifdef CONFIG_PVR2_DMA
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64
  #include <linux/pagemap.h>
0764bff44   Paul Mundt   sh: More header p...
65
  #include <mach/dma.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
66
67
68
69
  #include <asm/dma.h>
  #endif
  
  #ifdef CONFIG_SH_STORE_QUEUES
84902b7af   Krzysztof Helt   fbdev: change asm...
70
  #include <linux/uaccess.h>
0764bff44   Paul Mundt   sh: More header p...
71
  #include <cpu/sq.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
  #endif
  
  #ifndef PCI_DEVICE_ID_NEC_NEON250
  #  define PCI_DEVICE_ID_NEC_NEON250	0x0067
  #endif
  
  /* 2D video registers */
  #define DISP_BASE	par->mmio_base
  #define DISP_BRDRCOLR (DISP_BASE + 0x40)
  #define DISP_DIWMODE (DISP_BASE + 0x44)
  #define DISP_DIWADDRL (DISP_BASE + 0x50)
  #define DISP_DIWADDRS (DISP_BASE + 0x54)
  #define DISP_DIWSIZE (DISP_BASE + 0x5c)
  #define DISP_SYNCCONF (DISP_BASE + 0xd0)
  #define DISP_BRDRHORZ (DISP_BASE + 0xd4)
  #define DISP_SYNCSIZE (DISP_BASE + 0xd8)
  #define DISP_BRDRVERT (DISP_BASE + 0xdc)
  #define DISP_DIWCONF (DISP_BASE + 0xe8)
  #define DISP_DIWHSTRT (DISP_BASE + 0xec)
  #define DISP_DIWVSTRT (DISP_BASE + 0xf0)
306c869c2   Adrian McMenamin   pvr2fb: Consolida...
92
  #define DISP_PIXDEPTH (DISP_BASE + 0x108)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
  
  /* Pixel clocks, one for TV output, doubled for VGA output */
  #define TV_CLK 74239
  #define VGA_CLK 37119
  
  /* This is for 60Hz - the VTOTAL is doubled for interlaced modes */
  #define PAL_HTOTAL 863
  #define PAL_VTOTAL 312
  #define NTSC_HTOTAL 857
  #define NTSC_VTOTAL 262
  
  /* Supported cable types */
  enum { CT_VGA, CT_NONE, CT_RGB, CT_COMPOSITE };
  
  /* Supported video output types */
  enum { VO_PAL, VO_NTSC, VO_VGA };
  
  /* Supported palette types */
  enum { PAL_ARGB1555, PAL_RGB565, PAL_ARGB4444, PAL_ARGB8888 };
  
  struct pvr2_params { unsigned int val; char *name; };
7e7ec0d4a   Paul Mundt   fb: pvr2fb: A few...
114
  static struct pvr2_params cables[] __devinitdata = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
115
116
  	{ CT_VGA, "VGA" }, { CT_RGB, "RGB" }, { CT_COMPOSITE, "COMPOSITE" },
  };
7e7ec0d4a   Paul Mundt   fb: pvr2fb: A few...
117
  static struct pvr2_params outputs[] __devinitdata = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
  	{ VO_PAL, "PAL" }, { VO_NTSC, "NTSC" }, { VO_VGA, "VGA" },
  };
  
  /*
   * This describes the current video mode
   */
  
  static struct pvr2fb_par {
  	unsigned int hsync_total;	/* Clocks/line */
  	unsigned int vsync_total;	/* Lines/field */
  	unsigned int borderstart_h;
  	unsigned int borderstop_h;
  	unsigned int borderstart_v;
  	unsigned int borderstop_v;
  	unsigned int diwstart_h;	/* Horizontal offset of the display field */
  	unsigned int diwstart_v;	/* Vertical offset of the display field, for
  				   interlaced modes, this is the long field */
  	unsigned long disp_start;	/* Address of image within VRAM */
  	unsigned char is_interlaced;	/* Is the display interlaced? */
  	unsigned char is_doublescan;	/* Are scanlines output twice? (doublescan) */
  	unsigned char is_lowres;	/* Is horizontal pixel-doubling enabled? */
  
  	unsigned long mmio_base;	/* MMIO base */
9cd1c6743   Antonino A. Daplas   pvr2fb: Fix oops ...
141
  	u32 palette[16];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
142
143
144
  } *currentpar;
  
  static struct fb_info *fb_info;
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
145
  static struct fb_fix_screeninfo pvr2_fix __devinitdata = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
146
  	.id =		"NEC PowerVR2",
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
147
148
  	.type =		FB_TYPE_PACKED_PIXELS,
  	.visual =	FB_VISUAL_TRUECOLOR,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
149
150
  	.ypanstep =	1,
  	.ywrapstep =	1,
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
151
  	.accel =	FB_ACCEL_NONE,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
152
  };
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
153
  static struct fb_var_screeninfo pvr2_var __devinitdata = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
  	.xres =		640,
  	.yres =		480,
  	.xres_virtual =	640,
  	.yres_virtual = 480,
  	.bits_per_pixel	=16,
  	.red =		{ 11, 5, 0 },
  	.green =	{  5, 6, 0 },
  	.blue =		{  0, 5, 0 },
  	.activate =	FB_ACTIVATE_NOW,
  	.height =	-1,
  	.width =	-1,
  	.vmode =	FB_VMODE_NONINTERLACED,
  };
  
  static int cable_type = CT_VGA;
  static int video_output = VO_VGA;
  
  static int nopan = 0;
  static int nowrap = 1;
  
  /*
   * We do all updating, blanking, etc. during the vertical retrace period
   */
  static unsigned int do_vmode_full = 0;	/* Change the video mode */
  static unsigned int do_vmode_pan = 0;	/* Update the video mode */
  static short do_blank = 0;		/* (Un)Blank the screen */
  
  static unsigned int is_blanked = 0;		/* Is the screen blanked? */
  
  #ifdef CONFIG_SH_STORE_QUEUES
d2b06a8b1   Paul Mundt   video: Update pvr...
184
  static unsigned long pvr2fb_map;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
185
  #endif
da62e71d1   Paul Mundt   sh: dma: Make PVR...
186
  #ifdef CONFIG_PVR2_DMA
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
187
188
189
  static unsigned int shdma = PVR2_CASCADE_CHAN;
  static unsigned int pvr2dma = ONCHIP_NR_DMA_CHANNELS;
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
190
191
192
193
194
195
196
197
198
199
  static int pvr2fb_setcolreg(unsigned int regno, unsigned int red, unsigned int green, unsigned int blue,
                              unsigned int transp, struct fb_info *info);
  static int pvr2fb_blank(int blank, struct fb_info *info);
  static unsigned long get_line_length(int xres_virtual, int bpp);
  static void set_color_bitfields(struct fb_var_screeninfo *var);
  static int pvr2fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info);
  static int pvr2fb_set_par(struct fb_info *info);
  static void pvr2_update_display(struct fb_info *info);
  static void pvr2_init_display(struct fb_info *info);
  static void pvr2_do_blank(void);
7d12e780e   David Howells   IRQ: Maintain reg...
200
  static irqreturn_t pvr2fb_interrupt(int irq, void *dev_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
201
202
203
  static int pvr2_init_cable(void);
  static int pvr2_get_param(const struct pvr2_params *p, const char *s,
                              int val, int size);
da62e71d1   Paul Mundt   sh: dma: Make PVR...
204
  #ifdef CONFIG_PVR2_DMA
3f9b0880e   Antonino A. Daplas   fbdev: pass struc...
205
  static ssize_t pvr2fb_write(struct fb_info *info, const char *buf,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
206
  			    size_t count, loff_t *ppos);
d2b06a8b1   Paul Mundt   video: Update pvr...
207
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
208
209
  
  static struct fb_ops pvr2fb_ops = {
d2b06a8b1   Paul Mundt   video: Update pvr...
210
211
212
213
214
  	.owner		= THIS_MODULE,
  	.fb_setcolreg	= pvr2fb_setcolreg,
  	.fb_blank	= pvr2fb_blank,
  	.fb_check_var	= pvr2fb_check_var,
  	.fb_set_par	= pvr2fb_set_par,
da62e71d1   Paul Mundt   sh: dma: Make PVR...
215
  #ifdef CONFIG_PVR2_DMA
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
216
217
  	.fb_write	= pvr2fb_write,
  #endif
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
218
  	.fb_fillrect	= cfb_fillrect,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
219
220
  	.fb_copyarea	= cfb_copyarea,
  	.fb_imageblit	= cfb_imageblit,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
221
  };
7e7ec0d4a   Paul Mundt   fb: pvr2fb: A few...
222
  static struct fb_videomode pvr2_modedb[] __devinitdata = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
      /*
       * Broadcast video modes (PAL and NTSC).  I'm unfamiliar with
       * PAL-M and PAL-N, but from what I've read both modes parallel PAL and
       * NTSC, so it shouldn't be a problem (I hope).
       */
  
      {
  	/* 640x480 @ 60Hz interlaced (NTSC) */
  	"ntsc_640x480i", 60, 640, 480, TV_CLK, 38, 33, 0, 18, 146, 26,
  	FB_SYNC_BROADCAST, FB_VMODE_INTERLACED | FB_VMODE_YWRAP
      }, {
  	/* 640x240 @ 60Hz (NTSC) */
  	/* XXX: Broken! Don't use... */
  	"ntsc_640x240", 60, 640, 240, TV_CLK, 38, 33, 0, 0, 146, 22,
  	FB_SYNC_BROADCAST, FB_VMODE_YWRAP
      }, {
  	/* 640x480 @ 60hz (VGA) */
  	"vga_640x480", 60, 640, 480, VGA_CLK, 38, 33, 0, 18, 146, 26,
  	0, FB_VMODE_YWRAP
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
242
      },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
243
244
245
246
247
248
249
250
251
  };
  
  #define NUM_TOTAL_MODES  ARRAY_SIZE(pvr2_modedb)
  
  #define DEFMODE_NTSC	0
  #define DEFMODE_PAL	0
  #define DEFMODE_VGA	2
  
  static int defmode = DEFMODE_NTSC;
7e7ec0d4a   Paul Mundt   fb: pvr2fb: A few...
252
  static char *mode_option __devinitdata = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
  
  static inline void pvr2fb_set_pal_type(unsigned int type)
  {
  	struct pvr2fb_par *par = (struct pvr2fb_par *)fb_info->par;
  
  	fb_writel(type, par->mmio_base + 0x108);
  }
  
  static inline void pvr2fb_set_pal_entry(struct pvr2fb_par *par,
  					unsigned int regno,
  					unsigned int val)
  {
  	fb_writel(val, par->mmio_base + 0x1000 + (4 * regno));
  }
  
  static int pvr2fb_blank(int blank, struct fb_info *info)
  {
  	do_blank = blank ? blank : -1;
  	return 0;
  }
  
  static inline unsigned long get_line_length(int xres_virtual, int bpp)
  {
  	return (unsigned long)((((xres_virtual*bpp)+31)&~31) >> 3);
  }
  
  static void set_color_bitfields(struct fb_var_screeninfo *var)
  {
  	switch (var->bits_per_pixel) {
  	    case 16:        /* RGB 565 */
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
283
  		pvr2fb_set_pal_type(PAL_RGB565);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
284
285
286
287
288
289
290
291
292
293
294
295
  		var->red.offset = 11;    var->red.length = 5;
  		var->green.offset = 5;   var->green.length = 6;
  		var->blue.offset = 0;    var->blue.length = 5;
  		var->transp.offset = 0;  var->transp.length = 0;
  		break;
  	    case 24:        /* RGB 888 */
  		var->red.offset = 16;    var->red.length = 8;
  		var->green.offset = 8;   var->green.length = 8;
  		var->blue.offset = 0;    var->blue.length = 8;
  		var->transp.offset = 0;  var->transp.length = 0;
  		break;
  	    case 32:        /* ARGB 8888 */
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
296
  		pvr2fb_set_pal_type(PAL_ARGB8888);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
  		var->red.offset = 16;    var->red.length = 8;
  		var->green.offset = 8;   var->green.length = 8;
  		var->blue.offset = 0;    var->blue.length = 8;
  		var->transp.offset = 24; var->transp.length = 8;
  		break;
  	}
  }
  
  static int pvr2fb_setcolreg(unsigned int regno, unsigned int red,
  			    unsigned int green, unsigned int blue,
                              unsigned int transp, struct fb_info *info)
  {
  	struct pvr2fb_par *par = (struct pvr2fb_par *)info->par;
  	unsigned int tmp;
  
  	if (regno > info->cmap.len)
  		return 1;
  
  	/*
  	 * We only support the hardware palette for 16 and 32bpp. It's also
  	 * expected that the palette format has been set by the time we get
  	 * here, so we don't waste time setting it again.
  	 */
  	switch (info->var.bits_per_pixel) {
  	    case 16: /* RGB 565 */
  		tmp =  (red   & 0xf800)       |
  		      ((green & 0xfc00) >> 5) |
  		      ((blue  & 0xf800) >> 11);
  
  		pvr2fb_set_pal_entry(par, regno, tmp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
327
328
329
  		break;
  	    case 24: /* RGB 888 */
  		red >>= 8; green >>= 8; blue >>= 8;
a66ad56eb   Antonino A. Daplas   pvr2fb: fix pseud...
330
  		tmp = (red << 16) | (green << 8) | blue;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
331
332
333
334
335
336
  		break;
  	    case 32: /* ARGB 8888 */
  		red >>= 8; green >>= 8; blue >>= 8;
  		tmp = (transp << 24) | (red << 16) | (green << 8) | blue;
  
  		pvr2fb_set_pal_entry(par, regno, tmp);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
337
338
339
340
341
342
  		break;
  	    default:
  		pr_debug("Invalid bit depth %d?!?
  ", info->var.bits_per_pixel);
  		return 1;
  	}
a66ad56eb   Antonino A. Daplas   pvr2fb: fix pseud...
343
344
  	if (regno < 16)
  		((u32*)(info->pseudo_palette))[regno] = tmp;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
  	return 0;
  }
  
  static int pvr2fb_set_par(struct fb_info *info)
  {
  	struct pvr2fb_par *par = (struct pvr2fb_par *)info->par;
  	struct fb_var_screeninfo *var = &info->var;
  	unsigned long line_length;
  	unsigned int vtotal;
  
  	/*
  	 * XXX: It's possible that a user could use a VGA box, change the cable
  	 * type in hardware (i.e. switch from VGA<->composite), then change
  	 * modes (i.e. switching to another VT).  If that happens we should
  	 * automagically change the output format to cope, but currently I
  	 * don't have a VGA box to make sure this works properly.
  	 */
  	cable_type = pvr2_init_cable();
  	if (cable_type == CT_VGA && video_output != VO_VGA)
  		video_output = VO_VGA;
  
  	var->vmode &= FB_VMODE_MASK;
  	if (var->vmode & FB_VMODE_INTERLACED && video_output != VO_VGA)
  		par->is_interlaced = 1;
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
369
  	/*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
370
371
372
373
374
  	 * XXX: Need to be more creative with this (i.e. allow doublecan for
  	 * PAL/NTSC output).
  	 */
  	if (var->vmode & FB_VMODE_DOUBLE && video_output == VO_VGA)
  		par->is_doublescan = 1;
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
375

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
  	par->hsync_total = var->left_margin + var->xres + var->right_margin +
  	                   var->hsync_len;
  	par->vsync_total = var->upper_margin + var->yres + var->lower_margin +
  	                   var->vsync_len;
  
  	if (var->sync & FB_SYNC_BROADCAST) {
  		vtotal = par->vsync_total;
  		if (par->is_interlaced)
  			vtotal /= 2;
  		if (vtotal > (PAL_VTOTAL + NTSC_VTOTAL)/2) {
  			/* XXX: Check for start values here... */
  			/* XXX: Check hardware for PAL-compatibility */
  			par->borderstart_h = 116;
  			par->borderstart_v = 44;
  		} else {
  			/* NTSC video output */
  			par->borderstart_h = 126;
  			par->borderstart_v = 18;
  		}
  	} else {
  		/* VGA mode */
  		/* XXX: What else needs to be checked? */
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
398
  		/*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
399
400
401
402
403
404
405
406
407
408
  		 * XXX: We have a little freedom in VGA modes, what ranges
  		 * should be here (i.e. hsync/vsync totals, etc.)?
  		 */
  		par->borderstart_h = 126;
  		par->borderstart_v = 40;
  	}
  
  	/* Calculate the remainding offsets */
  	par->diwstart_h = par->borderstart_h + var->left_margin;
  	par->diwstart_v = par->borderstart_v + var->upper_margin;
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
409
410
  	par->borderstop_h = par->diwstart_h + var->xres +
  			    var->right_margin;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
  	par->borderstop_v = par->diwstart_v + var->yres +
  			    var->lower_margin;
  
  	if (!par->is_interlaced)
  		par->borderstop_v /= 2;
  	if (info->var.xres < 640)
  		par->is_lowres = 1;
  
  	line_length = get_line_length(var->xres_virtual, var->bits_per_pixel);
  	par->disp_start = info->fix.smem_start + (line_length * var->yoffset) * line_length;
  	info->fix.line_length = line_length;
  	return 0;
  }
  
  static int pvr2fb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
  {
  	struct pvr2fb_par *par = (struct pvr2fb_par *)info->par;
  	unsigned int vtotal, hsync_total;
  	unsigned long line_length;
  
  	if (var->pixclock != TV_CLK && var->pixclock != VGA_CLK) {
  		pr_debug("Invalid pixclock value %d
  ", var->pixclock);
  		return -EINVAL;
  	}
  
  	if (var->xres < 320)
  		var->xres = 320;
  	if (var->yres < 240)
  		var->yres = 240;
  	if (var->xres_virtual < var->xres)
  		var->xres_virtual = var->xres;
  	if (var->yres_virtual < var->yres)
  		var->yres_virtual = var->yres;
  
  	if (var->bits_per_pixel <= 16)
  		var->bits_per_pixel = 16;
  	else if (var->bits_per_pixel <= 24)
  		var->bits_per_pixel = 24;
  	else if (var->bits_per_pixel <= 32)
  		var->bits_per_pixel = 32;
  
  	set_color_bitfields(var);
  
  	if (var->vmode & FB_VMODE_YWRAP) {
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
456
  		if (var->xoffset || var->yoffset < 0 ||
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
457
458
459
460
  		    var->yoffset >= var->yres_virtual) {
  			var->xoffset = var->yoffset = 0;
  		} else {
  			if (var->xoffset > var->xres_virtual - var->xres ||
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
461
  			    var->yoffset > var->yres_virtual - var->yres ||
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
462
463
464
465
466
467
  			    var->xoffset < 0 || var->yoffset < 0)
  				var->xoffset = var->yoffset = 0;
  		}
  	} else {
  		var->xoffset = var->yoffset = 0;
  	}
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
468
  	/*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
469
470
471
472
473
474
475
476
477
478
479
480
  	 * XXX: Need to be more creative with this (i.e. allow doublecan for
  	 * PAL/NTSC output).
  	 */
  	if (var->yres < 480 && video_output == VO_VGA)
  		var->vmode |= FB_VMODE_DOUBLE;
  
  	if (video_output != VO_VGA) {
  		var->sync |= FB_SYNC_BROADCAST;
  		var->vmode |= FB_VMODE_INTERLACED;
  	} else {
  		var->sync &= ~FB_SYNC_BROADCAST;
  		var->vmode &= ~FB_VMODE_INTERLACED;
fcb1fec7f   Paul Mundt   fb: pvr2fb: Fix u...
481
  		var->vmode |= FB_VMODE_NONINTERLACED;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
  	}
  
  	if ((var->activate & FB_ACTIVATE_MASK) != FB_ACTIVATE_TEST) {
  		var->right_margin = par->borderstop_h -
  				   (par->diwstart_h + var->xres);
  		var->left_margin  = par->diwstart_h - par->borderstart_h;
  		var->hsync_len    = par->borderstart_h +
  		                   (par->hsync_total - par->borderstop_h);
  
  		var->upper_margin = par->diwstart_v - par->borderstart_v;
  		var->lower_margin = par->borderstop_v -
  				   (par->diwstart_v + var->yres);
  		var->vsync_len    = par->borderstop_v +
  				   (par->vsync_total - par->borderstop_v);
  	}
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
497

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
  	hsync_total = var->left_margin + var->xres + var->right_margin +
  		      var->hsync_len;
  	vtotal = var->upper_margin + var->yres + var->lower_margin +
  		 var->vsync_len;
  
  	if (var->sync & FB_SYNC_BROADCAST) {
  		if (var->vmode & FB_VMODE_INTERLACED)
  			vtotal /= 2;
  		if (vtotal > (PAL_VTOTAL + NTSC_VTOTAL)/2) {
  			/* PAL video output */
  			/* XXX: Should be using a range here ... ? */
  			if (hsync_total != PAL_HTOTAL) {
  				pr_debug("invalid hsync total for PAL
  ");
  				return -EINVAL;
  			}
  		} else {
  			/* NTSC video output */
  			if (hsync_total != NTSC_HTOTAL) {
  				pr_debug("invalid hsync total for NTSC
  ");
  				return -EINVAL;
  			}
  		}
  	}
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
523

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
  	/* Check memory sizes */
  	line_length = get_line_length(var->xres_virtual, var->bits_per_pixel);
  	if (line_length * var->yres_virtual > info->fix.smem_len)
  		return -ENOMEM;
  
  	return 0;
  }
  
  static void pvr2_update_display(struct fb_info *info)
  {
  	struct pvr2fb_par *par = (struct pvr2fb_par *) info->par;
  	struct fb_var_screeninfo *var = &info->var;
  
  	/* Update the start address of the display image */
  	fb_writel(par->disp_start, DISP_DIWADDRL);
  	fb_writel(par->disp_start +
  		  get_line_length(var->xoffset+var->xres, var->bits_per_pixel),
  	          DISP_DIWADDRS);
  }
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
543
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
   * Initialize the video mode.  Currently, the 16bpp and 24bpp modes aren't
   * very stable.  It's probably due to the fact that a lot of the 2D video
   * registers are still undocumented.
   */
  
  static void pvr2_init_display(struct fb_info *info)
  {
  	struct pvr2fb_par *par = (struct pvr2fb_par *) info->par;
  	struct fb_var_screeninfo *var = &info->var;
  	unsigned int diw_height, diw_width, diw_modulo = 1;
  	unsigned int bytesperpixel = var->bits_per_pixel >> 3;
  
  	/* hsync and vsync totals */
  	fb_writel((par->vsync_total << 16) | par->hsync_total, DISP_SYNCSIZE);
  
  	/* column height, modulo, row width */
  	/* since we're "panning" within vram, we need to offset things based
  	 * on the offset from the virtual x start to our real gfx. */
  	if (video_output != VO_VGA && par->is_interlaced)
  		diw_modulo += info->fix.line_length / 4;
  	diw_height = (par->is_interlaced ? var->yres / 2 : var->yres);
  	diw_width = get_line_length(var->xres, var->bits_per_pixel) / 4;
  	fb_writel((diw_modulo << 20) | (--diw_height << 10) | --diw_width,
  	          DISP_DIWSIZE);
  
  	/* display address, long and short fields */
  	fb_writel(par->disp_start, DISP_DIWADDRL);
  	fb_writel(par->disp_start +
  	          get_line_length(var->xoffset+var->xres, var->bits_per_pixel),
  	          DISP_DIWADDRS);
  
  	/* border horizontal, border vertical, border color */
  	fb_writel((par->borderstart_h << 16) | par->borderstop_h, DISP_BRDRHORZ);
  	fb_writel((par->borderstart_v << 16) | par->borderstop_v, DISP_BRDRVERT);
  	fb_writel(0, DISP_BRDRCOLR);
  
  	/* display window start position */
  	fb_writel(par->diwstart_h, DISP_DIWHSTRT);
  	fb_writel((par->diwstart_v << 16) | par->diwstart_v, DISP_DIWVSTRT);
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
583

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
584
585
586
587
  	/* misc. settings */
  	fb_writel((0x16 << 16) | par->is_lowres, DISP_DIWCONF);
  
  	/* clock doubler (for VGA), scan doubler, display enable */
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
588
  	fb_writel(((video_output == VO_VGA) << 23) |
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
589
590
591
592
  	          (par->is_doublescan << 1) | 1, DISP_DIWMODE);
  
  	/* bits per pixel */
  	fb_writel(fb_readl(DISP_DIWMODE) | (--bytesperpixel << 2), DISP_DIWMODE);
306c869c2   Adrian McMenamin   pvr2fb: Consolida...
593
  	fb_writel(bytesperpixel << 2, DISP_PIXDEPTH);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
594

e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
595
  	/* video enable, color sync, interlace,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
  	 * hsync and vsync polarity (currently unused) */
  	fb_writel(0x100 | ((par->is_interlaced /*|4*/) << 4), DISP_SYNCCONF);
  }
  
  /* Simulate blanking by making the border cover the entire screen */
  
  #define BLANK_BIT (1<<3)
  
  static void pvr2_do_blank(void)
  {
  	struct pvr2fb_par *par = currentpar;
  	unsigned long diwconf;
  
  	diwconf = fb_readl(DISP_DIWCONF);
  	if (do_blank > 0)
  		fb_writel(diwconf | BLANK_BIT, DISP_DIWCONF);
  	else
  		fb_writel(diwconf & ~BLANK_BIT, DISP_DIWCONF);
  
  	is_blanked = do_blank > 0 ? do_blank : 0;
  }
7d12e780e   David Howells   IRQ: Maintain reg...
617
  static irqreturn_t pvr2fb_interrupt(int irq, void *dev_id)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
  {
  	struct fb_info *info = dev_id;
  
  	if (do_vmode_pan || do_vmode_full)
  		pvr2_update_display(info);
  	if (do_vmode_full)
  		pvr2_init_display(info);
  	if (do_vmode_pan)
  		do_vmode_pan = 0;
  	if (do_vmode_full)
  		do_vmode_full = 0;
  	if (do_blank) {
  		pvr2_do_blank();
  		do_blank = 0;
  	}
  	return IRQ_HANDLED;
  }
  
  /*
   * Determine the cable type and initialize the cable output format.  Don't do
   * anything if the cable type has been overidden (via "cable:XX").
   */
  
  #define PCTRA 0xff80002c
  #define PDTRA 0xff800030
  #define VOUTC 0xa0702c00
  
  static int pvr2_init_cable(void)
  {
  	if (cable_type < 0) {
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
648
  		fb_writel((fb_readl(PCTRA) & 0xfff0ffff) | 0x000a0000,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
649
650
651
652
653
654
655
656
657
  	                  PCTRA);
  		cable_type = (fb_readw(PDTRA) >> 8) & 3;
  	}
  
  	/* Now select the output format (either composite or other) */
  	/* XXX: Save the previous val first, as this reg is also AICA
  	  related */
  	if (cable_type == CT_COMPOSITE)
  		fb_writel(3 << 8, VOUTC);
78d7e0e5b   Adrian McMenamin   video: pvr2fb: Ad...
658
659
  	else if (cable_type == CT_RGB)
  		fb_writel(1 << 9, VOUTC);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
660
661
662
663
664
  	else
  		fb_writel(0, VOUTC);
  
  	return cable_type;
  }
da62e71d1   Paul Mundt   sh: dma: Make PVR...
665
  #ifdef CONFIG_PVR2_DMA
3f9b0880e   Antonino A. Daplas   fbdev: pass struc...
666
  static ssize_t pvr2fb_write(struct fb_info *info, const char *buf,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
667
668
669
670
671
672
673
674
675
676
677
678
  			    size_t count, loff_t *ppos)
  {
  	unsigned long dst, start, end, len;
  	unsigned int nr_pages;
  	struct page **pages;
  	int ret, i;
  
  	nr_pages = (count + PAGE_SIZE - 1) >> PAGE_SHIFT;
  
  	pages = kmalloc(nr_pages * sizeof(struct page *), GFP_KERNEL);
  	if (!pages)
  		return -ENOMEM;
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
679

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
680
681
682
683
684
685
686
687
688
689
690
691
  	down_read(&current->mm->mmap_sem);
  	ret = get_user_pages(current, current->mm, (unsigned long)buf,
  			     nr_pages, WRITE, 0, pages, NULL);
  	up_read(&current->mm->mmap_sem);
  
  	if (ret < nr_pages) {
  		nr_pages = ret;
  		ret = -EINVAL;
  		goto out_unmap;
  	}
  
  	dma_configure_channel(shdma, 0x12c1);
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
692

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
  	dst   = (unsigned long)fb_info->screen_base + *ppos;
  	start = (unsigned long)page_address(pages[0]);
  	end   = (unsigned long)page_address(pages[nr_pages]);
  	len   = nr_pages << PAGE_SHIFT;
  
  	/* Half-assed contig check */
  	if (start + len == end) {
  		/* As we do this in one shot, it's either all or nothing.. */
  		if ((*ppos + len) > fb_info->fix.smem_len) {
  			ret = -ENOSPC;
  			goto out_unmap;
  		}
  
  		dma_write(shdma, start, 0, len);
  		dma_write(pvr2dma, 0, dst, len);
  		dma_wait_for_completion(pvr2dma);
  
  		goto out;
  	}
  
  	/* Not contiguous, writeout per-page instead.. */
  	for (i = 0; i < nr_pages; i++, dst += PAGE_SIZE) {
  		if ((*ppos + (i << PAGE_SHIFT)) > fb_info->fix.smem_len) {
  			ret = -ENOSPC;
  			goto out_unmap;
  		}
  
  		dma_write_page(shdma, (unsigned long)page_address(pages[i]), 0);
  		dma_write_page(pvr2dma, 0, dst);
  		dma_wait_for_completion(pvr2dma);
  	}
  
  out:
  	*ppos += count;
  	ret = count;
  
  out_unmap:
  	for (i = 0; i < nr_pages; i++)
  		page_cache_release(pages[i]);
  
  	kfree(pages);
  
  	return ret;
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
736
  }
da62e71d1   Paul Mundt   sh: dma: Make PVR...
737
  #endif /* CONFIG_PVR2_DMA */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
  
  /**
   * pvr2fb_common_init
   *
   * Common init code for the PVR2 chips.
   *
   * This mostly takes care of the common aspects of the fb setup and
   * registration. It's expected that the board-specific init code has
   * already setup pvr2_fix with something meaningful at this point.
   *
   * Device info reporting is also done here, as well as picking a sane
   * default from the modedb. For board-specific modelines, simply define
   * a per-board modedb.
   *
   * Also worth noting is that the cable and video output types are likely
   * always going to be VGA for the PCI-based PVR2 boards, but we leave this
   * in for flexibility anyways. Who knows, maybe someone has tv-out on a
   * PCI-based version of these things ;-)
   */
7e7ec0d4a   Paul Mundt   fb: pvr2fb: A few...
757
  static int __devinit pvr2fb_common_init(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
758
759
760
761
762
763
  {
  	struct pvr2fb_par *par = currentpar;
  	unsigned long modememused, rev;
  
  	fb_info->screen_base = ioremap_nocache(pvr2_fix.smem_start,
  					       pvr2_fix.smem_len);
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
764

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
765
766
767
768
769
770
771
  	if (!fb_info->screen_base) {
  		printk(KERN_ERR "pvr2fb: Failed to remap smem space
  ");
  		goto out_err;
  	}
  
  	par->mmio_base = (unsigned long)ioremap_nocache(pvr2_fix.mmio_start,
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
772
  							pvr2_fix.mmio_len);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
773
774
775
776
777
  	if (!par->mmio_base) {
  		printk(KERN_ERR "pvr2fb: Failed to remap mmio space
  ");
  		goto out_err;
  	}
d2b06a8b1   Paul Mundt   video: Update pvr...
778
  	fb_memset(fb_info->screen_base, 0, pvr2_fix.smem_len);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
779
780
781
782
783
784
785
  
  	pvr2_fix.ypanstep	= nopan  ? 0 : 1;
  	pvr2_fix.ywrapstep	= nowrap ? 0 : 1;
  
  	fb_info->fbops		= &pvr2fb_ops;
  	fb_info->fix		= pvr2_fix;
  	fb_info->par		= currentpar;
9cd1c6743   Antonino A. Daplas   pvr2fb: Fix oops ...
786
  	fb_info->pseudo_palette	= currentpar->palette;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
  	fb_info->flags		= FBINFO_DEFAULT | FBINFO_HWACCEL_YPAN;
  
  	if (video_output == VO_VGA)
  		defmode = DEFMODE_VGA;
  
  	if (!mode_option)
  		mode_option = "640x480@60";
  
  	if (!fb_find_mode(&fb_info->var, fb_info, mode_option, pvr2_modedb,
  	                  NUM_TOTAL_MODES, &pvr2_modedb[defmode], 16))
  		fb_info->var = pvr2_var;
  
  	fb_alloc_cmap(&fb_info->cmap, 256, 0);
  
  	if (register_framebuffer(fb_info) < 0)
  		goto out_err;
306c869c2   Adrian McMenamin   pvr2fb: Consolida...
803
804
  	/*Must write PIXDEPTH to register before anything is displayed - so force init */
  	pvr2_init_display(fb_info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
805
806
807
808
809
810
811
812
813
814
815
  
  	modememused = get_line_length(fb_info->var.xres_virtual,
  				      fb_info->var.bits_per_pixel);
  	modememused *= fb_info->var.yres_virtual;
  
  	rev = fb_readl(par->mmio_base + 0x04);
  
  	printk("fb%d: %s (rev %ld.%ld) frame buffer device, using %ldk/%ldk of video memory
  ",
  	       fb_info->node, fb_info->fix.id, (rev >> 4) & 0x0f, rev & 0x0f,
  	       modememused >> 10, (unsigned long)(fb_info->fix.smem_len >> 10));
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
816
817
  	printk("fb%d: Mode %dx%d-%d pitch = %ld cable: %s video output: %s
  ",
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
818
  	       fb_info->node, fb_info->var.xres, fb_info->var.yres,
d2b06a8b1   Paul Mundt   video: Update pvr...
819
  	       fb_info->var.bits_per_pixel,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
820
821
822
823
824
825
826
827
828
  	       get_line_length(fb_info->var.xres, fb_info->var.bits_per_pixel),
  	       (char *)pvr2_get_param(cables, NULL, cable_type, 3),
  	       (char *)pvr2_get_param(outputs, NULL, video_output, 3));
  
  #ifdef CONFIG_SH_STORE_QUEUES
  	printk(KERN_NOTICE "fb%d: registering with SQ API
  ", fb_info->node);
  
  	pvr2fb_map = sq_remap(fb_info->fix.smem_start, fb_info->fix.smem_len,
7bdda6209   Paul Mundt   sh: Fix up more 6...
829
  			      fb_info->fix.id, PAGE_SHARED);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
830
831
832
  
  	printk(KERN_NOTICE "fb%d: Mapped video memory to SQ addr 0x%lx
  ",
d2b06a8b1   Paul Mundt   video: Update pvr...
833
  	       fb_info->node, pvr2fb_map);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
  #endif
  
  	return 0;
  
  out_err:
  	if (fb_info->screen_base)
  		iounmap(fb_info->screen_base);
  	if (par->mmio_base)
  		iounmap((void *)par->mmio_base);
  
  	return -ENXIO;
  }
  
  #ifdef CONFIG_SH_DREAMCAST
  static int __init pvr2fb_dc_init(void)
  {
  	if (!mach_is_dreamcast())
  		return -ENXIO;
  
  	/* Make a guess at the monitor based on the attached cable */
  	if (pvr2_init_cable() == CT_VGA) {
  		fb_info->monspecs.hfmin = 30000;
  		fb_info->monspecs.hfmax = 70000;
  		fb_info->monspecs.vfmin = 60;
  		fb_info->monspecs.vfmax = 60;
  	} else {
  		/* Not VGA, using a TV (taken from acornfb) */
  		fb_info->monspecs.hfmin = 15469;
  		fb_info->monspecs.hfmax = 15781;
  		fb_info->monspecs.vfmin = 49;
  		fb_info->monspecs.vfmax = 51;
  	}
  
  	/*
  	 * XXX: This needs to pull default video output via BIOS or other means
  	 */
  	if (video_output < 0) {
  		if (cable_type == CT_VGA) {
  			video_output = VO_VGA;
  		} else {
  			video_output = VO_NTSC;
  		}
  	}
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
877
878
  
  	/*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
879
880
881
882
883
884
885
  	 * Nothing exciting about the DC PVR2 .. only a measly 8MiB.
  	 */
  	pvr2_fix.smem_start	= 0xa5000000;	/* RAM starts here */
  	pvr2_fix.smem_len	= 8 << 20;
  
  	pvr2_fix.mmio_start	= 0xa05f8000;	/* registers start here */
  	pvr2_fix.mmio_len	= 0x2000;
123f5f188   Adrian McMenamin   fb: pvr2fb: Share...
886
  	if (request_irq(HW_EVENT_VSYNC, pvr2fb_interrupt, IRQF_SHARED,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
887
888
889
  	                "pvr2 VBL handler", fb_info)) {
  		return -EBUSY;
  	}
da62e71d1   Paul Mundt   sh: dma: Make PVR...
890
  #ifdef CONFIG_PVR2_DMA
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
891
892
893
894
895
896
897
898
  	if (request_dma(pvr2dma, "pvr2") != 0) {
  		free_irq(HW_EVENT_VSYNC, 0);
  		return -EBUSY;
  	}
  #endif
  
  	return pvr2fb_common_init();
  }
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
899
  static void __exit pvr2fb_dc_exit(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
900
  {
295a1b476   Amol Lad   [PATCH] ioremap b...
901
902
903
904
905
906
907
908
  	if (fb_info->screen_base) {
  		iounmap(fb_info->screen_base);
  		fb_info->screen_base = NULL;
  	}
  	if (currentpar->mmio_base) {
  		iounmap((void *)currentpar->mmio_base);
  		currentpar->mmio_base = 0;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
909
  	free_irq(HW_EVENT_VSYNC, 0);
da62e71d1   Paul Mundt   sh: dma: Make PVR...
910
  #ifdef CONFIG_PVR2_DMA
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
  	free_dma(pvr2dma);
  #endif
  }
  #endif /* CONFIG_SH_DREAMCAST */
  
  #ifdef CONFIG_PCI
  static int __devinit pvr2fb_pci_probe(struct pci_dev *pdev,
  				      const struct pci_device_id *ent)
  {
  	int ret;
  
  	ret = pci_enable_device(pdev);
  	if (ret) {
  		printk(KERN_ERR "pvr2fb: PCI enable failed
  ");
  		return ret;
  	}
  
  	ret = pci_request_regions(pdev, "pvr2fb");
  	if (ret) {
  		printk(KERN_ERR "pvr2fb: PCI request regions failed
  ");
  		return ret;
  	}
  
  	/*
  	 * Slightly more exciting than the DC PVR2 .. 16MiB!
  	 */
  	pvr2_fix.smem_start	= pci_resource_start(pdev, 0);
  	pvr2_fix.smem_len	= pci_resource_len(pdev, 0);
  
  	pvr2_fix.mmio_start	= pci_resource_start(pdev, 1);
  	pvr2_fix.mmio_len	= pci_resource_len(pdev, 1);
  
  	fb_info->device		= &pdev->dev;
  
  	return pvr2fb_common_init();
  }
  
  static void __devexit pvr2fb_pci_remove(struct pci_dev *pdev)
  {
295a1b476   Amol Lad   [PATCH] ioremap b...
952
953
954
955
956
957
958
959
  	if (fb_info->screen_base) {
  		iounmap(fb_info->screen_base);
  		fb_info->screen_base = NULL;
  	}
  	if (currentpar->mmio_base) {
  		iounmap((void *)currentpar->mmio_base);
  		currentpar->mmio_base = 0;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
  	pci_release_regions(pdev);
  }
  
  static struct pci_device_id pvr2fb_pci_tbl[] __devinitdata = {
  	{ PCI_VENDOR_ID_NEC, PCI_DEVICE_ID_NEC_NEON250,
  	  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
  	{ 0, },
  };
  
  MODULE_DEVICE_TABLE(pci, pvr2fb_pci_tbl);
  
  static struct pci_driver pvr2fb_pci_driver = {
  	.name		= "pvr2fb",
  	.id_table	= pvr2fb_pci_tbl,
  	.probe		= pvr2fb_pci_probe,
  	.remove		= __devexit_p(pvr2fb_pci_remove),
  };
  
  static int __init pvr2fb_pci_init(void)
  {
  	return pci_register_driver(&pvr2fb_pci_driver);
  }
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
982
  static void __exit pvr2fb_pci_exit(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
983
984
985
986
  {
  	pci_unregister_driver(&pvr2fb_pci_driver);
  }
  #endif /* CONFIG_PCI */
7e7ec0d4a   Paul Mundt   fb: pvr2fb: A few...
987
  static int __devinit pvr2_get_param(const struct pvr2_params *p, const char *s,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
                                     int val, int size)
  {
  	int i;
  
  	for (i = 0 ; i < size ; i++ ) {
  		if (s != NULL) {
  			if (!strnicmp(p[i].name, s, strlen(s)))
  				return p[i].val;
  		} else {
  			if (p[i].val == val)
  				return (int)p[i].name;
  		}
  	}
  	return -1;
  }
  
  /*
   * Parse command arguments.  Supported arguments are:
   *    inverse                             Use inverse color maps
   *    cable:composite|rgb|vga             Override the video cable type
   *    output:NTSC|PAL|VGA                 Override the video output format
   *
   *    <xres>x<yres>[-<bpp>][@<refresh>]   or,
   *    <name>[-<bpp>][@<refresh>]          Startup using this video mode
   */
  
  #ifndef MODULE
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
1015
  static int __init pvr2fb_setup(char *options)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
  {
  	char *this_opt;
  	char cable_arg[80];
  	char output_arg[80];
  
  	if (!options || !*options)
  		return 0;
  
  	while ((this_opt = strsep(&options, ","))) {
  		if (!*this_opt)
  			continue;
  		if (!strcmp(this_opt, "inverse")) {
  			fb_invert_cmaps();
  		} else if (!strncmp(this_opt, "cable:", 6)) {
  			strcpy(cable_arg, this_opt + 6);
  		} else if (!strncmp(this_opt, "output:", 7)) {
  			strcpy(output_arg, this_opt + 7);
  		} else if (!strncmp(this_opt, "nopan", 5)) {
  			nopan = 1;
  		} else if (!strncmp(this_opt, "nowrap", 6)) {
  			nowrap = 1;
  		} else {
  			mode_option = this_opt;
  		}
  	}
  
  	if (*cable_arg)
  		cable_type = pvr2_get_param(cables, cable_arg, 0, 3);
  	if (*output_arg)
  		video_output = pvr2_get_param(outputs, output_arg, 0, 3);
  
  	return 0;
  }
  #endif
  
  static struct pvr2_board {
  	int (*init)(void);
  	void (*exit)(void);
  	char name[16];
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
1055
  } board_driver[] = {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1056
1057
1058
1059
1060
1061
1062
1063
  #ifdef CONFIG_SH_DREAMCAST
  	{ pvr2fb_dc_init, pvr2fb_dc_exit, "Sega DC PVR2" },
  #endif
  #ifdef CONFIG_PCI
  	{ pvr2fb_pci_init, pvr2fb_pci_exit, "PCI PVR2" },
  #endif
  	{ 0, },
  };
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
1064
  static int __init pvr2fb_init(void)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
  {
  	int i, ret = -ENODEV;
  	int size;
  
  #ifndef MODULE
  	char *option = NULL;
  
  	if (fb_get_options("pvr2fb", &option))
  		return -ENODEV;
  	pvr2fb_setup(option);
  #endif
  	size = sizeof(struct fb_info) + sizeof(struct pvr2fb_par) + 16 * sizeof(u32);
9cd1c6743   Antonino A. Daplas   pvr2fb: Fix oops ...
1077
  	fb_info = framebuffer_alloc(sizeof(struct pvr2fb_par), NULL);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1078
1079
1080
1081
1082
  	if (!fb_info) {
  		printk(KERN_ERR "Failed to allocate memory for fb_info
  ");
  		return -ENOMEM;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1083

9cd1c6743   Antonino A. Daplas   pvr2fb: Fix oops ...
1084
  	currentpar = fb_info->par;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1085

e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
1086
1087
  	for (i = 0; i < ARRAY_SIZE(board_driver); i++) {
  		struct pvr2_board *pvr_board = board_driver + i;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
  
  		if (!pvr_board->init)
  			continue;
  
  		ret = pvr_board->init();
  
  		if (ret != 0) {
  			printk(KERN_ERR "pvr2fb: Failed init of %s device
  ",
  				pvr_board->name);
9cd1c6743   Antonino A. Daplas   pvr2fb: Fix oops ...
1098
  			framebuffer_release(fb_info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
  			break;
  		}
  	}
  
  	return ret;
  }
  
  static void __exit pvr2fb_exit(void)
  {
  	int i;
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
1109
1110
  	for (i = 0; i < ARRAY_SIZE(board_driver); i++) {
  		struct pvr2_board *pvr_board = board_driver + i;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1111
1112
1113
1114
  
  		if (pvr_board->exit)
  			pvr_board->exit();
  	}
e9705a77f   Paul Mundt   fb: pvr2fb: Fix u...
1115

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1116
1117
1118
1119
1120
  #ifdef CONFIG_SH_STORE_QUEUES
  	sq_unmap(pvr2fb_map);
  #endif
  
  	unregister_framebuffer(fb_info);
9cd1c6743   Antonino A. Daplas   pvr2fb: Fix oops ...
1121
  	framebuffer_release(fb_info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1122
1123
1124
1125
1126
1127
1128
1129
  }
  
  module_init(pvr2fb_init);
  module_exit(pvr2fb_exit);
  
  MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>, M. R. Brown <mrbrown@0xd6.org>");
  MODULE_DESCRIPTION("Framebuffer driver for NEC PowerVR 2 based graphics boards");
  MODULE_LICENSE("GPL");