sticon.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:10k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/video/sti/sticon.c - console driver using HP's STI firmware
  3.  *
  4.  * Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org>
  5.  * Copyright (C) 2001 Helge Deller <deller@gmx.de>
  6.  *
  7.  *  Based on linux/drivers/video/vgacon.c and linux/drivers/video/fbcon.c,
  8.  *  which were
  9.  *
  10.  * Created 28 Sep 1997 by Geert Uytterhoeven
  11.  * Rewritten by Martin Mares <mj@ucw.cz>, July 1998
  12.  * Copyright (C) 1991, 1992  Linus Torvalds
  13.  *     1995  Jay Estabrook
  14.  * Copyright (C) 1995 Geert Uytterhoeven
  15.  * Copyright (C) 1993 Bjoern Brauel
  16.  *    Roman Hodek
  17.  * Copyright (C) 1993 Hamish Macdonald
  18.  *    Greg Harp
  19.  * Copyright (C) 1994 David Carter [carter@compsci.bristol.ac.uk]
  20.  *
  21.  *       with work by William Rucklidge (wjr@cs.cornell.edu)
  22.  *    Geert Uytterhoeven
  23.  *    Jes Sorensen (jds@kom.auc.dk)
  24.  *    Martin Apel
  25.  *       with work by Guenther Kelleter
  26.  *    Martin Schaller
  27.  *    Andreas Schwab
  28.  *    Emmanuel Marty (core@ggi-project.org)
  29.  *    Jakub Jelinek (jj@ultra.linux.cz)
  30.  *    Martin Mares <mj@ucw.cz>
  31.  *
  32.  *  This file is subject to the terms and conditions of the GNU General Public
  33.  *  License.  See the file COPYING in the main directory of this archive for
  34.  *  more details.
  35.  *
  36.  */
  37. #include <linux/init.h>
  38. #include <linux/kernel.h>
  39. #include <linux/tty.h>
  40. #include <linux/console.h>
  41. #include <linux/console_struct.h>
  42. #include <linux/errno.h>
  43. #include <linux/vt_kern.h>
  44. #include <linux/kd.h>
  45. #include <linux/selection.h>
  46. #include <asm/io.h>
  47. #include "sticore.h"
  48. /* switching to graphics mode */
  49. #define BLANK 0
  50. static int vga_is_gfx;
  51. /* Software scrollback */
  52. static unsigned long softback_buf, softback_curr;
  53. static unsigned long softback_in;
  54. static unsigned long /* softback_top, */ softback_end;
  55. static int softback_lines;
  56. /* software cursor */
  57. static int cursor_drawn;
  58. #define CURSOR_DRAW_DELAY (1)
  59. #define DEFAULT_CURSOR_BLINK_RATE (20)
  60. static int vbl_cursor_cnt;
  61. static inline void cursor_undrawn(void)
  62. {
  63.     vbl_cursor_cnt = 0;
  64.     cursor_drawn = 0;
  65. }
  66. static const char *__init sticon_startup(void)
  67. {
  68.     return "STI console";
  69. }
  70. static int sticon_set_palette(struct vc_data *c, unsigned char *table)
  71. {
  72.     return -EINVAL;
  73. }
  74. static int sticon_font_op(struct vc_data *c, struct console_font_op *op)
  75. {
  76.     return -ENOSYS;
  77. }
  78. static void sticon_putc(struct vc_data *conp, int c, int ypos, int xpos)
  79. {
  80.     int unit = conp->vc_num;
  81.     int redraw_cursor = 0;
  82.     if (vga_is_gfx || console_blanked)
  83.     return;
  84.     
  85.     if (vt_cons[unit]->vc_mode != KD_TEXT)
  86.          return;
  87. #if 0
  88.     if ((p->cursor_x == xpos) && (p->cursor_y == ypos)) {
  89.     cursor_undrawn();
  90.     redraw_cursor = 1;
  91.     }
  92. #endif
  93.     sti_putc(default_sti, c, ypos, xpos);
  94.     if (redraw_cursor)
  95.     vbl_cursor_cnt = CURSOR_DRAW_DELAY;
  96. }
  97. static void sticon_putcs(struct vc_data *conp, const unsigned short *s,
  98.  int count, int ypos, int xpos)
  99. {
  100.     int unit = conp->vc_num;
  101.     int redraw_cursor = 0;
  102.     if (vga_is_gfx || console_blanked)
  103.     return;
  104.     if (vt_cons[unit]->vc_mode != KD_TEXT)
  105.          return;
  106.     
  107. #if 0
  108.     if ((p->cursor_y == ypos) && (xpos <= p->cursor_x) &&
  109. (p->cursor_x < (xpos + count))) {
  110.     cursor_undrawn();
  111.     redraw_cursor = 1;
  112.     }
  113. #endif
  114.     while (count--) {
  115. sti_putc(default_sti, scr_readw(s++), ypos, xpos++);
  116.     }
  117.     if (redraw_cursor)
  118.     vbl_cursor_cnt = CURSOR_DRAW_DELAY;
  119. }
  120. static void sticon_cursor(struct vc_data *conp, int mode)
  121. {
  122.     unsigned short car1;
  123.     car1 = conp->vc_screenbuf[conp->vc_x + conp->vc_y * conp->vc_cols];
  124.     switch (mode) {
  125.     case CM_ERASE:
  126. sti_putc(default_sti, car1, conp->vc_y, conp->vc_x);
  127. break;
  128.     case CM_MOVE:
  129.     case CM_DRAW:
  130. switch (conp->vc_cursor_type & 0x0f) {
  131. case CUR_UNDERLINE:
  132. case CUR_LOWER_THIRD:
  133. case CUR_LOWER_HALF:
  134. case CUR_TWO_THIRDS:
  135. case CUR_BLOCK:
  136.     sti_putc(default_sti, (car1 & 255) + (0 << 8) + (7 << 11),
  137.      conp->vc_y, conp->vc_x);
  138.     break;
  139. }
  140. break;
  141.     }
  142. }
  143. static int
  144. sticon_scroll(struct vc_data *conp, int t, int b, int dir, int count)
  145. {
  146.     struct sti_struct *sti = default_sti;
  147.     if (vga_is_gfx)
  148.         return 0;
  149.     sticon_cursor(conp, CM_ERASE);
  150.     switch (dir) {
  151.     case SM_UP:
  152. sti_bmove(sti, t + count, 0, t, 0, b - t - count, conp->vc_cols);
  153. sti_clear(sti, b - count, 0, count, conp->vc_cols, conp->vc_video_erase_char);
  154. break;
  155.     case SM_DOWN:
  156. sti_bmove(sti, t, 0, t + count, 0, b - t - count, conp->vc_cols);
  157. sti_clear(sti, t, 0, count, conp->vc_cols, conp->vc_video_erase_char);
  158. break;
  159.     }
  160.     return 0;
  161. }
  162. static void
  163. sticon_bmove(struct vc_data *conp, int sy, int sx, int dy, int dx,
  164.      int height, int width)
  165. {
  166.     if (!width || !height)
  167.     return;
  168. #if 0
  169.     if (((sy <= p->cursor_y) && (p->cursor_y < sy+height) &&
  170. (sx <= p->cursor_x) && (p->cursor_x < sx+width)) ||
  171. ((dy <= p->cursor_y) && (p->cursor_y < dy+height) &&
  172. (dx <= p->cursor_x) && (p->cursor_x < dx+width)))
  173. sticon_cursor(p, CM_ERASE /*|CM_SOFTBACK*/);
  174. #endif
  175.     sti_bmove(default_sti, sy, sx, dy, dx, height, width);
  176. }
  177. static void sticon_init(struct vc_data *c, int init)
  178. {
  179.     struct sti_struct *sti = default_sti;
  180.     int vc_cols, vc_rows;
  181.     sti_set(sti, 0, 0, sti_onscreen_y(sti), sti_onscreen_x(sti), 0);
  182.     vc_cols = sti_onscreen_x(sti) / sti->font_width;
  183.     vc_rows = sti_onscreen_y(sti) / sti->font_height;
  184.     c->vc_can_do_color = 1;
  185.     
  186.     if (init) {
  187. c->vc_cols = vc_cols;
  188. c->vc_rows = vc_rows;
  189.     } else {
  190. /* vc_rows = (c->vc_rows > vc_rows) ? vc_rows : c->vc_rows; */
  191. /* vc_cols = (c->vc_cols > vc_cols) ? vc_cols : c->vc_cols; */
  192. vc_resize_con(vc_rows, vc_cols, c->vc_num);
  193.     }
  194. }
  195. static void sticon_deinit(struct vc_data *c)
  196. {
  197. }
  198. static void sticon_clear(struct vc_data *conp, int sy, int sx, int height,
  199.  int width)
  200. {
  201.     if (!height || !width)
  202. return;
  203.     sti_clear(default_sti, sy, sx, height, width, conp->vc_video_erase_char);
  204. }
  205. static int sticon_switch(struct vc_data *conp)
  206. {
  207.     return 1; /* needs refreshing */
  208. }
  209. static int sticon_set_origin(struct vc_data *conp)
  210. {
  211.     return 0;
  212. }
  213. static int sticon_blank(struct vc_data *c, int blank)
  214. {
  215.     switch (blank) {
  216.     case 0: /* unblank */
  217. vga_is_gfx = 0;
  218. /* Tell console.c that it has to restore the screen itself */
  219. return 1;
  220.     case 1: /* normal blanking */
  221.     default: /* VESA blanking */
  222. if (vga_is_gfx)
  223. return 0;
  224. sticon_set_origin(c);
  225. sti_clear(default_sti, 0,0, c->vc_rows, c->vc_cols, BLANK);
  226. return 1;
  227.     case -1: /* Entering graphic mode */
  228. sti_clear(default_sti, 0,0, c->vc_rows, c->vc_cols, BLANK);
  229. vga_is_gfx = 1;
  230. return 1;
  231.     }
  232.     return 1; /* console needs to restore screen itself */
  233. }
  234. static int sticon_scrolldelta(struct vc_data *conp, int lines)
  235. {
  236.     return 0;
  237. }
  238. static u16 *sticon_screen_pos(struct vc_data *conp, int offset)
  239. {
  240.     int line;
  241.     unsigned long p;
  242.     if (conp->vc_num != fg_console || !softback_lines)
  243.      return (u16 *)(conp->vc_origin + offset);
  244.     line = offset / conp->vc_size_row;
  245.     if (line >= softback_lines)
  246.      return (u16 *)(conp->vc_origin + offset - softback_lines * conp->vc_size_row);
  247.     p = softback_curr + offset;
  248.     if (p >= softback_end)
  249.      p += softback_buf - softback_end;
  250.     return (u16 *)p;
  251. }
  252. static unsigned long sticon_getxy(struct vc_data *conp, unsigned long pos,
  253.   int *px, int *py)
  254. {
  255.     int x, y;
  256.     unsigned long ret;
  257.     if (pos >= conp->vc_origin && pos < conp->vc_scr_end) {
  258.      unsigned long offset = (pos - conp->vc_origin) / 2;
  259.     
  260.      x = offset % conp->vc_cols;
  261.      y = offset / conp->vc_cols;
  262.      if (conp->vc_num == fg_console)
  263.          y += softback_lines;
  264.      ret = pos + (conp->vc_cols - x) * 2;
  265.     } else if (conp->vc_num == fg_console && softback_lines) {
  266.      unsigned long offset = pos - softback_curr;
  267.     
  268.      if (pos < softback_curr)
  269.          offset += softback_end - softback_buf;
  270.      offset /= 2;
  271.      x = offset % conp->vc_cols;
  272.      y = offset / conp->vc_cols;
  273. ret = pos + (conp->vc_cols - x) * 2;
  274. if (ret == softback_end)
  275.     ret = softback_buf;
  276. if (ret == softback_in)
  277.     ret = conp->vc_origin;
  278.     } else {
  279.      /* Should not happen */
  280.      x = y = 0;
  281.      ret = conp->vc_origin;
  282.     }
  283.     if (px) *px = x;
  284.     if (py) *py = y;
  285.     return ret;
  286. }
  287. static u8 sticon_build_attr(struct vc_data *conp, u8 color, u8 intens,
  288.     u8 blink, u8 underline, u8 reverse)
  289. {
  290.     u8 attr = ((color & 0x70) >> 1) | ((color & 7));
  291.     if (reverse) {
  292. color = ((color >> 3) & 0x7) | ((color & 0x7) << 3);
  293.     }
  294.     return attr;
  295. }
  296. void sticon_invert_region(struct vc_data *conp, u16 *p, int count)
  297. {
  298.     int col = 1; /* vga_can_do_color; */
  299.     while (count--) {
  300. u16 a = scr_readw(p);
  301. if (col)
  302. a = ((a) & 0x88ff) | (((a) & 0x7000) >> 4) | (((a) & 0x0700) << 4);
  303. else
  304. a = ((a & 0x0700) == 0x0100) ? 0x7000 : 0x7700;
  305. scr_writew(a, p++);
  306.     }
  307. }
  308. void sticon_save_screen(struct vc_data *conp)
  309. {
  310. }
  311. struct consw sti_con = {
  312.     con_startup: sticon_startup,
  313.     con_init: sticon_init,
  314.     con_deinit: sticon_deinit,
  315.     con_clear: sticon_clear,
  316.     con_putc: sticon_putc,
  317.     con_putcs: sticon_putcs,
  318.     con_cursor: sticon_cursor,
  319.     con_scroll: sticon_scroll,
  320.     con_bmove: sticon_bmove,
  321.     con_switch: sticon_switch,
  322.     con_blank: sticon_blank,
  323.     con_font_op: sticon_font_op,
  324.     con_set_palette: sticon_set_palette,
  325.     con_scrolldelta: sticon_scrolldelta,
  326.     con_set_origin: sticon_set_origin,
  327.     con_save_screen: sticon_save_screen, 
  328.     con_build_attr: sticon_build_attr,
  329.     con_invert_region: sticon_invert_region, 
  330.     con_screen_pos: sticon_screen_pos,
  331.     con_getxy: sticon_getxy,
  332. };
  333. int __init sticonsole_init(void)
  334. {
  335.     if (sti_init_roms()) {
  336. if (conswitchp == &dummy_con) {
  337.          printk(KERN_INFO "sticon: Initializing STI text console.n");
  338. take_over_console(&sti_con, 0, MAX_NR_CONSOLES - 1, 1);
  339. }
  340. return 0;
  341.     } else
  342. return -ENODEV;
  343. }
  344. module_init(sticonsole_init);