pvr2fb.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:32k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* drivers/video/pvr2fb.c
  2.  *
  3.  * Frame buffer and fbcon support for the NEC PowerVR2 found within the Sega
  4.  * Dreamcast.
  5.  *
  6.  * Copyright (c) 2001 M. R. Brown <mrbrown@0xd6.org>
  7.  * Copyright (c) 2001 Paul Mundt  <lethal@chaoticdreams.org>
  8.  *
  9.  * This file is part of the LinuxDC project (linuxdc.sourceforge.net).
  10.  *
  11.  */
  12. /*
  13.  * This driver is mostly based on the excellent amifb and vfb sources.  It uses
  14.  * an odd scheme for converting hardware values to/from framebuffer values, here are
  15.  * some hacked-up formulas:
  16.  *
  17.  *  The Dreamcast has screen offsets from each side of it's four borders and the start
  18.  *  offsets of the display window.  I used these values to calculate 'pseudo' values
  19.  *  (think of them as placeholders) for the fb video mode, so that when it came time
  20.  *  to convert these values back into their hardware values, I could just add mode-
  21.  *  specific offsets to get the correct mode settings:
  22.  *
  23.  *      left_margin = diwstart_h - borderstart_h;
  24.  *      right_margin = borderstop_h - (diwstart_h + xres);
  25.  *      upper_margin = diwstart_v - borderstart_v;
  26.  *      lower_margin = borderstop_v - (diwstart_h + yres);
  27.  *
  28.  *      hsync_len = borderstart_h + (hsync_total - borderstop_h);
  29.  *      vsync_len = borderstart_v + (vsync_total - borderstop_v);
  30.  *
  31.  *  Then, when it's time to convert back to hardware settings, the only constants
  32.  *  are the borderstart_* offsets, all other values are derived from the fb video
  33.  *  mode:
  34.  *  
  35.  *      // PAL
  36.  *      borderstart_h = 116;
  37.  *      borderstart_v = 44;
  38.  *      ...
  39.  *      borderstop_h = borderstart_h + hsync_total - hsync_len;
  40.  *      ...
  41.  *      diwstart_v = borderstart_v - upper_margin;
  42.  *
  43.  *  However, in the current implementation, the borderstart values haven't had
  44.  *  the benefit of being fully researched, so some modes may be broken.
  45.  */
  46. #include <linux/module.h>
  47. #include <linux/kernel.h>
  48. #include <linux/errno.h>
  49. #include <linux/string.h>
  50. #include <linux/mm.h>
  51. #include <linux/tty.h>
  52. #include <linux/slab.h>
  53. #include <linux/delay.h>
  54. #include <linux/config.h>
  55. #include <linux/interrupt.h>
  56. #include <linux/fb.h>
  57. #include <linux/init.h>
  58. #include <linux/console.h>
  59. #ifdef CONFIG_SH_DREAMCAST
  60. #include <asm/io.h>
  61. #include <asm/machvec.h>
  62. #include <asm/dc_sysasic.h>
  63. #endif
  64. #ifdef CONFIG_MTRR
  65.   #include <asm/mtrr.h>
  66. #endif
  67. #include <video/fbcon.h>
  68. #include <video/fbcon-cfb16.h>
  69. #include <video/fbcon-cfb24.h>
  70. #include <video/fbcon-cfb32.h>
  71. #ifdef CONFIG_FB_PVR2_DEBUG
  72. #  define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __FUNCTION__ , ## args)
  73. #else
  74. #  define DPRINTK(fmt, args...)
  75. #endif
  76. /* 2D video registers */
  77. #define DISP_BASE 0xa05f8000
  78. #define DISP_BRDRCOLR (DISP_BASE + 0x40)
  79. #define DISP_DIWMODE (DISP_BASE + 0x44)
  80. #define DISP_DIWADDRL (DISP_BASE + 0x50)
  81. #define DISP_DIWADDRS (DISP_BASE + 0x54)
  82. #define DISP_DIWSIZE (DISP_BASE + 0x5c)
  83. #define DISP_SYNCCONF (DISP_BASE + 0xd0)
  84. #define DISP_BRDRHORZ (DISP_BASE + 0xd4)
  85. #define DISP_SYNCSIZE (DISP_BASE + 0xd8)
  86. #define DISP_BRDRVERT (DISP_BASE + 0xdc)
  87. #define DISP_DIWCONF (DISP_BASE + 0xe8)
  88. #define DISP_DIWHSTRT (DISP_BASE + 0xec)
  89. #define DISP_DIWVSTRT (DISP_BASE + 0xf0)
  90. /* Pixel clocks, one for TV output, doubled for VGA output */
  91. #define TV_CLK 74239
  92. #define VGA_CLK 37119
  93. /* This is for 60Hz - the VTOTAL is doubled for interlaced modes */
  94. #define PAL_HTOTAL 863
  95. #define PAL_VTOTAL 312
  96. #define NTSC_HTOTAL 857
  97. #define NTSC_VTOTAL 262
  98. enum { CT_VGA, CT_NONE, CT_RGB, CT_COMPOSITE };
  99. enum { VO_PAL, VO_NTSC, VO_VGA };
  100. struct pvr2_params { u_short val; char *name; };
  101. static struct pvr2_params cables[] __initdata = {
  102. { CT_VGA, "VGA" }, { CT_RGB, "RGB" }, { CT_COMPOSITE, "COMPOSITE" },
  103. };
  104. static struct pvr2_params outputs[] __initdata = {
  105. { VO_PAL, "PAL" }, { VO_NTSC, "NTSC" }, { VO_VGA, "VGA" },
  106. };
  107. /*
  108.  * This describes the current video mode
  109.  */
  110. static struct pvr2fb_par {
  111. int xres;
  112. int yres;
  113. int vxres;
  114. int vyres;
  115. int xoffset;
  116. int yoffset;
  117. u_short bpp;
  118. u_long pixclock;
  119. u_short hsync_total; /* Clocks/line */
  120. u_short vsync_total; /* Lines/field */
  121. u_short borderstart_h;
  122. u_short borderstop_h;
  123. u_short borderstart_v;
  124. u_short borderstop_v;
  125. u_short diwstart_h; /* Horizontal offset of the display field */
  126. u_short diwstart_v; /* Vertical offset of the display field, for
  127.    interlaced modes, this is the long field */
  128. u_long disp_start; /* Address of image within VRAM */
  129. u_long next_line; /* Modulo for next line */
  130. u_char is_interlaced; /* Is the display interlaced? */
  131. u_char is_doublescan; /* Are scanlines output twice? (doublescan) */
  132. u_char is_lowres; /* Is horizontal pixel-doubling enabled? */
  133. u_long bordercolor; /* RGB888 format border color */
  134. u_long vmode;
  135. } currentpar;
  136. static int currcon = 0;
  137. static int currbpp;
  138. static struct display disp;
  139. static struct fb_info fb_info;
  140. static int pvr2fb_inverse = 0;
  141. static struct { u_short red, green, blue, alpha; } palette[256];
  142. static union {
  143. #ifdef FBCON_HAS_CFB16
  144. u16 cfb16[16];
  145. #endif
  146. #ifdef FBCON_HAS_CFB24
  147. u32 cfb24[16];
  148. #endif
  149. #ifdef FBCON_HAS_CFB32
  150. u32 cfb32[16];
  151. #endif
  152. } fbcon_cmap;
  153. static char pvr2fb_name[16] = "NEC PowerVR2";
  154. #define VIDEOMEMSIZE (8*1024*1024)
  155. static u_long videomemory = 0xa5000000, videomemorysize = VIDEOMEMSIZE;
  156. static int cable_type = -1;
  157. static int video_output = -1;
  158. #ifdef CONFIG_MTRR
  159. static int enable_mtrr = 1;
  160. static int mtrr_handle;
  161. #endif
  162. /*
  163.  * We do all updating, blanking, etc. during the vertical retrace period
  164.  */
  165. static u_short do_vmode_full = 0; /* Change the video mode */
  166. static u_short do_vmode_pan = 0; /* Update the video mode */
  167. static short do_blank = 0; /* (Un)Blank the screen */
  168. static u_short is_blanked = 0; /* Is the screen blanked? */
  169. /* Interface used by the world */
  170. int pvr2fb_setup(char*);
  171. static int pvr2fb_get_fix(struct fb_fix_screeninfo *fix, int con,
  172.                             struct fb_info *info);
  173. static int pvr2fb_get_var(struct fb_var_screeninfo *var, int con,
  174.                             struct fb_info *info);
  175. static int pvr2fb_set_var(struct fb_var_screeninfo *var, int con,
  176.                             struct fb_info *info);
  177. static int pvr2fb_pan_display(struct fb_var_screeninfo *var, int con,
  178.                                 struct fb_info *info);
  179. static int pvr2fb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  180.                              struct fb_info *info);
  181. static int pvr2fb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  182.                              struct fb_info *info);
  183. /*
  184.  * Interface to the low level console driver
  185.  */
  186. static int pvr2fbcon_switch(int con, struct fb_info *info);
  187. static int pvr2fbcon_updatevar(int con, struct fb_info *info);
  188. static void pvr2fbcon_blank(int blank, struct fb_info *info);
  189. /*
  190.  * Internal/hardware-specific routines
  191.  */
  192. static void do_install_cmap(int con, struct fb_info *info);
  193. static u_long get_line_length(int xres_virtual, int bpp);
  194. static void set_color_bitfields(struct fb_var_screeninfo *var);
  195. static int pvr2_getcolreg(u_int regno, u_int *red, u_int *green, u_int *blue,
  196.                             u_int *transp, struct fb_info *info);
  197. static int pvr2_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  198.                             u_int transp, struct fb_info *info);
  199. static int pvr2_encode_fix(struct fb_fix_screeninfo *fix,
  200.                              struct pvr2fb_par *par);
  201. static int pvr2_decode_var(struct fb_var_screeninfo *var,
  202.                           struct pvr2fb_par *par);
  203. static int pvr2_encode_var(struct fb_var_screeninfo *var,
  204.                           struct pvr2fb_par *par);
  205. static void pvr2_get_par(struct pvr2fb_par *par);
  206. static void pvr2_set_var(struct fb_var_screeninfo *var);
  207. static void pvr2_pan_var(struct fb_var_screeninfo *var);
  208. static int pvr2_update_par(void);
  209. static void pvr2_update_display(void);
  210. static void pvr2_init_display(void);
  211. static void pvr2_do_blank(void);
  212. static void pvr2fb_interrupt(int irq, void *dev_id, struct pt_regs *fp);
  213. static int pvr2_init_cable(void);
  214. static int pvr2_get_param(const struct pvr2_params *p, const char *s,
  215.                             int val, int size);
  216. static struct fb_ops pvr2fb_ops = {
  217. owner: THIS_MODULE,
  218. fb_get_fix: pvr2fb_get_fix,
  219. fb_get_var: pvr2fb_get_var,
  220. fb_set_var: pvr2fb_set_var,
  221. fb_get_cmap: pvr2fb_get_cmap,
  222. fb_set_cmap: pvr2fb_set_cmap,
  223. fb_pan_display: pvr2fb_pan_display,
  224. };
  225. static struct fb_videomode pvr2_modedb[] __initdata = {
  226.     /*
  227.      * Broadcast video modes (PAL and NTSC).  I'm unfamiliar with
  228.      * PAL-M and PAL-N, but from what I've read both modes parallel PAL and
  229.      * NTSC, so it shouldn't be a problem (I hope).
  230.      */
  231.     {
  232. /* 640x480 @ 60Hz interlaced (NTSC) */
  233. "ntsc_640x480i", 60, 640, 480, TV_CLK, 38, 33, 0, 18, 146, 26,
  234. FB_SYNC_BROADCAST, FB_VMODE_INTERLACED | FB_VMODE_YWRAP
  235.     },
  236.     {
  237. /* 640x240 @ 60Hz (NTSC) */
  238. /* XXX: Broken! Don't use... */
  239. "ntsc_640x240", 60, 640, 240, TV_CLK, 38, 33, 0, 0, 146, 22,
  240. FB_SYNC_BROADCAST, FB_VMODE_YWRAP
  241.     },
  242.     {
  243. /* 640x480 @ 60hz (VGA) */
  244. "vga_640x480", 60, 640, 480, VGA_CLK, 38, 33, 0, 18, 146, 26,
  245. 0, FB_VMODE_YWRAP
  246.     },
  247. };
  248. #define NUM_TOTAL_MODES  ARRAY_SIZE(pvr2_modedb)
  249. #define DEFMODE_NTSC 0
  250. #define DEFMODE_PAL 0
  251. #define DEFMODE_VGA 2
  252. static int defmode = DEFMODE_NTSC;
  253. static char *mode_option __initdata = NULL;
  254. /* Get the fixed part of the display */
  255. static int pvr2fb_get_fix(struct fb_fix_screeninfo *fix, int con,
  256.                             struct fb_info *info)
  257. {
  258. struct pvr2fb_par par;
  259. if (con == -1)
  260. pvr2_get_par(&par);
  261. else {
  262. int err;
  263. if ((err = pvr2_decode_var(&fb_display[con].var, &par)))
  264. return err;
  265. }
  266. return pvr2_encode_fix(fix, &par);
  267. }
  268. /* Get the user-defined part of the display */
  269. static int pvr2fb_get_var(struct fb_var_screeninfo *var, int con,
  270.                             struct fb_info *info)
  271. {
  272. int err = 0;
  273. if (con == -1) {
  274. struct pvr2fb_par par;
  275. pvr2_get_par(&par);
  276. err = pvr2_encode_var(var, &par);
  277. } else
  278. *var = fb_display[con].var;
  279. return err;
  280. }
  281. /* Set the user-defined part of the display */
  282. static int pvr2fb_set_var(struct fb_var_screeninfo *var, int con,
  283.                             struct fb_info *info)
  284. {
  285. int err, activate = var->activate;
  286. int oldxres, oldyres, oldvxres, oldvyres, oldbpp;
  287. struct pvr2fb_par par;
  288. struct display *display;
  289. if (con >= 0)
  290. display = &fb_display[con];
  291. else
  292. display = &disp;        /* used during initialization */
  293. /*
  294.  * FB_VMODE_CONUPDATE and FB_VMODE_SMOOTH_XPAN are equal!
  295.  * as FB_VMODE_SMOOTH_XPAN is only used internally
  296.  */
  297. if (var->vmode & FB_VMODE_CONUPDATE) {
  298. var->vmode |= FB_VMODE_YWRAP;
  299. var->xoffset = display->var.xoffset;
  300. var->yoffset = display->var.yoffset;
  301. }
  302. if ((err = pvr2_decode_var(var, &par)))
  303. return err;
  304. pvr2_encode_var(var, &par);
  305. /* Do memory check and bitfield set here?? */
  306. if ((activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
  307. oldxres = display->var.xres;
  308. oldyres = display->var.yres;
  309. oldvxres = display->var.xres_virtual;
  310. oldvyres = display->var.yres_virtual;
  311. oldbpp = display->var.bits_per_pixel;
  312. display->var = *var;
  313. if (oldxres != var->xres || oldyres != var->yres ||
  314.     oldvxres != var->xres_virtual || oldvyres != var->yres_virtual ||
  315.     oldbpp != var->bits_per_pixel) {
  316. struct fb_fix_screeninfo fix;
  317. pvr2_encode_fix(&fix, &par);
  318. display->screen_base = (char *)fix.smem_start;
  319. display->scrollmode = SCROLL_YREDRAW;
  320. display->visual = fix.visual;
  321. display->type = fix.type;
  322. display->type_aux = fix.type_aux;
  323. display->ypanstep = fix.ypanstep;
  324. display->ywrapstep = fix.ywrapstep;
  325. display->line_length = fix.line_length;
  326. display->can_soft_blank = 1;
  327. display->inverse = pvr2fb_inverse;
  328. switch (var->bits_per_pixel) {
  329. #ifdef FBCON_HAS_CFB16
  330.     case 16:
  331. display->dispsw = &fbcon_cfb16;
  332. display->dispsw_data = fbcon_cmap.cfb16;
  333. break;
  334. #endif
  335. #ifdef FBCON_HAS_CFB24
  336.     case 24:
  337. display->dispsw = &fbcon_cfb24;
  338. display->dispsw_data = fbcon_cmap.cfb24;
  339. break;
  340. #endif
  341. #ifdef FBCON_HAS_CFB32
  342.     case 32:
  343. display->dispsw = &fbcon_cfb32;
  344. display->dispsw_data = fbcon_cmap.cfb32;
  345. break;
  346. #endif
  347.     default:
  348. display->dispsw = &fbcon_dummy;
  349. break;
  350. }
  351. if (fb_info.changevar)
  352. (*fb_info.changevar)(con);
  353. }
  354. if (oldbpp != var->bits_per_pixel) {
  355. if ((err = fb_alloc_cmap(&display->cmap, 0, 0)))
  356. return err;
  357. do_install_cmap(con, info);
  358. }
  359. if (con == currcon)
  360. pvr2_set_var(&display->var);
  361. }
  362. return 0;
  363. }
  364. /*
  365.  * Pan or wrap the display.
  366.  * This call looks only at xoffset, yoffset and the FB_VMODE_YRAP flag
  367.  */
  368. static int pvr2fb_pan_display(struct fb_var_screeninfo *var, int con,
  369.                                 struct fb_info *info)
  370. {
  371. if (var->vmode & FB_VMODE_YWRAP) {
  372. if (var->yoffset<0 || var->yoffset >=
  373.     fb_display[con].var.yres_virtual || var->xoffset)
  374. return -EINVAL;
  375.  } else {
  376. if (var->xoffset+fb_display[con].var.xres >
  377.     fb_display[con].var.xres_virtual ||
  378.     var->yoffset+fb_display[con].var.yres >
  379.     fb_display[con].var.yres_virtual)
  380.     return -EINVAL;
  381. }
  382. if (con == currcon)
  383. pvr2_pan_var(var);
  384. fb_display[con].var.xoffset = var->xoffset;
  385. fb_display[con].var.yoffset = var->yoffset;
  386. if (var->vmode & FB_VMODE_YWRAP)
  387. fb_display[con].var.vmode |= FB_VMODE_YWRAP;
  388. else
  389. fb_display[con].var.vmode &= ~FB_VMODE_YWRAP;
  390. return 0;
  391. }
  392. /* Get the colormap */
  393. static int pvr2fb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  394.                              struct fb_info *info)
  395. {
  396. if (con == currcon) /* current console? */
  397. return fb_get_cmap(cmap, kspc, pvr2_getcolreg, info);
  398. else if (fb_display[con].cmap.len) /* non default colormap? */
  399. fb_copy_cmap(&fb_display[con].cmap, cmap, kspc ? 0 : 2);
  400. else
  401. fb_copy_cmap(fb_default_cmap(1<<fb_display[con].var.bits_per_pixel),
  402.              cmap, kspc ? 0 : 2);
  403. return 0;
  404. }
  405. /* Set the colormap */
  406. static int pvr2fb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  407.                      struct fb_info *info)
  408. {
  409. int err;
  410. if (!fb_display[con].cmap.len) {        /* no colormap allocated? */
  411. if ((err = fb_alloc_cmap(&fb_display[con].cmap,
  412.                          1<<fb_display[con].var.bits_per_pixel,
  413.  0)))
  414.  return err;
  415. }
  416. if (con == currcon)                     /* current console? */
  417. return fb_set_cmap(cmap, kspc, pvr2_setcolreg, info);
  418. else
  419. fb_copy_cmap(cmap, &fb_display[con].cmap, kspc ? 0 : 1);
  420. return 0;
  421. }
  422. static int pvr2fbcon_switch(int con, struct fb_info *info)
  423. {
  424. /* Do we have to save the colormap? */
  425. if (fb_display[currcon].cmap.len)
  426. fb_get_cmap(&fb_display[currcon].cmap, 1, pvr2_getcolreg, info);
  427. currcon = con;
  428. pvr2_set_var(&fb_display[con].var);
  429. /* Install new colormap */
  430. do_install_cmap(con, info);
  431. return 0;
  432. }
  433. static int pvr2fbcon_updatevar(int con, struct fb_info *info)
  434. {
  435. pvr2_pan_var(&fb_display[con].var);
  436. return 0;
  437. }
  438. static void pvr2fbcon_blank(int blank, struct fb_info *info)
  439. {
  440. do_blank = blank ? blank : -1;
  441. }
  442. /* Setup the colormap */
  443. static void do_install_cmap(int con, struct fb_info *info)
  444. {
  445. if (con != currcon)
  446. return;
  447. if (fb_display[con].cmap.len)
  448. fb_set_cmap(&fb_display[con].cmap, 1, pvr2_setcolreg, info);
  449. else
  450. fb_set_cmap(fb_default_cmap(1<<fb_display[con].var.bits_per_pixel),
  451.                             1, pvr2_setcolreg, info);
  452. }
  453. static inline u_long get_line_length(int xres_virtual, int bpp)
  454. {
  455. return (u_long)((((xres_virtual*bpp)+31)&~31) >> 3);
  456. }
  457. static void set_color_bitfields(struct fb_var_screeninfo *var)
  458. {
  459. switch (var->bits_per_pixel) {
  460.     case 16:        /* RGB 565 */
  461. var->red.offset = 11;    var->red.length = 5;
  462. var->green.offset = 5;   var->green.length = 6;
  463. var->blue.offset = 0;    var->blue.length = 5;
  464. var->transp.offset = 0;  var->transp.length = 0;
  465. break;
  466.     case 24:        /* RGB 888 */
  467. var->red.offset = 16;    var->red.length = 8;
  468. var->green.offset = 8;   var->green.length = 8;
  469. var->blue.offset = 0;    var->blue.length = 8;
  470. var->transp.offset = 0;  var->transp.length = 0;
  471. break;
  472.     case 32:        /* ARGB 8888 */
  473. var->red.offset = 16;    var->red.length = 8;
  474. var->green.offset = 8;   var->green.length = 8;
  475. var->blue.offset = 0;    var->blue.length = 8;
  476. var->transp.offset = 24; var->transp.length = 8;
  477. break;
  478. }
  479. }
  480. static int pvr2_getcolreg(u_int regno, u_int *red, u_int *green, u_int *blue,
  481.                             u_int *transp, struct fb_info *info)
  482. {
  483. if (regno > 255)
  484.     return 1;
  485. *red = palette[regno].red;
  486. *green = palette[regno].green;
  487. *blue = palette[regno].blue;
  488. *transp = 0;
  489. return 0;
  490. }
  491. static int pvr2_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  492.                             u_int transp, struct fb_info *info)
  493. {
  494. if (regno > 255)
  495. return 1;
  496. palette[regno].red = red;
  497. palette[regno].green = green;
  498. palette[regno].blue = blue;
  499. if (regno < 16) {
  500. switch (currbpp) {
  501. #ifdef FBCON_HAS_CFB16
  502.     case 16: /* RGB 565 */
  503. fbcon_cmap.cfb16[regno] = (red & 0xf800) |
  504.                           ((green & 0xfc00) >> 5) |
  505.   ((blue & 0xf800) >> 11);
  506. break;
  507. #endif
  508. #ifdef FBCON_HAS_CFB24
  509.     case 24: /* RGB 888 */
  510. red >>= 8; green >>= 8; blue >>= 8;
  511. fbcon_cmap.cfb24[regno] = (red << 16) | (green << 8) | blue;
  512. break;
  513. #endif
  514. #ifdef FBCON_HAS_CFB32
  515.     case 32: /* ARGB 8888 */
  516. red >>= 8; green >>= 8; blue >>= 8;
  517. fbcon_cmap.cfb32[regno] = (red << 16) | (green << 8) | blue;
  518. break;
  519. #endif
  520.     default:
  521. DPRINTK("Invalid bit depth %d?!?n", currbpp);
  522. return 1;
  523. }
  524. }
  525. return 0;
  526. }
  527. static int pvr2_encode_fix(struct fb_fix_screeninfo *fix,
  528.                              struct pvr2fb_par *par)
  529. {
  530. memset(fix, 0, sizeof(struct fb_fix_screeninfo));
  531. strcpy(fix->id, pvr2fb_name);
  532. fix->smem_start = videomemory;
  533. fix->smem_len = videomemorysize;
  534. fix->type = FB_TYPE_PACKED_PIXELS;
  535. fix->type_aux = 0;
  536. fix->visual = FB_VISUAL_TRUECOLOR;
  537. if (par->vmode & FB_VMODE_YWRAP) {
  538. fix->ywrapstep = 1;
  539. fix->xpanstep = fix->ypanstep = 0;
  540. } else {
  541. fix->ywrapstep = 0;
  542. fix->xpanstep = 1;
  543. fix->ypanstep = 1;
  544. }
  545. fix->line_length = par->next_line;
  546. return 0;
  547. }
  548. /*
  549.  * Create a hardware video mode using the framebuffer values.  If a value needs
  550.  * to be clipped or constrained it's done here.  This routine needs a bit more
  551.  * work to make sure we're doing the right tests at the right time.
  552.  */
  553. static int pvr2_decode_var(struct fb_var_screeninfo *var,
  554.                              struct pvr2fb_par *par)
  555. {
  556. u_long line_length;
  557. u_short vtotal;
  558. if (var->pixclock != TV_CLK && var->pixclock != VGA_CLK) {
  559. DPRINTK("Invalid pixclock value %dn", var->pixclock);
  560. return -EINVAL;
  561. }
  562. par->pixclock = var->pixclock;
  563. if ((par->xres = var->xres) < 320)
  564. par->xres = 320;
  565. if ((par->yres = var->yres) < 240)
  566. par->yres = 240;
  567. if ((par->vxres = var->xres_virtual) < par->xres)
  568. par->vxres = par->xres;
  569. if ((par->vyres = var->yres_virtual) < par->yres)
  570. par->vyres = par->yres;
  571. if ((par->bpp = var->bits_per_pixel) <= 16)
  572. par->bpp = 16;
  573. else if ((par->bpp = var->bits_per_pixel) <= 24)
  574. par->bpp = 24;
  575. else if ((par->bpp = var->bits_per_pixel) <= 32)
  576. par->bpp = 32;
  577. currbpp = par->bpp;
  578. /*
  579.  * XXX: It's possible that a user could use a VGA box, change the cable
  580.  * type in hardware (i.e. switch from VGA<->composite), then change modes
  581.  * (i.e. switching to another VT).  If that happens we should automagically
  582.  * change the output format to cope, but currently I don't have a VGA box
  583.  * to make sure this works properly.
  584.  */
  585. cable_type = pvr2_init_cable();
  586. if (cable_type == CT_VGA && video_output != VO_VGA)
  587. video_output = VO_VGA;
  588. par->vmode = var->vmode & FB_VMODE_MASK;
  589. if (par->vmode & FB_VMODE_INTERLACED && video_output != VO_VGA)
  590. par->is_interlaced = 1;
  591. /* 
  592.  * XXX: Need to be more creative with this (i.e. allow doublecan for
  593.  * PAL/NTSC output).
  594.  */
  595. par->is_doublescan = (par->yres < 480 && video_output == VO_VGA);
  596. par->hsync_total = var->left_margin + var->xres + var->right_margin +
  597.                    var->hsync_len;
  598. par->vsync_total = var->upper_margin + var->yres + var->lower_margin +
  599.                    var->vsync_len;
  600. if (var->sync & FB_SYNC_BROADCAST) {
  601. vtotal = par->vsync_total;
  602. if (par->is_interlaced)
  603. vtotal /= 2;
  604. if (vtotal > (PAL_VTOTAL + NTSC_VTOTAL)/2) {
  605. /* PAL video output */
  606. /* XXX: Should be using a range here ... ? */
  607. if (par->hsync_total != PAL_HTOTAL) {
  608. DPRINTK("invalid hsync total for PALn");
  609. return -EINVAL;
  610. }
  611. /* XXX: Check for start values here... */
  612. /* XXX: Check hardware for PAL-compatibility */
  613. par->borderstart_h = 116;
  614. par->borderstart_v = 44;
  615. } else {
  616. /* NTSC video output */
  617. if (par->hsync_total != NTSC_HTOTAL) {
  618. DPRINTK("invalid hsync total for NTSCn");
  619. return -EINVAL;
  620. }
  621. par->borderstart_h = 126;
  622. par->borderstart_v = 18;
  623. }
  624. } else {
  625. /* VGA mode */
  626. /* XXX: What else needs to be checked? */
  627. /* 
  628.  * XXX: We have a little freedom in VGA modes, what ranges should
  629.  * be here (i.e. hsync/vsync totals, etc.)?
  630.  */
  631. par->borderstart_h = 126;
  632. par->borderstart_v = 40;
  633. }
  634. /* Calculate the remainding offsets */
  635. par->borderstop_h = par->borderstart_h + par->hsync_total -
  636.                     var->hsync_len;
  637. par->borderstop_v = par->borderstart_v + par->vsync_total -
  638.                     var->vsync_len;
  639. par->diwstart_h = par->borderstart_h + var->left_margin;
  640. par->diwstart_v = par->borderstart_v + var->upper_margin;
  641. if (!par->is_interlaced)
  642. par->borderstop_v /= 2;
  643. if (par->xres < 640)
  644. par->is_lowres = 1;
  645. /* XXX: Needs testing. */
  646. if (!((par->vmode ^ var->vmode) & FB_VMODE_YWRAP)) {
  647. par->xoffset = var->xoffset;
  648. par->yoffset = var->yoffset;
  649. if (par->vmode & FB_VMODE_YWRAP) {
  650. if (par->xoffset || par->yoffset < 0 || par->yoffset >=
  651.     par->vyres)
  652. par->xoffset = par->yoffset = 0;
  653. } else {
  654. if (par->xoffset < 0 || par->xoffset > par->vxres-par->xres ||
  655.     par->yoffset < 0 || par->yoffset > par->vyres-par->yres)
  656. par->xoffset = par->yoffset = 0;
  657. }
  658. } else
  659. par->xoffset = par->yoffset = 0;
  660. /* Check memory sizes */
  661. line_length = get_line_length(var->xres_virtual, var->bits_per_pixel);
  662. if (line_length * var->yres_virtual > videomemorysize)
  663. return -ENOMEM;
  664. par->disp_start = videomemory + (get_line_length(par->vxres, par->bpp) *
  665.                   par->yoffset) * get_line_length(par->xoffset, par->bpp);
  666. par->next_line = line_length;
  667. return 0;
  668. }
  669. static int pvr2_encode_var(struct fb_var_screeninfo *var,
  670.                              struct pvr2fb_par *par)
  671. {
  672. memset(var, 0, sizeof(struct fb_var_screeninfo));
  673. var->xres = par->xres;
  674. var->yres = par->yres;
  675. var->xres_virtual = par->vxres;
  676. var->yres_virtual = par->vyres;
  677. var->xoffset = par->xoffset;
  678. var->yoffset = par->yoffset;
  679. var->bits_per_pixel = par->bpp;
  680. set_color_bitfields(var);
  681. var->activate = FB_ACTIVATE_NOW;
  682. var->height = -1;
  683. var->width = -1;
  684. var->pixclock = par->pixclock;
  685. if (par->is_doublescan)
  686. var->vmode = FB_VMODE_DOUBLE;
  687. if (par->is_interlaced)
  688. var->vmode |= FB_VMODE_INTERLACED;
  689. else
  690. var->vmode |= FB_VMODE_NONINTERLACED;
  691. var->right_margin = par->borderstop_h - (par->diwstart_h + par->xres);
  692. var->left_margin = par->diwstart_h - par->borderstart_h;
  693. var->hsync_len = par->borderstart_h + (par->hsync_total - par->borderstop_h);
  694. var->upper_margin = par->diwstart_v - par->borderstart_v;
  695. var->lower_margin = par->borderstop_v - (par->diwstart_v + par->yres);
  696. var->vsync_len = par->borderstart_v + (par->vsync_total - par->borderstop_v);
  697. if (video_output != VO_VGA)
  698. var->sync = FB_SYNC_BROADCAST;
  699. if (par->vmode & FB_VMODE_YWRAP)
  700. var->vmode |= FB_VMODE_YWRAP;
  701. return 0;
  702. }
  703. static void pvr2_get_par(struct pvr2fb_par *par)
  704. {
  705. *par = currentpar;
  706. }
  707. /* Setup the new videomode in hardware */
  708. static void pvr2_set_var(struct fb_var_screeninfo *var)
  709. {
  710. do_vmode_pan = 0;
  711. do_vmode_full = 0;
  712. pvr2_decode_var(var, &currentpar);
  713. do_vmode_full = 1;
  714. }
  715. /* 
  716.  * Pan or wrap the display
  717.  * This call looks only at xoffset, yoffset and the FB_VMODE_YWRAP flag in `var'.
  718.  */
  719. static void pvr2_pan_var(struct fb_var_screeninfo *var)
  720. {
  721. struct pvr2fb_par *par = &currentpar;
  722. par->xoffset = var->xoffset;
  723. par->yoffset = var->yoffset;
  724. if (var->vmode & FB_VMODE_YWRAP)
  725. par->vmode |= FB_VMODE_YWRAP;
  726. else
  727. par->vmode &= ~FB_VMODE_YWRAP;
  728. do_vmode_pan = 0;
  729. pvr2_update_par();
  730. do_vmode_pan = 1;
  731. }
  732. static int pvr2_update_par(void)
  733. {
  734. struct pvr2fb_par *par = &currentpar;
  735. u_long move;
  736. move = get_line_length(par->xoffset, par->bpp);
  737. if (par->yoffset) {
  738. par->disp_start += (par->next_line * par->yoffset) + move;
  739. } else
  740. par->disp_start += move;
  741. return 0;
  742. }
  743. static void pvr2_update_display(void)
  744. {
  745. struct pvr2fb_par *par = &currentpar;
  746. /* Update the start address of the display image */
  747. ctrl_outl(par->disp_start, DISP_DIWADDRL);
  748. ctrl_outl(par->disp_start +
  749.   get_line_length(par->xoffset + par->xres, par->bpp),
  750.           DISP_DIWADDRS);
  751. }
  752. /* 
  753.  * Initialize the video mode.  Currently, the 16bpp and 24bpp modes aren't
  754.  * very stable.  It's probably due to the fact that a lot of the 2D video
  755.  * registers are still undocumented.
  756.  */
  757. static void pvr2_init_display(void)
  758. {
  759. struct pvr2fb_par *par = &currentpar;
  760. u_short diw_height, diw_width, diw_modulo = 1;
  761. u_short bytesperpixel = par->bpp / 8;
  762. /* hsync and vsync totals */
  763. ctrl_outl((par->vsync_total << 16) | par->hsync_total, DISP_SYNCSIZE);
  764. /* column height, modulo, row width */
  765. /* since we're "panning" within vram, we need to offset things based
  766.  * on the offset from the virtual x start to our real gfx. */
  767. if (video_output != VO_VGA && par->is_interlaced)
  768. diw_modulo += par->next_line / 4;
  769. diw_height = (par->is_interlaced ? par->yres / 2 : par->yres);
  770. diw_width = get_line_length(par->xres, par->bpp) / 4;
  771. ctrl_outl((diw_modulo << 20) | (--diw_height << 10) | --diw_width,
  772.           DISP_DIWSIZE);
  773. /* display address, long and short fields */
  774. ctrl_outl(par->disp_start, DISP_DIWADDRL);
  775. ctrl_outl(par->disp_start +
  776.           get_line_length(par->xoffset + par->xres, par->bpp),
  777.           DISP_DIWADDRS);
  778. /* border horizontal, border vertical, border color */
  779. ctrl_outl((par->borderstart_h << 16) | par->borderstop_h, DISP_BRDRHORZ);
  780. ctrl_outl((par->borderstart_v << 16) | par->borderstop_v, DISP_BRDRVERT);
  781. ctrl_outl(0, DISP_BRDRCOLR);
  782. /* display window start position */
  783. ctrl_outl(par->diwstart_h, DISP_DIWHSTRT);
  784. ctrl_outl((par->diwstart_v << 16) | par->diwstart_v, DISP_DIWVSTRT);
  785. /* misc. settings */
  786. ctrl_outl((0x16 << 16) | par->is_lowres, DISP_DIWCONF);
  787. /* clock doubler (for VGA), scan doubler, display enable */
  788. ctrl_outl(((video_output == VO_VGA) << 23) | 
  789.           (par->is_doublescan << 1) | 1, DISP_DIWMODE);
  790. /* bits per pixel */
  791. ctrl_outl(ctrl_inl(DISP_DIWMODE) | (--bytesperpixel << 2), DISP_DIWMODE);
  792. /* video enable, color sync, interlace, 
  793.  * hsync and vsync polarity (currently unused) */
  794. ctrl_outl(0x100 | ((par->is_interlaced /*|4*/) << 4), DISP_SYNCCONF);
  795. }
  796. /* Simulate blanking by making the border cover the entire screen */
  797. #define BLANK_BIT (1<<3)
  798. static void pvr2_do_blank(void)
  799. {
  800. u_long diwconf;
  801. diwconf = ctrl_inl(DISP_DIWCONF);
  802. if (do_blank > 0)
  803. ctrl_outl(diwconf | BLANK_BIT, DISP_DIWCONF);
  804. else
  805. ctrl_outl(diwconf & ~BLANK_BIT, DISP_DIWCONF);
  806. is_blanked = do_blank > 0 ? do_blank : 0;
  807. }
  808. static void pvr2fb_interrupt(int irq, void *dev_id, struct pt_regs *fp)
  809. {
  810. if (do_vmode_pan || do_vmode_full)
  811. pvr2_update_display();
  812. if (do_vmode_full)
  813. pvr2_init_display();
  814. if (do_vmode_pan)
  815. do_vmode_pan = 0;
  816. if (do_blank) {
  817. pvr2_do_blank();
  818. do_blank = 0;
  819. }
  820. if (do_vmode_full) {
  821. do_vmode_full = 0;
  822. }
  823. }
  824. /*
  825.  * Determine the cable type and initialize the cable output format.  Don't do
  826.  * anything if the cable type has been overidden (via "cable:XX").
  827.  */
  828. #define PCTRA 0xff80002c
  829. #define PDTRA 0xff800030
  830. #define VOUTC 0xa0702c00
  831. static int pvr2_init_cable(void)
  832. {
  833. if (cable_type < 0) {
  834. ctrl_outl((ctrl_inl(PCTRA) & 0xfff0ffff) | 0x000a0000, 
  835.                   PCTRA);
  836. cable_type = (ctrl_inw(PDTRA) >> 8) & 3;
  837. }
  838. /* Now select the output format (either composite or other) */
  839. /* XXX: Save the previous val first, as this reg is also AICA
  840.   related */
  841. if (cable_type == CT_COMPOSITE)
  842. ctrl_outl(3 << 8, VOUTC);
  843. else
  844. ctrl_outl(0, VOUTC);
  845. return cable_type;
  846. }
  847. int __init pvr2fb_init(void)
  848. {
  849. struct fb_var_screeninfo var;
  850. u_long modememused;
  851. if (!MACH_DREAMCAST)
  852. return -ENXIO;
  853. /* Make a guess at the monitor based on the attached cable */
  854. if (pvr2_init_cable() == CT_VGA) {
  855. fb_info.monspecs.hfmin = 30000;
  856. fb_info.monspecs.hfmax = 70000;
  857. fb_info.monspecs.vfmin = 60;
  858. fb_info.monspecs.vfmax = 60;
  859. }
  860. else { /* Not VGA, using a TV (taken from acornfb) */
  861. fb_info.monspecs.hfmin = 15469;
  862. fb_info.monspecs.hfmax = 15781;
  863. fb_info.monspecs.vfmin = 49;
  864. fb_info.monspecs.vfmax = 51;
  865. }
  866. /* XXX: This needs to pull default video output via BIOS or other means */
  867. if (video_output < 0) {
  868. if (cable_type == CT_VGA)
  869. video_output = VO_VGA;
  870. else
  871. video_output = VO_NTSC;
  872. }
  873. strcpy(fb_info.modename, pvr2fb_name);
  874. fb_info.changevar = NULL;
  875. fb_info.node = -1;
  876. fb_info.fbops = &pvr2fb_ops;
  877. fb_info.disp = &disp;
  878. fb_info.switch_con = &pvr2fbcon_switch;
  879. fb_info.updatevar = &pvr2fbcon_updatevar;
  880. fb_info.blank = &pvr2fbcon_blank;
  881. fb_info.flags = FBINFO_FLAG_DEFAULT;
  882. memset(&var, 0, sizeof(var));
  883. if (video_output == VO_VGA)
  884. defmode = DEFMODE_VGA;
  885. if (!fb_find_mode(&var, &fb_info, mode_option, pvr2_modedb,
  886.                   NUM_TOTAL_MODES, &pvr2_modedb[defmode], 16)) {
  887. return -EINVAL;
  888. }
  889. if (request_irq(HW_EVENT_VSYNC, pvr2fb_interrupt, 0,
  890.                 "pvr2 VBL handler", &currentpar)) {
  891. DPRINTK("couldn't register VBL intn");
  892. return -EBUSY;
  893. }
  894. #ifdef CONFIG_MTRR
  895. if (enable_mtrr) {
  896. mtrr_handle = mtrr_add(videomemory, videomemorysize, MTRR_TYPE_WRCOMB, 1);
  897. printk("pvr2fb: MTRR turned onn");
  898. }
  899. #endif
  900. pvr2fb_set_var(&var, -1, &fb_info);
  901. if (register_framebuffer(&fb_info) < 0)
  902. return -EINVAL;
  903. modememused = get_line_length(var.xres_virtual, var.bits_per_pixel);
  904. modememused *= var.yres_virtual;
  905. printk("fb%d: %s frame buffer device, using %ldk/%ldk of video memoryn",
  906.        GET_FB_IDX(fb_info.node), fb_info.modename, modememused>>10,
  907.        videomemorysize>>10);
  908. printk("fb%d: Mode %dx%d-%d pitch = %ld cable: %s video output: %sn", 
  909.        GET_FB_IDX(fb_info.node), var.xres, var.yres, var.bits_per_pixel, 
  910.        get_line_length(var.xres, var.bits_per_pixel),
  911.        (char *)pvr2_get_param(cables, NULL, cable_type, 3),
  912.        (char *)pvr2_get_param(outputs, NULL, video_output, 3));
  913. return 0;
  914. }
  915. static void __exit pvr2fb_exit(void)
  916. {
  917. #ifdef CONFIG_MTRR
  918. if (enable_mtrr) {
  919. mtrr_del(mtrr_handle, videomemory, videomemorysize);
  920. printk("pvr2fb: MTRR turned offn");
  921. }
  922. #endif
  923. unregister_framebuffer(&fb_info);
  924. }
  925. static int __init pvr2_get_param(const struct pvr2_params *p, const char *s,
  926.                                    int val, int size)
  927. {
  928. int i;
  929. for (i = 0 ; i < size ; i++ ) {
  930. if (s != NULL) {
  931. if (!strnicmp(p[i].name, s, strlen(s)))
  932. return p[i].val;
  933. } else {
  934. if (p[i].val == val)
  935. return (int)p[i].name;
  936. }
  937. }
  938. return -1;
  939. }
  940. /*
  941.  * Parse command arguments.  Supported arguments are:
  942.  *    inverse                             Use inverse color maps
  943.  *    nomtrr                              Disable MTRR usage
  944.  *    font:<fontname>                     Specify console font
  945.  *    cable:composite|rgb|vga             Override the video cable type
  946.  *    output:NTSC|PAL|VGA                 Override the video output format
  947.  *
  948.  *    <xres>x<yres>[-<bpp>][@<refresh>]   or,
  949.  *    <name>[-<bpp>][@<refresh>]          Startup using this video mode
  950.  */
  951. #ifndef MODULE
  952. int __init pvr2fb_setup(char *options)
  953. {
  954. char *this_opt;
  955. char cable_arg[80];
  956. char output_arg[80];
  957. fb_info.fontname[0] = '';
  958. if (!options || !*options)
  959. return 0;
  960. while ((this_opt = strsep(&options, ","))) {
  961. if (!*this_opt)
  962. continue;
  963. if (!strcmp(this_opt, "inverse")) {
  964. pvr2fb_inverse = 1;
  965. fb_invert_cmaps();
  966. } else if (!strncmp(this_opt, "font:", 5))
  967. strcpy(fb_info.fontname, this_opt + 5);
  968. else if (!strncmp(this_opt, "cable:", 6))
  969. strcpy(cable_arg, this_opt + 6);
  970. else if (!strncmp(this_opt, "output:", 7))
  971. strcpy(output_arg, this_opt + 7);
  972. #ifdef CONFIG_MTRR
  973. else if (!strncmp(this_opt, "nomtrr", 6))
  974. enable_mtrr = 0;
  975. #endif
  976. else
  977. mode_option = this_opt;
  978. }
  979. if (*cable_arg)
  980. cable_type = pvr2_get_param(cables, cable_arg, 0, 3);
  981. if (*output_arg)
  982. video_output = pvr2_get_param(outputs, output_arg, 0, 3);
  983. return 0;
  984. }
  985. #endif
  986. #ifdef MODULE
  987. MODULE_LICENSE("GPL");
  988. module_init(pvr2fb_init);
  989. #endif
  990. module_exit(pvr2fb_exit);