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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/video/vgacon.c -- Low level VGA based console driver
  3.  *
  4.  * Created 28 Sep 1997 by Geert Uytterhoeven
  5.  *
  6.  * Rewritten by Martin Mares <mj@ucw.cz>, July 1998
  7.  *
  8.  *  This file is based on the old console.c, vga.c and vesa_blank.c drivers.
  9.  *
  10.  * Copyright (C) 1991, 1992  Linus Torvalds
  11.  *     1995  Jay Estabrook
  12.  *
  13.  * User definable mapping table and font loading by Eugene G. Crosser,
  14.  * <crosser@average.org>
  15.  *
  16.  * Improved loadable font/UTF-8 support by H. Peter Anvin
  17.  * Feb-Sep 1995 <peter.anvin@linux.org>
  18.  *
  19.  * Colour palette handling, by Simon Tatham
  20.  * 17-Jun-95 <sgt20@cam.ac.uk>
  21.  *
  22.  * if 512 char mode is already enabled don't re-enable it,
  23.  * because it causes screen to flicker, by Mitja Horvat
  24.  * 5-May-96 <mitja.horvat@guest.arnes.si>
  25.  *
  26.  * Use 2 outw instead of 4 outb_p to reduce erroneous text
  27.  * flashing on RHS of screen during heavy console scrolling .
  28.  * Oct 1996, Paul Gortmaker.
  29.  *
  30.  *
  31.  *  This file is subject to the terms and conditions of the GNU General Public
  32.  *  License.  See the file COPYING in the main directory of this archive for
  33.  *  more details.
  34.  */
  35. #include <linux/config.h>
  36. #include <linux/module.h>
  37. #include <linux/types.h>
  38. #include <linux/sched.h>
  39. #include <linux/fs.h>
  40. #include <linux/kernel.h>
  41. #include <linux/tty.h>
  42. #include <linux/console.h>
  43. #include <linux/console_struct.h>
  44. #include <linux/string.h>
  45. #include <linux/kd.h>
  46. #include <linux/slab.h>
  47. #include <linux/vt_kern.h>
  48. #include <linux/selection.h>
  49. #include <linux/spinlock.h>
  50. #include <linux/ioport.h>
  51. #include <linux/init.h>
  52. #include <asm/io.h>
  53. static spinlock_t vga_lock = SPIN_LOCK_UNLOCKED;
  54. #define BLANK 0x0020
  55. #define CAN_LOAD_EGA_FONTS /* undefine if the user must not do this */
  56. #define CAN_LOAD_PALETTE /* undefine if the user must not do this */
  57. /* You really do _NOT_ want to define this, unless you have buggy
  58.  * Trident VGA which will resize cursor when moving it between column
  59.  * 15 & 16. If you define this and your VGA is OK, inverse bug will
  60.  * appear.
  61.  */
  62. #undef TRIDENT_GLITCH
  63. #define dac_reg 0x3c8
  64. #define dac_val 0x3c9
  65. #define attrib_port 0x3c0
  66. #define seq_port_reg 0x3c4
  67. #define seq_port_val 0x3c5
  68. #define gr_port_reg 0x3ce
  69. #define gr_port_val 0x3cf
  70. #define video_misc_rd 0x3cc
  71. #define video_misc_wr 0x3c2
  72. /*
  73.  *  Interface used by the world
  74.  */
  75. static const char *vgacon_startup(void);
  76. static void vgacon_init(struct vc_data *c, int init);
  77. static void vgacon_deinit(struct vc_data *c);
  78. static void vgacon_cursor(struct vc_data *c, int mode);
  79. static int vgacon_switch(struct vc_data *c);
  80. static int vgacon_blank(struct vc_data *c, int blank);
  81. static int vgacon_font_op(struct vc_data *c, struct console_font_op *op);
  82. static int vgacon_set_palette(struct vc_data *c, unsigned char *table);
  83. static int vgacon_scrolldelta(struct vc_data *c, int lines);
  84. static int vgacon_set_origin(struct vc_data *c);
  85. static void vgacon_save_screen(struct vc_data *c);
  86. static int vgacon_scroll(struct vc_data *c, int t, int b, int dir, int lines);
  87. static u8 vgacon_build_attr(struct vc_data *c, u8 color, u8 intensity, u8 blink, u8 underline, u8 reverse);
  88. static void vgacon_invert_region(struct vc_data *c, u16 *p, int count);
  89. static unsigned long vgacon_uni_pagedir[2];
  90. /* Description of the hardware situation */
  91. static unsigned long   vga_vram_base; /* Base of video memory */
  92. static unsigned long   vga_vram_end; /* End of video memory */
  93. static u16             vga_video_port_reg; /* Video register select port */
  94. static u16             vga_video_port_val; /* Video register value port */
  95. static unsigned int    vga_video_num_columns; /* Number of text columns */
  96. static unsigned int    vga_video_num_lines; /* Number of text lines */
  97. static int        vga_can_do_color = 0; /* Do we support colors? */
  98. static unsigned int    vga_default_font_height; /* Height of default screen font */
  99. static unsigned char   vga_video_type; /* Card type */
  100. static unsigned char   vga_hardscroll_enabled;
  101. #ifdef CONFIG_IA64_SOFTSDV_HACKS
  102. /*
  103.  * SoftSDV doesn't have hardware assist VGA scrolling 
  104.  */
  105. static unsigned char   vga_hardscroll_user_enable = 0;
  106. #else
  107. static unsigned char   vga_hardscroll_user_enable = 1;
  108. #endif
  109. static unsigned char   vga_font_is_default = 1;
  110. static int        vga_vesa_blanked;
  111. static int        vga_palette_blanked;
  112. static int        vga_is_gfx;
  113. static int        vga_512_chars;
  114. static int        vga_video_font_height;
  115. static unsigned int    vga_rolled_over = 0;
  116. static int __init no_scroll(char *str)
  117. {
  118. /*
  119.  * Disabling scrollback is required for the Braillex ib80-piezo
  120.  * Braille reader made by F.H. Papenmeier (Germany).
  121.  * Use the "no-scroll" bootflag.
  122.  */
  123. vga_hardscroll_user_enable = vga_hardscroll_enabled = 0;
  124. return 1;
  125. }
  126. __setup("no-scroll", no_scroll);
  127. /*
  128.  * By replacing the four outb_p with two back to back outw, we can reduce
  129.  * the window of opportunity to see text mislocated to the RHS of the
  130.  * console during heavy scrolling activity. However there is the remote
  131.  * possibility that some pre-dinosaur hardware won't like the back to back
  132.  * I/O. Since the Xservers get away with it, we should be able to as well.
  133.  */
  134. static inline void write_vga(unsigned char reg, unsigned int val)
  135. {
  136. unsigned int v1, v2;
  137. unsigned long flags;
  138. /*
  139.  * ddprintk might set the console position from interrupt
  140.  * handlers, thus the write has to be IRQ-atomic.
  141.  */
  142. spin_lock_irqsave(&vga_lock, flags);
  143. #ifndef SLOW_VGA
  144. v1 = reg + (val & 0xff00);
  145. v2 = reg + 1 + ((val << 8) & 0xff00);
  146. outw(v1, vga_video_port_reg);
  147. outw(v2, vga_video_port_reg);
  148. #else
  149. outb_p(reg, vga_video_port_reg);
  150. outb_p(val >> 8, vga_video_port_val);
  151. outb_p(reg+1, vga_video_port_reg);
  152. outb_p(val & 0xff, vga_video_port_val);
  153. #endif
  154. spin_unlock_irqrestore(&vga_lock, flags);
  155. }
  156. static const char __init *vgacon_startup(void)
  157. {
  158. const char *display_desc = NULL;
  159. u16 saved1, saved2;
  160. volatile u16 *p;
  161. if (ORIG_VIDEO_ISVGA == VIDEO_TYPE_VLFB) {
  162. no_vga:
  163. #ifdef CONFIG_DUMMY_CONSOLE
  164. conswitchp = &dummy_con;
  165. return conswitchp->con_startup();
  166. #else
  167. return NULL;
  168. #endif
  169. }
  170. vga_video_num_lines = ORIG_VIDEO_LINES;
  171. vga_video_num_columns = ORIG_VIDEO_COLS;
  172. if (ORIG_VIDEO_MODE == 7) /* Is this a monochrome display? */
  173. {
  174. vga_vram_base = 0xb0000;
  175. vga_video_port_reg = 0x3b4;
  176. vga_video_port_val = 0x3b5;
  177. if ((ORIG_VIDEO_EGA_BX & 0xff) != 0x10)
  178. {
  179. static struct resource ega_console_resource = { "ega", 0x3B0, 0x3BF };
  180. vga_video_type = VIDEO_TYPE_EGAM;
  181. vga_vram_end = 0xb8000;
  182. display_desc = "EGA+";
  183. request_resource(&ioport_resource, &ega_console_resource);
  184. }
  185. else
  186. {
  187. static struct resource mda1_console_resource = { "mda", 0x3B0, 0x3BB };
  188. static struct resource mda2_console_resource = { "mda", 0x3BF, 0x3BF };
  189. vga_video_type = VIDEO_TYPE_MDA;
  190. vga_vram_end = 0xb2000;
  191. display_desc = "*MDA";
  192. request_resource(&ioport_resource, &mda1_console_resource);
  193. request_resource(&ioport_resource, &mda2_console_resource);
  194. vga_video_font_height = 14;
  195. }
  196. }
  197. else /* If not, it is color. */
  198. {
  199. vga_can_do_color = 1;
  200. vga_vram_base = 0xb8000;
  201. vga_video_port_reg = 0x3d4;
  202. vga_video_port_val = 0x3d5;
  203. if ((ORIG_VIDEO_EGA_BX & 0xff) != 0x10)
  204. {
  205. int i;
  206. vga_vram_end = 0xc0000;
  207. if (!ORIG_VIDEO_ISVGA) {
  208. static struct resource ega_console_resource = { "ega", 0x3C0, 0x3DF };
  209. vga_video_type = VIDEO_TYPE_EGAC;
  210. display_desc = "EGA";
  211. request_resource(&ioport_resource, &ega_console_resource);
  212. } else {
  213. static struct resource vga_console_resource = { "vga+", 0x3C0, 0x3DF };
  214. vga_video_type = VIDEO_TYPE_VGAC;
  215. display_desc = "VGA+";
  216. request_resource(&ioport_resource, &vga_console_resource);
  217. #ifdef VGA_CAN_DO_64KB
  218. /*
  219.  * get 64K rather than 32K of video RAM.
  220.  * This doesn't actually work on all "VGA"
  221.  * controllers (it seems like setting MM=01
  222.  * and COE=1 isn't necessarily a good idea)
  223.  */
  224. vga_vram_base = 0xa0000;
  225. vga_vram_end = 0xb0000;
  226. outb_p (6, 0x3ce) ;
  227. outb_p (6, 0x3cf) ;
  228. #endif
  229. /*
  230.  * Normalise the palette registers, to point
  231.  * the 16 screen colours to the first 16
  232.  * DAC entries.
  233.  */
  234. for (i=0; i<16; i++) {
  235. inb_p (0x3da) ;
  236. outb_p (i, 0x3c0) ;
  237. outb_p (i, 0x3c0) ;
  238. }
  239. outb_p (0x20, 0x3c0) ;
  240. /* now set the DAC registers back to their
  241.  * default values */
  242. for (i=0; i<16; i++) {
  243. outb_p (color_table[i], 0x3c8) ;
  244. outb_p (default_red[i], 0x3c9) ;
  245. outb_p (default_grn[i], 0x3c9) ;
  246. outb_p (default_blu[i], 0x3c9) ;
  247. }
  248. }
  249. }
  250. else
  251. {
  252. static struct resource cga_console_resource = { "cga", 0x3D4, 0x3D5 };
  253. vga_video_type = VIDEO_TYPE_CGA;
  254. vga_vram_end = 0xba000;
  255. display_desc = "*CGA";
  256. request_resource(&ioport_resource, &cga_console_resource);
  257. vga_video_font_height = 8;
  258. }
  259. }
  260. vga_vram_base = VGA_MAP_MEM(vga_vram_base);
  261. vga_vram_end = VGA_MAP_MEM(vga_vram_end);
  262. /*
  263.  * Find out if there is a graphics card present.
  264.  * Are there smarter methods around?
  265.  */
  266. p = (volatile u16 *)vga_vram_base;
  267. saved1 = scr_readw(p);
  268. saved2 = scr_readw(p + 1);
  269. scr_writew(0xAA55, p);
  270. scr_writew(0x55AA, p + 1);
  271. if (scr_readw(p) != 0xAA55 || scr_readw(p + 1) != 0x55AA) {
  272. scr_writew(saved1, p);
  273. scr_writew(saved2, p + 1);
  274. goto no_vga;
  275. }
  276. scr_writew(0x55AA, p);
  277. scr_writew(0xAA55, p + 1);
  278. if (scr_readw(p) != 0x55AA || scr_readw(p + 1) != 0xAA55) {
  279. scr_writew(saved1, p);
  280. scr_writew(saved2, p + 1);
  281. goto no_vga;
  282. }
  283. scr_writew(saved1, p);
  284. scr_writew(saved2, p + 1);
  285. if (vga_video_type == VIDEO_TYPE_EGAC
  286.     || vga_video_type == VIDEO_TYPE_VGAC
  287.     || vga_video_type == VIDEO_TYPE_EGAM) {
  288. vga_hardscroll_enabled = vga_hardscroll_user_enable;
  289. vga_default_font_height = ORIG_VIDEO_POINTS;
  290. vga_video_font_height = ORIG_VIDEO_POINTS;
  291. /* This may be suboptimal but is a safe bet - go with it */
  292. video_scan_lines =
  293. vga_video_font_height * vga_video_num_lines;
  294. }
  295. video_font_height = vga_video_font_height;
  296. return display_desc;
  297. }
  298. static void vgacon_init(struct vc_data *c, int init)
  299. {
  300. unsigned long p;
  301. /* We cannot be loaded as a module, therefore init is always 1 */
  302. c->vc_can_do_color = vga_can_do_color;
  303. c->vc_cols = vga_video_num_columns;
  304. c->vc_rows = vga_video_num_lines;
  305. c->vc_complement_mask = 0x7700;
  306. p = *c->vc_uni_pagedir_loc;
  307. if (c->vc_uni_pagedir_loc == &c->vc_uni_pagedir ||
  308.     !--c->vc_uni_pagedir_loc[1])
  309. con_free_unimap(c->vc_num);
  310. c->vc_uni_pagedir_loc = vgacon_uni_pagedir;
  311. vgacon_uni_pagedir[1]++;
  312. if (!vgacon_uni_pagedir[0] && p)
  313. con_set_default_unimap(c->vc_num);
  314. }
  315. static inline void vga_set_mem_top(struct vc_data *c)
  316. {
  317. write_vga(12, (c->vc_visible_origin-vga_vram_base)/2);
  318. }
  319. static void vgacon_deinit(struct vc_data *c)
  320. {
  321. /* When closing the last console, reset video origin */
  322. if (!--vgacon_uni_pagedir[1]) {
  323. c->vc_visible_origin = vga_vram_base;
  324. vga_set_mem_top(c);
  325. con_free_unimap(c->vc_num);
  326. }
  327. c->vc_uni_pagedir_loc = &c->vc_uni_pagedir;
  328. con_set_default_unimap(c->vc_num);
  329. }
  330. static u8 vgacon_build_attr(struct vc_data *c, u8 color, u8 intensity, u8 blink, u8 underline, u8 reverse)
  331. {
  332. u8 attr = color;
  333. if (vga_can_do_color) {
  334. if (underline)
  335. attr = (attr & 0xf0) | c->vc_ulcolor;
  336. else if (intensity == 0)
  337. attr = (attr & 0xf0) | c->vc_halfcolor;
  338. }
  339. if (reverse)
  340. attr = ((attr) & 0x88) | ((((attr) >> 4) | ((attr) << 4)) & 0x77);
  341. if (blink)
  342. attr ^= 0x80;
  343. if (intensity == 2)
  344. attr ^= 0x08;
  345. if (!vga_can_do_color) {
  346. if (underline)
  347. attr = (attr & 0xf8) | 0x01;
  348. else if (intensity == 0)
  349. attr = (attr & 0xf0) | 0x08;
  350. }
  351. return attr;
  352. }
  353. static void vgacon_invert_region(struct vc_data *c, u16 *p, int count)
  354. {
  355. int col = vga_can_do_color;
  356. while (count--) {
  357. u16 a = scr_readw(p);
  358. if (col)
  359. a = ((a) & 0x88ff) | (((a) & 0x7000) >> 4) | (((a) & 0x0700) << 4);
  360. else
  361. a ^= ((a & 0x0700) == 0x0100) ? 0x7000 : 0x7700;
  362. scr_writew(a, p++);
  363. }
  364. }
  365. static void vgacon_set_cursor_size(int xpos, int from, int to)
  366. {
  367. unsigned long flags;
  368. int curs, cure;
  369. static int lastfrom, lastto;
  370. #ifdef TRIDENT_GLITCH
  371. if (xpos<16) from--, to--;
  372. #endif
  373. if ((from == lastfrom) && (to == lastto)) return;
  374. lastfrom = from; lastto = to;
  375. spin_lock_irqsave(&vga_lock, flags);
  376. outb_p(0x0a, vga_video_port_reg); /* Cursor start */
  377. curs = inb_p(vga_video_port_val);
  378. outb_p(0x0b, vga_video_port_reg); /* Cursor end */
  379. cure = inb_p(vga_video_port_val);
  380. curs = (curs & 0xc0) | from;
  381. cure = (cure & 0xe0) | to;
  382. outb_p(0x0a, vga_video_port_reg); /* Cursor start */
  383. outb_p(curs, vga_video_port_val);
  384. outb_p(0x0b, vga_video_port_reg); /* Cursor end */
  385. outb_p(cure, vga_video_port_val);
  386. spin_unlock_irqrestore(&vga_lock, flags);
  387. }
  388. static void vgacon_cursor(struct vc_data *c, int mode)
  389. {
  390.     if (c->vc_origin != c->vc_visible_origin)
  391. vgacon_scrolldelta(c, 0);
  392.     switch (mode) {
  393. case CM_ERASE:
  394.     write_vga(14, (vga_vram_end - vga_vram_base - 1)/2);
  395.     break;
  396. case CM_MOVE:
  397. case CM_DRAW:
  398.     write_vga(14, (c->vc_pos-vga_vram_base)/2);
  399.     switch (c->vc_cursor_type & 0x0f) {
  400. case CUR_UNDERLINE:
  401. vgacon_set_cursor_size(c->vc_x, 
  402. video_font_height - (video_font_height < 10 ? 2 : 3),
  403. video_font_height - (video_font_height < 10 ? 1 : 2));
  404. break;
  405. case CUR_TWO_THIRDS:
  406. vgacon_set_cursor_size(c->vc_x, 
  407.  video_font_height / 3,
  408.  video_font_height - (video_font_height < 10 ? 1 : 2));
  409. break;
  410. case CUR_LOWER_THIRD:
  411. vgacon_set_cursor_size(c->vc_x, 
  412.  (video_font_height*2) / 3,
  413.  video_font_height - (video_font_height < 10 ? 1 : 2));
  414. break;
  415. case CUR_LOWER_HALF:
  416. vgacon_set_cursor_size(c->vc_x, 
  417.  video_font_height / 2,
  418.  video_font_height - (video_font_height < 10 ? 1 : 2));
  419. break;
  420. case CUR_NONE:
  421. vgacon_set_cursor_size(c->vc_x, 31, 30);
  422. break;
  423.            default:
  424. vgacon_set_cursor_size(c->vc_x, 1, video_font_height);
  425. break;
  426. }
  427.     break;
  428.     }
  429. }
  430. static int vgacon_switch(struct vc_data *c)
  431. {
  432. /*
  433.  * We need to save screen size here as it's the only way
  434.  * we can spot the screen has been resized and we need to
  435.  * set size of freshly allocated screens ourselves.
  436.  */
  437. vga_video_num_columns = c->vc_cols;
  438. vga_video_num_lines = c->vc_rows;
  439. if (!vga_is_gfx)
  440. scr_memcpyw((u16 *) c->vc_origin, (u16 *) c->vc_screenbuf, c->vc_screenbuf_size);
  441. return 0; /* Redrawing not needed */
  442. }
  443. static void vga_set_palette(struct vc_data *c, unsigned char *table)
  444. {
  445. int i, j ;
  446. for (i=j=0; i<16; i++) {
  447. outb_p (table[i], dac_reg) ;
  448. outb_p (c->vc_palette[j++]>>2, dac_val) ;
  449. outb_p (c->vc_palette[j++]>>2, dac_val) ;
  450. outb_p (c->vc_palette[j++]>>2, dac_val) ;
  451. }
  452. }
  453. static int vgacon_set_palette(struct vc_data *c, unsigned char *table)
  454. {
  455. #ifdef CAN_LOAD_PALETTE
  456. if (vga_video_type != VIDEO_TYPE_VGAC || vga_palette_blanked || !CON_IS_VISIBLE(c))
  457. return -EINVAL;
  458. vga_set_palette(c, table);
  459. return 0;
  460. #else
  461. return -EINVAL;
  462. #endif
  463. }
  464. /* structure holding original VGA register settings */
  465. static struct {
  466. unsigned char SeqCtrlIndex; /* Sequencer Index reg.   */
  467. unsigned char CrtCtrlIndex; /* CRT-Contr. Index reg.  */
  468. unsigned char CrtMiscIO; /* Miscellaneous register */
  469. unsigned char HorizontalTotal; /* CRT-Controller:00h */
  470. unsigned char HorizDisplayEnd; /* CRT-Controller:01h */
  471. unsigned char StartHorizRetrace; /* CRT-Controller:04h */
  472. unsigned char EndHorizRetrace; /* CRT-Controller:05h */
  473. unsigned char Overflow; /* CRT-Controller:07h */
  474. unsigned char StartVertRetrace; /* CRT-Controller:10h */
  475. unsigned char EndVertRetrace; /* CRT-Controller:11h */
  476. unsigned char ModeControl; /* CRT-Controller:17h */
  477. unsigned char ClockingMode; /* Seq-Controller:01h */
  478. } vga_state;
  479. static void vga_vesa_blank(int mode)
  480. {
  481. /* save original values of VGA controller registers */
  482. if(!vga_vesa_blanked) {
  483. spin_lock_irq(&vga_lock);
  484. vga_state.SeqCtrlIndex = inb_p(seq_port_reg);
  485. vga_state.CrtCtrlIndex = inb_p(vga_video_port_reg);
  486. vga_state.CrtMiscIO = inb_p(video_misc_rd);
  487. spin_unlock_irq(&vga_lock);
  488. outb_p(0x00,vga_video_port_reg); /* HorizontalTotal */
  489. vga_state.HorizontalTotal = inb_p(vga_video_port_val);
  490. outb_p(0x01,vga_video_port_reg); /* HorizDisplayEnd */
  491. vga_state.HorizDisplayEnd = inb_p(vga_video_port_val);
  492. outb_p(0x04,vga_video_port_reg); /* StartHorizRetrace */
  493. vga_state.StartHorizRetrace = inb_p(vga_video_port_val);
  494. outb_p(0x05,vga_video_port_reg); /* EndHorizRetrace */
  495. vga_state.EndHorizRetrace = inb_p(vga_video_port_val);
  496. outb_p(0x07,vga_video_port_reg); /* Overflow */
  497. vga_state.Overflow = inb_p(vga_video_port_val);
  498. outb_p(0x10,vga_video_port_reg); /* StartVertRetrace */
  499. vga_state.StartVertRetrace = inb_p(vga_video_port_val);
  500. outb_p(0x11,vga_video_port_reg); /* EndVertRetrace */
  501. vga_state.EndVertRetrace = inb_p(vga_video_port_val);
  502. outb_p(0x17,vga_video_port_reg); /* ModeControl */
  503. vga_state.ModeControl = inb_p(vga_video_port_val);
  504. outb_p(0x01,seq_port_reg); /* ClockingMode */
  505. vga_state.ClockingMode = inb_p(seq_port_val);
  506. }
  507. /* assure that video is enabled */
  508. /* "0x20" is VIDEO_ENABLE_bit in register 01 of sequencer */
  509. spin_lock_irq(&vga_lock);
  510. outb_p(0x01,seq_port_reg);
  511. outb_p(vga_state.ClockingMode | 0x20,seq_port_val);
  512. /* test for vertical retrace in process.... */
  513. if ((vga_state.CrtMiscIO & 0x80) == 0x80)
  514. outb_p(vga_state.CrtMiscIO & 0xef,video_misc_wr);
  515. /*
  516.  * Set <End of vertical retrace> to minimum (0) and
  517.  * <Start of vertical Retrace> to maximum (incl. overflow)
  518.  * Result: turn off vertical sync (VSync) pulse.
  519.  */
  520. if (mode & VESA_VSYNC_SUSPEND) {
  521. outb_p(0x10,vga_video_port_reg); /* StartVertRetrace */
  522. outb_p(0xff,vga_video_port_val);  /* maximum value */
  523. outb_p(0x11,vga_video_port_reg); /* EndVertRetrace */
  524. outb_p(0x40,vga_video_port_val); /* minimum (bits 0..3)  */
  525. outb_p(0x07,vga_video_port_reg); /* Overflow */
  526. outb_p(vga_state.Overflow | 0x84,vga_video_port_val); /* bits 9,10 of vert. retrace */
  527. }
  528. if (mode & VESA_HSYNC_SUSPEND) {
  529. /*
  530.  * Set <End of horizontal retrace> to minimum (0) and
  531.  *  <Start of horizontal Retrace> to maximum
  532.  * Result: turn off horizontal sync (HSync) pulse.
  533.  */
  534. outb_p(0x04,vga_video_port_reg); /* StartHorizRetrace */
  535. outb_p(0xff,vga_video_port_val); /* maximum */
  536. outb_p(0x05,vga_video_port_reg); /* EndHorizRetrace */
  537. outb_p(0x00,vga_video_port_val); /* minimum (0) */
  538. }
  539. /* restore both index registers */
  540. outb_p(vga_state.SeqCtrlIndex,seq_port_reg);
  541. outb_p(vga_state.CrtCtrlIndex,vga_video_port_reg);
  542. spin_unlock_irq(&vga_lock);
  543. }
  544. static void vga_vesa_unblank(void)
  545. {
  546. /* restore original values of VGA controller registers */
  547. spin_lock_irq(&vga_lock);
  548. outb_p(vga_state.CrtMiscIO,video_misc_wr);
  549. outb_p(0x00,vga_video_port_reg); /* HorizontalTotal */
  550. outb_p(vga_state.HorizontalTotal,vga_video_port_val);
  551. outb_p(0x01,vga_video_port_reg); /* HorizDisplayEnd */
  552. outb_p(vga_state.HorizDisplayEnd,vga_video_port_val);
  553. outb_p(0x04,vga_video_port_reg); /* StartHorizRetrace */
  554. outb_p(vga_state.StartHorizRetrace,vga_video_port_val);
  555. outb_p(0x05,vga_video_port_reg); /* EndHorizRetrace */
  556. outb_p(vga_state.EndHorizRetrace,vga_video_port_val);
  557. outb_p(0x07,vga_video_port_reg); /* Overflow */
  558. outb_p(vga_state.Overflow,vga_video_port_val);
  559. outb_p(0x10,vga_video_port_reg); /* StartVertRetrace */
  560. outb_p(vga_state.StartVertRetrace,vga_video_port_val);
  561. outb_p(0x11,vga_video_port_reg); /* EndVertRetrace */
  562. outb_p(vga_state.EndVertRetrace,vga_video_port_val);
  563. outb_p(0x17,vga_video_port_reg); /* ModeControl */
  564. outb_p(vga_state.ModeControl,vga_video_port_val);
  565. outb_p(0x01,seq_port_reg); /* ClockingMode */
  566. outb_p(vga_state.ClockingMode,seq_port_val);
  567. /* restore index/control registers */
  568. outb_p(vga_state.SeqCtrlIndex,seq_port_reg);
  569. outb_p(vga_state.CrtCtrlIndex,vga_video_port_reg);
  570. spin_unlock_irq(&vga_lock);
  571. }
  572. static void vga_pal_blank(void)
  573. {
  574. int i;
  575. for (i=0; i<16; i++) {
  576. outb_p (i, dac_reg) ;
  577. outb_p (0, dac_val) ;
  578. outb_p (0, dac_val) ;
  579. outb_p (0, dac_val) ;
  580. }
  581. }
  582. static int vgacon_blank(struct vc_data *c, int blank)
  583. {
  584. switch (blank) {
  585. case 0: /* Unblank */
  586. if (vga_vesa_blanked) {
  587. vga_vesa_unblank();
  588. vga_vesa_blanked = 0;
  589. }
  590. if (vga_palette_blanked) {
  591. vga_set_palette(c, color_table);
  592. vga_palette_blanked = 0;
  593. return 0;
  594. }
  595. vga_is_gfx = 0;
  596. /* Tell console.c that it has to restore the screen itself */
  597. return 1;
  598. case 1: /* Normal blanking */
  599. if (vga_video_type == VIDEO_TYPE_VGAC) {
  600. vga_pal_blank();
  601. vga_palette_blanked = 1;
  602. return 0;
  603. }
  604. vgacon_set_origin(c);
  605. scr_memsetw((void *)vga_vram_base, BLANK, c->vc_screenbuf_size);
  606. return 1;
  607. case -1: /* Entering graphic mode */
  608. scr_memsetw((void *)vga_vram_base, BLANK, c->vc_screenbuf_size);
  609. vga_is_gfx = 1;
  610. return 1;
  611. default: /* VESA blanking */
  612. if (vga_video_type == VIDEO_TYPE_VGAC) {
  613. vga_vesa_blank(blank-1);
  614. vga_vesa_blanked = blank;
  615. }
  616. return 0;
  617. }
  618. }
  619. /*
  620.  * PIO_FONT support.
  621.  *
  622.  * The font loading code goes back to the codepage package by
  623.  * Joel Hoffman (joel@wam.umd.edu). (He reports that the original
  624.  * reference is: "From: p. 307 of _Programmer's Guide to PC & PS/2
  625.  * Video Systems_ by Richard Wilton. 1987.  Microsoft Press".)
  626.  *
  627.  * Change for certain monochrome monitors by Yury Shevchuck
  628.  * (sizif@botik.yaroslavl.su).
  629.  */
  630. #ifdef CAN_LOAD_EGA_FONTS
  631. #define colourmap 0xa0000
  632. /* Pauline Middelink <middelin@polyware.iaf.nl> reports that we
  633.    should use 0xA0000 for the bwmap as well.. */
  634. #define blackwmap 0xa0000
  635. #define cmapsz 8192
  636. static int
  637. vgacon_do_font_op(char *arg, int set, int ch512)
  638. {
  639. int i;
  640. char *charmap;
  641. int beg;
  642. unsigned short video_port_status = vga_video_port_reg + 6;
  643. int font_select = 0x00;
  644. if (vga_video_type != VIDEO_TYPE_EGAM) {
  645. charmap = (char *)VGA_MAP_MEM(colourmap);
  646. beg = 0x0e;
  647. #ifdef VGA_CAN_DO_64KB
  648. if (vga_video_type == VIDEO_TYPE_VGAC)
  649. beg = 0x06;
  650. #endif
  651. } else {
  652. charmap = (char *)VGA_MAP_MEM(blackwmap);
  653. beg = 0x0a;
  654. }
  655. #ifdef BROKEN_GRAPHICS_PROGRAMS
  656. /*
  657.  * All fonts are loaded in slot 0 (0:1 for 512 ch)
  658.  */
  659. if (!arg)
  660. return -EINVAL; /* Return to default font not supported */
  661. vga_font_is_default = 0;
  662. font_select = ch512 ? 0x04 : 0x00;
  663. #else
  664. /*
  665.  * The default font is kept in slot 0 and is never touched.
  666.  * A custom font is loaded in slot 2 (256 ch) or 2:3 (512 ch)
  667.  */
  668. if (set) {
  669. vga_font_is_default = !arg;
  670. if (!arg)
  671. ch512 = 0; /* Default font is always 256 */
  672. font_select = arg ? (ch512 ? 0x0e : 0x0a) : 0x00;
  673. }
  674. if ( !vga_font_is_default )
  675. charmap += 4*cmapsz;
  676. #endif
  677. spin_lock_irq(&vga_lock);
  678. outb_p( 0x00, seq_port_reg );   /* First, the sequencer */
  679. outb_p( 0x01, seq_port_val );   /* Synchronous reset */
  680. outb_p( 0x02, seq_port_reg );
  681. outb_p( 0x04, seq_port_val );   /* CPU writes only to map 2 */
  682. outb_p( 0x04, seq_port_reg );
  683. outb_p( 0x07, seq_port_val );   /* Sequential addressing */
  684. outb_p( 0x00, seq_port_reg );
  685. outb_p( 0x03, seq_port_val );   /* Clear synchronous reset */
  686. outb_p( 0x04, gr_port_reg );    /* Now, the graphics controller */
  687. outb_p( 0x02, gr_port_val );    /* select map 2 */
  688. outb_p( 0x05, gr_port_reg );
  689. outb_p( 0x00, gr_port_val );    /* disable odd-even addressing */
  690. outb_p( 0x06, gr_port_reg );
  691. outb_p( 0x00, gr_port_val );    /* map start at A000:0000 */
  692. spin_unlock_irq(&vga_lock);
  693. if (arg) {
  694. if (set)
  695. for (i=0; i<cmapsz ; i++)
  696. vga_writeb(arg[i], charmap + i);
  697. else
  698. for (i=0; i<cmapsz ; i++)
  699. arg[i] = vga_readb(charmap + i);
  700. /*
  701.  * In 512-character mode, the character map is not contiguous if
  702.  * we want to remain EGA compatible -- which we do
  703.  */
  704. if (ch512) {
  705. charmap += 2*cmapsz;
  706. arg += cmapsz;
  707. if (set)
  708. for (i=0; i<cmapsz ; i++)
  709. vga_writeb(arg[i], charmap+i);
  710. else
  711. for (i=0; i<cmapsz ; i++)
  712. arg[i] = vga_readb(charmap+i);
  713. }
  714. }
  715. spin_lock_irq(&vga_lock);
  716. outb_p( 0x00, seq_port_reg );   /* First, the sequencer */
  717. outb_p( 0x01, seq_port_val );   /* Synchronous reset */
  718. outb_p( 0x02, seq_port_reg );
  719. outb_p( 0x03, seq_port_val );   /* CPU writes to maps 0 and 1 */
  720. outb_p( 0x04, seq_port_reg );
  721. outb_p( 0x03, seq_port_val );   /* odd-even addressing */
  722. if (set) {
  723. outb_p( 0x03, seq_port_reg ); /* Character Map Select */
  724. outb_p( font_select, seq_port_val );
  725. }
  726. outb_p( 0x00, seq_port_reg );
  727. outb_p( 0x03, seq_port_val );   /* clear synchronous reset */
  728. outb_p( 0x04, gr_port_reg );    /* Now, the graphics controller */
  729. outb_p( 0x00, gr_port_val );    /* select map 0 for CPU */
  730. outb_p( 0x05, gr_port_reg );
  731. outb_p( 0x10, gr_port_val );    /* enable even-odd addressing */
  732. outb_p( 0x06, gr_port_reg );
  733. outb_p( beg, gr_port_val );     /* map starts at b800:0 or b000:0 */
  734. /* if 512 char mode is already enabled don't re-enable it. */
  735. if ((set)&&(ch512!=vga_512_chars)) { /* attribute controller */
  736. int i;
  737. for(i=0; i<MAX_NR_CONSOLES; i++) {
  738. struct vc_data *c = vc_cons[i].d;
  739. if (c && c->vc_sw == &vga_con)
  740. c->vc_hi_font_mask = ch512 ? 0x0800 : 0;
  741. }
  742. vga_512_chars=ch512;
  743. /* 256-char: enable intensity bit
  744.    512-char: disable intensity bit */
  745. inb_p( video_port_status ); /* clear address flip-flop */
  746. outb_p ( 0x12, attrib_port ); /* color plane enable register */
  747. outb_p ( ch512 ? 0x07 : 0x0f, attrib_port );
  748. /* Wilton (1987) mentions the following; I don't know what
  749.    it means, but it works, and it appears necessary */
  750. inb_p( video_port_status );
  751. outb_p ( 0x20, attrib_port );
  752. }
  753. spin_unlock_irq(&vga_lock);
  754. return 0;
  755. }
  756. /*
  757.  * Adjust the screen to fit a font of a certain height
  758.  */
  759. static int
  760. vgacon_adjust_height(unsigned fontheight)
  761. {
  762. int rows, maxscan;
  763. unsigned char ovr, vde, fsr;
  764. if (fontheight == vga_video_font_height)
  765. return 0;
  766. vga_video_font_height = video_font_height = fontheight;
  767. rows = video_scan_lines/fontheight; /* Number of video rows we end up with */
  768. maxscan = rows*fontheight - 1; /* Scan lines to actually display-1 */
  769. /* Reprogram the CRTC for the new font size
  770.    Note: the attempt to read the overflow register will fail
  771.    on an EGA, but using 0xff for the previous value appears to
  772.    be OK for EGA text modes in the range 257-512 scan lines, so I
  773.    guess we don't need to worry about it.
  774.    The same applies for the spill bits in the font size and cursor
  775.    registers; they are write-only on EGA, but it appears that they
  776.    are all don't care bits on EGA, so I guess it doesn't matter. */
  777. spin_lock_irq(&vga_lock);
  778. outb_p( 0x07, vga_video_port_reg ); /* CRTC overflow register */
  779. ovr = inb_p(vga_video_port_val);
  780. outb_p( 0x09, vga_video_port_reg ); /* Font size register */
  781. fsr = inb_p(vga_video_port_val);
  782. spin_unlock_irq(&vga_lock);
  783. vde = maxscan & 0xff; /* Vertical display end reg */
  784. ovr = (ovr & 0xbd) + /* Overflow register */
  785.       ((maxscan & 0x100) >> 7) +
  786.       ((maxscan & 0x200) >> 3);
  787. fsr = (fsr & 0xe0) + (fontheight-1);    /*  Font size register */
  788. spin_lock_irq(&vga_lock);
  789. outb_p( 0x07, vga_video_port_reg ); /* CRTC overflow register */
  790. outb_p( ovr, vga_video_port_val );
  791. outb_p( 0x09, vga_video_port_reg ); /* Font size */
  792. outb_p( fsr, vga_video_port_val );
  793. outb_p( 0x12, vga_video_port_reg ); /* Vertical display limit */
  794. outb_p( vde, vga_video_port_val );
  795. spin_unlock_irq(&vga_lock);
  796. vc_resize_all(rows, 0); /* Adjust console size */
  797. return 0;
  798. }
  799. static int vgacon_font_op(struct vc_data *c, struct console_font_op *op)
  800. {
  801. int rc;
  802. if (vga_video_type < VIDEO_TYPE_EGAM)
  803. return -EINVAL;
  804. if (op->op == KD_FONT_OP_SET) {
  805. if (op->width != 8 || (op->charcount != 256 && op->charcount != 512))
  806. return -EINVAL;
  807. rc = vgacon_do_font_op(op->data, 1, op->charcount == 512);
  808. if (!rc && !(op->flags & KD_FONT_FLAG_DONT_RECALC))
  809. rc = vgacon_adjust_height(op->height);
  810. } else if (op->op == KD_FONT_OP_GET) {
  811. op->width = 8;
  812. op->height = vga_video_font_height;
  813. op->charcount = vga_512_chars ? 512 : 256;
  814. if (!op->data) return 0;
  815. rc = vgacon_do_font_op(op->data, 0, 0);
  816. } else
  817. rc = -ENOSYS;
  818. return rc;
  819. }
  820. #else
  821. static int vgacon_font_op(struct vc_data *c, struct console_font_op *op)
  822. {
  823. return -ENOSYS;
  824. }
  825. #endif
  826. static int vgacon_scrolldelta(struct vc_data *c, int lines)
  827. {
  828. if (!lines) /* Turn scrollback off */
  829. c->vc_visible_origin = c->vc_origin;
  830. else {
  831. int vram_size = vga_vram_end - vga_vram_base;
  832. int margin = c->vc_size_row * 4;
  833. int ul, we, p, st;
  834. if (vga_rolled_over > (c->vc_scr_end - vga_vram_base) + margin) {
  835. ul = c->vc_scr_end - vga_vram_base;
  836. we = vga_rolled_over + c->vc_size_row;
  837. } else {
  838. ul = 0;
  839. we = vram_size;
  840. }
  841. p = (c->vc_visible_origin - vga_vram_base - ul + we) % we + lines * c->vc_size_row;
  842. st = (c->vc_origin - vga_vram_base - ul + we) % we;
  843. if (p < margin)
  844. p = 0;
  845. if (p > st - margin)
  846. p = st;
  847. c->vc_visible_origin = vga_vram_base + (p + ul) % we;
  848. }
  849. vga_set_mem_top(c);
  850. return 1;
  851. }
  852. static int vgacon_set_origin(struct vc_data *c)
  853. {
  854. if (vga_is_gfx || /* We don't play origin tricks in graphic modes */
  855.     (console_blanked && !vga_palette_blanked)) /* Nor we write to blanked screens */
  856. return 0;
  857. c->vc_origin = c->vc_visible_origin = vga_vram_base;
  858. vga_set_mem_top(c);
  859. vga_rolled_over = 0;
  860. return 1;
  861. }
  862. static void vgacon_save_screen(struct vc_data *c)
  863. {
  864. static int vga_bootup_console = 0;
  865. if (!vga_bootup_console) {
  866. /* This is a gross hack, but here is the only place we can
  867.  * set bootup console parameters without messing up generic
  868.  * console initialization routines.
  869.  */
  870. vga_bootup_console = 1;
  871. c->vc_x = ORIG_X;
  872. c->vc_y = ORIG_Y;
  873. }
  874. if (!vga_is_gfx)
  875. scr_memcpyw((u16 *) c->vc_screenbuf, (u16 *) c->vc_origin, c->vc_screenbuf_size);
  876. }
  877. static int vgacon_scroll(struct vc_data *c, int t, int b, int dir, int lines)
  878. {
  879. unsigned long oldo;
  880. unsigned int delta;
  881. if (t || b != c->vc_rows || vga_is_gfx)
  882. return 0;
  883. if (c->vc_origin != c->vc_visible_origin)
  884. vgacon_scrolldelta(c, 0);
  885. if (!vga_hardscroll_enabled || lines >= c->vc_rows/2)
  886. return 0;
  887. oldo = c->vc_origin;
  888. delta = lines * c->vc_size_row;
  889. if (dir == SM_UP) {
  890. if (c->vc_scr_end + delta >= vga_vram_end) {
  891. scr_memcpyw((u16 *)vga_vram_base,
  892.     (u16 *)(oldo + delta),
  893.     c->vc_screenbuf_size - delta);
  894. c->vc_origin = vga_vram_base;
  895. vga_rolled_over = oldo - vga_vram_base;
  896. } else
  897. c->vc_origin += delta;
  898. scr_memsetw((u16 *)(c->vc_origin + c->vc_screenbuf_size - delta), c->vc_video_erase_char, delta);
  899. } else {
  900. if (oldo - delta < vga_vram_base) {
  901. scr_memmovew((u16 *)(vga_vram_end - c->vc_screenbuf_size + delta),
  902.      (u16 *)oldo,
  903.      c->vc_screenbuf_size - delta);
  904. c->vc_origin = vga_vram_end - c->vc_screenbuf_size;
  905. vga_rolled_over = 0;
  906. } else
  907. c->vc_origin -= delta;
  908. c->vc_scr_end = c->vc_origin + c->vc_screenbuf_size;
  909. scr_memsetw((u16 *)(c->vc_origin), c->vc_video_erase_char, delta);
  910. }
  911. c->vc_scr_end = c->vc_origin + c->vc_screenbuf_size;
  912. c->vc_visible_origin = c->vc_origin;
  913. vga_set_mem_top(c);
  914. c->vc_pos = (c->vc_pos - oldo) + c->vc_origin;
  915. return 1;
  916. }
  917. /*
  918.  *  The console `switch' structure for the VGA based console
  919.  */
  920. static int vgacon_dummy(struct vc_data *c)
  921. {
  922. return 0;
  923. }
  924. #define DUMMY (void *) vgacon_dummy
  925. const struct consw vga_con = {
  926. con_startup: vgacon_startup,
  927. con_init: vgacon_init,
  928. con_deinit: vgacon_deinit,
  929. con_clear: DUMMY,
  930. con_putc: DUMMY,
  931. con_putcs: DUMMY,
  932. con_cursor: vgacon_cursor,
  933. con_scroll: vgacon_scroll,
  934. con_bmove: DUMMY,
  935. con_switch: vgacon_switch,
  936. con_blank: vgacon_blank,
  937. con_font_op: vgacon_font_op,
  938. con_set_palette: vgacon_set_palette,
  939. con_scrolldelta: vgacon_scrolldelta,
  940. con_set_origin: vgacon_set_origin,
  941. con_save_screen: vgacon_save_screen,
  942. con_build_attr: vgacon_build_attr,
  943. con_invert_region: vgacon_invert_region,
  944. };
  945. MODULE_LICENSE("GPL");