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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/video/mdacon.c -- Low level MDA based console driver
  3.  *
  4.  * (c) 1998 Andrew Apted <ajapted@netspace.net.au>
  5.  *
  6.  *      including portions (c) 1995-1998 Patrick Caulfield.
  7.  *
  8.  *      slight improvements (c) 2000 Edward Betts <edward@debian.org>
  9.  *
  10.  *  This file is based on the VGA console driver (vgacon.c):
  11.  *
  12.  * Created 28 Sep 1997 by Geert Uytterhoeven
  13.  *
  14.  * Rewritten by Martin Mares <mj@ucw.cz>, July 1998
  15.  *
  16.  *  and on the old console.c, vga.c and vesa_blank.c drivers:
  17.  *
  18.  * Copyright (C) 1991, 1992  Linus Torvalds
  19.  *     1995  Jay Estabrook
  20.  *
  21.  *  This file is subject to the terms and conditions of the GNU General Public
  22.  *  License.  See the file COPYING in the main directory of this archive for
  23.  *  more details.
  24.  *
  25.  *  Changelog:
  26.  *  Paul G. (03/2001) Fix mdacon= boot prompt to use __setup().
  27.  */
  28. #include <linux/types.h>
  29. #include <linux/sched.h>
  30. #include <linux/fs.h>
  31. #include <linux/kernel.h>
  32. #include <linux/module.h>
  33. #include <linux/tty.h>
  34. #include <linux/console.h>
  35. #include <linux/console_struct.h>
  36. #include <linux/string.h>
  37. #include <linux/kd.h>
  38. #include <linux/slab.h>
  39. #include <linux/vt_kern.h>
  40. #include <linux/vt_buffer.h>
  41. #include <linux/selection.h>
  42. #include <linux/spinlock.h>
  43. #include <linux/ioport.h>
  44. #include <linux/delay.h>
  45. #include <linux/init.h>
  46. #include <asm/io.h>
  47. #include <asm/vga.h>
  48. static spinlock_t mda_lock = SPIN_LOCK_UNLOCKED;
  49. /* description of the hardware layout */
  50. static unsigned long mda_vram_base; /* Base of video memory */
  51. static unsigned long mda_vram_len; /* Size of video memory */
  52. static unsigned int mda_num_columns; /* Number of text columns */
  53. static unsigned int mda_num_lines; /* Number of text lines */
  54. static unsigned int mda_index_port; /* Register select port */
  55. static unsigned int mda_value_port; /* Register value port */
  56. static unsigned int mda_mode_port; /* Mode control port */
  57. static unsigned int mda_status_port; /* Status and Config port */
  58. static unsigned int mda_gfx_port; /* Graphics control port */
  59. /* current hardware state */
  60. static int mda_origin_loc=-1;
  61. static int mda_cursor_loc=-1;
  62. static int mda_cursor_size_from=-1;
  63. static int mda_cursor_size_to=-1;
  64. static enum { TYPE_MDA, TYPE_HERC, TYPE_HERCPLUS, TYPE_HERCCOLOR } mda_type;
  65. static char *mda_type_name;
  66. /* console information */
  67. static int mda_first_vc = 13;
  68. static int mda_last_vc  = 16;
  69. static struct vc_data *mda_display_fg = NULL;
  70. MODULE_PARM(mda_first_vc, "1-255i");
  71. MODULE_PARM(mda_last_vc,  "1-255i");
  72. /* MDA register values
  73.  */
  74. #define MDA_CURSOR_BLINKING 0x00
  75. #define MDA_CURSOR_OFF 0x20
  76. #define MDA_CURSOR_SLOWBLINK 0x60
  77. #define MDA_MODE_GRAPHICS 0x02
  78. #define MDA_MODE_VIDEO_EN 0x08
  79. #define MDA_MODE_BLINK_EN 0x20
  80. #define MDA_MODE_GFX_PAGE1 0x80
  81. #define MDA_STATUS_HSYNC 0x01
  82. #define MDA_STATUS_VSYNC 0x80
  83. #define MDA_STATUS_VIDEO 0x08
  84. #define MDA_CONFIG_COL132 0x08
  85. #define MDA_GFX_MODE_EN 0x01
  86. #define MDA_GFX_PAGE_EN 0x02
  87. /*
  88.  * MDA could easily be classified as "pre-dinosaur hardware".
  89.  */
  90. static void write_mda_b(unsigned int val, unsigned char reg)
  91. {
  92. unsigned long flags;
  93. spin_lock_irqsave(&mda_lock, flags);
  94. outb_p(reg, mda_index_port); 
  95. outb_p(val, mda_value_port);
  96. spin_unlock_irqrestore(&mda_lock, flags);
  97. }
  98. static void write_mda_w(unsigned int val, unsigned char reg)
  99. {
  100. unsigned long flags;
  101. spin_lock_irqsave(&mda_lock, flags);
  102. outb_p(reg,   mda_index_port); outb_p(val >> 8,   mda_value_port);
  103. outb_p(reg+1, mda_index_port); outb_p(val & 0xff, mda_value_port);
  104. spin_unlock_irqrestore(&mda_lock, flags);
  105. }
  106. #ifdef TEST_MDA_B
  107. static int test_mda_b(unsigned char val, unsigned char reg)
  108. {
  109. unsigned long flags;
  110. spin_lock_irqsave(&mda_lock, flags);
  111. outb_p(reg, mda_index_port); 
  112. outb  (val, mda_value_port);
  113. udelay(20); val = (inb_p(mda_value_port) == val);
  114. spin_unlock_irqrestore(&mda_lock, flags);
  115. return val;
  116. }
  117. #endif
  118. static inline void mda_set_origin(unsigned int location)
  119. {
  120. if (mda_origin_loc == location)
  121. return;
  122. write_mda_w(location >> 1, 0x0c);
  123. mda_origin_loc = location;
  124. }
  125. static inline void mda_set_cursor(unsigned int location) 
  126. {
  127. if (mda_cursor_loc == location)
  128. return;
  129. write_mda_w(location >> 1, 0x0e);
  130. mda_cursor_loc = location;
  131. }
  132. static inline void mda_set_cursor_size(int from, int to)
  133. {
  134. if (mda_cursor_size_from==from && mda_cursor_size_to==to)
  135. return;
  136. if (from > to) {
  137. write_mda_b(MDA_CURSOR_OFF, 0x0a); /* disable cursor */
  138. } else {
  139. write_mda_b(from, 0x0a); /* cursor start */
  140. write_mda_b(to,   0x0b); /* cursor end */
  141. }
  142. mda_cursor_size_from = from;
  143. mda_cursor_size_to   = to;
  144. }
  145. #ifndef MODULE
  146. static int __init mdacon_setup(char *str)
  147. {
  148. /* command line format: mdacon=<first>,<last> */
  149. int ints[3];
  150. str = get_options(str, ARRAY_SIZE(ints), ints);
  151. if (ints[0] < 2)
  152. return 0;
  153. if (ints[1] < 1 || ints[1] > MAX_NR_CONSOLES || 
  154.     ints[2] < 1 || ints[2] > MAX_NR_CONSOLES)
  155. return 0;
  156. mda_first_vc = ints[1];
  157. mda_last_vc  = ints[2];
  158. return 1;
  159. }
  160. __setup("mdacon=", mdacon_setup);
  161. #endif
  162. static int __init mda_detect(void)
  163. {
  164. int count=0;
  165. u16 *p, p_save;
  166. u16 *q, q_save;
  167. /* do a memory check */
  168. p = (u16 *) mda_vram_base;
  169. q = (u16 *) (mda_vram_base + 0x01000);
  170. p_save = scr_readw(p); q_save = scr_readw(q);
  171. scr_writew(0xAA55, p); if (scr_readw(p) == 0xAA55) count++;
  172. scr_writew(0x55AA, p); if (scr_readw(p) == 0x55AA) count++;
  173. scr_writew(p_save, p);
  174. if (count != 2) {
  175. return 0;
  176. }
  177. /* check if we have 4K or 8K */
  178. scr_writew(0xA55A, q); scr_writew(0x0000, p);
  179. if (scr_readw(q) == 0xA55A) count++;
  180. scr_writew(0x5AA5, q); scr_writew(0x0000, p);
  181. if (scr_readw(q) == 0x5AA5) count++;
  182. scr_writew(p_save, p); scr_writew(q_save, q);
  183. if (count == 4) {
  184. mda_vram_len = 0x02000;
  185. }
  186. /* Ok, there is definitely a card registering at the correct
  187.  * memory location, so now we do an I/O port test.
  188.  */
  189. #ifdef TEST_MDA_B
  190. /* Edward: These two mess `tests' mess up my cursor on bootup */
  191. /* cursor low register */
  192. if (! test_mda_b(0x66, 0x0f)) {
  193. return 0;
  194. }
  195. /* cursor low register */
  196. if (! test_mda_b(0x99, 0x0f)) {
  197. return 0;
  198. }
  199. #endif
  200. /* See if the card is a Hercules, by checking whether the vsync
  201.  * bit of the status register is changing.  This test lasts for
  202.  * approximately 1/10th of a second.
  203.  */
  204. p_save = q_save = inb_p(mda_status_port) & MDA_STATUS_VSYNC;
  205. for (count=0; count < 50000 && p_save == q_save; count++) {
  206. q_save = inb(mda_status_port) & MDA_STATUS_VSYNC;
  207. udelay(2);
  208. }
  209. if (p_save != q_save) {
  210. switch (inb_p(mda_status_port) & 0x70) {
  211. case 0x10:
  212. mda_type = TYPE_HERCPLUS;
  213. mda_type_name = "HerculesPlus";
  214. break;
  215. case 0x50:
  216. mda_type = TYPE_HERCCOLOR;
  217. mda_type_name = "HerculesColor";
  218. break;
  219. default:
  220. mda_type = TYPE_HERC;
  221. mda_type_name = "Hercules";
  222. break;
  223. }
  224. }
  225. return 1;
  226. }
  227. static void __init mda_initialize(void)
  228. {
  229. write_mda_b(97, 0x00); /* horizontal total */
  230. write_mda_b(80, 0x01); /* horizontal displayed */
  231. write_mda_b(82, 0x02); /* horizontal sync pos */
  232. write_mda_b(15, 0x03); /* horizontal sync width */
  233. write_mda_b(25, 0x04); /* vertical total */
  234. write_mda_b(6,  0x05); /* vertical total adjust */
  235. write_mda_b(25, 0x06); /* vertical displayed */
  236. write_mda_b(25, 0x07); /* vertical sync pos */
  237. write_mda_b(2,  0x08); /* interlace mode */
  238. write_mda_b(13, 0x09); /* maximum scanline */
  239. write_mda_b(12, 0x0a); /* cursor start */
  240. write_mda_b(13, 0x0b); /* cursor end */
  241. write_mda_w(0x0000, 0x0c); /* start address */
  242. write_mda_w(0x0000, 0x0e); /* cursor location */
  243. outb_p(MDA_MODE_VIDEO_EN | MDA_MODE_BLINK_EN, mda_mode_port);
  244. outb_p(0x00, mda_status_port);
  245. outb_p(0x00, mda_gfx_port);
  246. }
  247. static const char __init *mdacon_startup(void)
  248. {
  249. mda_num_columns = 80;
  250. mda_num_lines   = 25;
  251. mda_vram_base = VGA_MAP_MEM(0xb0000);
  252. mda_vram_len  = 0x01000;
  253. mda_index_port  = 0x3b4;
  254. mda_value_port  = 0x3b5;
  255. mda_mode_port   = 0x3b8;
  256. mda_status_port = 0x3ba;
  257. mda_gfx_port    = 0x3bf;
  258. mda_type = TYPE_MDA;
  259. mda_type_name = "MDA";
  260. if (! mda_detect()) {
  261. printk("mdacon: MDA card not detected.n");
  262. return NULL;
  263. }
  264. if (mda_type != TYPE_MDA) {
  265. mda_initialize();
  266. }
  267. /* cursor looks ugly during boot-up, so turn it off */
  268. mda_set_cursor(mda_vram_len - 1);
  269. printk("mdacon: %s with %ldK of memory detected.n",
  270. mda_type_name, mda_vram_len/1024);
  271. return "MDA-2";
  272. }
  273. static void mdacon_init(struct vc_data *c, int init)
  274. {
  275. c->vc_complement_mask = 0x0800;  /* reverse video */
  276. c->vc_display_fg = &mda_display_fg;
  277. if (init) {
  278. c->vc_cols = mda_num_columns;
  279. c->vc_rows = mda_num_lines;
  280. } else {
  281. vc_resize_con(mda_num_lines, mda_num_columns, c->vc_num);
  282.         }
  283. /* make the first MDA console visible */
  284. if (mda_display_fg == NULL)
  285. mda_display_fg = c;
  286. MOD_INC_USE_COUNT;
  287. }
  288. static void mdacon_deinit(struct vc_data *c)
  289. {
  290. /* con_set_default_unimap(c->vc_num); */
  291. if (mda_display_fg == c)
  292. mda_display_fg = NULL;
  293. MOD_DEC_USE_COUNT;
  294. }
  295. static inline u16 mda_convert_attr(u16 ch)
  296. {
  297. u16 attr = 0x0700;
  298. /* Underline and reverse-video are mutually exclusive on MDA.
  299.  * Since reverse-video is used for cursors and selected areas,
  300.  * it takes precedence. 
  301.  */
  302. if (ch & 0x0800) attr = 0x7000; /* reverse */
  303. else if (ch & 0x0400) attr = 0x0100; /* underline */
  304. return ((ch & 0x0200) << 2) |  /* intensity */ 
  305. (ch & 0x8000) | /* blink */ 
  306. (ch & 0x00ff) | attr;
  307. }
  308. static u8 mdacon_build_attr(struct vc_data *c, u8 color, u8 intensity, 
  309.     u8 blink, u8 underline, u8 reverse)
  310. {
  311. /* The attribute is just a bit vector:
  312.  *
  313.  * Bit 0..1 : intensity (0..2)
  314.  * Bit 2    : underline
  315.  * Bit 3    : reverse
  316.  * Bit 7    : blink
  317.  */
  318. return (intensity & 3) |
  319. ((underline & 1) << 2) |
  320. ((reverse   & 1) << 3) |
  321. ((blink     & 1) << 7);
  322. }
  323. static void mdacon_invert_region(struct vc_data *c, u16 *p, int count)
  324. {
  325. for (; count > 0; count--) {
  326. scr_writew(scr_readw(p) ^ 0x0800, p);
  327. p++;
  328. }
  329. }
  330. #define MDA_ADDR(x,y)  ((u16 *) mda_vram_base + (y)*mda_num_columns + (x))
  331. static void mdacon_putc(struct vc_data *c, int ch, int y, int x)
  332. {
  333. scr_writew(mda_convert_attr(ch), MDA_ADDR(x, y));
  334. }
  335. static void mdacon_putcs(struct vc_data *c, const unsigned short *s,
  336.          int count, int y, int x)
  337. {
  338. u16 *dest = MDA_ADDR(x, y);
  339. for (; count > 0; count--) {
  340. scr_writew(mda_convert_attr(scr_readw(s++)), dest++);
  341. }
  342. }
  343. static void mdacon_clear(struct vc_data *c, int y, int x, 
  344.   int height, int width)
  345. {
  346. u16 *dest = MDA_ADDR(x, y);
  347. u16 eattr = mda_convert_attr(c->vc_video_erase_char);
  348. if (width <= 0 || height <= 0)
  349. return;
  350. if (x==0 && width==mda_num_columns) {
  351. scr_memsetw(dest, eattr, height*width*2);
  352. } else {
  353. for (; height > 0; height--, dest+=mda_num_columns)
  354. scr_memsetw(dest, eattr, width*2);
  355. }
  356. }
  357.                         
  358. static void mdacon_bmove(struct vc_data *c, int sy, int sx, 
  359.  int dy, int dx, int height, int width)
  360. {
  361. u16 *src, *dest;
  362. if (width <= 0 || height <= 0)
  363. return;
  364. if (sx==0 && dx==0 && width==mda_num_columns) {
  365. scr_memmovew(MDA_ADDR(0,dy), MDA_ADDR(0,sy), height*width*2);
  366. } else if (dy < sy || (dy == sy && dx < sx)) {
  367. src  = MDA_ADDR(sx, sy);
  368. dest = MDA_ADDR(dx, dy);
  369. for (; height > 0; height--) {
  370. scr_memmovew(dest, src, width*2);
  371. src  += mda_num_columns;
  372. dest += mda_num_columns;
  373. }
  374. } else {
  375. src  = MDA_ADDR(sx, sy+height-1);
  376. dest = MDA_ADDR(dx, dy+height-1);
  377. for (; height > 0; height--) {
  378. scr_memmovew(dest, src, width*2);
  379. src  -= mda_num_columns;
  380. dest -= mda_num_columns;
  381. }
  382. }
  383. }
  384. static int mdacon_switch(struct vc_data *c)
  385. {
  386. return 1; /* redrawing needed */
  387. }
  388. static int mdacon_set_palette(struct vc_data *c, unsigned char *table)
  389. {
  390. return -EINVAL;
  391. }
  392. static int mdacon_blank(struct vc_data *c, int blank)
  393. {
  394. if (mda_type == TYPE_MDA) {
  395. if (blank) 
  396. scr_memsetw((void *)mda_vram_base, 
  397. mda_convert_attr(c->vc_video_erase_char),
  398. c->vc_screenbuf_size);
  399. /* Tell console.c that it has to restore the screen itself */
  400. return 1;
  401. } else {
  402. if (blank)
  403. outb_p(0x00, mda_mode_port); /* disable video */
  404. else
  405. outb_p(MDA_MODE_VIDEO_EN | MDA_MODE_BLINK_EN, 
  406. mda_mode_port);
  407. return 0;
  408. }
  409. }
  410. static int mdacon_font_op(struct vc_data *c, struct console_font_op *op)
  411. {
  412. return -ENOSYS;
  413. }
  414. static int mdacon_scrolldelta(struct vc_data *c, int lines)
  415. {
  416. return 0;
  417. }
  418. static void mdacon_cursor(struct vc_data *c, int mode)
  419. {
  420. if (mode == CM_ERASE) {
  421. mda_set_cursor(mda_vram_len - 1);
  422. return;
  423. }
  424. mda_set_cursor(c->vc_y*mda_num_columns*2 + c->vc_x*2);
  425. switch (c->vc_cursor_type & 0x0f) {
  426. case CUR_LOWER_THIRD: mda_set_cursor_size(10, 13); break;
  427. case CUR_LOWER_HALF: mda_set_cursor_size(7,  13); break;
  428. case CUR_TWO_THIRDS: mda_set_cursor_size(4,  13); break;
  429. case CUR_BLOCK: mda_set_cursor_size(1,  13); break;
  430. case CUR_NONE: mda_set_cursor_size(14, 13); break;
  431. default: mda_set_cursor_size(12, 13); break;
  432. }
  433. }
  434. static int mdacon_scroll(struct vc_data *c, int t, int b, int dir, int lines)
  435. {
  436. u16 eattr = mda_convert_attr(c->vc_video_erase_char);
  437. if (!lines)
  438. return 0;
  439. if (lines > c->vc_rows)   /* maximum realistic size */
  440. lines = c->vc_rows;
  441. switch (dir) {
  442. case SM_UP:
  443. scr_memmovew(MDA_ADDR(0,t), MDA_ADDR(0,t+lines),
  444. (b-t-lines)*mda_num_columns*2);
  445. scr_memsetw(MDA_ADDR(0,b-lines), eattr,
  446. lines*mda_num_columns*2);
  447. break;
  448. case SM_DOWN:
  449. scr_memmovew(MDA_ADDR(0,t+lines), MDA_ADDR(0,t),
  450. (b-t-lines)*mda_num_columns*2);
  451. scr_memsetw(MDA_ADDR(0,t), eattr, lines*mda_num_columns*2);
  452. break;
  453. }
  454. return 0;
  455. }
  456. /*
  457.  *  The console `switch' structure for the MDA based console
  458.  */
  459. const struct consw mda_con = {
  460. con_startup: mdacon_startup,
  461. con_init: mdacon_init,
  462. con_deinit: mdacon_deinit,
  463. con_clear: mdacon_clear,
  464. con_putc: mdacon_putc,
  465. con_putcs: mdacon_putcs,
  466. con_cursor: mdacon_cursor,
  467. con_scroll: mdacon_scroll,
  468. con_bmove: mdacon_bmove,
  469. con_switch: mdacon_switch,
  470. con_blank: mdacon_blank,
  471. con_font_op: mdacon_font_op,
  472. con_set_palette: mdacon_set_palette,
  473. con_scrolldelta: mdacon_scrolldelta,
  474. con_build_attr: mdacon_build_attr,
  475. con_invert_region: mdacon_invert_region,
  476. };
  477. void __init mda_console_init(void)
  478. {
  479. if (mda_first_vc > mda_last_vc)
  480. return;
  481. take_over_console(&mda_con, mda_first_vc-1, mda_last_vc-1, 0);
  482. }
  483. #ifdef MODULE
  484. MODULE_LICENSE("GPL");
  485. int init_module(void)
  486. {
  487. mda_console_init();
  488. return 0;
  489. }
  490. void cleanup_module(void)
  491. {
  492. give_up_console(&mda_con);
  493. }
  494. #endif