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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/video/S3Triofb.c -- Open Firmware based frame buffer device
  3.  *
  4.  * Copyright (C) 1997 Peter De Schrijver
  5.  *
  6.  *  This driver is partly based on the PowerMac console driver:
  7.  *
  8.  * Copyright (C) 1996 Paul Mackerras
  9.  *
  10.  *  and on the Open Firmware based frame buffer device:
  11.  *
  12.  * Copyright (C) 1997 Geert Uytterhoeven
  13.  *
  14.  *  This file is subject to the terms and conditions of the GNU General Public
  15.  *  License. See the file COPYING in the main directory of this archive for
  16.  *  more details.
  17.  */
  18. /*
  19. Bugs : + OF dependencies should be removed.
  20.                + This driver should be merged with the CyberVision driver. The
  21.                  CyberVision is a Zorro III implementation of the S3Trio64 chip.
  22. */
  23. #include <linux/config.h>
  24. #include <linux/kernel.h>
  25. #include <linux/module.h>
  26. #include <linux/errno.h>
  27. #include <linux/string.h>
  28. #include <linux/mm.h>
  29. #include <linux/tty.h>
  30. #include <linux/slab.h>
  31. #include <linux/vmalloc.h>
  32. #include <linux/delay.h>
  33. #include <linux/interrupt.h>
  34. #include <linux/fb.h>
  35. #include <linux/init.h>
  36. #include <linux/selection.h>
  37. #include <asm/io.h>
  38. #include <asm/prom.h>
  39. #include <asm/pci-bridge.h>
  40. #include <linux/pci.h>
  41. #ifdef CONFIG_FB_COMPAT_XPMAC
  42. #include <asm/vc_ioctl.h>
  43. #endif
  44. #include <video/fbcon.h>
  45. #include <video/fbcon-cfb8.h>
  46. #include <video/s3blit.h>
  47. #define mem_in8(addr)           in_8((void *)(addr))
  48. #define mem_in16(addr)          in_le16((void *)(addr))
  49. #define mem_in32(addr)          in_le32((void *)(addr))
  50. #define mem_out8(val, addr)     out_8((void *)(addr), val)
  51. #define mem_out16(val, addr)    out_le16((void *)(addr), val)
  52. #define mem_out32(val, addr)    out_le32((void *)(addr), val)
  53. #define IO_OUT16VAL(v, r)       (((v) << 8) | (r))
  54. static int currcon = 0;
  55. static struct display disp;
  56. static struct fb_info fb_info;
  57. static struct { u_char red, green, blue, pad; } palette[256];
  58. static char s3trio_name[16] = "S3Trio ";
  59. static char *s3trio_base;
  60. static struct fb_fix_screeninfo fb_fix;
  61. static struct fb_var_screeninfo fb_var = { 0, };
  62.     /*
  63.      *  Interface used by the world
  64.      */
  65. static void __init s3triofb_of_init(struct device_node *dp);
  66. static int s3trio_get_fix(struct fb_fix_screeninfo *fix, int con,
  67.   struct fb_info *info);
  68. static int s3trio_get_var(struct fb_var_screeninfo *var, int con,
  69.   struct fb_info *info);
  70. static int s3trio_set_var(struct fb_var_screeninfo *var, int con,
  71.   struct fb_info *info);
  72. static int s3trio_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  73.    struct fb_info *info);
  74. static int s3trio_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  75.    struct fb_info *info);
  76. static int s3trio_pan_display(struct fb_var_screeninfo *var, int con,
  77.       struct fb_info *info);
  78.     /*
  79.      *  Interface to the low level console driver
  80.      */
  81. int s3triofb_init(void);
  82. static int s3triofbcon_switch(int con, struct fb_info *info);
  83. static int s3triofbcon_updatevar(int con, struct fb_info *info);
  84. static void s3triofbcon_blank(int blank, struct fb_info *info);
  85. #if 0
  86. static int s3triofbcon_setcmap(struct fb_cmap *cmap, int con);
  87. #endif
  88.     /*
  89.      *  Text console acceleration
  90.      */
  91. #ifdef FBCON_HAS_CFB8
  92. static struct display_switch fbcon_trio8;
  93. #endif
  94.     /*
  95.      *    Accelerated Functions used by the low level console driver
  96.      */
  97. static void Trio_WaitQueue(u_short fifo);
  98. static void Trio_WaitBlit(void);
  99. static void Trio_BitBLT(u_short curx, u_short cury, u_short destx,
  100. u_short desty, u_short width, u_short height,
  101. u_short mode);
  102. static void Trio_RectFill(u_short x, u_short y, u_short width, u_short height,
  103.   u_short mode, u_short color);
  104. static void Trio_MoveCursor(u_short x, u_short y);
  105.     /*
  106.      *  Internal routines
  107.      */
  108. static int s3trio_getcolreg(u_int regno, u_int *red, u_int *green, u_int *blue,
  109.                          u_int *transp, struct fb_info *info);
  110. static int s3trio_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  111.                          u_int transp, struct fb_info *info);
  112. static void do_install_cmap(int con, struct fb_info *info);
  113. static struct fb_ops s3trio_ops = {
  114. owner: THIS_MODULE,
  115. fb_get_fix: s3trio_get_fix,
  116. fb_get_var: s3trio_get_var,
  117. fb_set_var: s3trio_set_var,
  118. fb_get_cmap: s3trio_get_cmap,
  119. fb_set_cmap: s3trio_set_cmap,
  120. fb_pan_display: s3trio_pan_display,
  121. };
  122.     /*
  123.      *  Get the Fixed Part of the Display
  124.      */
  125. static int s3trio_get_fix(struct fb_fix_screeninfo *fix, int con,
  126.   struct fb_info *info)
  127. {
  128.     memcpy(fix, &fb_fix, sizeof(fb_fix));
  129.     return 0;
  130. }
  131.     /*
  132.      *  Get the User Defined Part of the Display
  133.      */
  134. static int s3trio_get_var(struct fb_var_screeninfo *var, int con,
  135.   struct fb_info *info)
  136. {
  137.     memcpy(var, &fb_var, sizeof(fb_var));
  138.     return 0;
  139. }
  140.     /*
  141.      *  Set the User Defined Part of the Display
  142.      */
  143. static int s3trio_set_var(struct fb_var_screeninfo *var, int con,
  144.   struct fb_info *info)
  145. {
  146.     if (var->xres > fb_var.xres || var->yres > fb_var.yres ||
  147. var->bits_per_pixel > fb_var.bits_per_pixel )
  148. /* || var->nonstd || var->vmode != FB_VMODE_NONINTERLACED) */
  149. return -EINVAL;
  150.     if (var->xres_virtual > fb_var.xres_virtual) {
  151. outw(IO_OUT16VAL((var->xres_virtual /8) & 0xff, 0x13), 0x3d4);
  152. outw(IO_OUT16VAL(((var->xres_virtual /8 ) & 0x300) >> 3, 0x51), 0x3d4);
  153. fb_var.xres_virtual = var->xres_virtual;
  154. fb_fix.line_length = var->xres_virtual;
  155.     }
  156.     fb_var.yres_virtual = var->yres_virtual;
  157.     memcpy(var, &fb_var, sizeof(fb_var));
  158.     return 0;
  159. }
  160.     /*
  161.      *  Pan or Wrap the Display
  162.      *
  163.      *  This call looks only at xoffset, yoffset and the FB_VMODE_YWRAP flag
  164.      */
  165. static int s3trio_pan_display(struct fb_var_screeninfo *var, int con,
  166.       struct fb_info *info)
  167. {
  168.     unsigned int base;
  169.     if (var->xoffset > (var->xres_virtual - var->xres))
  170. return -EINVAL;
  171.     if (var->yoffset > (var->yres_virtual - var->yres))
  172. return -EINVAL;
  173.     fb_var.xoffset = var->xoffset;
  174.     fb_var.yoffset = var->yoffset;
  175.     base = var->yoffset * fb_fix.line_length + var->xoffset;
  176.     outw(IO_OUT16VAL((base >> 8) & 0xff, 0x0c),0x03D4);
  177.     outw(IO_OUT16VAL(base  & 0xff, 0x0d),0x03D4);
  178.     outw(IO_OUT16VAL((base >> 16) & 0xf, 0x69),0x03D4);
  179.     return 0;
  180. }
  181.     /*
  182.      *  Get the Colormap
  183.      */
  184. static int s3trio_get_cmap(struct fb_cmap *cmap, int kspc, int con,
  185.    struct fb_info *info)
  186. {
  187.     if (con == currcon) /* current console? */
  188. return fb_get_cmap(cmap, kspc, s3trio_getcolreg, info);
  189.     else if (fb_display[con].cmap.len) /* non default colormap? */
  190. fb_copy_cmap(&fb_display[con].cmap, cmap, kspc ? 0 : 2);
  191.     else
  192. fb_copy_cmap(fb_default_cmap(1 << fb_display[con].var.bits_per_pixel),
  193.      cmap, kspc ? 0 : 2);
  194.     return 0;
  195. }
  196.     /*
  197.      *  Set the Colormap
  198.      */
  199. static int s3trio_set_cmap(struct fb_cmap *cmap, int kspc, int con,
  200.    struct fb_info *info)
  201. {
  202.     int err;
  203.     if (!fb_display[con].cmap.len) { /* no colormap allocated? */
  204. if ((err = fb_alloc_cmap(&fb_display[con].cmap,
  205.  1<<fb_display[con].var.bits_per_pixel, 0)))
  206.     return err;
  207.     }
  208.     if (con == currcon) /* current console? */
  209. return fb_set_cmap(cmap, kspc, s3trio_setcolreg, info);
  210.     else
  211. fb_copy_cmap(cmap, &fb_display[con].cmap, kspc ? 0 : 1);
  212.     return 0;
  213. }
  214. int __init s3triofb_init(void)
  215. {
  216. struct device_node *dp;
  217. dp = find_devices("S3Trio");
  218. if (dp != 0)
  219.     s3triofb_of_init(dp);
  220. return 0;
  221. }
  222. void __init s3trio_resetaccel(void){
  223. #define EC01_ENH_ENB    0x0005
  224. #define EC01_LAW_ENB    0x0010
  225. #define EC01_MMIO_ENB   0x0020
  226. #define EC00_RESET      0x8000
  227. #define EC00_ENABLE     0x4000
  228. #define MF_MULT_MISC    0xE000
  229. #define SRC_FOREGROUND  0x0020
  230. #define SRC_BACKGROUND  0x0000
  231. #define MIX_SRC                 0x0007
  232. #define MF_T_CLIP       0x1000
  233. #define MF_L_CLIP       0x2000
  234. #define MF_B_CLIP       0x3000
  235. #define MF_R_CLIP       0x4000
  236. #define MF_PIX_CONTROL  0xA000
  237. #define MFA_SRC_FOREGR_MIX      0x0000
  238. #define MF_PIX_CONTROL  0xA000
  239. outw(EC00_RESET,  0x42e8);
  240. inw(  0x42e8);
  241. outw(EC00_ENABLE,  0x42e8);
  242. inw(  0x42e8);
  243. outw(EC01_ENH_ENB | EC01_LAW_ENB,
  244.    0x4ae8);
  245. outw(MF_MULT_MISC,  0xbee8); /* 16 bit I/O registers */
  246. /* Now set some basic accelerator registers */
  247. Trio_WaitQueue(0x0400);
  248. outw(SRC_FOREGROUND | MIX_SRC, 0xbae8);
  249. outw(SRC_BACKGROUND | MIX_SRC,  0xb6e8);/* direct color*/
  250. outw(MF_T_CLIP | 0, 0xbee8 );     /* clip virtual area  */
  251. outw(MF_L_CLIP | 0, 0xbee8 );
  252. outw(MF_R_CLIP | (640 - 1), 0xbee8);
  253. outw(MF_B_CLIP | (480 - 1),  0xbee8);
  254. Trio_WaitQueue(0x0400);
  255. outw(0xffff,  0xaae8);       /* Enable all planes */
  256. outw(0xffff, 0xaae8);       /* Enable all planes */
  257. outw( MF_PIX_CONTROL | MFA_SRC_FOREGR_MIX,  0xbee8);
  258. }
  259. int __init s3trio_init(struct device_node *dp){
  260.     u_char bus, dev;
  261.     unsigned int t32;
  262.     unsigned short cmd;
  263. pci_device_loc(dp,&bus,&dev);
  264.                 pcibios_read_config_dword(bus, dev, PCI_VENDOR_ID, &t32);
  265.                 if(t32 == (PCI_DEVICE_ID_S3_TRIO << 16) + PCI_VENDOR_ID_S3) {
  266.                         pcibios_read_config_dword(bus, dev, PCI_BASE_ADDRESS_0, &t32);
  267.                         pcibios_read_config_dword(bus, dev, PCI_BASE_ADDRESS_1, &t32);
  268. pcibios_read_config_word(bus, dev, PCI_COMMAND,&cmd);
  269. pcibios_write_config_word(bus, dev, PCI_COMMAND, PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
  270. pcibios_write_config_dword(bus, dev, PCI_BASE_ADDRESS_0,0xffffffff);
  271.                         pcibios_read_config_dword(bus, dev, PCI_BASE_ADDRESS_0, &t32);
  272. /* This is a gross hack as OF only maps enough memory for the framebuffer and
  273.    we want to use MMIO too. We should find out which chunk of address space
  274.    we can use here */
  275. pcibios_write_config_dword(bus,dev,PCI_BASE_ADDRESS_0,0xc6000000);
  276. /* unlock s3 */
  277. outb(0x01, 0x3C3);
  278. outb(inb(0x03CC) | 1, 0x3c2);
  279. outw(IO_OUT16VAL(0x48, 0x38),0x03D4);
  280. outw(IO_OUT16VAL(0xA0, 0x39),0x03D4);
  281. outb(0x33,0x3d4);
  282. outw(IO_OUT16VAL((inb(0x3d5) & ~(0x2 | 0x10 |  0x40)) |
  283.   0x20, 0x33), 0x3d4);
  284. outw(IO_OUT16VAL(0x6, 0x8), 0x3c4);
  285. /* switch to MMIO only mode */
  286. outb(0x58, 0x3d4);
  287. outw(IO_OUT16VAL(inb(0x3d5) | 3 | 0x10, 0x58), 0x3d4);
  288. outw(IO_OUT16VAL(8, 0x53), 0x3d4);
  289. /* switch off I/O accesses */
  290. #if 0
  291. pcibios_write_config_word(bus, dev, PCI_COMMAND,
  292.         PCI_COMMAND_IO | PCI_COMMAND_MEMORY);
  293. #endif
  294. return 1;
  295.                 }
  296. return 0;
  297. }
  298.     /*
  299.      *  Initialisation
  300.      *  We heavily rely on OF for the moment. This needs fixing.
  301.      */
  302. static void __init s3triofb_of_init(struct device_node *dp)
  303. {
  304.     int i, *pp, len;
  305.     unsigned long address, size;
  306.     u_long *CursorBase;
  307.     strncat(s3trio_name, dp->name, sizeof(s3trio_name));
  308.     s3trio_name[sizeof(s3trio_name)-1] = '';
  309.     strcpy(fb_fix.id, s3trio_name);
  310.     if((pp = (int *)get_property(dp, "vendor-id", &len)) != NULL
  311. && *pp!=PCI_VENDOR_ID_S3) {
  312. printk("%s: can't find S3 Trio boardn", dp->full_name);
  313. return;
  314.     }
  315.     if((pp = (int *)get_property(dp, "device-id", &len)) != NULL
  316. && *pp!=PCI_DEVICE_ID_S3_TRIO) {
  317. printk("%s: can't find S3 Trio boardn", dp->full_name);
  318. return;
  319.     }
  320.     if ((pp = (int *)get_property(dp, "depth", &len)) != NULL
  321. && len == sizeof(int) && *pp != 8) {
  322. printk("%s: can't use depth = %dn", dp->full_name, *pp);
  323. return;
  324.     }
  325.     if ((pp = (int *)get_property(dp, "width", &len)) != NULL
  326. && len == sizeof(int))
  327. fb_var.xres = fb_var.xres_virtual = *pp;
  328.     if ((pp = (int *)get_property(dp, "height", &len)) != NULL
  329. && len == sizeof(int))
  330. fb_var.yres = fb_var.yres_virtual = *pp;
  331.     if ((pp = (int *)get_property(dp, "linebytes", &len)) != NULL
  332. && len == sizeof(int))
  333. fb_fix.line_length = *pp;
  334.     else
  335. fb_fix.line_length = fb_var.xres_virtual;
  336.     fb_fix.smem_len = fb_fix.line_length*fb_var.yres;
  337.     address = 0xc6000000;
  338.     size = 64*1024*1024;
  339.     if (!request_mem_region(address, size, "S3triofb"))
  340. return;
  341.     s3trio_init(dp);
  342.     s3trio_base = ioremap(address, size);
  343.     fb_fix.smem_start = address;
  344.     fb_fix.type = FB_TYPE_PACKED_PIXELS;
  345.     fb_fix.type_aux = 0;
  346.     fb_fix.accel = FB_ACCEL_S3_TRIO64;
  347.     fb_fix.mmio_start = address+0x1000000;
  348.     fb_fix.mmio_len = 0x1000000;
  349.     fb_fix.xpanstep = 1;
  350.     fb_fix.ypanstep = 1;
  351.     s3trio_resetaccel();
  352.     mem_out8(0x30, s3trio_base+0x1008000 + 0x03D4);
  353.     mem_out8(0x2d, s3trio_base+0x1008000 + 0x03D4);
  354.     mem_out8(0x2e, s3trio_base+0x1008000 + 0x03D4);
  355.     mem_out8(0x50, s3trio_base+0x1008000 + 0x03D4);
  356.     /* disable HW cursor */
  357.     mem_out8(0x39, s3trio_base+0x1008000 + 0x03D4);
  358.     mem_out8(0xa0, s3trio_base+0x1008000 + 0x03D5);
  359.     mem_out8(0x45, s3trio_base+0x1008000 + 0x03D4);
  360.     mem_out8(0, s3trio_base+0x1008000 + 0x03D5);
  361.     mem_out8(0x4e, s3trio_base+0x1008000 + 0x03D4);
  362.     mem_out8(0, s3trio_base+0x1008000 + 0x03D5);
  363.     mem_out8(0x4f, s3trio_base+0x1008000 + 0x03D4);
  364.     mem_out8(0, s3trio_base+0x1008000 + 0x03D5);
  365.     /* init HW cursor */
  366.     CursorBase = (u_long *)(s3trio_base + 2*1024*1024 - 0x400);
  367. for (i = 0; i < 8; i++) {
  368. *(CursorBase  +(i*4)) = 0xffffff00;
  369. *(CursorBase+1+(i*4)) = 0xffff0000;
  370. *(CursorBase+2+(i*4)) = 0xffff0000;
  371. *(CursorBase+3+(i*4)) = 0xffff0000;
  372. }
  373. for (i = 8; i < 64; i++) {
  374. *(CursorBase  +(i*4)) = 0xffff0000;
  375. *(CursorBase+1+(i*4)) = 0xffff0000;
  376. *(CursorBase+2+(i*4)) = 0xffff0000;
  377. *(CursorBase+3+(i*4)) = 0xffff0000;
  378. }
  379.     mem_out8(0x4c, s3trio_base+0x1008000 + 0x03D4);
  380.     mem_out8(((2*1024 - 1)&0xf00)>>8, s3trio_base+0x1008000 + 0x03D5);
  381.     mem_out8(0x4d, s3trio_base+0x1008000 + 0x03D4);
  382.     mem_out8((2*1024 - 1) & 0xff, s3trio_base+0x1008000 + 0x03D5);
  383.     mem_out8(0x45, s3trio_base+0x1008000 + 0x03D4);
  384.     mem_in8(s3trio_base+0x1008000 + 0x03D4);
  385.     mem_out8(0x4a, s3trio_base+0x1008000 + 0x03D4);
  386.     mem_out8(0x80, s3trio_base+0x1008000 + 0x03D5);
  387.     mem_out8(0x80, s3trio_base+0x1008000 + 0x03D5);
  388.     mem_out8(0x80, s3trio_base+0x1008000 + 0x03D5);
  389.     mem_out8(0x4b, s3trio_base+0x1008000 + 0x03D4);
  390.     mem_out8(0x00, s3trio_base+0x1008000 + 0x03D5);
  391.     mem_out8(0x00, s3trio_base+0x1008000 + 0x03D5);
  392.     mem_out8(0x00, s3trio_base+0x1008000 + 0x03D5);
  393.     mem_out8(0x45, s3trio_base+0x1008000 + 0x03D4);
  394.     mem_out8(0, s3trio_base+0x1008000 + 0x03D5);
  395.     /* setup default color table */
  396. for(i = 0; i < 16; i++) {
  397. int j = color_table[i];
  398. palette[i].red=default_red[j];
  399. palette[i].green=default_grn[j];
  400. palette[i].blue=default_blu[j];
  401. }
  402.     s3trio_setcolreg(255, 56, 100, 160, 0, NULL /* not used */);
  403.     s3trio_setcolreg(254, 0, 0, 0, 0, NULL /* not used */);
  404.     memset((char *)s3trio_base, 0, 640*480);
  405. #if 0
  406.     Trio_RectFill(0, 0, 90, 90, 7, 1);
  407. #endif
  408.     fb_fix.visual = FB_VISUAL_PSEUDOCOLOR ;
  409.     fb_var.xoffset = fb_var.yoffset = 0;
  410.     fb_var.bits_per_pixel = 8;
  411.     fb_var.grayscale = 0;
  412.     fb_var.red.offset = fb_var.green.offset = fb_var.blue.offset = 0;
  413.     fb_var.red.length = fb_var.green.length = fb_var.blue.length = 8;
  414.     fb_var.red.msb_right = fb_var.green.msb_right = fb_var.blue.msb_right = 0;
  415.     fb_var.transp.offset = fb_var.transp.length = fb_var.transp.msb_right = 0;
  416.     fb_var.nonstd = 0;
  417.     fb_var.activate = 0;
  418.     fb_var.height = fb_var.width = -1;
  419.     fb_var.accel_flags = FB_ACCELF_TEXT;
  420. #warning FIXME: always obey fb_var.accel_flags
  421.     fb_var.pixclock = 1;
  422.     fb_var.left_margin = fb_var.right_margin = 0;
  423.     fb_var.upper_margin = fb_var.lower_margin = 0;
  424.     fb_var.hsync_len = fb_var.vsync_len = 0;
  425.     fb_var.sync = 0;
  426.     fb_var.vmode = FB_VMODE_NONINTERLACED;
  427.     disp.var = fb_var;
  428.     disp.cmap.start = 0;
  429.     disp.cmap.len = 0;
  430.     disp.cmap.red = disp.cmap.green = disp.cmap.blue = disp.cmap.transp = NULL;
  431.     disp.screen_base = s3trio_base;
  432.     disp.visual = fb_fix.visual;
  433.     disp.type = fb_fix.type;
  434.     disp.type_aux = fb_fix.type_aux;
  435.     disp.ypanstep = 0;
  436.     disp.ywrapstep = 0;
  437.     disp.line_length = fb_fix.line_length;
  438.     disp.can_soft_blank = 1;
  439.     disp.inverse = 0;
  440. #ifdef FBCON_HAS_CFB8
  441.     if (fb_var.accel_flags & FB_ACCELF_TEXT)
  442. disp.dispsw = &fbcon_trio8;
  443.     else
  444. disp.dispsw = &fbcon_cfb8;
  445. #else
  446.     disp.dispsw = &fbcon_dummy;
  447. #endif
  448.     disp.scrollmode = fb_var.accel_flags & FB_ACCELF_TEXT ? 0 : SCROLL_YREDRAW;
  449.     strcpy(fb_info.modename, "Trio64 ");
  450.     strncat(fb_info.modename, dp->full_name, sizeof(fb_info.modename));
  451.     fb_info.node = -1;
  452.     fb_info.fbops = &s3trio_ops;
  453. #if 0
  454.     fb_info.fbvar_num = 1;
  455.     fb_info.fbvar = &fb_var;
  456. #endif
  457.     fb_info.disp = &disp;
  458.     fb_info.fontname[0] = '';
  459.     fb_info.changevar = NULL;
  460.     fb_info.switch_con = &s3triofbcon_switch;
  461.     fb_info.updatevar = &s3triofbcon_updatevar;
  462.     fb_info.blank = &s3triofbcon_blank;
  463. #if 0
  464.     fb_info.setcmap = &s3triofbcon_setcmap;
  465. #endif
  466. #ifdef CONFIG_FB_COMPAT_XPMAC
  467.     if (!console_fb_info) {
  468. display_info.height = fb_var.yres;
  469. display_info.width = fb_var.xres;
  470. display_info.depth = 8;
  471. display_info.pitch = fb_fix.line_length;
  472. display_info.mode = 0;
  473. strncpy(display_info.name, dp->name, sizeof(display_info.name));
  474. display_info.fb_address = (unsigned long)fb_fix.smem_start;
  475. display_info.disp_reg_address = address + 0x1008000;
  476. display_info.cmap_adr_address = address + 0x1008000 + 0x3c8;
  477. display_info.cmap_data_address = address + 0x1008000 + 0x3c9;
  478. console_fb_info = &fb_info;
  479.     }
  480. #endif /* CONFIG_FB_COMPAT_XPMAC) */
  481.     fb_info.flags = FBINFO_FLAG_DEFAULT;
  482.     if (register_framebuffer(&fb_info) < 0)
  483. return;
  484.     printk("fb%d: S3 Trio frame buffer device on %sn",
  485.    GET_FB_IDX(fb_info.node), dp->full_name);
  486. }
  487. static int s3triofbcon_switch(int con, struct fb_info *info)
  488. {
  489.     /* Do we have to save the colormap? */
  490.     if (fb_display[currcon].cmap.len)
  491. fb_get_cmap(&fb_display[currcon].cmap, 1, s3trio_getcolreg, info);
  492.     currcon = con;
  493.     /* Install new colormap */
  494.     do_install_cmap(con,info);
  495.     return 0;
  496. }
  497.     /*
  498.      *  Update the `var' structure (called by fbcon.c)
  499.      */
  500. static int s3triofbcon_updatevar(int con, struct fb_info *info)
  501. {
  502.     /* Nothing */
  503.     return 0;
  504. }
  505.     /*
  506.      *  Blank the display.
  507.      */
  508. static void s3triofbcon_blank(int blank, struct fb_info *info)
  509. {
  510.     unsigned char x;
  511.     mem_out8(0x1, s3trio_base+0x1008000 + 0x03c4);
  512.     x = mem_in8(s3trio_base+0x1008000 + 0x03c5);
  513.     mem_out8((x & (~0x20)) | (blank << 5), s3trio_base+0x1008000 + 0x03c5);
  514. }
  515.     /*
  516.      *  Set the colormap
  517.      */
  518. #if 0
  519. static int s3triofbcon_setcmap(struct fb_cmap *cmap, int con)
  520. {
  521.     return(s3trio_set_cmap(cmap, 1, con, &fb_info));
  522. }
  523. #endif
  524.     /*
  525.      *  Read a single color register and split it into
  526.      *  colors/transparent. Return != 0 for invalid regno.
  527.      */
  528. static int s3trio_getcolreg(u_int regno, u_int *red, u_int *green, u_int *blue,
  529.                          u_int *transp, struct fb_info *info)
  530. {
  531.     if (regno > 255)
  532. return 1;
  533.     *red = (palette[regno].red << 8) | palette[regno].red;
  534.     *green = (palette[regno].green << 8) | palette[regno].green;
  535.     *blue = (palette[regno].blue << 8) | palette[regno].blue;
  536.     *transp = 0;
  537.     return 0;
  538. }
  539.     /*
  540.      *  Set a single color register. Return != 0 for invalid regno.
  541.      */
  542. static int s3trio_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
  543.                             u_int transp, struct fb_info *info)
  544. {
  545.     if (regno > 255)
  546. return 1;
  547.     red >>= 8;
  548.     green >>= 8;
  549.     blue >>= 8;
  550.     palette[regno].red = red;
  551.     palette[regno].green = green;
  552.     palette[regno].blue = blue;
  553.     mem_out8(regno,s3trio_base+0x1008000 + 0x3c8);
  554.     mem_out8((red & 0xff) >> 2,s3trio_base+0x1008000 + 0x3c9);
  555.     mem_out8((green & 0xff) >> 2,s3trio_base+0x1008000 + 0x3c9);
  556.     mem_out8((blue & 0xff) >> 2,s3trio_base+0x1008000 + 0x3c9);
  557.     return 0;
  558. }
  559. static void do_install_cmap(int con, struct fb_info *info)
  560. {
  561.     if (con != currcon)
  562. return;
  563.     if (fb_display[con].cmap.len)
  564. fb_set_cmap(&fb_display[con].cmap, 1, s3trio_setcolreg, &fb_info);
  565.     else
  566. fb_set_cmap(fb_default_cmap(fb_display[con].var.bits_per_pixel), 1,
  567.     s3trio_setcolreg, &fb_info);
  568. }
  569. static void Trio_WaitQueue(u_short fifo) {
  570. u_short status;
  571.         do
  572.         {
  573. status = mem_in16(s3trio_base + 0x1000000 + 0x9AE8);
  574. }  while (!(status & fifo));
  575. }
  576. static void Trio_WaitBlit(void) {
  577. u_short status;
  578.         do
  579.         {
  580. status = mem_in16(s3trio_base + 0x1000000 + 0x9AE8);
  581. }  while (status & 0x200);
  582. }
  583. static void Trio_BitBLT(u_short curx, u_short cury, u_short destx,
  584. u_short desty, u_short width, u_short height,
  585. u_short mode) {
  586. u_short blitcmd = 0xc011;
  587. /* Set drawing direction */
  588.         /* -Y, X maj, -X (default) */
  589. if (curx > destx)
  590. blitcmd |= 0x0020;  /* Drawing direction +X */
  591. else {
  592. curx  += (width - 1);
  593. destx += (width - 1);
  594. }
  595. if (cury > desty)
  596. blitcmd |= 0x0080;  /* Drawing direction +Y */
  597. else {
  598. cury  += (height - 1);
  599. desty += (height - 1);
  600. }
  601. Trio_WaitQueue(0x0400);
  602. outw(0xa000,  0xBEE8);
  603. outw(0x60 | mode,  0xBAE8);
  604. outw(curx,  0x86E8);
  605. outw(cury,  0x82E8);
  606. outw(destx,  0x8EE8);
  607. outw(desty,  0x8AE8);
  608. outw(height - 1,  0xBEE8);
  609. outw(width - 1,  0x96E8);
  610. outw(blitcmd,  0x9AE8);
  611. }
  612. static void Trio_RectFill(u_short x, u_short y, u_short width, u_short height,
  613.   u_short mode, u_short color) {
  614. u_short blitcmd = 0x40b1;
  615. Trio_WaitQueue(0x0400);
  616. outw(0xa000,  0xBEE8);
  617. outw((0x20 | mode),  0xBAE8);
  618. outw(0xe000,  0xBEE8);
  619. outw(color,  0xA6E8);
  620. outw(x,  0x86E8);
  621. outw(y,  0x82E8);
  622. outw((height - 1), 0xBEE8);
  623. outw((width - 1), 0x96E8);
  624. outw(blitcmd,  0x9AE8);
  625. }
  626. static void Trio_MoveCursor(u_short x, u_short y) {
  627. mem_out8(0x39, s3trio_base + 0x1008000 + 0x3d4);
  628. mem_out8(0xa0, s3trio_base + 0x1008000 + 0x3d5);
  629. mem_out8(0x46, s3trio_base + 0x1008000 + 0x3d4);
  630. mem_out8((x & 0x0700) >> 8, s3trio_base + 0x1008000 + 0x3d5);
  631. mem_out8(0x47, s3trio_base + 0x1008000 + 0x3d4);
  632. mem_out8(x & 0x00ff, s3trio_base + 0x1008000 + 0x3d5);
  633. mem_out8(0x48, s3trio_base + 0x1008000 + 0x3d4);
  634. mem_out8((y & 0x0700) >> 8, s3trio_base + 0x1008000 + 0x3d5);
  635. mem_out8(0x49, s3trio_base + 0x1008000 + 0x3d4);
  636. mem_out8(y & 0x00ff, s3trio_base + 0x1008000 + 0x3d5);
  637. }
  638.     /*
  639.      *  Text console acceleration
  640.      */
  641. #ifdef FBCON_HAS_CFB8
  642. static void fbcon_trio8_bmove(struct display *p, int sy, int sx, int dy,
  643.       int dx, int height, int width)
  644. {
  645.     sx *= 8; dx *= 8; width *= 8;
  646.     Trio_BitBLT((u_short)sx, (u_short)(sy*fontheight(p)), (u_short)dx,
  647.  (u_short)(dy*fontheight(p)), (u_short)width,
  648.  (u_short)(height*fontheight(p)), (u_short)S3_NEW);
  649. }
  650. static void fbcon_trio8_clear(struct vc_data *conp, struct display *p, int sy,
  651.       int sx, int height, int width)
  652. {
  653.     unsigned char bg;
  654.     sx *= 8; width *= 8;
  655.     bg = attr_bgcol_ec(p,conp);
  656.     Trio_RectFill((u_short)sx,
  657.    (u_short)(sy*fontheight(p)),
  658.    (u_short)width,
  659.    (u_short)(height*fontheight(p)),
  660.    (u_short)S3_NEW,
  661.    (u_short)bg);
  662. }
  663. static void fbcon_trio8_putc(struct vc_data *conp, struct display *p, int c,
  664.      int yy, int xx)
  665. {
  666.     Trio_WaitBlit();
  667.     fbcon_cfb8_putc(conp, p, c, yy, xx);
  668. }
  669. static void fbcon_trio8_putcs(struct vc_data *conp, struct display *p,
  670.       const unsigned short *s, int count, int yy, int xx)
  671. {
  672.     Trio_WaitBlit();
  673.     fbcon_cfb8_putcs(conp, p, s, count, yy, xx);
  674. }
  675. static void fbcon_trio8_revc(struct display *p, int xx, int yy)
  676. {
  677.     Trio_WaitBlit();
  678.     fbcon_cfb8_revc(p, xx, yy);
  679. }
  680. static struct display_switch fbcon_trio8 = {
  681.    setup: fbcon_cfb8_setup,
  682.    bmove: fbcon_trio8_bmove,
  683.    clear: fbcon_trio8_clear,
  684.    putc: fbcon_trio8_putc,
  685.    putcs: fbcon_trio8_putcs,
  686.    revc: fbcon_trio8_revc,
  687.    clear_margins: fbcon_cfb8_clear_margins,
  688.    fontwidthmask: FONTWIDTH(8)
  689. };
  690. #endif
  691. MODULE_LICENSE("GPL");