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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/video/sun3fb.c -- Frame buffer driver for Sun3
  3.  *
  4.  * (C) 1998 Thomas Bogendoerfer
  5.  *
  6.  * This driver is bases on sbusfb.c, which is
  7.  *
  8.  * Copyright (C) 1998 Jakub Jelinek
  9.  *
  10.  *  This driver is partly based on the Open Firmware console driver
  11.  *
  12.  * Copyright (C) 1997 Geert Uytterhoeven
  13.  *
  14.  *  and SPARC console subsystem
  15.  *
  16.  *      Copyright (C) 1995 Peter Zaitcev (zaitcev@yahoo.com)
  17.  *      Copyright (C) 1995-1997 David S. Miller (davem@caip.rutgers.edu)
  18.  *      Copyright (C) 1995-1996 Miguel de Icaza (miguel@nuclecu.unam.mx)
  19.  *      Copyright (C) 1996 Dave Redman (djhr@tadpole.co.uk)
  20.  *      Copyright (C) 1996-1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  21.  *      Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
  22.  *
  23.  *  This file is subject to the terms and conditions of the GNU General Public
  24.  *  License. See the file COPYING in the main directory of this archive for
  25.  *  more details.
  26.  */
  27. #include <linux/config.h>
  28. #include <linux/module.h>
  29. #include <linux/kernel.h>
  30. #include <linux/errno.h>
  31. #include <linux/string.h>
  32. #include <linux/mm.h>
  33. #include <linux/tty.h>
  34. #include <linux/slab.h>
  35. #include <linux/vmalloc.h>
  36. #include <linux/delay.h>
  37. #include <linux/interrupt.h>
  38. #include <linux/fb.h>
  39. #include <linux/selection.h>
  40. #include <linux/init.h>
  41. #include <linux/console.h>
  42. #include <linux/kd.h>
  43. #include <linux/vt_kern.h>
  44. #include <asm/uaccess.h>
  45. #include <asm/pgtable.h> /* io_remap_page_range() */
  46. #ifdef CONFIG_SUN3
  47. #include <asm/oplib.h>
  48. #endif
  49. #ifdef CONFIG_SUN3X
  50. #include <asm/sun3x.h>
  51. #endif
  52. #include <video/sbusfb.h>
  53. #define DEFAULT_CURSOR_BLINK_RATE       (2*HZ/5)
  54. #define CURSOR_SHAPE 1
  55. #define CURSOR_BLINK 2
  56.     /*
  57.      *  Interface used by the world
  58.      */
  59. int sun3fb_init(void);
  60. int sun3fb_setup(char *options);
  61. static int currcon;
  62. static char fontname[40] __initdata = { 0 };
  63. static int curblink __initdata = 1;
  64. static int sun3fb_get_fix(struct fb_fix_screeninfo *fix, int con,
  65. struct fb_info *info);
  66. static int sun3fb_get_var(struct fb_var_screeninfo *var, int con,
  67. struct fb_info *info);
  68. static int sun3fb_set_var(struct fb_var_screeninfo *var, int con,
  69. struct fb_info *info);
  70. static int sun3fb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  71. struct fb_info *info);
  72. static int sun3fb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  73. struct fb_info *info);
  74. static void sun3fb_cursor(struct display *p, int mode, int x, int y);
  75. static void sun3fb_clear_margin(struct display *p, int s);
  76.     
  77.     /*
  78.      *  Interface to the low level console driver
  79.      */
  80. static int sun3fbcon_switch(int con, struct fb_info *info);
  81. static int sun3fbcon_updatevar(int con, struct fb_info *info);
  82. static void sun3fbcon_blank(int blank, struct fb_info *info);
  83.     /*
  84.      *  Internal routines
  85.      */
  86. static int sun3fb_getcolreg(u_int regno, u_int *red, u_int *green, u_int *blue,
  87.     u_int *transp, struct fb_info *info);
  88. static int sun3fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  89.     u_int transp, struct fb_info *info);
  90. static void do_install_cmap(int con, struct fb_info *info);
  91. static struct fb_ops sun3fb_ops = {
  92. owner: THIS_MODULE,
  93. fb_get_fix: sun3fb_get_fix,
  94. fb_get_var: sun3fb_get_var,
  95. fb_set_var: sun3fb_set_var,
  96. fb_get_cmap: sun3fb_get_cmap,
  97. fb_set_cmap: sun3fb_set_cmap,
  98. };
  99. static void sun3fb_clear_margin(struct display *p, int s)
  100. {
  101. struct fb_info_sbusfb *fb = sbusfbinfod(p);
  102. if (fb->switch_from_graph)
  103. (*fb->switch_from_graph)(fb);
  104. if (fb->fill) {
  105. unsigned short rects [16];
  106. rects [0] = 0;
  107. rects [1] = 0;
  108. rects [2] = fb->var.xres_virtual;
  109. rects [3] = fb->y_margin;
  110. rects [4] = 0;
  111. rects [5] = fb->y_margin;
  112. rects [6] = fb->x_margin;
  113. rects [7] = fb->var.yres_virtual;
  114. rects [8] = fb->var.xres_virtual - fb->x_margin;
  115. rects [9] = fb->y_margin;
  116. rects [10] = fb->var.xres_virtual;
  117. rects [11] = fb->var.yres_virtual;
  118. rects [12] = fb->x_margin;
  119. rects [13] = fb->var.yres_virtual - fb->y_margin;
  120. rects [14] = fb->var.xres_virtual - fb->x_margin;
  121. rects [15] = fb->var.yres_virtual;
  122. (*fb->fill)(fb, p, s, 4, rects);
  123. } else {
  124. unsigned char *fb_base = p->screen_base, *q;
  125. int skip_bytes = fb->y_margin * fb->var.xres_virtual;
  126. int scr_size = fb->var.xres_virtual * fb->var.yres_virtual;
  127. int h, he, incr, size;
  128. he = fb->var.yres;
  129. if (fb->var.bits_per_pixel == 1) {
  130. fb_base -= (skip_bytes + fb->x_margin) / 8;
  131. skip_bytes /= 8;
  132. scr_size /= 8;
  133. mymemset (fb_base, skip_bytes - fb->x_margin / 8);
  134. mymemset (fb_base + scr_size - skip_bytes + fb->x_margin / 8, skip_bytes - fb->x_margin / 8);
  135. incr = fb->var.xres_virtual / 8;
  136. size = fb->x_margin / 8 * 2;
  137. for (q = fb_base + skip_bytes - fb->x_margin / 8, h = 0;
  138.      h <= he; q += incr, h++)
  139. mymemset (q, size);
  140. } else {
  141. fb_base -= (skip_bytes + fb->x_margin);
  142. memset (fb_base, attr_bgcol(p,s), skip_bytes - fb->x_margin);
  143. memset (fb_base + scr_size - skip_bytes + fb->x_margin, attr_bgcol(p,s), skip_bytes - fb->x_margin);
  144. incr = fb->var.xres_virtual;
  145. size = fb->x_margin * 2;
  146. for (q = fb_base + skip_bytes - fb->x_margin, h = 0;
  147.      h <= he; q += incr, h++)
  148. memset (q, attr_bgcol(p,s), size);
  149. }
  150. }
  151. }
  152. static void sun3fb_disp_setup(struct display *p)
  153. {
  154. struct fb_info_sbusfb *fb = sbusfbinfod(p);
  155. if (fb->setup)
  156. fb->setup(p);
  157. sun3fb_clear_margin(p, 0);
  158. }
  159.     /*
  160.      *  Get the Fixed Part of the Display
  161.      */
  162. static int sun3fb_get_fix(struct fb_fix_screeninfo *fix, int con,
  163.   struct fb_info *info)
  164. {
  165. struct fb_info_sbusfb *fb = sbusfbinfo(info);
  166. memcpy(fix, &fb->fix, sizeof(struct fb_fix_screeninfo));
  167. return 0;
  168. }
  169.     /*
  170.      *  Get the User Defined Part of the Display
  171.      */
  172. static int sun3fb_get_var(struct fb_var_screeninfo *var, int con,
  173.   struct fb_info *info)
  174. {
  175. struct fb_info_sbusfb *fb = sbusfbinfo(info);
  176. memcpy(var, &fb->var, sizeof(struct fb_var_screeninfo));
  177. return 0;
  178. }
  179.     /*
  180.      *  Set the User Defined Part of the Display
  181.      */
  182. static int sun3fb_set_var(struct fb_var_screeninfo *var, int con,
  183. struct fb_info *info)
  184. {
  185. struct fb_info_sbusfb *fb = sbusfbinfo(info);
  186. if (var->xres > fb->var.xres || var->yres > fb->var.yres ||
  187.     var->xres_virtual > fb->var.xres_virtual ||
  188.     var->yres_virtual > fb->var.yres_virtual ||
  189.     var->bits_per_pixel != fb->var.bits_per_pixel ||
  190.     var->nonstd ||
  191.     (var->vmode & FB_VMODE_MASK) != FB_VMODE_NONINTERLACED)
  192. return -EINVAL;
  193. memcpy(var, &fb->var, sizeof(struct fb_var_screeninfo));
  194. return 0;
  195. }
  196.     /*
  197.      *  Hardware cursor
  198.      */
  199.      
  200. static unsigned char hw_cursor_cmap[2] = { 0, 0xff };
  201. static void
  202. sun3fb_cursor_timer_handler(unsigned long dev_addr)
  203. {
  204. struct fb_info_sbusfb *fb = (struct fb_info_sbusfb *)dev_addr;
  205.         
  206. if (!fb->setcursor) return;
  207.                                 
  208. if (fb->cursor.mode & CURSOR_BLINK) {
  209. fb->cursor.enable ^= 1;
  210. fb->setcursor(fb);
  211. }
  212. fb->cursor.timer.expires = jiffies + fb->cursor.blink_rate;
  213. add_timer(&fb->cursor.timer);
  214. }
  215. static void sun3fb_cursor(struct display *p, int mode, int x, int y)
  216. {
  217. struct fb_info_sbusfb *fb = sbusfbinfod(p);
  218. switch (mode) {
  219. case CM_ERASE:
  220. fb->cursor.mode &= ~CURSOR_BLINK;
  221. fb->cursor.enable = 0;
  222. (*fb->setcursor)(fb);
  223. break;
  224.   
  225. case CM_MOVE:
  226. case CM_DRAW:
  227. if (fb->cursor.mode & CURSOR_SHAPE) {
  228. fb->cursor.size.fbx = fontwidth(p);
  229. fb->cursor.size.fby = fontheight(p);
  230. fb->cursor.chot.fbx = 0;
  231. fb->cursor.chot.fby = 0;
  232. fb->cursor.enable = 1;
  233. memset (fb->cursor.bits, 0, sizeof (fb->cursor.bits));
  234. fb->cursor.bits[0][fontheight(p) - 2] = (0xffffffff << (32 - fontwidth(p)));
  235. fb->cursor.bits[1][fontheight(p) - 2] = (0xffffffff << (32 - fontwidth(p)));
  236. fb->cursor.bits[0][fontheight(p) - 1] = (0xffffffff << (32 - fontwidth(p)));
  237. fb->cursor.bits[1][fontheight(p) - 1] = (0xffffffff << (32 - fontwidth(p)));
  238. (*fb->setcursormap) (fb, hw_cursor_cmap, hw_cursor_cmap, hw_cursor_cmap);
  239. (*fb->setcurshape) (fb);
  240. }
  241. fb->cursor.mode = CURSOR_BLINK;
  242. if (fontwidthlog(p))
  243. fb->cursor.cpos.fbx = (x << fontwidthlog(p)) + fb->x_margin;
  244. else
  245. fb->cursor.cpos.fbx = (x * fontwidth(p)) + fb->x_margin;
  246. if (fontheightlog(p))
  247. fb->cursor.cpos.fby = (y << fontheightlog(p)) + fb->y_margin;
  248. else
  249. fb->cursor.cpos.fby = (y * fontheight(p)) + fb->y_margin;
  250. (*fb->setcursor)(fb);
  251. break;
  252. }
  253. }
  254.     /*
  255.      *  Get the Colormap
  256.      */
  257. static int sun3fb_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  258.  struct fb_info *info)
  259. {
  260. if (con == currcon) /* current console? */
  261. return fb_get_cmap(cmap, kspc, sun3fb_getcolreg, info);
  262. else if (fb_display[con].cmap.len) /* non default colormap? */
  263. fb_copy_cmap(&fb_display[con].cmap, cmap, kspc ? 0 : 2);
  264. else
  265. fb_copy_cmap(fb_default_cmap(1<<fb_display[con].var.bits_per_pixel), cmap, kspc ? 0 : 2);
  266. return 0;
  267. }
  268.     /*
  269.      *  Set the Colormap
  270.      */
  271. static int sun3fb_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  272.  struct fb_info *info)
  273. {
  274. int err;
  275. if (!fb_display[con].cmap.len) { /* no colormap allocated? */
  276. if ((err = fb_alloc_cmap(&fb_display[con].cmap, 1<<fb_display[con].var.bits_per_pixel, 0)))
  277. return err;
  278. }
  279. if (con == currcon) { /* current console? */
  280. err = fb_set_cmap(cmap, kspc, sun3fb_setcolreg, info);
  281. if (!err) {
  282. struct fb_info_sbusfb *fb = sbusfbinfo(info);
  283. if (fb->loadcmap)
  284. (*fb->loadcmap)(fb, &fb_display[con], cmap->start, cmap->len);
  285. }
  286. return err;
  287. } else
  288. fb_copy_cmap(cmap, &fb_display[con].cmap, kspc ? 0 : 1);
  289. return 0;
  290. }
  291.     /*
  292.      *  Setup: parse used options
  293.      */
  294. void __init sun3fb_setup(char *options)
  295. {
  296. char *p;
  297. for (p = options;;) {
  298. if (!strncmp(p, "font=", 5)) {
  299. int i;
  300. for (i = 0; i < sizeof(fontname) - 1; i++)
  301. if (p[i+5] == ' ' || !p[i+5])
  302. break;
  303. memcpy(fontname, p+5, i);
  304. fontname[i] = 0;
  305. } else if (!strncmp(p, "noblink", 7))
  306. curblink = 0;
  307. while (*p && *p != ' ' && *p != ',') p++;
  308. if (*p != ',') break;
  309. p++;
  310. }
  311. return 0;
  312. }
  313. static int sun3fbcon_switch(int con, struct fb_info *info)
  314. {
  315. int x_margin, y_margin;
  316. struct fb_info_sbusfb *fb = sbusfbinfo(info);
  317. int lastconsole;
  318.     
  319. /* Do we have to save the colormap? */
  320. if (fb_display[currcon].cmap.len)
  321. fb_get_cmap(&fb_display[currcon].cmap, 1, sun3fb_getcolreg, info);
  322. if (info->display_fg) {
  323. lastconsole = info->display_fg->vc_num;
  324. if (lastconsole != con && 
  325.     (fontwidth(&fb_display[lastconsole]) != fontwidth(&fb_display[con]) ||
  326.      fontheight(&fb_display[lastconsole]) != fontheight(&fb_display[con])))
  327. fb->cursor.mode |= CURSOR_SHAPE;
  328. }
  329. x_margin = (fb_display[con].var.xres_virtual - fb_display[con].var.xres) / 2;
  330. y_margin = (fb_display[con].var.yres_virtual - fb_display[con].var.yres) / 2;
  331. if (fb->margins)
  332. fb->margins(fb, &fb_display[con], x_margin, y_margin);
  333. if (fb->graphmode || fb->x_margin != x_margin || fb->y_margin != y_margin) {
  334. fb->x_margin = x_margin; fb->y_margin = y_margin;
  335. sun3fb_clear_margin(&fb_display[con], 0);
  336. }
  337. currcon = con;
  338. /* Install new colormap */
  339. do_install_cmap(con, info);
  340. return 0;
  341. }
  342.     /*
  343.      *  Update the `var' structure (called by fbcon.c)
  344.      */
  345. static int sun3fbcon_updatevar(int con, struct fb_info *info)
  346. {
  347. /* Nothing */
  348. return 0;
  349. }
  350.     /*
  351.      *  Blank the display.
  352.      */
  353. static void sun3fbcon_blank(int blank, struct fb_info *info)
  354. {
  355.     struct fb_info_sbusfb *fb = sbusfbinfo(info);
  356.     
  357.     if (blank && fb->blank)
  358.      return fb->blank(fb);
  359.     else if (!blank && fb->unblank)
  360.      return fb->unblank(fb);
  361. }
  362.     /*
  363.      *  Read a single color register and split it into
  364.      *  colors/transparent. Return != 0 for invalid regno.
  365.      */
  366. static int sun3fb_getcolreg(u_int regno, u_int *red, u_int *green, u_int *blue,
  367.   u_int *transp, struct fb_info *info)
  368. {
  369. struct fb_info_sbusfb *fb = sbusfbinfo(info);
  370. if (!fb->color_map || regno > 255)
  371. return 1;
  372. *red = (fb->color_map CM(regno, 0)<<8) | fb->color_map CM(regno, 0);
  373. *green = (fb->color_map CM(regno, 1)<<8) | fb->color_map CM(regno, 1);
  374. *blue = (fb->color_map CM(regno, 2)<<8) | fb->color_map CM(regno, 2);
  375. *transp = 0;
  376. return 0;
  377. }
  378.     /*
  379.      *  Set a single color register. The values supplied are already
  380.      *  rounded down to the hardware's capabilities (according to the
  381.      *  entries in the var structure). Return != 0 for invalid regno.
  382.      */
  383. static int sun3fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  384.     u_int transp, struct fb_info *info)
  385. {
  386. struct fb_info_sbusfb *fb = sbusfbinfo(info);
  387. if (!fb->color_map || regno > 255)
  388. return 1;
  389. red >>= 8;
  390. green >>= 8;
  391. blue >>= 8;
  392. fb->color_map CM(regno, 0) = red;
  393. fb->color_map CM(regno, 1) = green;
  394. fb->color_map CM(regno, 2) = blue;
  395. return 0;
  396. }
  397. static void do_install_cmap(int con, struct fb_info *info)
  398. {
  399. struct fb_info_sbusfb *fb = sbusfbinfo(info);
  400. if (con != currcon)
  401. return;
  402. if (fb_display[con].cmap.len)
  403. fb_set_cmap(&fb_display[con].cmap, 1, sun3fb_setcolreg, info);
  404. else
  405. fb_set_cmap(fb_default_cmap(1<<fb_display[con].var.bits_per_pixel),
  406.     1, sun3fb_setcolreg, info);
  407. if (fb->loadcmap)
  408. (*fb->loadcmap)(fb, &fb_display[con], 0, 256);
  409. }
  410. static int sun3fb_set_font(struct display *p, int width, int height)
  411. {
  412. int w = p->var.xres_virtual, h = p->var.yres_virtual;
  413. int depth = p->var.bits_per_pixel;
  414. struct fb_info_sbusfb *fb = sbusfbinfod(p);
  415. int x_margin, y_margin;
  416. if (depth > 8) depth = 8;
  417. x_margin = (w % width) / 2;
  418. y_margin = (h % height) / 2;
  419. p->var.xres = w - 2*x_margin;
  420. p->var.yres = h - 2*y_margin;
  421. fb->cursor.mode |= CURSOR_SHAPE;
  422. if (fb->margins)
  423. fb->margins(fb, p, x_margin, y_margin);
  424. if (fb->x_margin != x_margin || fb->y_margin != y_margin) {
  425. fb->x_margin = x_margin; fb->y_margin = y_margin;
  426. sun3fb_clear_margin(p, 0);
  427. }
  428. return 1;
  429. }
  430. void sun3fb_palette(int enter)
  431. {
  432. int i;
  433. struct display *p;
  434. for (i = 0; i < MAX_NR_CONSOLES; i++) {
  435. p = &fb_display[i];
  436. if (p->dispsw && p->dispsw->setup == sun3fb_disp_setup &&
  437.     p->fb_info->display_fg &&
  438.     p->fb_info->display_fg->vc_num == i) {
  439. struct fb_info_sbusfb *fb = sbusfbinfod(p);
  440. if (fb->restore_palette) {
  441. if (enter)
  442. fb->restore_palette(fb);
  443. else if (vt_cons[i]->vc_mode != KD_GRAPHICS)
  444.          vc_cons[i].d->vc_sw->con_set_palette(vc_cons[i].d, color_table);
  445. }
  446. }
  447. }
  448. }
  449.     /*
  450.      *  Initialisation
  451.      */
  452. static int __init sun3fb_init_fb(int fbtype, unsigned long addr)
  453. {
  454. static struct linux_sbus_device sdb;
  455. struct fb_fix_screeninfo *fix;
  456. struct fb_var_screeninfo *var;
  457. struct display *disp;
  458. struct fb_info_sbusfb *fb;
  459. struct fbtype *type;
  460. int linebytes, w, h, depth;
  461. char *p = NULL;
  462. fb = kmalloc(sizeof(struct fb_info_sbusfb), GFP_ATOMIC);
  463. if (!fb)
  464. return -ENOMEM;
  465. memset(fb, 0, sizeof(struct fb_info_sbusfb));
  466. fix = &fb->fix;
  467. var = &fb->var;
  468. disp = &fb->disp;
  469. type = &fb->type;
  470. sdb.reg_addrs[0].phys_addr = addr;
  471. fb->sbdp = &sdb;
  472. type->fb_type = fbtype;
  473. type->fb_height = h = 900;
  474. type->fb_width  = w = 1152;
  475. sizechange:
  476. type->fb_depth  = depth = (fbtype == FBTYPE_SUN2BW) ? 1 : 8;
  477. linebytes = w * depth / 8;
  478. type->fb_size   = PAGE_ALIGN((linebytes) * h);
  479. fb->x_margin = (w & 7) / 2;
  480. fb->y_margin = (h & 15) / 2;
  481. var->xres_virtual = w;
  482. var->yres_virtual = h;
  483. var->xres = w - 2*fb->x_margin;
  484. var->yres = h - 2*fb->y_margin;
  485. var->bits_per_pixel = depth;
  486. var->height = var->width = -1;
  487. var->pixclock = 10000;
  488. var->vmode = FB_VMODE_NONINTERLACED;
  489. var->red.length = var->green.length = var->blue.length = 8;
  490. fix->line_length = linebytes;
  491. fix->smem_len = type->fb_size;
  492. fix->type = FB_TYPE_PACKED_PIXELS;
  493. fix->visual = FB_VISUAL_PSEUDOCOLOR;
  494. fb->info.node = -1;
  495. fb->info.fbops = &sun3fb_ops;
  496. fb->info.disp = disp;
  497. strcpy(fb->info.fontname, fontname);
  498. fb->info.changevar = NULL;
  499. fb->info.switch_con = &sun3fbcon_switch;
  500. fb->info.updatevar = &sun3fbcon_updatevar;
  501. fb->info.blank = &sun3fbcon_blank;
  502. fb->info.flags = FBINFO_FLAG_DEFAULT;
  503. fb->cursor.hwsize.fbx = 32;
  504. fb->cursor.hwsize.fby = 32;
  505. if (depth > 1 && !fb->color_map) {
  506. if((fb->color_map = kmalloc(256 * 3, GFP_ATOMIC))==NULL)
  507. return -ENOMEM;
  508. }
  509. switch(fbtype) {
  510. #ifdef CONFIG_FB_CGSIX
  511. case FBTYPE_SUNFAST_COLOR:
  512. p = cgsixfb_init(fb); break;
  513. #endif
  514. #ifdef CONFIG_FB_BWTWO
  515. case FBTYPE_SUN2BW:
  516. p = bwtwofb_init(fb); break;
  517. #endif
  518. }
  519. fix->smem_start = fb->disp.screen_base;
  520. if (!p) {
  521. kfree(fb);
  522. return -ENODEV;
  523. }
  524. if (p == SBUSFBINIT_SIZECHANGE)
  525. goto sizechange;
  526. disp->dispsw = &fb->dispsw;
  527. if (fb->setcursor) {
  528. fb->dispsw.cursor = sun3fb_cursor;
  529. if (curblink) {
  530. fb->cursor.blink_rate = DEFAULT_CURSOR_BLINK_RATE;
  531. init_timer(&fb->cursor.timer);
  532. fb->cursor.timer.expires = jiffies + fb->cursor.blink_rate;
  533. fb->cursor.timer.data = (unsigned long)fb;
  534. fb->cursor.timer.function = sun3fb_cursor_timer_handler;
  535. add_timer(&fb->cursor.timer);
  536. }
  537. }
  538. fb->cursor.mode = CURSOR_SHAPE;
  539. fb->dispsw.set_font = sun3fb_set_font;
  540. fb->setup = fb->dispsw.setup;
  541. fb->dispsw.setup = sun3fb_disp_setup;
  542. fb->dispsw.clear_margins = NULL;
  543. disp->var = *var;
  544. disp->visual = fix->visual;
  545. disp->type = fix->type;
  546. disp->type_aux = fix->type_aux;
  547. disp->line_length = fix->line_length;
  548. if (fb->blank)
  549. disp->can_soft_blank = 1;
  550. sun3fb_set_var(var, -1, &fb->info);
  551. if (register_framebuffer(&fb->info) < 0) {
  552. kfree(fb);
  553. return -EINVAL;
  554. }
  555. printk("fb%d: %sn", GET_FB_IDX(fb->info.node), p);
  556. return 0;
  557. }
  558. int __init sun3fb_init(void)
  559. {
  560. extern int con_is_present(void);
  561. unsigned long addr;
  562. char p4id;
  563. if (!con_is_present()) return;
  564. printk("sun3fb_init()n");
  565. #ifdef CONFIG_SUN3
  566. addr = 0xfe20000;
  567.         switch(*(romvec->pv_fbtype))
  568.         {
  569. case FBTYPE_SUN2BW:
  570. return sun3fb_init_fb(FBTYPE_SUN2BW, addr);
  571. case FBTYPE_SUN3COLOR:
  572. printk("cg3 detected but not supportedn");
  573. return -EINVAL;
  574. }
  575. #else
  576. addr = SUN3X_VIDEO_BASE;
  577. p4id = *(char *)SUN3X_VIDEO_P4ID;
  578. p4id = (p4id == 0x45) ? p4id : (p4id & 0xf0);
  579. switch (p4id) {
  580. case 0x00:
  581. return sun3fb_init_fb(FBTYPE_SUN2BW, addr);
  582. #if 0 /* not yet */
  583. case 0x40:
  584. sun3fb_init_fb(FBTYPE_SUN4COLOR, addr);
  585. break;
  586. case 0x45:
  587. sun3fb_init_fb(FBTYPE_SUN8COLOR, addr);
  588. break;
  589. #endif
  590. case 0x60:
  591. return sun3fb_init_fb(FBTYPE_SUNFAST_COLOR, addr);
  592. }
  593. #endif
  594. }
  595. MODULE_LICENSE("GPL");