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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. * linux/drivers/video/cyberfb.c -- CyberVision64 frame buffer device
  3. * $Id: cyberfb.c,v 1.6 1998/09/11 04:54:58 abair Exp $
  4. *
  5. *    Copyright (C) 1998 Alan Bair
  6. *
  7. * This file is based on two CyberVision64 frame buffer device drivers
  8. *
  9. * The second CyberVision64 frame buffer device (cvision.c cvision_core.c):
  10. *
  11. *   Copyright (c) 1997 Antonio Santos
  12. *
  13. * Released as a patch to 2.1.35, but never included in the source tree.
  14. * This is based on work from the NetBSD CyberVision64 frame buffer driver 
  15. * and support files (grf_cv.c, grf_cvreg.h, ite_cv.c):
  16. * Permission to use the source of this driver was obtained from the
  17. * author Michael Teske by Alan Bair.
  18. *
  19. *   Copyright (c) 1995 Michael Teske
  20. *
  21. * The first CyberVision64 frame buffer device (cyberfb.c):
  22. *
  23. *    Copyright (C) 1996 Martin Apel
  24. *                       Geert Uytterhoeven
  25. *
  26. * Which is based on the Amiga frame buffer device (amifb.c):
  27. *
  28. *    Copyright (C) 1995 Geert Uytterhoeven
  29. *
  30. *
  31. * History:
  32. *   - 22 Dec 95: Original version by Martin Apel
  33. *   - 05 Jan 96: Geert: integration into the current source tree
  34. *   - 01 Aug 98: Alan: Merge in code from cvision.c and cvision_core.c
  35. * $Log: cyberfb.c,v $
  36. * Revision 1.6  1998/09/11 04:54:58  abair
  37. * Update for 2.1.120 change in include file location.
  38. * Clean up for public release.
  39. *
  40. * Revision 1.5  1998/09/03 04:27:13  abair
  41. * Move cv64_load_video_mode to cyber_set_video so a new video mode is install
  42. * with each change of the 'var' data.
  43. *
  44. * Revision 1.4  1998/09/01 00:31:17  abair
  45. * Put in a set of default 8,16,24 bpp modes and map cyber8,16 to them.
  46. * Update operations with 'par' to handle a more complete set of parameter
  47. * values for encode/decode process.
  48. *
  49. * Revision 1.3  1998/08/31 21:31:33  abair
  50. * Swap 800x490 for 640x480 video mode and more cleanup.
  51. * Abandon idea to resurrect "custom" mode setting via kernel opts,
  52. * instead work on making use of fbset program to do this.
  53. *
  54. * Revision 1.2  1998/08/31 06:17:08  abair
  55. * Make updates for changes in cyberfb.c released in 2.1.119
  56. * and do some cleanup of the code.
  57. *
  58. * Revision 1.1  1998/08/29 18:38:31  abair
  59. * Initial revision
  60. *
  61. * Revision 1.3  1998/08/17 06:21:53  abair
  62. * Remove more redundant code after merging in cvision_core.c
  63. * Set blanking by colormap to pale red to detect this vs trying to
  64. * use video blanking. More formating to Linux code style.
  65. *
  66. * Revision 1.2  1998/08/15 17:51:37  abair
  67. * Added cvision_core.c code from 2.1.35 patches.
  68. * Changed to compile correctly and switch to using initialization
  69. * code. Added debugging and dropping of duplicate code.
  70. *
  71. *
  72. *
  73. * This file is subject to the terms and conditions of the GNU General Public
  74. * License.  See the file COPYING in the main directory of this archive
  75. * for more details.
  76. */
  77. #include <linux/module.h>
  78. #include <linux/kernel.h>
  79. #include <linux/errno.h>
  80. #include <linux/string.h>
  81. #include <linux/mm.h>
  82. #include <linux/tty.h>
  83. #include <linux/slab.h>
  84. #include <linux/delay.h>
  85. #include <linux/zorro.h>
  86. #include <linux/fb.h>
  87. #include <linux/init.h>
  88. #include <asm/uaccess.h>
  89. #include <asm/system.h>
  90. #include <asm/irq.h>
  91. #include <asm/pgtable.h>
  92. #include <asm/amigahw.h>
  93. #include <asm/io.h>
  94. #include "cyberfb.h"
  95. #include <video/fbcon.h>
  96. #include <video/fbcon-cfb8.h>
  97. #include <video/fbcon-cfb16.h>
  98. /*#define CYBERFBDEBUG*/
  99. #ifdef CYBERFBDEBUG
  100. #define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __FUNCTION__ , ## args)
  101. static void cv64_dump(void);
  102. #else
  103. #define DPRINTK(fmt, args...)
  104. #endif
  105. #define wb_64(regs,reg,dat) (*(((volatile unsigned char *)regs) + reg) = dat)
  106. #define rb_64(regs, reg) (*(((volatile unsigned char *)regs) + reg))
  107. #define ww_64(regs,reg,dat) (*((volatile unsigned short *)(regs + reg) = dat)
  108. struct cyberfb_par {
  109. struct fb_var_screeninfo var;
  110. __u32 type;
  111. __u32 type_aux;
  112. __u32 visual;
  113. __u32 line_length;
  114. };
  115. static struct cyberfb_par current_par;
  116. static int current_par_valid = 0;
  117. static int currcon = 0;
  118. static struct display disp;
  119. static struct fb_info fb_info;
  120. /*
  121.  *    Frame Buffer Name
  122.  */
  123. static char cyberfb_name[16] = "Cybervision";
  124. /*
  125.  *    CyberVision Graphics Board
  126.  */
  127. static unsigned char Cyber_colour_table [256][3];
  128. static unsigned long CyberSize;
  129. static volatile unsigned char *CyberBase;
  130. static volatile unsigned char *CyberMem;
  131. static volatile unsigned char *CyberRegs;
  132. static unsigned long CyberMem_phys;
  133. static unsigned long CyberRegs_phys;
  134. /*
  135.  *    Predefined Video Modes
  136.  */
  137. static struct {
  138.     const char *name;
  139.     struct fb_var_screeninfo var;
  140. } cyberfb_predefined[] __initdata = {
  141. { "640x480-8", { /* Default 8 BPP mode (cyber8) */
  142. 640, 480, 640, 480, 0, 0, 8, 0,
  143. {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
  144. 0, 0, -1, -1, FB_ACCELF_TEXT, 39722, 40, 24, 32, 11, 96, 2,
  145. FB_SYNC_COMP_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, 
  146. FB_VMODE_NONINTERLACED
  147. }}, 
  148. { "640x480-16", { /* Default 16 BPP mode (cyber16) */
  149. 640, 480, 640, 480, 0, 0, 16, 0,
  150. {11, 5, 0}, {5, 6, 0}, {0, 5, 0}, {0, 0, 0},
  151. 0, 0, -1, -1, FB_ACCELF_TEXT, 39722, 40, 24, 32, 11, 96, 2,
  152. FB_SYNC_COMP_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, 
  153. FB_VMODE_NONINTERLACED
  154. }}, 
  155. { "640x480-24", { /* Default 24 BPP mode */
  156. 640, 480, 640, 480, 0, 0, 24, 0,
  157. {16, 8, 0}, {8, 8, 0}, {0, 8, 0}, {0, 0, 0},
  158. 0, 0, -1, -1, FB_ACCELF_TEXT, 39722, 40, 24, 32, 11, 96, 2,
  159. FB_SYNC_COMP_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT, 
  160. FB_VMODE_NONINTERLACED
  161. }}, 
  162. { "800x490-8", { /* Cybervision 8 bpp */
  163. /* NO Acceleration */
  164. 800, 490, 800, 490, 0, 0, 8, 0,
  165. {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
  166. 0, 0, -1, -1, FB_ACCEL_NONE, 33333, 80, 24, 23, 1, 56, 8,
  167. FB_SYNC_COMP_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT,
  168. FB_VMODE_NONINTERLACED
  169. }},
  170. /* I can't test these with my monitor, but I suspect they will
  171.  * be OK, since Antonio Santos indicated he had tested them in
  172.  * his system.
  173.  */
  174. { "800x600-8", { /* Cybervision 8 bpp */
  175. 800, 600, 800, 600, 0, 0, 8, 0,
  176. {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
  177. 0, 0, -1, -1, FB_ACCELF_TEXT, 27778, 64, 24, 22, 1, 72, 2,
  178. FB_SYNC_COMP_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT,
  179. FB_VMODE_NONINTERLACED
  180. }},
  181. { "1024x768-8", { /* Cybervision 8 bpp */
  182. 1024, 768, 1024, 768, 0, 0, 8, 0,
  183. {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
  184. 0, 0, -1, -1, FB_ACCELF_TEXT, 16667, 224, 72, 60, 12, 168, 4,
  185. FB_SYNC_COMP_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT,
  186. FB_VMODE_NONINTERLACED
  187. }},
  188. { "1152x886-8", { /* Cybervision 8 bpp */
  189. 1152, 886, 1152, 886, 0, 0, 8, 0,
  190. {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
  191. 0, 0, -1, -1, FB_ACCELF_TEXT, 15873, 184, 40, 24, 1, 56, 16,
  192. FB_SYNC_COMP_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT,
  193. FB_VMODE_NONINTERLACED
  194. }},
  195. { "1280x1024-8", { /* Cybervision 8 bpp */
  196. 1280, 1024, 1280, 1024, 0, 0, 8, 0,
  197. {0, 8, 0}, {0, 8, 0}, {0, 8, 0}, {0, 0, 0},
  198. 0, 0, -1, -1, FB_ACCELF_TEXT, 16667, 256, 48, 50, 12, 72, 4,
  199. FB_SYNC_COMP_HIGH_ACT|FB_SYNC_VERT_HIGH_ACT,
  200. FB_VMODE_INTERLACED
  201. }}
  202. };
  203. #define NUM_TOTAL_MODES    ARRAY_SIZE(cyberfb_predefined)
  204. static int Cyberfb_inverse = 0;
  205. /*
  206.  *    Some default modes
  207.  */
  208. #define CYBER8_DEFMODE     (0)
  209. #define CYBER16_DEFMODE    (1)
  210. static struct fb_var_screeninfo cyberfb_default;
  211. static int cyberfb_usermode __initdata = 0;
  212. /*
  213.  *    Interface used by the world
  214.  */
  215. int cyberfb_setup(char *options);
  216. static int cyberfb_get_fix(struct fb_fix_screeninfo *fix, int con,
  217.    struct fb_info *info);
  218. static int cyberfb_get_var(struct fb_var_screeninfo *var, int con,
  219.    struct fb_info *info);
  220. static int cyberfb_set_var(struct fb_var_screeninfo *var, int con,
  221.    struct fb_info *info);
  222. static int cyberfb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  223.     struct fb_info *info);
  224. static int cyberfb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  225.     struct fb_info *info);
  226. /*
  227.  *    Interface to the low level console driver
  228.  */
  229. int cyberfb_init(void);
  230. static int Cyberfb_switch(int con, struct fb_info *info);
  231. static int Cyberfb_updatevar(int con, struct fb_info *info);
  232. static void Cyberfb_blank(int blank, struct fb_info *info);
  233. /*
  234.  *    Text console acceleration
  235.  */
  236. #ifdef FBCON_HAS_CFB8
  237. static struct display_switch fbcon_cyber8;
  238. #endif
  239. /*
  240.  *    Accelerated Functions used by the low level console driver
  241.  */
  242. static void Cyber_WaitQueue(u_short fifo);
  243. static void Cyber_WaitBlit(void);
  244. static void Cyber_BitBLT(u_short curx, u_short cury, u_short destx,
  245.  u_short desty, u_short width, u_short height,
  246.  u_short mode);
  247. static void Cyber_RectFill(u_short x, u_short y, u_short width, u_short height,
  248.    u_short mode, u_short color);
  249. #if 0
  250. static void Cyber_MoveCursor(u_short x, u_short y);
  251. #endif
  252. /*
  253.  *   Hardware Specific Routines
  254.  */
  255. static int Cyber_init(void);
  256. static int Cyber_encode_fix(struct fb_fix_screeninfo *fix,
  257.     struct cyberfb_par *par);
  258. static int Cyber_decode_var(struct fb_var_screeninfo *var,
  259.     struct cyberfb_par *par);
  260. static int Cyber_encode_var(struct fb_var_screeninfo *var,
  261.     struct cyberfb_par *par);
  262. static int Cyber_getcolreg(u_int regno, u_int *red, u_int *green, u_int *blue,
  263.    u_int *transp, struct fb_info *info);
  264. static int Cyber_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  265.    u_int transp, struct fb_info *info);
  266. /*
  267.  *    Internal routines
  268.  */
  269. static void cyberfb_get_par(struct cyberfb_par *par);
  270. static void cyberfb_set_par(struct cyberfb_par *par);
  271. static int do_fb_set_var(struct fb_var_screeninfo *var, int isactive);
  272. static void do_install_cmap(int con, struct fb_info *info);
  273. static void cyberfb_set_disp(int con, struct fb_info *info);
  274. static int get_video_mode(const char *name);
  275. /* For cvision_core.c */
  276. static unsigned short cv64_compute_clock(unsigned long);
  277. static int cv_has_4mb (volatile unsigned char *);
  278. static void cv64_board_init (void);
  279. static void cv64_load_video_mode (struct fb_var_screeninfo *);
  280. /* -------------------- Hardware specific routines ------------------------- */
  281. /*
  282.  *    Initialization
  283.  *
  284.  *    Set the default video mode for this chipset. If a video mode was
  285.  *    specified on the command line, it will override the default mode.
  286.  */
  287. static int Cyber_init(void)
  288. {
  289. volatile unsigned char *regs = CyberRegs;
  290. volatile unsigned long *CursorBase;
  291. int i;
  292. DPRINTK("ENTERn");
  293. /* Init local cmap as greyscale levels */
  294. for (i = 0; i < 256; i++) {
  295. Cyber_colour_table [i][0] = i;
  296. Cyber_colour_table [i][1] = i;
  297. Cyber_colour_table [i][2] = i;
  298. }
  299. /* Initialize the board and determine fbmem size */
  300. cv64_board_init(); 
  301. #ifdef CYBERFBDEBUG
  302. DPRINTK("Register state after initing boardn");
  303. cv64_dump();
  304. #endif
  305. /* Clear framebuffer memory */
  306. DPRINTK("Clear framebuffer memoryn");
  307. memset ((char *)CyberMem, 0, CyberSize);
  308. /* Disable hardware cursor */
  309. DPRINTK("Disable HW cursorn");
  310. wb_64(regs, S3_CRTC_ADR, S3_REG_LOCK2);
  311. wb_64(regs, S3_CRTC_DATA, 0xa0);
  312. wb_64(regs, S3_CRTC_ADR, S3_HGC_MODE);
  313. wb_64(regs, S3_CRTC_DATA, 0x00);
  314. wb_64(regs, S3_CRTC_ADR, S3_HWGC_DX);
  315. wb_64(regs, S3_CRTC_DATA, 0x00);
  316. wb_64(regs, S3_CRTC_ADR, S3_HWGC_DY);
  317. wb_64(regs, S3_CRTC_DATA, 0x00);
  318. /* Initialize hardware cursor */
  319. DPRINTK("Init HW cursorn");
  320. CursorBase = (u_long *)((char *)(CyberMem) + CyberSize - 0x400);
  321. for (i=0; i < 8; i++)
  322. {
  323. *(CursorBase  +(i*4)) = 0xffffff00;
  324. *(CursorBase+1+(i*4)) = 0xffff0000;
  325. *(CursorBase+2+(i*4)) = 0xffff0000;
  326. *(CursorBase+3+(i*4)) = 0xffff0000;
  327. }
  328. for (i=8; i < 64; i++)
  329. {
  330. *(CursorBase  +(i*4)) = 0xffff0000;
  331. *(CursorBase+1+(i*4)) = 0xffff0000;
  332. *(CursorBase+2+(i*4)) = 0xffff0000;
  333. *(CursorBase+3+(i*4)) = 0xffff0000;
  334. }
  335. Cyber_setcolreg (255, 56<<8, 100<<8, 160<<8, 0, NULL /* unused */);
  336. Cyber_setcolreg (254, 0, 0, 0, 0, NULL /* unused */);
  337. DPRINTK("EXITn");
  338. return 0;
  339. }
  340. /*
  341.  *    This function should fill in the `fix' structure based on the
  342.  *    values in the `par' structure.
  343.  */
  344. static int Cyber_encode_fix(struct fb_fix_screeninfo *fix,
  345.     struct cyberfb_par *par)
  346. {
  347. DPRINTK("ENTERn");
  348. memset(fix, 0, sizeof(struct fb_fix_screeninfo));
  349. strcpy(fix->id, cyberfb_name);
  350. fix->smem_start = CyberMem_phys;
  351. fix->smem_len = CyberSize;
  352. fix->mmio_start = CyberRegs_phys;
  353. fix->mmio_len = 0x10000;
  354. fix->type = FB_TYPE_PACKED_PIXELS;
  355. fix->type_aux = 0;
  356. if (par->var.bits_per_pixel == 15 || par->var.bits_per_pixel == 16 ||
  357.     par->var.bits_per_pixel == 24 || par->var.bits_per_pixel == 32) {
  358. fix->visual = FB_VISUAL_DIRECTCOLOR;
  359. } else {
  360. fix->visual = FB_VISUAL_PSEUDOCOLOR;
  361. }
  362. fix->xpanstep = 0;
  363. fix->ypanstep = 0;
  364. fix->ywrapstep = 0;
  365. fix->line_length = 0;
  366. fix->accel = FB_ACCEL_S3_TRIO64;
  367. DPRINTK("EXITn");
  368. return(0);
  369. }
  370. /*
  371. *    Fill the `par' structure based on the values in `var'.
  372. *    TODO: Verify and adjust values, return -EINVAL if bad.
  373. */
  374. static int Cyber_decode_var(struct fb_var_screeninfo *var,
  375.     struct cyberfb_par *par)
  376. {
  377. DPRINTK("ENTERn");
  378. par->var.xres = var->xres;
  379. par->var.yres = var->yres;
  380. par->var.xres_virtual = var->xres_virtual;
  381. par->var.yres_virtual = var->yres_virtual;
  382. par->var.xoffset = var->xoffset;
  383. par->var.yoffset = var->yoffset;
  384. par->var.bits_per_pixel = var->bits_per_pixel;
  385. par->var.grayscale = var->grayscale;
  386. par->var.red = var->red;
  387. par->var.green = var->green;
  388. par->var.blue = var->blue;
  389. par->var.transp = var->transp;
  390. par->var.nonstd = var->nonstd;
  391. par->var.activate = var->activate;
  392. par->var.height = var->height;
  393. par->var.width = var->width;
  394. if (var->accel_flags & FB_ACCELF_TEXT) {
  395. par->var.accel_flags = FB_ACCELF_TEXT;
  396. } else {
  397. par->var.accel_flags = 0;
  398. }
  399. par->var.pixclock = var->pixclock;
  400. par->var.left_margin = var->left_margin;
  401. par->var.right_margin = var->right_margin;
  402. par->var.upper_margin = var->upper_margin;
  403. par->var.lower_margin = var->lower_margin;
  404. par->var.hsync_len = var->hsync_len;
  405. par->var.vsync_len = var->vsync_len;
  406. par->var.sync = var->sync;
  407. par->var.vmode = var->vmode;
  408. DPRINTK("EXITn");
  409. return(0);
  410. }
  411. /*
  412. *    Fill the `var' structure based on the values in `par' and maybe
  413. *    other values read out of the hardware.
  414. */
  415. static int Cyber_encode_var(struct fb_var_screeninfo *var,
  416.     struct cyberfb_par *par)
  417. {
  418. DPRINTK("ENTERn");
  419. var->xres = par->var.xres;
  420. var->yres = par->var.yres;
  421. var->xres_virtual = par->var.xres_virtual;
  422. var->yres_virtual = par->var.yres_virtual;
  423. var->xoffset = par->var.xoffset;
  424. var->yoffset = par->var.yoffset;
  425. var->bits_per_pixel = par->var.bits_per_pixel;
  426. var->grayscale = par->var.grayscale;
  427. var->red = par->var.red;
  428. var->green = par->var.green;
  429. var->blue = par->var.blue;
  430. var->transp = par->var.transp;
  431. var->nonstd = par->var.nonstd;
  432. var->activate = par->var.activate;
  433. var->height = par->var.height;
  434. var->width = par->var.width;
  435. var->accel_flags = par->var.accel_flags;
  436. var->pixclock = par->var.pixclock;
  437. var->left_margin = par->var.left_margin;
  438. var->right_margin = par->var.right_margin;
  439. var->upper_margin = par->var.upper_margin;
  440. var->lower_margin = par->var.lower_margin;
  441. var->hsync_len = par->var.hsync_len;
  442. var->vsync_len = par->var.vsync_len;
  443. var->sync = par->var.sync;
  444. var->vmode = par->var.vmode;
  445. DPRINTK("EXITn");
  446. return(0);
  447. }
  448. /*
  449.  *    Set a single color register. Return != 0 for invalid regno.
  450.  */
  451. static int Cyber_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  452.    u_int transp, struct fb_info *info)
  453. {
  454. volatile unsigned char *regs = CyberRegs;
  455. /*DPRINTK("ENTERn");*/
  456. if (regno > 255) {
  457. DPRINTK("EXIT - Register # > 255n");
  458. return (1);
  459. }
  460. wb_64(regs, 0x3c8, (unsigned char) regno);
  461.   red >>= 10;
  462.   green >>= 10;
  463.   blue >>= 10;
  464. Cyber_colour_table [regno][0] = red;
  465. Cyber_colour_table [regno][1] = green;
  466. Cyber_colour_table [regno][2] = blue;
  467. wb_64(regs, 0x3c9, red);
  468. wb_64(regs, 0x3c9, green);
  469. wb_64(regs, 0x3c9, blue);
  470. /*DPRINTK("EXITn");*/
  471. return (0);
  472. }
  473. /*
  474. *    Read a single color register and split it into
  475. *    colors/transparent. Return != 0 for invalid regno.
  476. */
  477. static int Cyber_getcolreg(u_int regno, u_int *red, u_int *green, u_int *blue,
  478.    u_int *transp, struct fb_info *info)
  479. {
  480. int t;
  481. /*DPRINTK("ENTERn");*/
  482. if (regno > 255) {
  483. DPRINTK("EXIT - Register # > 255n");
  484. return (1);
  485. }
  486. /* ARB This shifting & oring seems VERY strange */
  487.   t = Cyber_colour_table [regno][0];
  488.   *red = (t<<10) | (t<<4) | (t>>2);
  489.   t = Cyber_colour_table [regno][1];
  490.   *green = (t<<10) | (t<<4) | (t>>2);
  491.   t = Cyber_colour_table [regno][2];
  492.   *blue = (t<<10) | (t<<4) | (t>>2);
  493.   *transp = 0;
  494. /*DPRINTK("EXITn");*/
  495. return (0);
  496. }
  497. /*
  498. *    (Un)Blank the screen
  499. *    blank: 1 = zero fb cmap
  500. *           0 = restore fb cmap from local cmap
  501. */
  502. void Cyberfb_blank(int blank, struct fb_info *info)
  503. {
  504. volatile unsigned char *regs = CyberRegs;
  505. int i;
  506. DPRINTK("ENTERn");
  507. #if 0
  508. /* Blank by turning gfx off */
  509. gfx_on_off (1, regs);
  510. #else
  511. if (blank) {
  512. for (i = 0; i < 256; i++) {
  513. wb_64(regs, 0x3c8, (unsigned char) i);
  514. /* ARB Pale red to detect this blanking method */
  515. wb_64(regs, 0x3c9, 48); 
  516. wb_64(regs, 0x3c9, 0);
  517. wb_64(regs, 0x3c9, 0);
  518. }
  519. } else {
  520. for (i = 0; i < 256; i++) {
  521. wb_64(regs, 0x3c8, (unsigned char) i);
  522. wb_64(regs, 0x3c9, Cyber_colour_table[i][0]);
  523. wb_64(regs, 0x3c9, Cyber_colour_table[i][1]);
  524. wb_64(regs, 0x3c9, Cyber_colour_table[i][2]);
  525. }
  526. }
  527. #endif
  528. DPRINTK("EXITn");
  529. }
  530. /**************************************************************
  531.  * We are waiting for "fifo" FIFO-slots empty
  532.  */
  533. static void Cyber_WaitQueue (u_short fifo)
  534. {
  535. unsigned short status;
  536. DPRINTK("ENTERn");
  537. do {
  538. status = *((u_short volatile *)(CyberRegs + S3_GP_STAT));
  539. } while (status & fifo);
  540. DPRINTK("EXITn");
  541. }
  542. /**************************************************************
  543.  * We are waiting for Hardware (Graphics Engine) not busy
  544.  */
  545. static void Cyber_WaitBlit (void)
  546. {
  547. unsigned short status;
  548. DPRINTK("ENTERn");
  549. do {
  550. status = *((u_short volatile *)(CyberRegs + S3_GP_STAT));
  551. } while (status & S3_HDW_BUSY);
  552. DPRINTK("EXITn");
  553. }
  554. /**************************************************************
  555.  * BitBLT - Through the Plane
  556.  */
  557. static void Cyber_BitBLT (u_short curx, u_short cury, u_short destx,
  558.   u_short desty, u_short width, u_short height,
  559.   u_short mode)
  560. {
  561. volatile unsigned char *regs = CyberRegs;
  562. u_short blitcmd = S3_BITBLT;
  563. DPRINTK("ENTERn");
  564. /* Set drawing direction */
  565. /* -Y, X maj, -X (default) */
  566. if (curx > destx) {
  567. blitcmd |= 0x0020;  /* Drawing direction +X */
  568. } else {
  569. curx  += (width - 1);
  570. destx += (width - 1);
  571. }
  572. if (cury > desty) {
  573. blitcmd |= 0x0080;  /* Drawing direction +Y */
  574. } else {
  575. cury  += (height - 1);
  576. desty += (height - 1);
  577. }
  578. Cyber_WaitQueue (0x8000);
  579. *((u_short volatile *)(regs + S3_PIXEL_CNTL)) = 0xa000;
  580. *((u_short volatile *)(regs + S3_FRGD_MIX)) = (0x0060 | mode);
  581. *((u_short volatile *)(regs + S3_CUR_X)) = curx;
  582. *((u_short volatile *)(regs + S3_CUR_Y)) = cury;
  583. *((u_short volatile *)(regs + S3_DESTX_DIASTP)) = destx;
  584. *((u_short volatile *)(regs + S3_DESTY_AXSTP)) = desty;
  585. *((u_short volatile *)(regs + S3_MIN_AXIS_PCNT)) = height - 1;
  586. *((u_short volatile *)(regs + S3_MAJ_AXIS_PCNT)) = width  - 1;
  587. *((u_short volatile *)(regs + S3_CMD)) = blitcmd;
  588. DPRINTK("EXITn");
  589. }
  590. /**************************************************************
  591.  * Rectangle Fill Solid
  592.  */
  593. static void Cyber_RectFill (u_short x, u_short y, u_short width,
  594.     u_short height, u_short mode, u_short color)
  595. {
  596. volatile unsigned char *regs = CyberRegs;
  597. u_short blitcmd = S3_FILLEDRECT;
  598. DPRINTK("ENTERn");
  599. Cyber_WaitQueue (0x8000);
  600. *((u_short volatile *)(regs + S3_PIXEL_CNTL)) = 0xa000;
  601. *((u_short volatile *)(regs + S3_FRGD_MIX)) = (0x0020 | mode);
  602. *((u_short volatile *)(regs + S3_MULT_MISC)) = 0xe000;
  603. *((u_short volatile *)(regs + S3_FRGD_COLOR)) = color;
  604. *((u_short volatile *)(regs + S3_CUR_X)) = x;
  605. *((u_short volatile *)(regs + S3_CUR_Y)) = y;
  606. *((u_short volatile *)(regs + S3_MIN_AXIS_PCNT)) = height - 1;
  607. *((u_short volatile *)(regs + S3_MAJ_AXIS_PCNT)) = width  - 1;
  608. *((u_short volatile *)(regs + S3_CMD)) = blitcmd;
  609. DPRINTK("EXITn");
  610. }
  611. #if 0
  612. /**************************************************************
  613.  * Move cursor to x, y
  614.  */
  615. static void Cyber_MoveCursor (u_short x, u_short y)
  616. {
  617. volatile unsigned char *regs = CyberRegs;
  618. DPRINTK("ENTERn");
  619. *(regs + S3_CRTC_ADR)  = 0x39;
  620. *(regs + S3_CRTC_DATA) = 0xa0;
  621. *(regs + S3_CRTC_ADR)  = S3_HWGC_ORGX_H;
  622. *(regs + S3_CRTC_DATA) = (char)((x & 0x0700) >> 8);
  623. *(regs + S3_CRTC_ADR)  = S3_HWGC_ORGX_L;
  624. *(regs + S3_CRTC_DATA) = (char)(x & 0x00ff);
  625. *(regs + S3_CRTC_ADR)  = S3_HWGC_ORGY_H;
  626. *(regs + S3_CRTC_DATA) = (char)((y & 0x0700) >> 8);
  627. *(regs + S3_CRTC_ADR)  = S3_HWGC_ORGY_L;
  628. *(regs + S3_CRTC_DATA) = (char)(y & 0x00ff);
  629. DPRINTK("EXITn");
  630. }
  631. #endif
  632. /* -------------------- Generic routines ---------------------------------- */
  633. /*
  634.  *    Fill the hardware's `par' structure.
  635.  */
  636. static void cyberfb_get_par(struct cyberfb_par *par)
  637. {
  638. DPRINTK("ENTERn");
  639. if (current_par_valid) {
  640. *par = current_par;
  641. } else {
  642. Cyber_decode_var(&cyberfb_default, par);
  643. }
  644. DPRINTK("EXITn");
  645. }
  646. static void cyberfb_set_par(struct cyberfb_par *par)
  647. {
  648. DPRINTK("ENTERn");
  649. current_par = *par;
  650. current_par_valid = 1;
  651. DPRINTK("EXITn");
  652. }
  653. static void cyber_set_video(struct fb_var_screeninfo *var)
  654. {
  655. /* Load the video mode defined by the 'var' data */
  656. cv64_load_video_mode (var);
  657. #ifdef CYBERFBDEBUG
  658. DPRINTK("Register state after loading video moden");
  659. cv64_dump();
  660. #endif
  661. }
  662. static int do_fb_set_var(struct fb_var_screeninfo *var, int isactive)
  663. {
  664. int err, activate;
  665. struct cyberfb_par par;
  666. DPRINTK("ENTERn");
  667. if ((err = Cyber_decode_var(var, &par))) {
  668. DPRINTK("EXIT - decode_var failedn");
  669. return(err);
  670. }
  671. activate = var->activate;
  672. if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW && isactive)
  673. cyberfb_set_par(&par);
  674. Cyber_encode_var(var, &par);
  675. var->activate = activate;
  676. cyber_set_video(var);
  677. DPRINTK("EXITn");
  678. return 0;
  679. }
  680. static void do_install_cmap(int con, struct fb_info *info)
  681. {
  682. DPRINTK("ENTERn");
  683. if (con != currcon) {
  684. DPRINTK("EXIT - Not current consolen");
  685. return;
  686. }
  687. if (fb_display[con].cmap.len) {
  688. DPRINTK("Use console cmapn");
  689. fb_set_cmap(&fb_display[con].cmap, 1, Cyber_setcolreg, info);
  690. } else {
  691. DPRINTK("Use default cmapn");
  692. fb_set_cmap(fb_default_cmap(1<<fb_display[con].var.bits_per_pixel),
  693.     1, Cyber_setcolreg, info);
  694. }
  695. DPRINTK("EXITn");
  696. }
  697. /*
  698.  *    Get the Fixed Part of the Display
  699.  */
  700. static int cyberfb_get_fix(struct fb_fix_screeninfo *fix, int con,
  701.    struct fb_info *info)
  702. {
  703. struct cyberfb_par par;
  704. int error = 0;
  705. DPRINTK("ENTERn");
  706. if (con == -1) {
  707. cyberfb_get_par(&par);
  708. } else {
  709. error = Cyber_decode_var(&fb_display[con].var, &par);
  710. }
  711. DPRINTK("EXITn");
  712. return(error ? error : Cyber_encode_fix(fix, &par));
  713. }
  714. /*
  715.  *    Get the User Defined Part of the Display
  716.  */
  717. static int cyberfb_get_var(struct fb_var_screeninfo *var, int con,
  718.    struct fb_info *info)
  719. {
  720. struct cyberfb_par par;
  721. int error = 0;
  722. DPRINTK("ENTERn");
  723. if (con == -1) {
  724. cyberfb_get_par(&par);
  725. error = Cyber_encode_var(var, &par);
  726. disp.var = *var;   /* ++Andre: don't know if this is the right place */
  727. } else {
  728. *var = fb_display[con].var;
  729. }
  730. DPRINTK("EXITn");
  731. return(error);
  732. }
  733. static void cyberfb_set_disp(int con, struct fb_info *info)
  734. {
  735. struct fb_fix_screeninfo fix;
  736. struct display *display;
  737. DPRINTK("ENTERn");
  738. if (con >= 0)
  739. display = &fb_display[con];
  740. else
  741. display = &disp; /* used during initialization */
  742. cyberfb_get_fix(&fix, con, info);
  743. if (con == -1)
  744. con = 0;
  745. display->screen_base = (unsigned char *)CyberMem;
  746. display->visual = fix.visual;
  747. display->type = fix.type;
  748. display->type_aux = fix.type_aux;
  749. display->ypanstep = fix.ypanstep;
  750. display->ywrapstep = fix.ywrapstep;
  751. display->can_soft_blank = 1;
  752. display->inverse = Cyberfb_inverse;
  753. switch (display->var.bits_per_pixel) {
  754. #ifdef FBCON_HAS_CFB8
  755.     case 8:
  756. if (display->var.accel_flags & FB_ACCELF_TEXT) {
  757.     display->dispsw = &fbcon_cyber8;
  758. #warning FIXME: We should reinit the graphics engine here
  759. } else
  760.     display->dispsw = &fbcon_cfb8;
  761. break;
  762. #endif
  763. #ifdef FBCON_HAS_CFB16
  764.     case 16:
  765. display->dispsw = &fbcon_cfb16;
  766. break;
  767. #endif
  768.     default:
  769. display->dispsw = NULL;
  770. break;
  771. }
  772. DPRINTK("EXITn");
  773. }
  774. /*
  775.  *    Set the User Defined Part of the Display
  776.  */
  777. static int cyberfb_set_var(struct fb_var_screeninfo *var, int con,
  778.    struct fb_info *info)
  779. {
  780. int err, oldxres, oldyres, oldvxres, oldvyres, oldbpp, oldaccel;
  781. DPRINTK("ENTERn");
  782. if ((err = do_fb_set_var(var, con == currcon))) {
  783. DPRINTK("EXIT - do_fb_set_var failedn");
  784. return(err);
  785. }
  786. if ((var->activate & FB_ACTIVATE_MASK) == FB_ACTIVATE_NOW) {
  787. oldxres = fb_display[con].var.xres;
  788. oldyres = fb_display[con].var.yres;
  789. oldvxres = fb_display[con].var.xres_virtual;
  790. oldvyres = fb_display[con].var.yres_virtual;
  791. oldbpp = fb_display[con].var.bits_per_pixel;
  792. oldaccel = fb_display[con].var.accel_flags;
  793. fb_display[con].var = *var;
  794. if (oldxres != var->xres || oldyres != var->yres ||
  795.     oldvxres != var->xres_virtual ||
  796.     oldvyres != var->yres_virtual ||
  797.     oldbpp != var->bits_per_pixel ||
  798.     oldaccel != var->accel_flags) {
  799. cyberfb_set_disp(con, info);
  800. (*fb_info.changevar)(con);
  801. fb_alloc_cmap(&fb_display[con].cmap, 0, 0);
  802. do_install_cmap(con, info);
  803. }
  804. }
  805. var->activate = 0;
  806. DPRINTK("EXITn");
  807. return(0);
  808. }
  809. /*
  810.  *    Get the Colormap
  811.  */
  812. static int cyberfb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  813.     struct fb_info *info)
  814. {
  815. DPRINTK("ENTERn");
  816. if (con == currcon) { /* current console? */
  817. DPRINTK("EXIT - console is current consolen");
  818. return(fb_get_cmap(cmap, kspc, Cyber_getcolreg, info));
  819. } else if (fb_display[con].cmap.len) { /* non default colormap? */
  820. DPRINTK("Use console cmapn");
  821. fb_copy_cmap(&fb_display[con].cmap, cmap, kspc ? 0 : 2);
  822. } else {
  823. DPRINTK("Use default cmapn");
  824. fb_copy_cmap(fb_default_cmap(1<<fb_display[con].var.bits_per_pixel),
  825.      cmap, kspc ? 0 : 2);
  826. }
  827. DPRINTK("EXITn");
  828. return(0);
  829. }
  830. /*
  831.  *    Set the Colormap
  832.  */
  833. static int cyberfb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  834.     struct fb_info *info)
  835. {
  836. int err;
  837. DPRINTK("ENTERn");
  838. if (!fb_display[con].cmap.len) {       /* no colormap allocated? */
  839. if ((err = fb_alloc_cmap(&fb_display[con].cmap,
  840.  1<<fb_display[con].var.bits_per_pixel,
  841.  0))) {
  842. DPRINTK("EXIT - fb_alloc_cmap failedn");
  843. return(err);
  844. }
  845. }
  846. if (con == currcon) {  /* current console? */
  847. DPRINTK("EXIT - Current consolen");
  848. return(fb_set_cmap(cmap, kspc, Cyber_setcolreg, info));
  849. } else {
  850. fb_copy_cmap(cmap, &fb_display[con].cmap, kspc ? 0 : 1);
  851. }
  852. DPRINTK("EXITn");
  853. return(0);
  854. }
  855. static struct fb_ops cyberfb_ops = {
  856. owner: THIS_MODULE,
  857. fb_get_fix: cyberfb_get_fix,
  858. fb_get_var: cyberfb_get_var,
  859. fb_set_var: cyberfb_set_var,
  860. fb_get_cmap: cyberfb_get_cmap,
  861. fb_set_cmap: cyberfb_set_cmap,
  862. };
  863. int __init cyberfb_setup(char *options)
  864. {
  865. char *this_opt;
  866. DPRINTK("ENTERn");
  867. fb_info.fontname[0] = '';
  868. if (!options || !*options) {
  869. DPRINTK("EXIT - no optionsn");
  870. return 0;
  871. }
  872. while ((this_opt = strsep(&options, ",")) != NULL) {
  873. if (!*this_opt)
  874. continue;
  875. if (!strcmp(this_opt, "inverse")) {
  876. Cyberfb_inverse = 1;
  877. fb_invert_cmaps();
  878. } else if (!strncmp(this_opt, "font:", 5)) {
  879. strcpy(fb_info.fontname, this_opt+5);
  880. } else if (!strcmp (this_opt, "cyber8")) {
  881. cyberfb_default = cyberfb_predefined[CYBER8_DEFMODE].var;
  882. cyberfb_usermode = 1;
  883. } else if (!strcmp (this_opt, "cyber16")) {
  884. cyberfb_default = cyberfb_predefined[CYBER16_DEFMODE].var;
  885. cyberfb_usermode = 1;
  886. } else get_video_mode(this_opt);
  887. }
  888. DPRINTK("default mode: xres=%d, yres=%d, bpp=%dn",
  889. cyberfb_default.xres,
  890. cyberfb_default.yres,
  891. cyberfb_default.bits_per_pixel);
  892. DPRINTK("EXITn");
  893. return 0;
  894. }
  895. /*
  896.  *    Initialization
  897.  */
  898. int __init cyberfb_init(void)
  899. {
  900. unsigned long board_addr, board_size;
  901. struct cyberfb_par par;
  902. struct zorro_dev *z = NULL;
  903. DPRINTK("ENTERn");
  904. while ((z = zorro_find_device(ZORRO_PROD_PHASE5_CYBERVISION64, z))) {
  905.     board_addr = z->resource.start;
  906.     board_size = z->resource.end-z->resource.start+1;
  907.     CyberMem_phys = board_addr + 0x01400000;
  908.     CyberRegs_phys = CyberMem_phys + 0x00c00000;
  909.     if (!request_mem_region(CyberRegs_phys, 0x10000, "S3 Trio64"))
  910. continue;
  911.     if (!request_mem_region(CyberMem_phys, 0x400000, "RAM")) {
  912. release_mem_region(CyberRegs_phys, 0x10000);
  913. continue;
  914.     }
  915.     DPRINTK("board_addr=%08lxn", board_addr);
  916.     DPRINTK("board_size=%08lxn", board_size);
  917.     CyberBase = ioremap(board_addr, board_size);
  918.     CyberRegs = CyberBase + 0x02000000;
  919.     CyberMem = CyberBase + 0x01400000;
  920.     DPRINTK("CyberBase=%08lx CyberRegs=%08lx CyberMem=%08lxn",
  921.     CyberBase, (long unsigned int)CyberRegs, CyberMem);
  922. #ifdef CYBERFBDEBUG
  923.     DPRINTK("Register state just after mapping memoryn");
  924.     cv64_dump();
  925. #endif
  926.     strcpy(fb_info.modename, cyberfb_name);
  927.     fb_info.changevar = NULL;
  928.     fb_info.node = -1;
  929.     fb_info.fbops = &cyberfb_ops;
  930.     fb_info.disp = &disp;
  931.     fb_info.switch_con = &Cyberfb_switch;
  932.     fb_info.updatevar = &Cyberfb_updatevar;
  933.     fb_info.blank = &Cyberfb_blank;
  934.     Cyber_init();
  935.     /* ++Andre: set cyberfb default mode */
  936.     if (!cyberfb_usermode) {
  937.     cyberfb_default = cyberfb_predefined[CYBER8_DEFMODE].var;
  938.     DPRINTK("Use default cyber8 moden");
  939.     }
  940.     Cyber_decode_var(&cyberfb_default, &par);
  941.     Cyber_encode_var(&cyberfb_default, &par);
  942.     do_fb_set_var(&cyberfb_default, 1);
  943.     cyberfb_get_var(&fb_display[0].var, -1, &fb_info);
  944.     cyberfb_set_disp(-1, &fb_info);
  945.     do_install_cmap(0, &fb_info);
  946.     if (register_framebuffer(&fb_info) < 0) {
  947.     DPRINTK("EXIT - register_framebuffer failedn");
  948.     release_mem_region(CyberMem_phys, 0x400000);
  949.     release_mem_region(CyberRegs_phys, 0x10000);
  950.     return -EINVAL;
  951.     }
  952.     printk("fb%d: %s frame buffer device, using %ldK of video memoryn",
  953.    GET_FB_IDX(fb_info.node), fb_info.modename, CyberSize>>10);
  954.     /* TODO: This driver cannot be unloaded yet */
  955.     MOD_INC_USE_COUNT;
  956.     DPRINTK("EXITn");
  957.     return 0;
  958. }
  959. return -ENXIO;
  960. }
  961. static int Cyberfb_switch(int con, struct fb_info *info)
  962. {
  963.         DPRINTK("ENTERn");
  964. /* Do we have to save the colormap? */
  965. if (fb_display[currcon].cmap.len) {
  966. fb_get_cmap(&fb_display[currcon].cmap, 1, Cyber_getcolreg,
  967.     info);
  968. }
  969. do_fb_set_var(&fb_display[con].var, 1);
  970. currcon = con;
  971. /* Install new colormap */
  972. do_install_cmap(con, info);
  973. DPRINTK("EXITn");
  974. return(0);
  975. }
  976. /*
  977.  *    Update the `var' structure (called by fbcon.c)
  978.  *
  979.  *    This call looks only at yoffset and the FB_VMODE_YWRAP flag in `var'.
  980.  *    Since it's called by a kernel driver, no range checking is done.
  981.  */
  982. static int Cyberfb_updatevar(int con, struct fb_info *info)
  983. {
  984. DPRINTK("Enter - Exitn");
  985. return(0);
  986. }
  987. /*
  988.  *    Get a Video Mode
  989.  */
  990. static int __init get_video_mode(const char *name)
  991. {
  992. int i;
  993. DPRINTK("ENTERn");
  994. for (i = 0; i < NUM_TOTAL_MODES; i++) {
  995. if (!strcmp(name, cyberfb_predefined[i].name)) {
  996. cyberfb_default = cyberfb_predefined[i].var;
  997. cyberfb_usermode = 1;
  998. DPRINTK("EXIT - Matched predefined moden");
  999. return(i);
  1000. }
  1001. }
  1002. return(0);
  1003. }
  1004. /*
  1005.  *    Text console acceleration
  1006.  */
  1007. #ifdef FBCON_HAS_CFB8
  1008. static void fbcon_cyber8_bmove(struct display *p, int sy, int sx, int dy,
  1009.        int dx, int height, int width)
  1010. {
  1011. DPRINTK("ENTERn");
  1012. sx *= 8; dx *= 8; width *= 8;
  1013. Cyber_BitBLT((u_short)sx, (u_short)(sy*fontheight(p)), (u_short)dx,
  1014.      (u_short)(dy*fontheight(p)), (u_short)width,
  1015.      (u_short)(height*fontheight(p)), (u_short)S3_NEW);
  1016. DPRINTK("EXITn");
  1017. }
  1018. static void fbcon_cyber8_clear(struct vc_data *conp, struct display *p, int sy,
  1019.        int sx, int height, int width)
  1020. {
  1021. unsigned char bg;
  1022. DPRINTK("ENTERn");
  1023. sx *= 8; width *= 8;
  1024. bg = attr_bgcol_ec(p,conp);
  1025. Cyber_RectFill((u_short)sx,
  1026.        (u_short)(sy*fontheight(p)),
  1027.        (u_short)width,
  1028.        (u_short)(height*fontheight(p)),
  1029.        (u_short)S3_NEW,
  1030.        (u_short)bg);
  1031. DPRINTK("EXITn");
  1032. }
  1033. static void fbcon_cyber8_putc(struct vc_data *conp, struct display *p, int c,
  1034.       int yy, int xx)
  1035. {
  1036. DPRINTK("ENTERn");
  1037. Cyber_WaitBlit();
  1038. fbcon_cfb8_putc(conp, p, c, yy, xx);
  1039. DPRINTK("EXITn");
  1040. }
  1041. static void fbcon_cyber8_putcs(struct vc_data *conp, struct display *p,
  1042.        const unsigned short *s, int count,
  1043.        int yy, int xx)
  1044. {
  1045. DPRINTK("ENTERn");
  1046. Cyber_WaitBlit();
  1047. fbcon_cfb8_putcs(conp, p, s, count, yy, xx);
  1048. DPRINTK("EXITn");
  1049. }
  1050. static void fbcon_cyber8_revc(struct display *p, int xx, int yy)
  1051. {
  1052. DPRINTK("ENTERn");
  1053. Cyber_WaitBlit();
  1054. fbcon_cfb8_revc(p, xx, yy);
  1055. DPRINTK("EXITn");
  1056. }
  1057. static struct display_switch fbcon_cyber8 = {
  1058. setup: fbcon_cfb8_setup,
  1059. bmove: fbcon_cyber8_bmove,
  1060. clear: fbcon_cyber8_clear,
  1061. putc: fbcon_cyber8_putc,
  1062. putcs: fbcon_cyber8_putcs,
  1063. revc: fbcon_cyber8_revc,
  1064. clear_margins: fbcon_cfb8_clear_margins,
  1065. fontwidthmask: FONTWIDTH(8)
  1066. };
  1067. #endif
  1068. #ifdef MODULE
  1069. MODULE_LICENSE("GPL");
  1070. int init_module(void)
  1071. {
  1072. return cyberfb_init();
  1073. }
  1074. void cleanup_module(void)
  1075. {
  1076. /* Not reached because the usecount will never be
  1077.    decremented to zero */
  1078. unregister_framebuffer(&fb_info);
  1079. /* TODO: clean up ... */
  1080. }
  1081. #endif /* MODULE */
  1082. /*
  1083.  *
  1084.  * Low level initialization routines for the CyberVision64 graphics card
  1085.  *
  1086.  * Most of the following code is from cvision_core.c
  1087.  *
  1088.  */
  1089. #define MAXPIXELCLOCK 135000000 /* safety */
  1090. #ifdef CV_AGGRESSIVE_TIMING
  1091. long cv64_memclk = 55000000;
  1092. #else
  1093. long cv64_memclk = 50000000;
  1094. #endif
  1095. /*********************/
  1096. static unsigned char clocks[]={
  1097.   0x13, 0x61, 0x6b, 0x6d, 0x51, 0x69, 0x54, 0x69,
  1098.   0x4f, 0x68, 0x6b, 0x6b, 0x18, 0x61, 0x7b, 0x6c,
  1099.   0x51, 0x67, 0x24, 0x62, 0x56, 0x67, 0x77, 0x6a,
  1100.   0x1d, 0x61, 0x53, 0x66, 0x6b, 0x68, 0x79, 0x69,
  1101.   0x7c, 0x69, 0x7f, 0x69, 0x22, 0x61, 0x54, 0x65,
  1102.   0x56, 0x65, 0x58, 0x65, 0x67, 0x66, 0x41, 0x63,
  1103.   0x27, 0x61, 0x13, 0x41, 0x37, 0x62, 0x6b, 0x4d,
  1104.   0x23, 0x43, 0x51, 0x49, 0x79, 0x66, 0x54, 0x49,
  1105.   0x7d, 0x66, 0x34, 0x56, 0x4f, 0x63, 0x1f, 0x42,
  1106.   0x6b, 0x4b, 0x7e, 0x4d, 0x18, 0x41, 0x2a, 0x43,
  1107.   0x7b, 0x4c, 0x74, 0x4b, 0x51, 0x47, 0x65, 0x49,
  1108.   0x24, 0x42, 0x68, 0x49, 0x56, 0x47, 0x75, 0x4a,
  1109.   0x77, 0x4a, 0x31, 0x43, 0x1d, 0x41, 0x71, 0x49,
  1110.   0x53, 0x46, 0x29, 0x42, 0x6b, 0x48, 0x1f, 0x41,
  1111.   0x79, 0x49, 0x6f, 0x48, 0x7c, 0x49, 0x38, 0x43,
  1112.   0x7f, 0x49, 0x5d, 0x46, 0x22, 0x41, 0x53, 0x45,
  1113.   0x54, 0x45, 0x55, 0x45, 0x56, 0x45, 0x57, 0x45,
  1114.   0x58, 0x45, 0x25, 0x41, 0x67, 0x46, 0x5b, 0x45,
  1115.   0x41, 0x43, 0x78, 0x47, 0x27, 0x41, 0x51, 0x44,
  1116.   0x13, 0x21, 0x7d, 0x47, 0x37, 0x42, 0x71, 0x46,
  1117.   0x6b, 0x2d, 0x14, 0x21, 0x23, 0x23, 0x7d, 0x2f,
  1118.   0x51, 0x29, 0x61, 0x2b, 0x79, 0x46, 0x1d, 0x22,
  1119.   0x54, 0x29, 0x45, 0x27, 0x7d, 0x46, 0x7f, 0x46,
  1120.   0x4f, 0x43, 0x2f, 0x41, 0x1f, 0x22, 0x6a, 0x2b,
  1121.   0x6b, 0x2b, 0x5b, 0x29, 0x7e, 0x2d, 0x65, 0x44,
  1122.   0x18, 0x21, 0x5e, 0x29, 0x2a, 0x23, 0x45, 0x26,
  1123.   0x7b, 0x2c, 0x19, 0x21, 0x74, 0x2b, 0x75, 0x2b,
  1124.   0x51, 0x27, 0x3f, 0x25, 0x65, 0x29, 0x40, 0x25,
  1125.   0x24, 0x22, 0x41, 0x25, 0x68, 0x29, 0x42, 0x25,
  1126.   0x56, 0x27, 0x7e, 0x2b, 0x75, 0x2a, 0x1c, 0x21,
  1127.   0x77, 0x2a, 0x4f, 0x26, 0x31, 0x23, 0x6f, 0x29,
  1128.   0x1d, 0x21, 0x32, 0x23, 0x71, 0x29, 0x72, 0x29,
  1129.   0x53, 0x26, 0x69, 0x28, 0x29, 0x22, 0x75, 0x29,
  1130.   0x6b, 0x28, 0x1f, 0x21, 0x1f, 0x21, 0x6d, 0x28,
  1131.   0x79, 0x29, 0x2b, 0x22, 0x6f, 0x28, 0x59, 0x26,
  1132.   0x7c, 0x29, 0x7d, 0x29, 0x38, 0x23, 0x21, 0x21,
  1133.   0x7f, 0x29, 0x39, 0x23, 0x5d, 0x26, 0x75, 0x28,
  1134.   0x22, 0x21, 0x77, 0x28, 0x53, 0x25, 0x6c, 0x27,
  1135.   0x54, 0x25, 0x61, 0x26, 0x55, 0x25, 0x30, 0x22,
  1136.   0x56, 0x25, 0x63, 0x26, 0x57, 0x25, 0x71, 0x27,
  1137.   0x58, 0x25, 0x7f, 0x28, 0x25, 0x21, 0x74, 0x27,
  1138.   0x67, 0x26, 0x40, 0x23, 0x5b, 0x25, 0x26, 0x21,
  1139.   0x41, 0x23, 0x34, 0x22, 0x78, 0x27, 0x6b, 0x26,
  1140.   0x27, 0x21, 0x35, 0x22, 0x51, 0x24, 0x7b, 0x27,
  1141.   0x13, 0x1,  0x13, 0x1,  0x7d, 0x27, 0x4c, 0x9,
  1142.   0x37, 0x22, 0x5b, 0xb,  0x71, 0x26, 0x5c, 0xb,
  1143.   0x6b, 0xd,  0x47, 0x23, 0x14, 0x1,  0x4f, 0x9,
  1144.   0x23, 0x3,  0x75, 0x26, 0x7d, 0xf,  0x1c, 0x2,
  1145.   0x51, 0x9,  0x59, 0x24, 0x61, 0xb,  0x69, 0x25,
  1146.   0x79, 0x26, 0x34, 0x5,  0x1d, 0x2,  0x6b, 0x25,
  1147.   0x54, 0x9,  0x35, 0x5,  0x45, 0x7,  0x6d, 0x25,
  1148.   0x7d, 0x26, 0x16, 0x1,  0x7f, 0x26, 0x77, 0xd,
  1149.   0x4f, 0x23, 0x78, 0xd,  0x2f, 0x21, 0x27, 0x3,
  1150.   0x1f, 0x2,  0x59, 0x9,  0x6a, 0xb,  0x73, 0x25,
  1151.   0x6b, 0xb,  0x63, 0x24, 0x5b, 0x9,  0x20, 0x2,
  1152.   0x7e, 0xd,  0x4b, 0x7,  0x65, 0x24, 0x43, 0x22,
  1153.   0x18, 0x1,  0x6f, 0xb,  0x5e, 0x9,  0x70, 0xb,
  1154.   0x2a, 0x3,  0x33, 0x4,  0x45, 0x6,  0x60, 0x9,
  1155.   0x7b, 0xc,  0x19, 0x1,  0x19, 0x1,  0x7d, 0xc,
  1156.   0x74, 0xb,  0x50, 0x7,  0x75, 0xb,  0x63, 0x9,
  1157.   0x51, 0x7,  0x23, 0x2,  0x3f, 0x5,  0x1a, 0x1,
  1158.   0x65, 0x9,  0x2d, 0x3,  0x40, 0x5,  0x0,  0x0,
  1159. };
  1160. /* Console colors */
  1161. unsigned char cvconscolors[16][3] = { /* background, foreground, hilite */
  1162.   /*  R     G     B  */
  1163.   {0x30, 0x30, 0x30},
  1164.   {0x00, 0x00, 0x00},
  1165.   {0x80, 0x00, 0x00},
  1166.   {0x00, 0x80, 0x00},
  1167.   {0x00, 0x00, 0x80},
  1168.   {0x80, 0x80, 0x00},
  1169.   {0x00, 0x80, 0x80},
  1170.   {0x80, 0x00, 0x80},
  1171.   {0xff, 0xff, 0xff},
  1172.   {0x40, 0x40, 0x40},
  1173.   {0xff, 0x00, 0x00},
  1174.   {0x00, 0xff, 0x00},
  1175.   {0x00, 0x00, 0xff},
  1176.   {0xff, 0xff, 0x00},
  1177.   {0x00, 0xff, 0xff},
  1178.   {0x00, 0x00, 0xff}
  1179. };
  1180. /* -------------------- Hardware specific routines ------------------------- */
  1181. /* Read Attribute Controller Register=idx */
  1182. inline unsigned char RAttr (volatile unsigned char *regs, short idx)
  1183. {
  1184. wb_64 (regs, ACT_ADDRESS_W, idx);
  1185. mb();
  1186. udelay(100);
  1187. return (rb_64(regs, ACT_ADDRESS_R));
  1188. }
  1189. /* Read Sequencer Register=idx */
  1190. inline unsigned char RSeq (volatile unsigned char *regs, short idx)
  1191. {
  1192. wb_64 (regs, SEQ_ADDRESS, idx);
  1193. mb();
  1194. return (rb_64(regs, SEQ_ADDRESS_R));
  1195. }
  1196. /* Read CRT Controller Register=idx */
  1197. inline unsigned char RCrt (volatile unsigned char *regs, short idx)
  1198. {
  1199. wb_64 (regs, CRT_ADDRESS, idx);
  1200. mb();
  1201. return (rb_64(regs, CRT_ADDRESS_R));
  1202. }
  1203. /* Read Graphics Controller Register=idx */
  1204. inline unsigned char RGfx (volatile unsigned char *regs, short idx)
  1205. {
  1206. wb_64 (regs, GCT_ADDRESS, idx);
  1207. mb();
  1208. return (rb_64(regs, GCT_ADDRESS_R));
  1209. }
  1210. /*
  1211.  * Special wakeup/passthrough registers on graphics boards
  1212.  */
  1213. inline void cv64_write_port (unsigned short bits,
  1214.      volatile unsigned char *base)
  1215. {
  1216. volatile unsigned char *addr;
  1217. static unsigned char cvportbits = 0; /* Mirror port bits here */
  1218. DPRINTK("ENTERn");
  1219. addr = base + 0x40001;
  1220. if (bits & 0x8000) {
  1221. cvportbits |= bits & 0xff; /* Set bits */
  1222. DPRINTK("Set bits: %04xn", bits);
  1223. } else {
  1224. bits = bits & 0xff;
  1225. bits = (~bits) & 0xff;
  1226. cvportbits &= bits; /* Clear bits */
  1227. DPRINTK("Clear bits: %04xn", bits);
  1228. }
  1229. *addr = cvportbits;
  1230. DPRINTK("EXITn");
  1231. }
  1232. /*
  1233.  * Monitor switch on CyberVision board
  1234.  *
  1235.  *  toggle:
  1236.  *    0 = CyberVision Signal
  1237.  *    1 = Amiga Signal
  1238.  *  board = board addr
  1239.  *
  1240.  */
  1241. inline void cvscreen (int toggle, volatile unsigned char *board)
  1242. {
  1243. DPRINTK("ENTERn");
  1244. if (toggle == 1) {
  1245. DPRINTK("Show Amiga videon");
  1246. cv64_write_port (0x10, board);
  1247. } else {
  1248. DPRINTK("Show CyberVision videon");
  1249. cv64_write_port (0x8010, board);
  1250. }
  1251. DPRINTK("EXITn");
  1252. }
  1253. /* Control screen display */
  1254. /* toggle: 0 = on, 1 = off */
  1255. /* board = registerbase */
  1256. inline void gfx_on_off(int toggle, volatile unsigned char *regs)
  1257. {
  1258. int r;
  1259. DPRINTK("ENTERn");
  1260. toggle &= 0x1;
  1261. toggle = toggle << 5;
  1262. DPRINTK("Turn display %sn", (toggle ? "off" : "on"));
  1263. r = (int) RSeq(regs, SEQ_ID_CLOCKING_MODE);
  1264. r &= 0xdf; /* Set bit 5 to 0 */
  1265. WSeq (regs, SEQ_ID_CLOCKING_MODE, r | toggle);
  1266. DPRINTK("EXITn");
  1267. }
  1268. /*
  1269.  * Computes M, N, and R values from
  1270.  * given input frequency. It uses a table of
  1271.  * precomputed values, to keep CPU time low.
  1272.  *
  1273.  * The return value consist of:
  1274.  * lower byte:  Bits 4-0: N Divider Value
  1275.  *         Bits 5-6: R Value          for e.g. SR10 or SR12
  1276.  * higher byte: Bits 0-6: M divider value  for e.g. SR11 or SR13
  1277.  */
  1278. static unsigned short cv64_compute_clock(unsigned long freq)
  1279. {
  1280. static unsigned char *mnr, *save; /* M, N + R vals */
  1281. unsigned long work_freq, r;
  1282. unsigned short erg;
  1283. long diff, d2;
  1284. DPRINTK("ENTERn");
  1285. if (freq < 12500000 || freq > MAXPIXELCLOCK) {
  1286. printk("CV64 driver: Illegal clock frequency %ld, using 25MHzn",
  1287.        freq);
  1288. freq = 25000000;
  1289. }
  1290. DPRINTK("Freq = %ldn", freq);
  1291. mnr = clocks; /* there the vals are stored */
  1292. d2 = 0x7fffffff;
  1293. while (*mnr) { /* mnr vals are 0-terminated */
  1294. work_freq = (0x37EE * (mnr[0] + 2)) / ((mnr[1] & 0x1F) + 2);
  1295. r = (mnr[1] >> 5) & 0x03;
  1296. if (r != 0) {
  1297. work_freq = work_freq >> r; /* r is the freq divider */
  1298. }
  1299. work_freq *= 0x3E8; /* 2nd part of OSC */
  1300. diff = abs(freq - work_freq);
  1301. if (d2 >= diff) {
  1302. d2 = diff;
  1303. /* In save are the vals for minimal diff */
  1304. save = mnr;
  1305. }
  1306. mnr += 2;
  1307. }
  1308. erg = *((unsigned short *)save);
  1309. DPRINTK("EXITn");
  1310. return (erg);
  1311. }
  1312. static int cv_has_4mb (volatile unsigned char *fb)
  1313. {
  1314. volatile unsigned long *tr, *tw;
  1315. DPRINTK("ENTERn");
  1316. /* write patterns in memory and test if they can be read */
  1317. tw = (volatile unsigned long *) fb;
  1318. tr = (volatile unsigned long *) (fb + 0x02000000);
  1319. *tw = 0x87654321;
  1320. if (*tr != 0x87654321) {
  1321. DPRINTK("EXIT - <4MBn");
  1322. return (0);
  1323. }
  1324. /* upper memory region */
  1325. tw = (volatile unsigned long *) (fb + 0x00200000);
  1326. tr = (volatile unsigned long *) (fb + 0x02200000);
  1327. *tw = 0x87654321;
  1328. if (*tr != 0x87654321) {
  1329. DPRINTK("EXIT - <4MBn");
  1330. return (0);
  1331. }
  1332. *tw = 0xAAAAAAAA;
  1333. if (*tr != 0xAAAAAAAA) {
  1334. DPRINTK("EXIT - <4MBn");
  1335. return (0);
  1336. }
  1337. *tw = 0x55555555;
  1338. if (*tr != 0x55555555) {
  1339. DPRINTK("EXIT - <4MBn");
  1340. return (0);
  1341. }
  1342. DPRINTK("EXITn");
  1343. return (1);
  1344. }
  1345. static void cv64_board_init (void)
  1346. {
  1347. volatile unsigned char *regs = CyberRegs;
  1348. int i;
  1349. unsigned int clockpar;
  1350. unsigned char test;
  1351. DPRINTK("ENTERn");
  1352. /*
  1353.  * Special CyberVision 64 board operations
  1354.  */
  1355. /* Reset board */
  1356. for (i = 0; i < 6; i++) {
  1357. cv64_write_port (0xff, CyberBase);
  1358. }
  1359. /* Return to operational mode */
  1360. cv64_write_port (0x8004, CyberBase);
  1361. /*
  1362.  * Generic (?) S3 chip wakeup
  1363.  */
  1364. /* Disable I/O & memory decoders, video in setup mode */
  1365. wb_64 (regs, SREG_VIDEO_SUBS_ENABLE, 0x10);
  1366. /* Video responds to cmds, addrs & data */
  1367. wb_64 (regs, SREG_OPTION_SELECT, 0x1);
  1368. /* Enable I/O & memory decoders, video in operational mode */
  1369. wb_64 (regs, SREG_VIDEO_SUBS_ENABLE, 0x8);
  1370. /* VGA color emulation, enable cpu access to display mem */ 
  1371. wb_64 (regs, GREG_MISC_OUTPUT_W, 0x03);
  1372. /* Unlock S3 VGA regs */
  1373. WCrt (regs, CRT_ID_REGISTER_LOCK_1, 0x48); 
  1374. /* Unlock system control & extension registers */
  1375. WCrt (regs, CRT_ID_REGISTER_LOCK_2, 0xA5);
  1376. /* GRF - Enable interrupts */
  1377. /* Enable enhanced regs access, Ready cntl 0 wait states */
  1378. test = RCrt (regs, CRT_ID_SYSTEM_CONFIG);
  1379. test = test | 0x01; /* enable enhanced register access */
  1380. test = test & 0xEF; /* clear bit 4, 0 wait state */
  1381. WCrt (regs, CRT_ID_SYSTEM_CONFIG, test);
  1382. /*
  1383.  * bit 0=1: Enable enhaced mode functions
  1384.  * bit 2=0: Enhanced mode 8+ bits/pixel
  1385.  * bit 4=1: Enable linear addressing
  1386.  * bit 5=1: Enable MMIO
  1387.  */
  1388. wb_64 (regs, ECR_ADV_FUNC_CNTL, 0x31);
  1389. /*
  1390.  * bit 0=1: Color emulation
  1391.  * bit 1=1: Enable CPU access to display memory
  1392.  * bit 5=1: Select high 64K memory page
  1393.  */
  1394. /* GRF - 0xE3 */
  1395. wb_64 (regs, GREG_MISC_OUTPUT_W, 0x23);
  1396. /* Cpu base addr */
  1397. WCrt (regs, CRT_ID_EXT_SYS_CNTL_4, 0x0);
  1398. /* Reset. This does nothing on Trio, but standard VGA practice */
  1399. /* WSeq (CyberRegs, SEQ_ID_RESET, 0x03); */
  1400. /* Character clocks 8 dots wide */
  1401. WSeq (regs, SEQ_ID_CLOCKING_MODE, 0x01);
  1402. /* Enable cpu write to all color planes */
  1403. WSeq (regs, SEQ_ID_MAP_MASK, 0x0F);
  1404. /* Font table in 1st 8k of plane 2, font A=B disables swtich */
  1405. WSeq (regs, SEQ_ID_CHAR_MAP_SELECT, 0x0);
  1406. /* Allow mem access to 256kb */
  1407. WSeq (regs, SEQ_ID_MEMORY_MODE, 0x2);
  1408. /* Unlock S3 extensions to VGA Sequencer regs */
  1409. WSeq (regs, SEQ_ID_UNLOCK_EXT, 0x6);
  1410. /* Enable 4MB fast page mode */
  1411. test = RSeq (regs, SEQ_ID_BUS_REQ_CNTL);
  1412. test = test | 1 << 6;
  1413. WSeq (regs, SEQ_ID_BUS_REQ_CNTL, test);
  1414. /* Faster LUT write: 1 DCLK LUT write cycle, RAMDAC clk doubled */
  1415. WSeq (regs, SEQ_ID_RAMDAC_CNTL, 0xC0);
  1416. /* Clear immediate clock load bit */
  1417. test = RSeq (regs, SEQ_ID_CLKSYN_CNTL_2);
  1418. test = test & 0xDF;
  1419. /* If > 55MHz, enable 2 cycle memory write */
  1420. if (cv64_memclk >= 55000000) {
  1421. test |= 0x80;
  1422. }
  1423. WSeq (regs, SEQ_ID_CLKSYN_CNTL_2, test);
  1424. /* Set MCLK value */
  1425. clockpar = cv64_compute_clock (cv64_memclk);
  1426. test = (clockpar & 0xFF00) >> 8;
  1427. WSeq (regs, SEQ_ID_MCLK_HI, test);
  1428. test = clockpar & 0xFF;
  1429. WSeq (regs, SEQ_ID_MCLK_LO, test);
  1430. /* Chip rev specific: Not in my Trio manual!!! */
  1431. if (RCrt (regs, CRT_ID_REVISION) == 0x10)
  1432. WSeq (regs, SEQ_ID_MORE_MAGIC, test);
  1433. /* We now load an 25 MHz, 31kHz, 640x480 standard VGA Mode. */
  1434. /* Set DCLK value */
  1435. WSeq (regs, SEQ_ID_DCLK_HI, 0x13);
  1436. WSeq (regs, SEQ_ID_DCLK_LO, 0x41);
  1437. /* Load DCLK (and MCLK?) immediately */
  1438. test = RSeq (regs, SEQ_ID_CLKSYN_CNTL_2);
  1439. test = test | 0x22;
  1440. WSeq (regs, SEQ_ID_CLKSYN_CNTL_2, test);
  1441. /* Enable loading of DCLK */
  1442. test = rb_64(regs, GREG_MISC_OUTPUT_R);
  1443. test = test | 0x0C;
  1444. wb_64 (regs, GREG_MISC_OUTPUT_W, test);
  1445. /* Turn off immediate xCLK load */
  1446. WSeq (regs, SEQ_ID_CLKSYN_CNTL_2, 0x2);
  1447. /* Horizontal character clock counts */
  1448. /* 8 LSB of 9 bits = total line - 5 */
  1449. WCrt (regs, CRT_ID_HOR_TOTAL, 0x5F);
  1450. /* Active display line */
  1451. WCrt (regs, CRT_ID_HOR_DISP_ENA_END, 0x4F);
  1452. /* Blank assertion start */
  1453. WCrt (regs, CRT_ID_START_HOR_BLANK, 0x50);
  1454. /* Blank assertion end */
  1455. WCrt (regs, CRT_ID_END_HOR_BLANK, 0x82);
  1456. /* HSYNC assertion start */
  1457. WCrt (regs, CRT_ID_START_HOR_RETR, 0x54);
  1458. /* HSYNC assertion end */
  1459. WCrt (regs, CRT_ID_END_HOR_RETR, 0x80);
  1460. WCrt (regs, CRT_ID_VER_TOTAL, 0xBF);
  1461. WCrt (regs, CRT_ID_OVERFLOW, 0x1F);
  1462. WCrt (regs, CRT_ID_PRESET_ROW_SCAN, 0x0);
  1463. WCrt (regs, CRT_ID_MAX_SCAN_LINE, 0x40);
  1464. WCrt (regs, CRT_ID_CURSOR_START, 0x00);
  1465. WCrt (regs, CRT_ID_CURSOR_END, 0x00);
  1466. WCrt (regs, CRT_ID_START_ADDR_HIGH, 0x00);
  1467. WCrt (regs, CRT_ID_START_ADDR_LOW, 0x00);
  1468. WCrt (regs, CRT_ID_CURSOR_LOC_HIGH, 0x00);
  1469. WCrt (regs, CRT_ID_CURSOR_LOC_LOW, 0x00);
  1470. WCrt (regs, CRT_ID_START_VER_RETR, 0x9C);
  1471. WCrt (regs, CRT_ID_END_VER_RETR, 0x0E);
  1472. WCrt (regs, CRT_ID_VER_DISP_ENA_END, 0x8F);
  1473. WCrt (regs, CRT_ID_SCREEN_OFFSET, 0x50);
  1474. WCrt (regs, CRT_ID_UNDERLINE_LOC, 0x00);
  1475. WCrt (regs, CRT_ID_START_VER_BLANK, 0x96);
  1476. WCrt (regs, CRT_ID_END_VER_BLANK, 0xB9);
  1477. WCrt (regs, CRT_ID_MODE_CONTROL, 0xE3);
  1478. WCrt (regs, CRT_ID_LINE_COMPARE, 0xFF);
  1479. WCrt (regs, CRT_ID_BACKWAD_COMP_3, 0x10); /* FIFO enabled */
  1480. WCrt (regs, CRT_ID_MISC_1, 0x35);
  1481. WCrt (regs, CRT_ID_DISPLAY_FIFO, 0x5A);
  1482. WCrt (regs, CRT_ID_EXT_MEM_CNTL_2, 0x70);
  1483. WCrt (regs, CRT_ID_LAW_POS_LO, 0x40);
  1484. WCrt (regs, CRT_ID_EXT_MEM_CNTL_3, 0xFF);
  1485. WGfx (regs, GCT_ID_SET_RESET, 0x0);
  1486. WGfx (regs, GCT_ID_ENABLE_SET_RESET, 0x0);
  1487. WGfx (regs, GCT_ID_COLOR_COMPARE, 0x0);
  1488. WGfx (regs, GCT_ID_DATA_ROTATE, 0x0);
  1489. WGfx (regs, GCT_ID_READ_MAP_SELECT, 0x0);
  1490. WGfx (regs, GCT_ID_GRAPHICS_MODE, 0x40);
  1491. WGfx (regs, GCT_ID_MISC, 0x01);
  1492. WGfx (regs, GCT_ID_COLOR_XCARE, 0x0F);
  1493. WGfx (regs, GCT_ID_BITMASK, 0xFF);
  1494. /* Colors for text mode */
  1495. for (i = 0; i < 0xf; i++)
  1496. WAttr (regs, i, i);
  1497. WAttr (regs, ACT_ID_ATTR_MODE_CNTL, 0x41);
  1498. WAttr (regs, ACT_ID_OVERSCAN_COLOR, 0x01);
  1499. WAttr (regs, ACT_ID_COLOR_PLANE_ENA, 0x0F);
  1500. WAttr (regs, ACT_ID_HOR_PEL_PANNING, 0x0);
  1501. WAttr (regs, ACT_ID_COLOR_SELECT, 0x0);
  1502. wb_64 (regs, VDAC_MASK, 0xFF);
  1503. *((unsigned long *) (regs + ECR_FRGD_COLOR)) = 0xFF;
  1504. *((unsigned long *) (regs + ECR_BKGD_COLOR)) = 0;
  1505. /* Colors initially set to grayscale */
  1506. wb_64 (regs, VDAC_ADDRESS_W, 0);
  1507. for (i = 255; i >= 0; i--) {
  1508. wb_64(regs, VDAC_DATA, i);
  1509. wb_64(regs, VDAC_DATA, i);
  1510. wb_64(regs, VDAC_DATA, i);
  1511. }
  1512. /* GFx hardware cursor off */
  1513. WCrt (regs, CRT_ID_HWGC_MODE, 0x00);
  1514. /* Set first to 4MB, so test will work */
  1515. WCrt (regs, CRT_ID_LAW_CNTL, 0x13);
  1516. /* Find "correct" size of fbmem of Z3 board */
  1517. if (cv_has_4mb (CyberMem)) {
  1518. CyberSize = 1024 * 1024 * 4;
  1519. WCrt (regs, CRT_ID_LAW_CNTL, 0x13);
  1520. DPRINTK("4MB boardn");
  1521. } else {
  1522. CyberSize = 1024 * 1024 * 2;
  1523. WCrt (regs, CRT_ID_LAW_CNTL, 0x12);
  1524. DPRINTK("2MB boardn");
  1525. }
  1526. /* Initialize graphics engine */
  1527. Cyber_WaitBlit();
  1528. vgaw16 (regs, ECR_FRGD_MIX, 0x27);
  1529. vgaw16 (regs, ECR_BKGD_MIX, 0x07);
  1530. vgaw16 (regs, ECR_READ_REG_DATA, 0x1000);
  1531. udelay(200);
  1532. vgaw16 (regs, ECR_READ_REG_DATA, 0x2000);
  1533. Cyber_WaitBlit();
  1534. vgaw16 (regs, ECR_READ_REG_DATA, 0x3FFF);
  1535. Cyber_WaitBlit();
  1536. udelay(200);
  1537. vgaw16 (regs, ECR_READ_REG_DATA, 0x4FFF);
  1538. Cyber_WaitBlit();
  1539. vgaw16 (regs, ECR_BITPLANE_WRITE_MASK, ~0);
  1540. Cyber_WaitBlit();
  1541. vgaw16 (regs, ECR_READ_REG_DATA, 0xE000);
  1542. vgaw16 (regs, ECR_CURRENT_Y_POS2, 0x00);
  1543. vgaw16 (regs, ECR_CURRENT_X_POS2, 0x00);
  1544. vgaw16 (regs, ECR_READ_REG_DATA, 0xA000);
  1545. vgaw16 (regs, ECR_DEST_Y__AX_STEP, 0x00);
  1546. vgaw16 (regs, ECR_DEST_Y2__AX_STEP2, 0x00);
  1547. vgaw16 (regs, ECR_DEST_X__DIA_STEP, 0x00);
  1548. vgaw16 (regs, ECR_DEST_X2__DIA_STEP2, 0x00);
  1549. vgaw16 (regs, ECR_SHORT_STROKE, 0x00);
  1550. vgaw16 (regs, ECR_DRAW_CMD, 0x01);
  1551. Cyber_WaitBlit();
  1552. vgaw16 (regs, ECR_READ_REG_DATA, 0x4FFF);
  1553. vgaw16 (regs, ECR_BKGD_COLOR, 0x01);
  1554. vgaw16 (regs, ECR_FRGD_COLOR, 0x00);
  1555. /* Enable video display (set bit 5) */
  1556. /* ARB - Would also seem to write to AR13.
  1557.  *       May want to use parts of WAttr to set JUST bit 5
  1558.  */
  1559. WAttr (regs, 0x33, 0);
  1560. /* GRF - function code ended here */
  1561. /* Turn gfx on again */
  1562. gfx_on_off (0, regs);
  1563. /* Pass-through */
  1564. cvscreen (0, CyberBase);
  1565. DPRINTK("EXITn");
  1566. }
  1567. static void cv64_load_video_mode (struct fb_var_screeninfo *video_mode)
  1568. {
  1569.   volatile unsigned char *regs = CyberRegs;
  1570.   int fx, fy;
  1571.   unsigned short mnr;
  1572.   unsigned short HT, HDE, HBS, HBE, HSS, HSE, VDE, VBS, VBE, VSS, VSE, VT;
  1573.   char LACE, DBLSCAN, TEXT, CONSOLE;
  1574.   int cr50, sr15, sr18, clock_mode, test;
  1575.   int m, n;
  1576.   int tfillm, temptym;
  1577.   int hmul;
  1578.   /* ---------------- */
  1579.   int xres, hfront, hsync, hback;
  1580.   int yres, vfront, vsync, vback;
  1581.   int bpp;
  1582. #if 0
  1583.   float freq_f;
  1584. #endif
  1585.   long freq;
  1586.   /* ---------------- */
  1587.   DPRINTK("ENTERn");
  1588.   TEXT = 0; /* if depth == 4 */
  1589.   CONSOLE = 0; /* mode num == 255 (console) */
  1590.   fx = fy = 8; /* force 8x8 font */
  1591. /* GRF - Disable interrupts */
  1592.   gfx_on_off (1, regs);
  1593.   switch (video_mode->bits_per_pixel) {
  1594.   case 15:
  1595.   case 16:
  1596.     hmul = 2;
  1597.     break;
  1598.   default:
  1599.     hmul = 1;
  1600.     break;
  1601.   }
  1602.   bpp = video_mode->bits_per_pixel;
  1603.   xres = video_mode->xres;
  1604.   hfront = video_mode->right_margin;
  1605.   hsync = video_mode->hsync_len;
  1606.   hback = video_mode->left_margin;
  1607.   LACE = 0;
  1608.   DBLSCAN = 0;
  1609.   if (video_mode->vmode & FB_VMODE_DOUBLE) {
  1610.     yres = video_mode->yres * 2;
  1611.     vfront = video_mode->lower_margin * 2;
  1612.     vsync = video_mode->vsync_len * 2;
  1613.     vback = video_mode->upper_margin * 2;
  1614.     DBLSCAN = 1;
  1615.   } else if (video_mode->vmode & FB_VMODE_INTERLACED) {
  1616.     yres = (video_mode->yres + 1) / 2;
  1617.     vfront = (video_mode->lower_margin + 1) / 2;
  1618.     vsync = (video_mode->vsync_len + 1) / 2;
  1619.     vback = (video_mode->upper_margin + 1) / 2;
  1620.     LACE = 1;
  1621.   } else {
  1622.     yres = video_mode->yres;
  1623.     vfront = video_mode->lower_margin;
  1624.     vsync = video_mode->vsync_len;
  1625.     vback = video_mode->upper_margin;
  1626.   }
  1627.   /* ARB Dropping custom setup method from cvision.c */
  1628. #if 0
  1629.   if (cvision_custom_mode) {
  1630.     HBS = hbs / 8 * hmul;
  1631.     HBE = hbe / 8 * hmul;
  1632.     HSS = hss / 8 * hmul;
  1633.     HSE = hse / 8 * hmul;
  1634.     HT  = ht / 8 * hmul - 5;
  1635.     VBS = vbs - 1;
  1636.     VSS = vss;
  1637.     VSE = vse;
  1638.     VBE = vbe;
  1639.     VT  = vt - 2;
  1640.   } else {
  1641. #else
  1642.     {
  1643. #endif
  1644.     HBS = hmul * (xres / 8);
  1645.     HBE = hmul * ((xres/8) + (hfront/8) + (hsync/8) + (hback/8) - 2);
  1646.     HSS = hmul * ((xres/8) + (hfront/8) + 2);
  1647.     HSE = hmul * ((xres/8) + (hfront/8) + (hsync/8) + 1);
  1648.     HT  = hmul * ((xres/8) + (hfront/8) + (hsync/8) + (hback/8));
  1649.     VBS = yres;
  1650.     VBE = yres + vfront + vsync + vback - 2;
  1651.     VSS = yres + vfront - 1;
  1652.     VSE = yres + vfront + vsync - 1;
  1653.     VT  = yres + vfront + vsync + vback - 2;
  1654.   }
  1655.   wb_64 (regs, ECR_ADV_FUNC_CNTL, (TEXT ? 0x00 : 0x31));
  1656.   if (TEXT)
  1657.     HDE = ((video_mode->xres + fx - 1) / fx) - 1;
  1658.   else
  1659.     HDE = (video_mode->xres + 3) * hmul / 8 - 1;
  1660.   VDE = video_mode->yres - 1;
  1661.   WCrt (regs, CRT_ID_HWGC_MODE, 0x00);
  1662.   WCrt (regs, CRT_ID_EXT_DAC_CNTL, 0x00);
  1663.   WSeq (regs, SEQ_ID_MEMORY_MODE,
  1664. (TEXT || (video_mode->bits_per_pixel == 1)) ? 0x06 : 0x0e);
  1665.   WGfx (regs, GCT_ID_READ_MAP_SELECT, 0x00);
  1666.   WSeq (regs, SEQ_ID_MAP_MASK,
  1667. (video_mode->bits_per_pixel == 1) ? 0x01 : 0xFF);
  1668.   WSeq (regs, SEQ_ID_CHAR_MAP_SELECT, 0x00);
  1669.   /* cv64_compute_clock accepts arguments in Hz */
  1670.   /* pixclock is in ps ... convert to Hz */
  1671. #if 0
  1672.   freq_f = (1.0 / (float) video_mode->pixclock) * 1000000000;
  1673.   freq = ((long) freq_f) * 1000;
  1674. #else
  1675. /* freq = (long) ((long long)1000000000000 / (long long) video_mode->pixclock);
  1676.  */
  1677.   freq = (1000000000 / video_mode->pixclock) * 1000;
  1678. #endif
  1679.   mnr = cv64_compute_clock (freq);
  1680.   WSeq (regs, SEQ_ID_DCLK_HI, ((mnr & 0xFF00) >> 8));
  1681.   WSeq (regs, SEQ_ID_DCLK_LO, (mnr & 0xFF));
  1682.   /* Load display parameters into board */
  1683.   WCrt (regs, CRT_ID_EXT_HOR_OVF,
  1684. ((HT & 0x100) ? 0x01 : 0x00) |
  1685. ((HDE & 0x100) ? 0x02 : 0x00) |
  1686. ((HBS & 0x100) ? 0x04 : 0x00) |
  1687. /* ((HBE & 0x40) ? 0x08 : 0x00) | */
  1688. ((HSS & 0x100) ? 0x10 : 0x00) |
  1689. /* ((HSE & 0x20) ? 0x20 : 0x00) | */
  1690. (((HT-5) & 0x100) ? 0x40 : 0x00)
  1691. );
  1692.   WCrt (regs, CRT_ID_EXT_VER_OVF,
  1693. 0x40 |
  1694. ((VT & 0x400) ? 0x01 : 0x00) |
  1695. ((VDE & 0x400) ? 0x02 : 0x00) |
  1696. ((VBS & 0x400) ? 0x04 : 0x00) |
  1697. ((VSS & 0x400) ? 0x10 : 0x00)
  1698. );
  1699.   WCrt (regs, CRT_ID_HOR_TOTAL, HT);
  1700.   WCrt (regs, CRT_ID_DISPLAY_FIFO, HT - 5);
  1701.   WCrt (regs, CRT_ID_HOR_DISP_ENA_END, ((HDE >= HBS) ? (HBS - 1) : HDE));
  1702.   WCrt (regs, CRT_ID_START_HOR_BLANK, HBS);
  1703.   WCrt (regs, CRT_ID_END_HOR_BLANK, ((HBE & 0x1F) | 0x80));
  1704.   WCrt (regs, CRT_ID_START_HOR_RETR, HSS);
  1705.   WCrt (regs, CRT_ID_END_HOR_RETR,
  1706. (HSE & 0x1F) |
  1707. ((HBE & 0x20) ? 0x80 : 0x00)
  1708. );
  1709.   WCrt (regs, CRT_ID_VER_TOTAL, VT);
  1710.   WCrt (regs, CRT_ID_OVERFLOW,
  1711. 0x10 |
  1712. ((VT & 0x100) ? 0x01 : 0x00) |
  1713. ((VDE & 0x100) ? 0x02 : 0x00) |
  1714. ((VSS & 0x100) ? 0x04 : 0x00) |
  1715. ((VBS & 0x100) ? 0x08 : 0x00) |
  1716. ((VT & 0x200) ? 0x20 : 0x00) |
  1717. ((VDE & 0x200) ? 0x40 : 0x00) |
  1718. ((VSS & 0x200) ? 0x80 : 0x00)
  1719. );
  1720.   WCrt (regs, CRT_ID_MAX_SCAN_LINE,
  1721. 0x40 |
  1722. (DBLSCAN ? 0x80 : 0x00) |
  1723. ((VBS & 0x200) ? 0x20 : 0x00) |
  1724. (TEXT ? ((fy - 1) & 0x1F) : 0x00)
  1725. );
  1726.   WCrt (regs, CRT_ID_MODE_CONTROL, 0xE3);
  1727.   /* Text cursor */
  1728.   if (TEXT) {
  1729. #if 1
  1730.     WCrt (regs, CRT_ID_CURSOR_START, (fy & 0x1f) - 2);
  1731.     WCrt (regs, CRT_ID_CURSOR_END, (fy & 0x1F) - 1);
  1732. #else
  1733.     WCrt (regs, CRT_ID_CURSOR_START, 0x00);
  1734.     WCrt (regs, CRT_ID_CURSOR_END, fy & 0x1F);
  1735. #endif
  1736.     WCrt (regs, CRT_ID_UNDERLINE_LOC, (fy - 1) & 0x1F);
  1737.     WCrt (regs, CRT_ID_CURSOR_LOC_HIGH, 0x00);
  1738.     WCrt (regs, CRT_ID_CURSOR_LOC_LOW, 0x00);
  1739.   }
  1740.   WCrt (regs, CRT_ID_START_ADDR_HIGH, 0x00);
  1741.   WCrt (regs, CRT_ID_START_ADDR_LOW, 0x00);
  1742.   WCrt (regs, CRT_ID_START_VER_RETR, VSS);
  1743.   WCrt (regs, CRT_ID_END_VER_RETR, (VSE & 0x0F));
  1744.   WCrt (regs, CRT_ID_VER_DISP_ENA_END, VDE);
  1745.   WCrt (regs, CRT_ID_START_VER_BLANK, VBS);
  1746.   WCrt (regs, CRT_ID_END_VER_BLANK, VBE);
  1747.   WCrt (regs, CRT_ID_LINE_COMPARE, 0xFF);
  1748.   WCrt (regs, CRT_ID_LACE_RETR_START, HT / 2);
  1749.   WCrt (regs, CRT_ID_LACE_CONTROL, (LACE ? 0x20 : 0x00));
  1750.   WGfx (regs, GCT_ID_GRAPHICS_MODE,
  1751. ((TEXT || (video_mode->bits_per_pixel == 1)) ? 0x00 : 0x40));
  1752.   WGfx (regs, GCT_ID_MISC, (TEXT ? 0x04 : 0x01));
  1753.   WSeq (regs, SEQ_ID_MEMORY_MODE,
  1754. ((TEXT || (video_mode->bits_per_pixel == 1)) ? 0x06 : 0x02));
  1755.   wb_64 (regs, VDAC_MASK, 0xFF);
  1756.   /* Blank border */
  1757.   test = RCrt (regs, CRT_ID_BACKWAD_COMP_2);
  1758.   WCrt (regs, CRT_ID_BACKWAD_COMP_2, (test | 0x20));
  1759.   sr15 = RSeq (regs, SEQ_ID_CLKSYN_CNTL_2);
  1760.   sr15 &= 0xEF;
  1761.   sr18 = RSeq (regs, SEQ_ID_RAMDAC_CNTL);
  1762.   sr18 &= 0x7F;
  1763.   clock_mode = 0x00;
  1764.   cr50 = 0x00;
  1765.   test = RCrt (regs, CRT_ID_EXT_MISC_CNTL_2);
  1766.   test &= 0xD;
  1767.   /* Clear roxxler byte-swapping... */
  1768.   cv64_write_port (0x0040, CyberBase);
  1769.   cv64_write_port (0x0020, CyberBase);
  1770.   switch (video_mode->bits_per_pixel) {
  1771.   case 1:
  1772.   case 4: /* text */
  1773.     HDE = video_mode->xres / 16;
  1774.     break;
  1775.   case 8:
  1776.     if (freq > 80000000) {
  1777.       clock_mode = 0x10 | 0x02;
  1778.       sr15 |= 0x10;
  1779.       sr18 |= 0x80;
  1780.     }
  1781.     HDE = video_mode->xres / 8;
  1782.     cr50 |= 0x00;
  1783.     break;
  1784.   case 15:
  1785.     cv64_write_port (0x8020, CyberBase);
  1786.     clock_mode = 0x30;
  1787.     HDE = video_mode->xres / 4;
  1788.     cr50 |= 0x10;
  1789.     break;
  1790.   case 16:
  1791.     cv64_write_port (0x8020, CyberBase);
  1792.     clock_mode = 0x50;
  1793.     HDE = video_mode->xres / 4;
  1794.     cr50 |= 0x10;
  1795.     break;
  1796.   case 24:
  1797.   case 32:
  1798.     cv64_write_port (0x8040, CyberBase);
  1799.     clock_mode = 0xD0;
  1800.     HDE = video_mode->xres / 2;
  1801.     cr50 |= 0x30;
  1802.     break;
  1803.   }
  1804.   WCrt (regs, CRT_ID_EXT_MISC_CNTL_2, clock_mode | test);
  1805.   WSeq (regs, SEQ_ID_CLKSYN_CNTL_2, sr15);
  1806.   WSeq (regs, SEQ_ID_RAMDAC_CNTL, sr18);
  1807.   WCrt (regs, CRT_ID_SCREEN_OFFSET, HDE);
  1808.   WCrt (regs, CRT_ID_MISC_1, (TEXT ? 0x05 : 0x35));
  1809.   test = RCrt (regs, CRT_ID_EXT_SYS_CNTL_2);
  1810.   test &= ~0x30;
  1811.   test |= (HDE >> 4) & 0x30;
  1812.   WCrt (regs, CRT_ID_EXT_SYS_CNTL_2, test);
  1813.   /* Set up graphics engine */
  1814.   switch (video_mode->xres) {
  1815.   case 1024:
  1816.     cr50 |= 0x00;
  1817.     break;
  1818.   case 640:
  1819.     cr50 |= 0x40;
  1820.     break;
  1821.   case 800:
  1822.     cr50 |= 0x80;
  1823.     break;
  1824.   case 1280:
  1825.     cr50 |= 0xC0;
  1826.     break;
  1827.   case 1152:
  1828.     cr50 |= 0x01;
  1829.     break;
  1830.   case 1600:
  1831.     cr50 |= 0x81;
  1832.     break;
  1833.   default: /* XXX */
  1834.     break;
  1835.   }
  1836.   WCrt (regs, CRT_ID_EXT_SYS_CNTL_1, cr50);
  1837.   udelay(100);
  1838.   WAttr (regs, ACT_ID_ATTR_MODE_CNTL, (TEXT ? 0x08 : 0x41));
  1839.   udelay(100);
  1840.   WAttr (regs, ACT_ID_COLOR_PLANE_ENA,
  1841.  (video_mode->bits_per_pixel == 1) ? 0x01 : 0x0F);
  1842.   udelay(100);
  1843.   tfillm = (96 * (cv64_memclk / 1000)) / 240000;
  1844.   switch (video_mode->bits_per_pixel) {
  1845.   case 32:
  1846.   case 24:
  1847.     temptym = (24 * (cv64_memclk / 1000)) / (freq / 1000);
  1848.     break;
  1849.   case 15:
  1850.   case 16:
  1851.     temptym = (48 * (cv64_memclk / 1000)) / (freq / 1000);
  1852.     break;
  1853.   case 4:
  1854.     temptym = (192 * (cv64_memclk / 1000)) / (freq / 1000);
  1855.     break;
  1856.   default:
  1857.     temptym = (96 * (cv64_memclk / 1000)) / (freq / 1000);
  1858.     break;
  1859.   }
  1860.   m = (temptym - tfillm - 9) / 2;
  1861.   if (m < 0)
  1862.     m = 0;
  1863.   m = (m & 0x1F) << 3;
  1864.   if (m < 0x18)
  1865.     m = 0x18;
  1866.   n = 0xFF;
  1867.   WCrt (regs, CRT_ID_EXT_MEM_CNTL_2, m);
  1868.   WCrt (regs, CRT_ID_EXT_MEM_CNTL_3, n);
  1869.   udelay(10);
  1870.   /* Text initialization */
  1871.   if (TEXT) {
  1872.     /* Do text initialization here ! */
  1873.   }
  1874.   if (CONSOLE) {
  1875.     int i;
  1876.     wb_64 (regs, VDAC_ADDRESS_W, 0);
  1877.     for (i = 0; i < 4; i++) {
  1878.       wb_64 (regs, VDAC_DATA, cvconscolors [i][0]);
  1879.       wb_64 (regs, VDAC_DATA, cvconscolors [i][1]);
  1880.       wb_64 (regs, VDAC_DATA, cvconscolors [i][2]);
  1881.     }
  1882.   }
  1883.   WAttr (regs, 0x33, 0);
  1884.   /* Turn gfx on again */
  1885.   gfx_on_off (0, (volatile unsigned char *) regs);
  1886.   /* Pass-through */
  1887.   cvscreen (0, CyberBase);
  1888. DPRINTK("EXITn");
  1889. }
  1890. void cvision_bitblt (u_short sx, u_short sy, u_short dx, u_short dy,
  1891.      u_short w, u_short h)
  1892. {
  1893. volatile unsigned char *regs = CyberRegs;
  1894. unsigned short drawdir = 0;
  1895. DPRINTK("ENTERn");
  1896. if (sx > dx) {
  1897. drawdir |= 1 << 5;
  1898. } else {
  1899. sx += w - 1;
  1900. dx += w - 1;
  1901. }
  1902. if (sy > dy) {
  1903. drawdir |= 1 << 7;
  1904. } else {
  1905. sy += h - 1;
  1906. dy += h - 1;
  1907. }
  1908. Cyber_WaitBlit();
  1909. vgaw16 (regs, ECR_READ_REG_DATA, 0xA000);
  1910. vgaw16 (regs, ECR_BKGD_MIX, 0x7);
  1911. vgaw16 (regs, ECR_FRGD_MIX, 0x67);
  1912. vgaw16 (regs, ECR_BKGD_COLOR, 0x0);
  1913. vgaw16 (regs, ECR_FRGD_COLOR, 0x1);
  1914. vgaw16 (regs, ECR_BITPLANE_READ_MASK, 0x1);
  1915. vgaw16 (regs, ECR_BITPLANE_WRITE_MASK, 0xFFF);
  1916. vgaw16 (regs, ECR_CURRENT_Y_POS, sy);
  1917. vgaw16 (regs, ECR_CURRENT_X_POS, sx);
  1918. vgaw16 (regs, ECR_DEST_Y__AX_STEP, dy);
  1919. vgaw16 (regs, ECR_DEST_X__DIA_STEP, dx);
  1920. vgaw16 (regs, ECR_READ_REG_DATA, h - 1);
  1921. vgaw16 (regs, ECR_MAJ_AXIS_PIX_CNT, w - 1);
  1922. vgaw16 (regs, ECR_DRAW_CMD, 0xC051 | drawdir);
  1923. DPRINTK("EXITn");
  1924. }
  1925. void cvision_clear (u_short dx, u_short dy, u_short w, u_short h, u_short bg)
  1926. {
  1927. volatile unsigned char *regs = CyberRegs;
  1928. DPRINTK("ENTERn");
  1929. Cyber_WaitBlit();
  1930. vgaw16 (regs, ECR_FRGD_MIX, 0x0027);
  1931. vgaw16 (regs, ECR_FRGD_COLOR, bg);
  1932. vgaw16 (regs, ECR_READ_REG_DATA, 0xA000);
  1933. vgaw16 (regs, ECR_CURRENT_Y_POS, dy);
  1934. vgaw16 (regs, ECR_CURRENT_X_POS, dx);
  1935. vgaw16 (regs, ECR_READ_REG_DATA, h - 1);
  1936. vgaw16 (regs, ECR_MAJ_AXIS_PIX_CNT, w - 1);
  1937. vgaw16 (regs, ECR_DRAW_CMD, 0x40B1);
  1938. DPRINTK("EXITn");
  1939. }
  1940. #ifdef CYBERFBDEBUG
  1941. /*
  1942.  * Dump internal settings of CyberVision board
  1943.  */
  1944. static void cv64_dump (void)
  1945. {
  1946. volatile unsigned char *regs = CyberRegs;
  1947. DPRINTK("ENTERn");
  1948.         /* Dump the VGA setup values */
  1949. *(regs + S3_CRTC_ADR) = 0x00;
  1950. DPRINTK("CR00 = %xn", *(regs + S3_CRTC_DATA));
  1951. *(regs + S3_CRTC_ADR) = 0x01;
  1952. DPRINTK("CR01 = %xn", *(regs + S3_CRTC_DATA));
  1953. *(regs + S3_CRTC_ADR) = 0x02;
  1954. DPRINTK("CR02 = %xn", *(regs + S3_CRTC_DATA));
  1955. *(regs + S3_CRTC_ADR) = 0x03;
  1956. DPRINTK("CR03 = %xn", *(regs + S3_CRTC_DATA));
  1957. *(regs + S3_CRTC_ADR) = 0x04;
  1958. DPRINTK("CR04 = %xn", *(regs + S3_CRTC_DATA));
  1959. *(regs + S3_CRTC_ADR) = 0x05;
  1960. DPRINTK("CR05 = %xn", *(regs + S3_CRTC_DATA));
  1961. *(regs + S3_CRTC_ADR) = 0x06;
  1962. DPRINTK("CR06 = %xn", *(regs + S3_CRTC_DATA));
  1963. *(regs + S3_CRTC_ADR) = 0x07;
  1964. DPRINTK("CR07 = %xn", *(regs + S3_CRTC_DATA));
  1965. *(regs + S3_CRTC_ADR) = 0x08;
  1966. DPRINTK("CR08 = %xn", *(regs + S3_CRTC_DATA));
  1967. *(regs + S3_CRTC_ADR) = 0x09;
  1968. DPRINTK("CR09 = %xn", *(regs + S3_CRTC_DATA));
  1969. *(regs + S3_CRTC_ADR) = 0x10;
  1970. DPRINTK("CR10 = %xn", *(regs + S3_CRTC_DATA));
  1971. *(regs + S3_CRTC_ADR) = 0x11;
  1972. DPRINTK("CR11 = %xn", *(regs + S3_CRTC_DATA));
  1973. *(regs + S3_CRTC_ADR) = 0x12;
  1974. DPRINTK("CR12 = %xn", *(regs + S3_CRTC_DATA));
  1975. *(regs + S3_CRTC_ADR) = 0x13;
  1976. DPRINTK("CR13 = %xn", *(regs + S3_CRTC_DATA));
  1977. *(regs + S3_CRTC_ADR) = 0x15;
  1978. DPRINTK("CR15 = %xn", *(regs + S3_CRTC_DATA));
  1979. *(regs + S3_CRTC_ADR) = 0x16;
  1980. DPRINTK("CR16 = %xn", *(regs + S3_CRTC_DATA));
  1981. *(regs + S3_CRTC_ADR) = 0x36;
  1982. DPRINTK("CR36 = %xn", *(regs + S3_CRTC_DATA));
  1983. *(regs + S3_CRTC_ADR) = 0x37;
  1984. DPRINTK("CR37 = %xn", *(regs + S3_CRTC_DATA));
  1985. *(regs + S3_CRTC_ADR) = 0x42;
  1986. DPRINTK("CR42 = %xn", *(regs + S3_CRTC_DATA));
  1987. *(regs + S3_CRTC_ADR) = 0x43;
  1988. DPRINTK("CR43 = %xn", *(regs + S3_CRTC_DATA));
  1989. *(regs + S3_CRTC_ADR) = 0x50;
  1990. DPRINTK("CR50 = %xn", *(regs + S3_CRTC_DATA));
  1991. *(regs + S3_CRTC_ADR) = 0x51;
  1992. DPRINTK("CR51 = %xn", *(regs + S3_CRTC_DATA));
  1993. *(regs + S3_CRTC_ADR) = 0x53;
  1994. DPRINTK("CR53 = %xn", *(regs + S3_CRTC_DATA));
  1995. *(regs + S3_CRTC_ADR) = 0x58;
  1996. DPRINTK("CR58 = %xn", *(regs + S3_CRTC_DATA));
  1997. *(regs + S3_CRTC_ADR) = 0x59;
  1998. DPRINTK("CR59 = %xn", *(regs + S3_CRTC_DATA));
  1999. *(regs + S3_CRTC_ADR) = 0x5A;
  2000. DPRINTK("CR5A = %xn", *(regs + S3_CRTC_DATA));
  2001. *(regs + S3_CRTC_ADR) = 0x5D;
  2002. DPRINTK("CR5D = %xn", *(regs + S3_CRTC_DATA));
  2003. *(regs + S3_CRTC_ADR) = 0x5E;
  2004. DPRINTK("CR5E = %xn", *(regs + S3_CRTC_DATA));
  2005. DPRINTK("MISC = %xn", *(regs + GREG_MISC_OUTPUT_R));
  2006. *(regs + SEQ_ADDRESS) = 0x01;
  2007. DPRINTK("SR01 = %xn", *(regs + SEQ_ADDRESS_R));
  2008. *(regs + SEQ_ADDRESS) = 0x02;
  2009. DPRINTK("SR02 = %xn", *(regs + SEQ_ADDRESS_R));
  2010. *(regs + SEQ_ADDRESS) = 0x03;
  2011. DPRINTK("SR03 = %xn", *(regs + SEQ_ADDRESS_R));
  2012. *(regs + SEQ_ADDRESS) = 0x09;
  2013. DPRINTK("SR09 = %xn", *(regs + SEQ_ADDRESS_R));
  2014. *(regs + SEQ_ADDRESS) = 0x10;
  2015. DPRINTK("SR10 = %xn", *(regs + SEQ_ADDRESS_R));
  2016. *(regs + SEQ_ADDRESS) = 0x11;
  2017. DPRINTK("SR11 = %xn", *(regs + SEQ_ADDRESS_R));
  2018. *(regs + SEQ_ADDRESS) = 0x12;
  2019. DPRINTK("SR12 = %xn", *(regs + SEQ_ADDRESS_R));
  2020. *(regs + SEQ_ADDRESS) = 0x13;
  2021. DPRINTK("SR13 = %xn", *(regs + SEQ_ADDRESS_R));
  2022. *(regs + SEQ_ADDRESS) = 0x15;
  2023. DPRINTK("SR15 = %xn", *(regs + SEQ_ADDRESS_R));
  2024. return;
  2025. }
  2026. #endif