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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* video.S
  2.  *
  3.  * Display adapter & video mode setup, version 2.13 (14-May-99)
  4.  *
  5.  * Copyright (C) 1995 -- 1998 Martin Mares <mj@ucw.cz>
  6.  * Based on the original setup.S code (C) Linus Torvalds and Mats Anderson
  7.  *
  8.  * Rewritten to use GNU 'as' by Chris Noe <stiker@northlink.com> May 1999
  9.  *
  10.  * For further information, look at Documentation/svga.txt.
  11.  *
  12.  */
  13. #include <linux/config.h> /* for CONFIG_VIDEO_* */
  14. /* Enable autodetection of SVGA adapters and modes. */
  15. #undef CONFIG_VIDEO_SVGA
  16. /* Enable autodetection of VESA modes */
  17. #define CONFIG_VIDEO_VESA
  18. /* Enable compacting of mode table */
  19. #define CONFIG_VIDEO_COMPACT
  20. /* Retain screen contents when switching modes */
  21. #define CONFIG_VIDEO_RETAIN
  22. /* Enable local mode list */
  23. #undef CONFIG_VIDEO_LOCAL
  24. /* Force 400 scan lines for standard modes (hack to fix bad BIOS behaviour */
  25. #undef CONFIG_VIDEO_400_HACK
  26. /* Hack that lets you force specific BIOS mode ID and specific dimensions */
  27. #undef CONFIG_VIDEO_GFX_HACK
  28. #define VIDEO_GFX_BIOS_AX 0x4f02 /* 800x600 on ThinkPad */
  29. #define VIDEO_GFX_BIOS_BX 0x0102
  30. #define VIDEO_GFX_DUMMY_RESOLUTION 0x6425 /* 100x37 */
  31. /* This code uses an extended set of video mode numbers. These include:
  32.  * Aliases for standard modes
  33.  * NORMAL_VGA (-1)
  34.  * EXTENDED_VGA (-2)
  35.  * ASK_VGA (-3)
  36.  * Video modes numbered by menu position -- NOT RECOMMENDED because of lack
  37.  * of compatibility when extending the table. These are between 0x00 and 0xff.
  38.  */
  39. #define VIDEO_FIRST_MENU 0x0000
  40. /* Standard BIOS video modes (BIOS number + 0x0100) */
  41. #define VIDEO_FIRST_BIOS 0x0100
  42. /* VESA BIOS video modes (VESA number + 0x0200) */
  43. #define VIDEO_FIRST_VESA 0x0200
  44. /* Video7 special modes (BIOS number + 0x0900) */
  45. #define VIDEO_FIRST_V7 0x0900
  46. /* Special video modes */
  47. #define VIDEO_FIRST_SPECIAL 0x0f00
  48. #define VIDEO_80x25 0x0f00
  49. #define VIDEO_8POINT 0x0f01
  50. #define VIDEO_80x43 0x0f02
  51. #define VIDEO_80x28 0x0f03
  52. #define VIDEO_CURRENT_MODE 0x0f04
  53. #define VIDEO_80x30 0x0f05
  54. #define VIDEO_80x34 0x0f06
  55. #define VIDEO_80x60 0x0f07
  56. #define VIDEO_GFX_HACK 0x0f08
  57. #define VIDEO_LAST_SPECIAL 0x0f09
  58. /* Video modes given by resolution */
  59. #define VIDEO_FIRST_RESOLUTION 0x1000
  60. /* The "recalculate timings" flag */
  61. #define VIDEO_RECALC 0x8000
  62. /* Positions of various video parameters passed to the kernel */
  63. /* (see also include/linux/tty.h) */
  64. #define PARAM_CURSOR_POS 0x00
  65. #define PARAM_VIDEO_PAGE 0x04
  66. #define PARAM_VIDEO_MODE 0x06
  67. #define PARAM_VIDEO_COLS 0x07
  68. #define PARAM_VIDEO_EGA_BX 0x0a
  69. #define PARAM_VIDEO_LINES 0x0e
  70. #define PARAM_HAVE_VGA 0x0f
  71. #define PARAM_FONT_POINTS 0x10
  72. #define PARAM_LFB_WIDTH 0x12
  73. #define PARAM_LFB_HEIGHT 0x14
  74. #define PARAM_LFB_DEPTH 0x16
  75. #define PARAM_LFB_BASE 0x18
  76. #define PARAM_LFB_SIZE 0x1c
  77. #define PARAM_LFB_LINELENGTH 0x24
  78. #define PARAM_LFB_COLORS 0x26
  79. #define PARAM_VESAPM_SEG 0x2e
  80. #define PARAM_VESAPM_OFF 0x30
  81. #define PARAM_LFB_PAGES 0x32
  82. /* Define DO_STORE according to CONFIG_VIDEO_RETAIN */
  83. #ifdef CONFIG_VIDEO_RETAIN
  84. #define DO_STORE call store_screen
  85. #else
  86. #define DO_STORE
  87. #endif /* CONFIG_VIDEO_RETAIN */
  88. # This is the main entry point called by setup.S
  89. # %ds *must* be pointing to the bootsector
  90. video: pushw %ds # We use different segments
  91. pushw %ds # FS contains original DS
  92. popw %fs
  93. pushw %cs # DS is equal to CS
  94. popw %ds
  95. pushw %cs # ES is equal to CS
  96. popw %es
  97. xorw %ax, %ax
  98. movw %ax, %gs # GS is zero
  99. cld
  100. call basic_detect # Basic adapter type testing (EGA/VGA/MDA/CGA)
  101. #ifdef CONFIG_VIDEO_SELECT
  102. movw %fs:(0x01fa), %ax # User selected video mode
  103. cmpw $ASK_VGA, %ax # Bring up the menu
  104. jz vid2
  105. call mode_set # Set the mode
  106. jc vid1
  107. leaw badmdt, %si # Invalid mode ID
  108. call prtstr
  109. vid2: call mode_menu
  110. vid1:
  111. #ifdef CONFIG_VIDEO_RETAIN
  112. call restore_screen # Restore screen contents
  113. #endif /* CONFIG_VIDEO_RETAIN */
  114. #endif /* CONFIG_VIDEO_SELECT */
  115. call mode_params # Store mode parameters
  116. popw %ds # Restore original DS
  117. ret
  118. # Detect if we have CGA, MDA, EGA or VGA and pass it to the kernel.
  119. basic_detect:
  120. movb $0, %fs:(PARAM_HAVE_VGA)
  121. movb $0x12, %ah # Check EGA/VGA
  122. movb $0x10, %bl
  123. int $0x10
  124. movw %bx, %fs:(PARAM_VIDEO_EGA_BX) # Identifies EGA to the kernel
  125. cmpb $0x10, %bl # No, it's a CGA/MDA/HGA card.
  126. je basret
  127. incb adapter
  128. movw $0x1a00, %ax # Check EGA or VGA?
  129. int $0x10
  130. cmpb $0x1a, %al # 1a means VGA...
  131. jne basret # anything else is EGA.
  132. incb %fs:(PARAM_HAVE_VGA) # We've detected a VGA
  133. incb adapter
  134. basret: ret
  135. # Store the video mode parameters for later usage by the kernel.
  136. # This is done by asking the BIOS except for the rows/columns
  137. # parameters in the default 80x25 mode -- these are set directly,
  138. # because some very obscure BIOSes supply insane values.
  139. mode_params:
  140. #ifdef CONFIG_VIDEO_SELECT
  141. cmpb $0, graphic_mode
  142. jnz mopar_gr
  143. #endif
  144. movb $0x03, %ah # Read cursor position
  145. xorb %bh, %bh
  146. int $0x10
  147. movw %dx, %fs:(PARAM_CURSOR_POS)
  148. movb $0x0f, %ah # Read page/mode/width
  149. int $0x10
  150. movw %bx, %fs:(PARAM_VIDEO_PAGE)
  151. movw %ax, %fs:(PARAM_VIDEO_MODE) # Video mode and screen width
  152. cmpb $0x7, %al # MDA/HGA => segment differs
  153. jnz mopar0
  154. movw $0xb000, video_segment
  155. mopar0: movw %gs:(0x485), %ax # Font size
  156. movw %ax, %fs:(PARAM_FONT_POINTS) # (valid only on EGA/VGA)
  157. movw force_size, %ax # Forced size?
  158. orw %ax, %ax
  159. jz mopar1
  160. movb %ah, %fs:(PARAM_VIDEO_COLS)
  161. movb %al, %fs:(PARAM_VIDEO_LINES)
  162. ret
  163. mopar1: movb $25, %al
  164. cmpb $0, adapter # If we are on CGA/MDA/HGA, the
  165. jz mopar2 # screen must have 25 lines.
  166. movb %gs:(0x484), %al # On EGA/VGA, use the EGA+ BIOS
  167. incb %al # location of max lines.
  168. mopar2: movb %al, %fs:(PARAM_VIDEO_LINES)
  169. ret
  170. #ifdef CONFIG_VIDEO_SELECT
  171. # Fetching of VESA frame buffer parameters
  172. mopar_gr:
  173. leaw modelist+1024, %di
  174. movb $0x23, %fs:(PARAM_HAVE_VGA)
  175. movw 16(%di), %ax
  176. movw %ax, %fs:(PARAM_LFB_LINELENGTH)
  177. movw 18(%di), %ax
  178. movw %ax, %fs:(PARAM_LFB_WIDTH)
  179. movw 20(%di), %ax
  180. movw %ax, %fs:(PARAM_LFB_HEIGHT)
  181. movb 25(%di), %al
  182. movb $0, %ah
  183. movw %ax, %fs:(PARAM_LFB_DEPTH)
  184. movb 29(%di), %al
  185. movb $0, %ah
  186. movw %ax, %fs:(PARAM_LFB_PAGES)
  187. movl 40(%di), %eax
  188. movl %eax, %fs:(PARAM_LFB_BASE)
  189. movl 31(%di), %eax
  190. movl %eax, %fs:(PARAM_LFB_COLORS)
  191. movl 35(%di), %eax
  192. movl %eax, %fs:(PARAM_LFB_COLORS+4)
  193. # get video mem size
  194. leaw modelist+1024, %di
  195. movw $0x4f00, %ax
  196. int $0x10
  197. xorl %eax, %eax
  198. movw 18(%di), %ax
  199. movl %eax, %fs:(PARAM_LFB_SIZE)
  200. # get protected mode interface informations
  201. movw $0x4f0a, %ax
  202. xorw %bx, %bx
  203. xorw %di, %di
  204. int $0x10
  205. cmp $0x004f, %ax
  206. jnz no_pm
  207. movw %es, %fs:(PARAM_VESAPM_SEG)
  208. movw %di, %fs:(PARAM_VESAPM_OFF)
  209. no_pm: ret
  210. # The video mode menu
  211. mode_menu:
  212. leaw keymsg, %si # "Return/Space/Timeout" message
  213. call prtstr
  214. call flush
  215. nokey: call getkt
  216. cmpb $0x0d, %al # ENTER ?
  217. je listm # yes - manual mode selection
  218. cmpb $0x20, %al # SPACE ?
  219. je defmd1 # no - repeat
  220. call  beep
  221. jmp nokey
  222. defmd1: ret # No mode chosen? Default 80x25
  223. listm: call mode_table # List mode table
  224. listm0: leaw name_bann, %si # Print adapter name
  225. call prtstr
  226. movw card_name, %si
  227. orw %si, %si
  228. jnz an2
  229. movb adapter, %al
  230. leaw old_name, %si
  231. orb %al, %al
  232. jz an1
  233. leaw ega_name, %si
  234. decb %al
  235. jz an1
  236. leaw vga_name, %si
  237. jmp an1
  238. an2: call prtstr
  239. leaw svga_name, %si
  240. an1: call prtstr
  241. leaw listhdr, %si # Table header
  242. call prtstr
  243. movb $0x30, %dl # DL holds mode number
  244. leaw modelist, %si
  245. lm1: cmpw $ASK_VGA, (%si) # End?
  246. jz lm2
  247. movb %dl, %al # Menu selection number
  248. call prtchr
  249. call prtsp2
  250. lodsw
  251. call prthw # Mode ID
  252. call prtsp2
  253. movb 0x1(%si), %al
  254. call prtdec # Rows
  255. movb $0x78, %al # the letter 'x'
  256. call prtchr
  257. lodsw
  258. call prtdec # Columns
  259. movb $0x0d, %al # New line
  260. call prtchr
  261. movb $0x0a, %al
  262. call prtchr
  263. incb %dl # Next character
  264. cmpb $0x3a, %dl
  265. jnz lm1
  266. movb $0x61, %dl
  267. jmp lm1
  268. lm2: leaw prompt, %si # Mode prompt
  269. call prtstr
  270. leaw edit_buf, %di # Editor buffer
  271. lm3: call getkey
  272. cmpb $0x0d, %al # Enter?
  273. jz lment
  274. cmpb $0x08, %al # Backspace?
  275. jz lmbs
  276. cmpb $0x20, %al # Printable?
  277. jc lm3
  278. cmpw $edit_buf+4, %di # Enough space?
  279. jz lm3
  280. stosb
  281. call prtchr
  282. jmp lm3
  283. lmbs: cmpw $edit_buf, %di # Backspace
  284. jz lm3
  285. decw %di
  286. movb $0x08, %al
  287. call prtchr
  288. call prtspc
  289. movb $0x08, %al
  290. call prtchr
  291. jmp lm3
  292. lment: movb $0, (%di)
  293. leaw crlft, %si
  294. call prtstr
  295. leaw edit_buf, %si
  296. cmpb $0, (%si) # Empty string = default mode
  297. jz lmdef
  298. cmpb $0, 1(%si) # One character = menu selection
  299. jz mnusel
  300. cmpw $0x6373, (%si) # "scan" => mode scanning
  301. jnz lmhx
  302. cmpw $0x6e61, 2(%si)
  303. jz lmscan
  304. lmhx: xorw %bx, %bx # Else => mode ID in hex
  305. lmhex: lodsb
  306. orb %al, %al
  307. jz lmuse1
  308. subb $0x30, %al
  309. jc lmbad
  310. cmpb $10, %al
  311. jc lmhx1
  312. subb $7, %al
  313. andb $0xdf, %al
  314. cmpb $10, %al
  315. jc lmbad
  316. cmpb $16, %al
  317. jnc lmbad
  318. lmhx1: shlw $4, %bx
  319. orb %al, %bl
  320. jmp lmhex
  321. lmuse1: movw %bx, %ax
  322. jmp lmuse
  323. mnusel: lodsb # Menu selection
  324. xorb %ah, %ah
  325. subb $0x30, %al
  326. jc lmbad
  327. cmpb $10, %al
  328. jc lmuse
  329. cmpb $0x61-0x30, %al
  330. jc lmbad
  331. subb $0x61-0x30-10, %al
  332. cmpb $36, %al
  333. jnc lmbad
  334. lmuse: call mode_set
  335. jc lmdef
  336. lmbad: leaw unknt, %si
  337. call prtstr
  338. jmp lm2
  339. lmscan: cmpb $0, adapter # Scanning only on EGA/VGA
  340. jz lmbad
  341. movw $0, mt_end # Scanning of modes is
  342. movb $1, scanning # done as new autodetection.
  343. call mode_table
  344. jmp listm0
  345. lmdef: ret
  346. # Additional parts of mode_set... (relative jumps, you know)
  347. setv7: # Video7 extended modes
  348. DO_STORE
  349. subb $VIDEO_FIRST_V7>>8, %bh
  350. movw $0x6f05, %ax
  351. int $0x10
  352. stc
  353. ret
  354. _setrec: jmp setrec # Ugly...
  355. _set_80x25: jmp set_80x25
  356. # Aliases for backward compatibility.
  357. setalias:
  358. movw $VIDEO_80x25, %ax
  359. incw %bx
  360. jz mode_set
  361. movb $VIDEO_8POINT-VIDEO_FIRST_SPECIAL, %al
  362. incw %bx
  363. jnz setbad # Fall-through!
  364. # Setting of user mode (AX=mode ID) => CF=success
  365. mode_set:
  366. movw %ax, %bx
  367. cmpb $0xff, %ah
  368. jz setalias
  369. testb $VIDEO_RECALC>>8, %ah
  370. jnz _setrec
  371. cmpb $VIDEO_FIRST_RESOLUTION>>8, %ah
  372. jnc setres
  373. cmpb $VIDEO_FIRST_SPECIAL>>8, %ah
  374. jz setspc
  375. cmpb $VIDEO_FIRST_V7>>8, %ah
  376. jz setv7
  377. cmpb $VIDEO_FIRST_VESA>>8, %ah
  378. jnc check_vesa
  379. orb %ah, %ah
  380. jz setmenu
  381. decb %ah
  382. jz setbios
  383. setbad: clc
  384. movb $0, do_restore # The screen needn't be restored
  385. ret
  386. setvesa:
  387. DO_STORE
  388. subb $VIDEO_FIRST_VESA>>8, %bh
  389. movw $0x4f02, %ax # VESA BIOS mode set call
  390. int $0x10
  391. cmpw $0x004f, %ax # AL=4f if implemented
  392. jnz setbad # AH=0 if OK
  393. stc
  394. ret
  395. setbios:
  396. DO_STORE
  397. int $0x10 # Standard BIOS mode set call
  398. pushw %bx
  399. movb $0x0f, %ah # Check if really set
  400. int $0x10
  401. popw %bx
  402. cmpb %bl, %al
  403. jnz setbad
  404. stc
  405. ret
  406. setspc: xorb %bh, %bh # Set special mode
  407. cmpb $VIDEO_LAST_SPECIAL-VIDEO_FIRST_SPECIAL, %bl
  408. jnc setbad
  409. addw %bx, %bx
  410. jmp *spec_inits(%bx)
  411. setmenu:
  412. orb %al, %al # 80x25 is an exception
  413. jz _set_80x25
  414. pushw %bx # Set mode chosen from menu
  415. call mode_table # Build the mode table
  416. popw %ax
  417. shlw $2, %ax
  418. addw %ax, %si
  419. cmpw %di, %si
  420. jnc setbad
  421. movw (%si), %ax # Fetch mode ID
  422. _m_s: jmp mode_set
  423. setres: pushw %bx # Set mode chosen by resolution
  424. call mode_table
  425. popw %bx
  426. xchgb %bl, %bh
  427. setr1: lodsw
  428. cmpw $ASK_VGA, %ax # End of the list?
  429. jz setbad
  430. lodsw
  431. cmpw %bx, %ax
  432. jnz setr1
  433. movw -4(%si), %ax # Fetch mode ID
  434. jmp _m_s
  435. check_vesa:
  436. leaw modelist+1024, %di
  437. subb $VIDEO_FIRST_VESA>>8, %bh
  438. movw %bx, %cx # Get mode information structure
  439. movw $0x4f01, %ax
  440. int $0x10
  441. addb $VIDEO_FIRST_VESA>>8, %bh
  442. cmpw $0x004f, %ax
  443. jnz setbad
  444. movb (%di), %al # Check capabilities.
  445. andb $0x19, %al
  446. cmpb $0x09, %al
  447. jz setvesa # This is a text mode
  448. movb (%di), %al # Check capabilities.
  449. andb $0x99, %al
  450. cmpb $0x99, %al
  451. jnz _setbad # Doh! No linear frame buffer.
  452. subb $VIDEO_FIRST_VESA>>8, %bh
  453. orw $0x4000, %bx # Use linear frame buffer
  454. movw $0x4f02, %ax # VESA BIOS mode set call
  455. int $0x10
  456. cmpw $0x004f, %ax # AL=4f if implemented
  457. jnz _setbad # AH=0 if OK
  458. movb $1, graphic_mode # flag graphic mode
  459. movb $0, do_restore # no screen restore
  460. stc
  461. ret
  462. _setbad: jmp setbad           # Ugly...
  463. # Recalculate vertical display end registers -- this fixes various
  464. # inconsistencies of extended modes on many adapters. Called when
  465. # the VIDEO_RECALC flag is set in the mode ID.
  466. setrec: subb $VIDEO_RECALC>>8, %ah # Set the base mode
  467. call mode_set
  468. jnc rct3
  469. movw %gs:(0x485), %ax # Font size in pixels
  470. movb %gs:(0x484), %bl # Number of rows
  471. incb %bl
  472. mulb %bl # Number of visible
  473. decw %ax # scan lines - 1
  474. movw $0x3d4, %dx
  475. movw %ax, %bx
  476. movb $0x12, %al # Lower 8 bits
  477. movb %bl, %ah
  478. outw %ax, %dx
  479. movb $0x07, %al # Bits 8 and 9 in the overflow register
  480. call inidx
  481. xchgb %al, %ah
  482. andb $0xbd, %ah
  483. shrb %bh
  484. jnc rct1
  485. orb $0x02, %ah
  486. rct1: shrb %bh
  487. jnc rct2
  488. orb $0x40, %ah
  489. rct2: movb $0x07, %al
  490. outw %ax, %dx
  491. stc
  492. rct3: ret
  493. # Table of routines for setting of the special modes.
  494. spec_inits:
  495. .word set_80x25
  496. .word set_8pixel
  497. .word set_80x43
  498. .word set_80x28
  499. .word set_current
  500. .word set_80x30
  501. .word set_80x34
  502. .word set_80x60
  503. .word set_gfx
  504. # Set the 80x25 mode. If already set, do nothing.
  505. set_80x25:
  506. movw $0x5019, force_size # Override possibly broken BIOS
  507. use_80x25:
  508. #ifdef CONFIG_VIDEO_400_HACK
  509. movw $0x1202, %ax # Force 400 scan lines
  510. movb $0x30, %bl
  511. int $0x10
  512. #else
  513. movb $0x0f, %ah # Get current mode ID
  514. int $0x10
  515. cmpw $0x5007, %ax # Mode 7 (80x25 mono) is the only one available
  516. jz st80 # on CGA/MDA/HGA and is also available on EGAM
  517. cmpw $0x5003, %ax # Unknown mode, force 80x25 color
  518. jnz force3
  519. st80: cmpb $0, adapter # CGA/MDA/HGA => mode 3/7 is always 80x25
  520. jz set80
  521. movb %gs:(0x0484), %al # This is EGA+ -- beware of 80x50 etc.
  522. orb %al, %al # Some buggy BIOS'es set 0 rows
  523. jz set80
  524. cmpb $24, %al # It's hopefully correct
  525. jz set80
  526. #endif /* CONFIG_VIDEO_400_HACK */
  527. force3: DO_STORE
  528. movw $0x0003, %ax # Forced set
  529. int $0x10
  530. set80: stc
  531. ret
  532. # Set the 80x50/80x43 8-pixel mode. Simple BIOS calls.
  533. set_8pixel:
  534. DO_STORE
  535. call use_80x25 # The base is 80x25
  536. set_8pt:
  537. movw $0x1112, %ax # Use 8x8 font
  538. xorb %bl, %bl
  539. int $0x10
  540. movw $0x1200, %ax # Use alternate print screen
  541. movb $0x20, %bl
  542. int $0x10
  543. movw $0x1201, %ax # Turn off cursor emulation
  544. movb $0x34, %bl
  545. int $0x10
  546. movb $0x01, %ah # Define cursor scan lines 6-7
  547. movw $0x0607, %cx
  548. int $0x10
  549. set_current:
  550. stc
  551. ret
  552. # Set the 80x28 mode. This mode works on all VGA's, because it's a standard
  553. # 80x25 mode with 14-point fonts instead of 16-point.
  554. set_80x28:
  555. DO_STORE
  556. call use_80x25 # The base is 80x25
  557. set14: movw $0x1111, %ax # Use 9x14 font
  558. xorb %bl, %bl
  559. int $0x10
  560. movb $0x01, %ah # Define cursor scan lines 11-12
  561. movw $0x0b0c, %cx
  562. int $0x10
  563. stc
  564. ret
  565. # Set the 80x43 mode. This mode is works on all VGA's.
  566. # It's a 350-scanline mode with 8-pixel font.
  567. set_80x43:
  568. DO_STORE
  569. movw $0x1201, %ax # Set 350 scans
  570. movb $0x30, %bl
  571. int $0x10
  572. movw $0x0003, %ax # Reset video mode
  573. int $0x10
  574. jmp set_8pt # Use 8-pixel font
  575. # Set the 80x30 mode (all VGA's). 480 scanlines, 16-pixel font.
  576. set_80x30:
  577. call use_80x25 # Start with real 80x25
  578. DO_STORE
  579. movw $0x3cc, %dx # Get CRTC port
  580. inb %dx, %al
  581. movb $0xd4, %dl
  582. rorb %al # Mono or color?
  583. jc set48a
  584. movb $0xb4, %dl
  585. set48a: movw $0x0c11, %ax # Vertical sync end (also unlocks CR0-7)
  586.   call outidx
  587. movw $0x0b06, %ax # Vertical total
  588.   call outidx
  589. movw $0x3e07, %ax # (Vertical) overflow
  590.   call outidx
  591. movw $0xea10, %ax # Vertical sync start
  592.   call outidx
  593. movw $0xdf12, %ax # Vertical display end
  594. call outidx
  595. movw $0xe715, %ax # Vertical blank start
  596.   call outidx
  597. movw $0x0416, %ax # Vertical blank end
  598.   call outidx
  599. pushw %dx
  600. movb $0xcc, %dl # Misc output register (read)
  601.   inb %dx, %al
  602.   movb $0xc2, %dl # (write)
  603.   andb $0x0d, %al # Preserve clock select bits and color bit
  604.   orb $0xe2, %al # Set correct sync polarity
  605.   outb %al, %dx
  606. popw %dx
  607. movw $0x501e, force_size
  608. stc # That's all.
  609. ret
  610. # Set the 80x34 mode (all VGA's). 480 scans, 14-pixel font.
  611. set_80x34:
  612. call set_80x30 # Set 480 scans
  613. call set14 # And 14-pt font
  614. movw $0xdb12, %ax # VGA vertical display end
  615. movw $0x5022, force_size
  616. setvde: call outidx
  617. stc
  618. ret
  619. # Set the 80x60 mode (all VGA's). 480 scans, 8-pixel font.
  620. set_80x60:
  621. call set_80x30 # Set 480 scans
  622. call set_8pt # And 8-pt font
  623. movw $0xdf12, %ax # VGA vertical display end
  624. movw $0x503c, force_size
  625. jmp setvde
  626. # Special hack for ThinkPad graphics
  627. set_gfx:
  628. #ifdef CONFIG_VIDEO_GFX_HACK
  629. movw $VIDEO_GFX_BIOS_AX, %ax
  630. movw $VIDEO_GFX_BIOS_BX, %bx
  631. int $0x10
  632. movw $VIDEO_GFX_DUMMY_RESOLUTION, force_size
  633. stc
  634. #endif
  635. ret
  636. #ifdef CONFIG_VIDEO_RETAIN
  637. # Store screen contents to temporary buffer.
  638. store_screen:
  639. cmpb $0, do_restore # Already stored?
  640. jnz stsr
  641. testb $CAN_USE_HEAP, loadflags # Have we space for storing?
  642. jz stsr
  643. pushw %ax
  644. pushw %bx
  645. pushw force_size # Don't force specific size
  646. movw $0, force_size
  647. call mode_params # Obtain params of current mode
  648. popw force_size
  649. movb %fs:(PARAM_VIDEO_LINES), %ah
  650. movb %fs:(PARAM_VIDEO_COLS), %al
  651. movw %ax, %bx # BX=dimensions
  652. mulb %ah
  653. movw %ax, %cx # CX=number of characters
  654. addw %ax, %ax # Calculate image size
  655. addw $modelist+1024+4, %ax
  656. cmpw heap_end_ptr, %ax
  657. jnc sts1 # Unfortunately, out of memory
  658. movw %fs:(PARAM_CURSOR_POS), %ax # Store mode params
  659. leaw modelist+1024, %di
  660. stosw
  661. movw %bx, %ax
  662. stosw
  663. pushw %ds # Store the screen
  664. movw video_segment, %ds
  665. xorw %si, %si
  666. rep
  667. movsw
  668. popw %ds
  669. incb do_restore # Screen will be restored later
  670. sts1: popw %bx
  671. popw %ax
  672. stsr: ret
  673. # Restore screen contents from temporary buffer.
  674. restore_screen:
  675. cmpb $0, do_restore # Has the screen been stored?
  676. jz res1
  677. call mode_params # Get parameters of current mode
  678. movb %fs:(PARAM_VIDEO_LINES), %cl
  679. movb %fs:(PARAM_VIDEO_COLS), %ch
  680. leaw modelist+1024, %si # Screen buffer
  681. lodsw # Set cursor position
  682. movw %ax, %dx
  683. cmpb %cl, %dh
  684. jc res2
  685. movb %cl, %dh
  686. decb %dh
  687. res2: cmpb %ch, %dl
  688. jc res3
  689. movb %ch, %dl
  690. decb %dl
  691. res3: movb $0x02, %ah
  692. movb $0x00, %bh
  693. int $0x10
  694. lodsw # Display size
  695. movb %ah, %dl # DL=number of lines
  696. movb $0, %ah # BX=phys. length of orig. line
  697. movw %ax, %bx
  698. cmpb %cl, %dl # Too many?
  699. jc res4
  700. pushw %ax
  701. movb %dl, %al
  702. subb %cl, %al
  703. mulb %bl
  704. addw %ax, %si
  705. addw %ax, %si
  706. popw %ax
  707. movb %cl, %dl
  708. res4: cmpb %ch, %al # Too wide?
  709. jc res5
  710. movb %ch, %al # AX=width of src. line
  711. res5: movb $0, %cl
  712. xchgb %ch, %cl
  713. movw %cx, %bp # BP=width of dest. line
  714. pushw %es
  715. movw video_segment, %es
  716. xorw %di, %di # Move the data
  717. addw %bx, %bx # Convert BX and BP to _bytes_
  718. addw %bp, %bp
  719. res6: pushw %si
  720. pushw %di
  721. movw %ax, %cx
  722. rep
  723. movsw
  724. popw %di
  725. popw %si
  726. addw %bp, %di
  727. addw %bx, %si
  728. decb %dl
  729. jnz res6
  730. popw %es # Done
  731. res1: ret
  732. #endif /* CONFIG_VIDEO_RETAIN */
  733. # Write to indexed VGA register (AL=index, AH=data, DX=index reg. port)
  734. outidx: outb %al, %dx
  735. pushw %ax
  736. movb %ah, %al
  737. incw %dx
  738. outb %al, %dx
  739. decw %dx
  740. popw %ax
  741. ret
  742. # Build the table of video modes (stored after the setup.S code at the
  743. # `modelist' label. Each video mode record looks like:
  744. # .word MODE-ID (our special mode ID (see above))
  745. # .byte rows (number of rows)
  746. # .byte columns (number of columns)
  747. # Returns address of the end of the table in DI, the end is marked
  748. # with a ASK_VGA ID.
  749. mode_table:
  750. movw mt_end, %di # Already filled?
  751. orw %di, %di
  752. jnz mtab1x
  753. leaw modelist, %di # Store standard modes:
  754. movl $VIDEO_80x25 + 0x50190000, %eax # The 80x25 mode (ALL)
  755. stosl
  756. movb adapter, %al # CGA/MDA/HGA -- no more modes
  757. orb %al, %al
  758. jz mtabe
  759. decb %al
  760. jnz mtabv
  761. movl $VIDEO_8POINT + 0x502b0000, %eax # The 80x43 EGA mode
  762. stosl
  763. jmp mtabe
  764. mtab1x: jmp mtab1
  765. mtabv: leaw vga_modes, %si # All modes for std VGA
  766. movw $vga_modes_end-vga_modes, %cx
  767. rep # I'm unable to use movsw as I don't know how to store a half
  768. movsb # of the expression above to cx without using explicit shr.
  769. cmpb $0, scanning # Mode scan requested?
  770. jz mscan1
  771. call mode_scan
  772. mscan1:
  773. #ifdef CONFIG_VIDEO_LOCAL
  774. call local_modes
  775. #endif /* CONFIG_VIDEO_LOCAL */
  776. #ifdef CONFIG_VIDEO_VESA
  777. call vesa_modes # Detect VESA VGA modes
  778. #endif /* CONFIG_VIDEO_VESA */
  779. #ifdef CONFIG_VIDEO_SVGA
  780. cmpb $0, scanning # Bypass when scanning
  781. jnz mscan2
  782. call svga_modes # Detect SVGA cards & modes
  783. mscan2:
  784. #endif /* CONFIG_VIDEO_SVGA */
  785. mtabe:
  786. #ifdef CONFIG_VIDEO_COMPACT
  787. leaw modelist, %si
  788. movw %di, %dx
  789. movw %si, %di
  790. cmt1: cmpw %dx, %si # Scan all modes
  791. jz cmt2
  792. leaw modelist, %bx # Find in previous entries
  793. movw 2(%si), %cx
  794. cmt3: cmpw %bx, %si
  795. jz cmt4
  796. cmpw 2(%bx), %cx # Found => don't copy this entry
  797. jz cmt5
  798. addw $4, %bx
  799. jmp cmt3
  800. cmt4: movsl # Copy entry
  801. jmp cmt1
  802. cmt5: addw $4, %si # Skip entry
  803. jmp cmt1
  804. cmt2:
  805. #endif /* CONFIG_VIDEO_COMPACT */
  806. movw $ASK_VGA, (%di) # End marker
  807. movw %di, mt_end
  808. mtab1: leaw modelist, %si # SI=mode list, DI=list end
  809. ret0: ret
  810. # Modes usable on all standard VGAs
  811. vga_modes:
  812. .word VIDEO_8POINT
  813. .word 0x5032 # 80x50
  814. .word VIDEO_80x43
  815. .word 0x502b # 80x43
  816. .word VIDEO_80x28
  817. .word 0x501c # 80x28
  818. .word VIDEO_80x30
  819. .word 0x501e # 80x30
  820. .word VIDEO_80x34
  821. .word 0x5022 # 80x34
  822. .word VIDEO_80x60
  823. .word 0x503c # 80x60
  824. #ifdef CONFIG_VIDEO_GFX_HACK
  825. .word VIDEO_GFX_HACK
  826. .word VIDEO_GFX_DUMMY_RESOLUTION
  827. #endif
  828. vga_modes_end:
  829. # Detect VESA modes.
  830. #ifdef CONFIG_VIDEO_VESA
  831. vesa_modes:
  832. cmpb $2, adapter # VGA only
  833. jnz ret0
  834. movw %di, %bp # BP=original mode table end
  835. addw $0x200, %di # Buffer space
  836. movw $0x4f00, %ax # VESA Get card info call
  837. int $0x10
  838. movw %bp, %di
  839. cmpw $0x004f, %ax # Successful?
  840. jnz ret0
  841. cmpw $0x4556, 0x200(%di)
  842. jnz ret0
  843. cmpw $0x4153, 0x202(%di)
  844. jnz ret0
  845. movw $vesa_name, card_name # Set name to "VESA VGA"
  846. pushw %gs
  847. lgsw 0x20e(%di), %si # GS:SI=mode list
  848. movw $128, %cx # Iteration limit
  849. vesa1:
  850. # gas version 2.9.1, using BFD version 2.9.1.0.23 buggers the next inst.
  851. # XXX: lodsw %gs:(%si), %ax # Get next mode in the list
  852. gs; lodsw
  853. cmpw $0xffff, %ax # End of the table?
  854. jz vesar
  855. cmpw $0x0080, %ax # Check validity of mode ID
  856. jc vesa2
  857. orb %ah, %ah # Valid IDs: 0x0000-0x007f/0x0100-0x07ff
  858. jz vesan # Certain BIOSes report 0x80-0xff!
  859. cmpw $0x0800, %ax
  860. jnc vesae
  861. vesa2: pushw %cx
  862. movw %ax, %cx # Get mode information structure
  863. movw $0x4f01, %ax
  864. int $0x10
  865. movw %cx, %bx # BX=mode number
  866. addb $VIDEO_FIRST_VESA>>8, %bh
  867. popw %cx
  868. cmpw $0x004f, %ax
  869. jnz vesan # Don't report errors (buggy BIOSES)
  870. movb (%di), %al # Check capabilities. We require
  871. andb $0x19, %al # a color text mode.
  872. cmpb $0x09, %al
  873. jnz vesan
  874. cmpw $0xb800, 8(%di) # Standard video memory address required
  875. jnz vesan
  876. testb $2, (%di) # Mode characteristics supplied?
  877. movw %bx, (%di) # Store mode number
  878. jz vesa3
  879. xorw %dx, %dx
  880. movw 0x12(%di), %bx # Width
  881. orb %bh, %bh
  882. jnz vesan
  883. movb %bl, 0x3(%di)
  884. movw 0x14(%di), %ax # Height
  885. orb %ah, %ah
  886. jnz vesan
  887. movb %al, 2(%di)
  888. mulb %bl
  889. cmpw $8193, %ax # Small enough for Linux console driver?
  890. jnc vesan
  891. jmp vesaok
  892. vesa3: subw $0x8108, %bx # This mode has no detailed info specified,
  893. jc vesan # so it must be a standard VESA mode.
  894. cmpw $5, %bx
  895. jnc vesan
  896. movw vesa_text_mode_table(%bx), %ax
  897. movw %ax, 2(%di)
  898. vesaok: addw $4, %di # The mode is valid. Store it.
  899. vesan: loop vesa1 # Next mode. Limit exceeded => error
  900. vesae: leaw vesaer, %si
  901. call prtstr
  902. movw %bp, %di # Discard already found modes.
  903. vesar: popw %gs
  904. ret
  905. # Dimensions of standard VESA text modes
  906. vesa_text_mode_table:
  907. .byte 60, 80 # 0108
  908. .byte 25, 132 # 0109
  909. .byte 43, 132 # 010A
  910. .byte 50, 132 # 010B
  911. .byte 60, 132 # 010C
  912. #endif /* CONFIG_VIDEO_VESA */
  913. # Scan for video modes. A bit dirty, but should work.
  914. mode_scan:
  915. movw $0x0100, %cx # Start with mode 0
  916. scm1: movb $0, %ah # Test the mode
  917. movb %cl, %al
  918. int $0x10
  919. movb $0x0f, %ah
  920. int $0x10
  921. cmpb %cl, %al
  922. jnz scm2 # Mode not set
  923. movw $0x3c0, %dx # Test if it's a text mode
  924. movb $0x10, %al # Mode bits
  925. call inidx
  926. andb $0x03, %al
  927. jnz scm2
  928. movb $0xce, %dl # Another set of mode bits
  929. movb $0x06, %al
  930. call inidx
  931. shrb %al
  932. jc scm2
  933. movb $0xd4, %dl # Cursor location
  934. movb $0x0f, %al
  935. call inidx
  936. orb %al, %al
  937. jnz scm2
  938. movw %cx, %ax # Ok, store the mode
  939. stosw
  940. movb %gs:(0x484), %al # Number of rows
  941. incb %al
  942. stosb
  943. movw %gs:(0x44a), %ax # Number of columns
  944. stosb
  945. scm2: incb %cl
  946. jns scm1
  947. movw $0x0003, %ax # Return back to mode 3
  948. int $0x10
  949. ret
  950. tstidx: outw %ax, %dx # OUT DX,AX and inidx
  951. inidx: outb %al, %dx # Read from indexed VGA register
  952. incw %dx # AL=index, DX=index reg port -> AL=data
  953. inb %dx, %al
  954. decw %dx
  955. ret
  956. # Try to detect type of SVGA card and supply (usually approximate) video
  957. # mode table for it.
  958. #ifdef CONFIG_VIDEO_SVGA
  959. svga_modes:
  960. leaw svga_table, %si # Test all known SVGA adapters
  961. dosvga: lodsw
  962. movw %ax, %bp # Default mode table
  963. orw %ax, %ax
  964. jz didsv1
  965. lodsw # Pointer to test routine
  966. pushw %si
  967. pushw %di
  968. pushw %es
  969. movw $0xc000, %bx
  970. movw %bx, %es
  971. call *%ax # Call test routine
  972. popw %es
  973. popw %di
  974. popw %si
  975. orw %bp, %bp
  976. jz dosvga
  977. movw %bp, %si # Found, copy the modes
  978. movb svga_prefix, %ah
  979. cpsvga: lodsb
  980. orb %al, %al
  981. jz didsv
  982. stosw
  983. movsw
  984. jmp cpsvga
  985. didsv: movw %si, card_name # Store pointer to card name
  986. didsv1: ret
  987. # Table of all known SVGA cards. For each card, we store a pointer to
  988. # a table of video modes supported by the card and a pointer to a routine
  989. # used for testing of presence of the card. The video mode table is always
  990. # followed by the name of the card or the chipset.
  991. svga_table:
  992. .word ati_md, ati_test
  993. .word oak_md, oak_test
  994. .word paradise_md, paradise_test
  995. .word realtek_md, realtek_test
  996. .word s3_md, s3_test
  997. .word chips_md, chips_test
  998. .word video7_md, video7_test
  999. .word cirrus5_md, cirrus5_test
  1000. .word cirrus6_md, cirrus6_test
  1001. .word cirrus1_md, cirrus1_test
  1002. .word ahead_md, ahead_test
  1003. .word everex_md, everex_test
  1004. .word genoa_md, genoa_test
  1005. .word trident_md, trident_test
  1006. .word tseng_md, tseng_test
  1007. .word 0
  1008. # Test routines and mode tables:
  1009. # S3 - The test algorithm was taken from the SuperProbe package
  1010. # for XFree86 1.2.1. Report bugs to Christoph.Niemann@linux.org
  1011. s3_test:
  1012. movw $0x0f35, %cx # we store some constants in cl/ch
  1013. movw $0x03d4, %dx
  1014. movb $0x38, %al
  1015. call inidx
  1016. movb %al, %bh # store current CRT-register 0x38
  1017. movw $0x0038, %ax
  1018. call outidx # disable writing to special regs
  1019. movb %cl, %al # check whether we can write special reg 0x35
  1020. call inidx
  1021. movb %al, %bl # save the current value of CRT reg 0x35
  1022. andb $0xf0, %al # clear bits 0-3
  1023. movb %al, %ah
  1024. movb %cl, %al # and write it to CRT reg 0x35
  1025. call outidx
  1026. call inidx # now read it back
  1027. andb %ch, %al # clear the upper 4 bits
  1028. jz s3_2 # the first test failed. But we have a
  1029. movb %bl, %ah # second chance
  1030. movb %cl, %al
  1031. call outidx
  1032. jmp s3_1 # do the other tests
  1033. s3_2: movw %cx, %ax # load ah with 0xf and al with 0x35
  1034. orb %bl, %ah # set the upper 4 bits of ah with the orig value
  1035. call outidx # write ...
  1036. call inidx # ... and reread 
  1037. andb %cl, %al # turn off the upper 4 bits
  1038. pushw %ax
  1039. movb %bl, %ah # restore old value in register 0x35
  1040. movb %cl, %al
  1041. call outidx
  1042. popw %ax
  1043. cmpb %ch, %al # setting lower 4 bits was successful => bad
  1044. je no_s3 # writing is allowed => this is not an S3
  1045. s3_1: movw $0x4838, %ax # allow writing to special regs by putting
  1046. call outidx # magic number into CRT-register 0x38
  1047. movb %cl, %al # check whether we can write special reg 0x35
  1048. call inidx
  1049. movb %al, %bl
  1050. andb $0xf0, %al
  1051. movb %al, %ah
  1052. movb %cl, %al
  1053. call outidx
  1054. call inidx
  1055. andb %ch, %al
  1056. jnz no_s3 # no, we can't write => no S3
  1057. movw %cx, %ax
  1058. orb %bl, %ah
  1059. call outidx
  1060. call inidx
  1061. andb %ch, %al
  1062. pushw %ax
  1063. movb %bl, %ah # restore old value in register 0x35
  1064. movb %cl, %al
  1065. call outidx
  1066. popw %ax
  1067. cmpb %ch, %al
  1068. jne no_s31 # writing not possible => no S3
  1069. movb $0x30, %al
  1070. call inidx # now get the S3 id ...
  1071. leaw idS3, %di
  1072. movw $0x10, %cx
  1073. repne
  1074. scasb
  1075. je no_s31
  1076. movb %bh, %ah
  1077. movb $0x38, %al
  1078. jmp s3rest
  1079. no_s3: movb $0x35, %al # restore CRT register 0x35
  1080. movb %bl, %ah
  1081. call outidx
  1082. no_s31: xorw %bp, %bp # Detection failed
  1083. s3rest: movb %bh, %ah
  1084. movb $0x38, %al # restore old value of CRT register 0x38
  1085. jmp outidx
  1086. idS3: .byte 0x81, 0x82, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95
  1087. .byte 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa8, 0xb0
  1088. s3_md: .byte 0x54, 0x2b, 0x84
  1089. .byte 0x55, 0x19, 0x84
  1090. .byte 0
  1091. .ascii "S3"
  1092. .byte 0
  1093. # ATI cards.
  1094. ati_test:
  1095. leaw  idati, %si
  1096. movw $0x31, %di
  1097. movw $0x09, %cx
  1098. repe
  1099. cmpsb
  1100. je atiok
  1101. xorw %bp, %bp
  1102. atiok: ret
  1103. idati: .ascii "761295520"
  1104. ati_md: .byte 0x23, 0x19, 0x84
  1105. .byte 0x33, 0x2c, 0x84
  1106. .byte 0x22, 0x1e, 0x64
  1107. .byte 0x21, 0x19, 0x64
  1108. .byte 0x58, 0x21, 0x50
  1109. .byte 0x5b, 0x1e, 0x50
  1110. .byte 0
  1111. .ascii "ATI"
  1112. .byte 0
  1113. # AHEAD
  1114. ahead_test:
  1115. movw $0x200f, %ax
  1116. movw $0x3ce, %dx
  1117. outw %ax, %dx
  1118. incw %dx
  1119. inb %dx, %al
  1120. cmpb $0x20, %al
  1121. je isahed
  1122. cmpb $0x21, %al
  1123. je isahed
  1124. xorw %bp, %bp
  1125. isahed: ret
  1126. ahead_md:
  1127. .byte 0x22, 0x2c, 0x84
  1128. .byte 0x23, 0x19, 0x84
  1129. .byte 0x24, 0x1c, 0x84
  1130. .byte 0x2f, 0x32, 0xa0
  1131. .byte 0x32, 0x22, 0x50
  1132. .byte 0x34, 0x42, 0x50
  1133. .byte 0
  1134. .ascii "Ahead"
  1135. .byte 0
  1136. # Chips & Tech.
  1137. chips_test:
  1138. movw $0x3c3, %dx
  1139. inb %dx, %al
  1140. orb $0x10, %al
  1141. outb %al, %dx
  1142. movw $0x104, %dx
  1143. inb %dx, %al
  1144. movb %al, %bl
  1145. movw $0x3c3, %dx
  1146. inb %dx, %al
  1147. andb $0xef, %al
  1148. outb %al, %dx
  1149. cmpb $0xa5, %bl
  1150. je cantok
  1151. xorw %bp, %bp
  1152. cantok: ret
  1153. chips_md:
  1154. .byte 0x60, 0x19, 0x84
  1155. .byte 0x61, 0x32, 0x84
  1156. .byte 0
  1157. .ascii "Chips & Technologies"
  1158. .byte 0
  1159. # Cirrus Logic 5X0
  1160. cirrus1_test:
  1161. movw $0x3d4, %dx
  1162. movb $0x0c, %al
  1163. outb %al, %dx
  1164. incw %dx
  1165. inb %dx, %al
  1166. movb %al, %bl
  1167. xorb %al, %al
  1168. outb %al, %dx
  1169. decw %dx
  1170. movb $0x1f, %al
  1171. outb %al, %dx
  1172. incw %dx
  1173. inb %dx, %al
  1174. movb %al, %bh
  1175. xorb %ah, %ah
  1176. shlb $4, %al
  1177. movw %ax, %cx
  1178. movb %bh, %al
  1179. shrb $4, %al
  1180. addw %ax, %cx
  1181. shlw $8, %cx
  1182. addw $6, %cx
  1183. movw %cx, %ax
  1184. movw $0x3c4, %dx
  1185. outw %ax, %dx
  1186. incw %dx
  1187. inb %dx, %al
  1188. andb %al, %al
  1189. jnz nocirr
  1190. movb %bh, %al
  1191. outb %al, %dx
  1192. inb %dx, %al
  1193. cmpb $0x01, %al
  1194. je iscirr
  1195. nocirr: xorw %bp, %bp
  1196. iscirr: movw $0x3d4, %dx
  1197. movb %bl, %al
  1198. xorb %ah, %ah
  1199. shlw $8, %ax
  1200. addw $0x0c, %ax
  1201. outw %ax, %dx
  1202. ret
  1203. cirrus1_md:
  1204. .byte 0x1f, 0x19, 0x84
  1205. .byte 0x20, 0x2c, 0x84
  1206. .byte 0x22, 0x1e, 0x84
  1207. .byte 0x31, 0x25, 0x64
  1208. .byte 0
  1209. .ascii "Cirrus Logic 5X0"
  1210. .byte 0
  1211. # Cirrus Logic 54XX
  1212. cirrus5_test:
  1213. movw $0x3c4, %dx
  1214. movb $6, %al
  1215. call inidx
  1216. movb %al, %bl # BL=backup
  1217. movw $6, %ax
  1218. call tstidx
  1219. cmpb $0x0f, %al
  1220. jne c5fail
  1221. movw $0x1206, %ax
  1222. call tstidx
  1223. cmpb $0x12, %al
  1224. jne c5fail
  1225. movb $0x1e, %al
  1226. call inidx
  1227. movb %al, %bh
  1228. movb %bh, %ah
  1229. andb $0xc0, %ah
  1230. movb $0x1e, %al
  1231. call tstidx
  1232. andb $0x3f, %al
  1233. jne c5xx
  1234. movb $0x1e, %al
  1235. movb %bh, %ah
  1236. orb $0x3f, %ah
  1237. call tstidx
  1238. xorb $0x3f, %al
  1239. andb $0x3f, %al
  1240. c5xx: pushf
  1241. movb $0x1e, %al
  1242. movb %bh, %ah
  1243. outw %ax, %dx
  1244. popf
  1245. je c5done
  1246. c5fail: xorw %bp, %bp
  1247. c5done: movb $6, %al
  1248. movb %bl, %ah
  1249. outw %ax, %dx
  1250. ret
  1251. cirrus5_md:
  1252. .byte 0x14, 0x19, 0x84
  1253. .byte 0x54, 0x2b, 0x84
  1254. .byte 0
  1255. .ascii "Cirrus Logic 54XX"
  1256. .byte 0
  1257. # Cirrus Logic 64XX -- no known extra modes, but must be identified, because
  1258. # it's misidentified by the Ahead test.
  1259. cirrus6_test:
  1260. movw $0x3ce, %dx
  1261. movb $0x0a, %al
  1262. call inidx
  1263. movb %al, %bl # BL=backup
  1264. movw $0xce0a, %ax
  1265. call tstidx
  1266. orb %al, %al
  1267. jne c2fail
  1268. movw $0xec0a, %ax
  1269. call tstidx
  1270. cmpb $0x01, %al
  1271. jne c2fail
  1272. movb $0xaa, %al
  1273. call inidx # 4X, 5X, 7X and 8X are valid 64XX chip ID's. 
  1274. shrb $4, %al
  1275. subb $4, %al
  1276. jz c6done
  1277. decb %al
  1278. jz c6done
  1279. subb $2, %al
  1280. jz c6done
  1281. decb %al
  1282. jz c6done
  1283. c2fail: xorw %bp, %bp
  1284. c6done: movb $0x0a, %al
  1285. movb %bl, %ah
  1286. outw %ax, %dx
  1287. ret
  1288. cirrus6_md:
  1289. .byte 0
  1290. .ascii "Cirrus Logic 64XX"
  1291. .byte 0
  1292. # Everex / Trident
  1293. everex_test:
  1294. movw $0x7000, %ax
  1295. xorw %bx, %bx
  1296. int $0x10
  1297. cmpb $0x70, %al
  1298. jne noevrx
  1299. shrw $4, %dx
  1300. cmpw $0x678, %dx
  1301. je evtrid
  1302. cmpw $0x236, %dx
  1303. jne evrxok
  1304. evtrid: leaw trident_md, %bp
  1305. evrxok: ret
  1306. noevrx: xorw %bp, %bp
  1307. ret
  1308. everex_md:
  1309. .byte 0x03, 0x22, 0x50
  1310. .byte 0x04, 0x3c, 0x50
  1311. .byte 0x07, 0x2b, 0x64
  1312. .byte 0x08, 0x4b, 0x64
  1313. .byte 0x0a, 0x19, 0x84
  1314. .byte 0x0b, 0x2c, 0x84
  1315. .byte 0x16, 0x1e, 0x50
  1316. .byte 0x18, 0x1b, 0x64
  1317. .byte 0x21, 0x40, 0xa0
  1318. .byte 0x40, 0x1e, 0x84
  1319. .byte 0
  1320. .ascii "Everex/Trident"
  1321. .byte 0
  1322. # Genoa.
  1323. genoa_test:
  1324. leaw idgenoa, %si # Check Genoa 'clues'
  1325. xorw %ax, %ax
  1326. movb %es:(0x37), %al
  1327. movw %ax, %di
  1328. movw $0x04, %cx
  1329. decw %si
  1330. decw %di
  1331. l1: incw %si
  1332. incw %di
  1333. movb (%si), %al
  1334. testb %al, %al
  1335. jz l2
  1336. cmpb %es:(%di), %al
  1337. l2: loope  l1
  1338. orw %cx, %cx
  1339. je isgen
  1340. xorw %bp, %bp
  1341. isgen: ret
  1342. idgenoa: .byte 0x77, 0x00, 0x99, 0x66
  1343. genoa_md:
  1344. .byte 0x58, 0x20, 0x50
  1345. .byte 0x5a, 0x2a, 0x64
  1346. .byte 0x60, 0x19, 0x84
  1347. .byte 0x61, 0x1d, 0x84
  1348. .byte 0x62, 0x20, 0x84
  1349. .byte 0x63, 0x2c, 0x84
  1350. .byte 0x64, 0x3c, 0x84
  1351. .byte 0x6b, 0x4f, 0x64
  1352. .byte 0x72, 0x3c, 0x50
  1353. .byte 0x74, 0x42, 0x50
  1354. .byte 0x78, 0x4b, 0x64
  1355. .byte 0
  1356. .ascii "Genoa"
  1357. .byte 0
  1358. # OAK
  1359. oak_test:
  1360. leaw idoakvga, %si
  1361. movw $0x08, %di
  1362. movw $0x08, %cx
  1363. repe
  1364. cmpsb
  1365. je isoak
  1366. xorw %bp, %bp
  1367. isoak: ret
  1368. idoakvga: .ascii  "OAK VGA "
  1369. oak_md: .byte 0x4e, 0x3c, 0x50
  1370. .byte 0x4f, 0x3c, 0x84
  1371. .byte 0x50, 0x19, 0x84
  1372. .byte 0x51, 0x2b, 0x84
  1373. .byte 0
  1374. .ascii "OAK"
  1375. .byte 0
  1376. # WD Paradise.
  1377. paradise_test:
  1378. leaw idparadise, %si
  1379. movw $0x7d, %di
  1380. movw $0x04, %cx
  1381. repe
  1382. cmpsb
  1383. je ispara
  1384. xorw %bp, %bp
  1385. ispara: ret
  1386. idparadise: .ascii "VGA="
  1387. paradise_md:
  1388. .byte 0x41, 0x22, 0x50
  1389. .byte 0x47, 0x1c, 0x84
  1390. .byte 0x55, 0x19, 0x84
  1391. .byte 0x54, 0x2c, 0x84
  1392. .byte 0
  1393. .ascii "Paradise"
  1394. .byte 0
  1395. # Trident.
  1396. trident_test:
  1397. movw $0x3c4, %dx
  1398. movb $0x0e, %al
  1399. outb %al, %dx
  1400. incw %dx
  1401. inb %dx, %al
  1402. xchgb %al, %ah
  1403. xorb %al, %al
  1404. outb %al, %dx
  1405. inb %dx, %al
  1406. xchgb %ah, %al
  1407. movb %al, %bl # Strange thing ... in the book this wasn't
  1408. andb $0x02, %bl # necessary but it worked on my card which
  1409. jz setb2 # is a trident. Without it the screen goes
  1410. # blurred ...
  1411. andb $0xfd, %al
  1412. jmp clrb2
  1413. setb2: orb $0x02, %al
  1414. clrb2: outb %al, %dx
  1415. andb $0x0f, %ah
  1416. cmpb $0x02, %ah
  1417. je istrid
  1418. xorw %bp, %bp
  1419. istrid: ret
  1420. trident_md:
  1421. .byte 0x50, 0x1e, 0x50
  1422. .byte 0x51, 0x2b, 0x50
  1423. .byte 0x52, 0x3c, 0x50
  1424. .byte 0x57, 0x19, 0x84
  1425. .byte 0x58, 0x1e, 0x84
  1426. .byte 0x59, 0x2b, 0x84
  1427. .byte 0x5a, 0x3c, 0x84
  1428. .byte 0
  1429. .ascii "Trident"
  1430. .byte 0
  1431. # Tseng.
  1432. tseng_test:
  1433. movw $0x3cd, %dx
  1434. inb %dx, %al # Could things be this simple ! :-)
  1435. movb %al, %bl
  1436. movb $0x55, %al
  1437. outb %al, %dx
  1438. inb %dx, %al
  1439. movb %al, %ah
  1440. movb %bl, %al
  1441. outb %al, %dx
  1442. cmpb $0x55, %ah
  1443.   je istsen
  1444. isnot: xorw %bp, %bp
  1445. istsen: ret
  1446. tseng_md:
  1447. .byte 0x26, 0x3c, 0x50
  1448. .byte 0x2a, 0x28, 0x64
  1449. .byte 0x23, 0x19, 0x84
  1450. .byte 0x24, 0x1c, 0x84
  1451. .byte 0x22, 0x2c, 0x84
  1452. .byte 0x21, 0x3c, 0x84
  1453. .byte 0
  1454. .ascii "Tseng"
  1455. .byte 0
  1456. # Video7.
  1457. video7_test:
  1458. movw $0x3cc, %dx
  1459. inb %dx, %al
  1460. movw $0x3b4, %dx
  1461. andb $0x01, %al
  1462. jz even7
  1463. movw $0x3d4, %dx
  1464. even7: movb $0x0c, %al
  1465. outb %al, %dx
  1466. incw %dx
  1467. inb %dx, %al
  1468. movb %al, %bl
  1469. movb $0x55, %al
  1470. outb %al, %dx
  1471. inb %dx, %al
  1472. decw %dx
  1473. movb $0x1f, %al
  1474. outb %al, %dx
  1475. incw %dx
  1476. inb %dx, %al
  1477. movb %al, %bh
  1478. decw %dx
  1479. movb $0x0c, %al
  1480. outb %al, %dx
  1481. incw %dx
  1482. movb %bl, %al
  1483. outb %al, %dx
  1484. movb $0x55, %al
  1485. xorb $0xea, %al
  1486. cmpb %bh, %al
  1487. jne isnot
  1488. movb $VIDEO_FIRST_V7>>8, svga_prefix # Use special mode switching
  1489. ret
  1490. video7_md:
  1491. .byte 0x40, 0x2b, 0x50
  1492. .byte 0x43, 0x3c, 0x50
  1493. .byte 0x44, 0x3c, 0x64
  1494. .byte 0x41, 0x19, 0x84
  1495. .byte 0x42, 0x2c, 0x84
  1496. .byte 0x45, 0x1c, 0x84
  1497. .byte 0
  1498. .ascii "Video 7"
  1499. .byte 0
  1500. # Realtek VGA
  1501. realtek_test:
  1502. leaw idrtvga, %si
  1503. movw $0x45, %di
  1504. movw $0x0b, %cx
  1505. repe
  1506. cmpsb
  1507. je isrt
  1508. xorw %bp, %bp
  1509. isrt: ret
  1510. idrtvga: .ascii "REALTEK VGA"
  1511. realtek_md:
  1512. .byte 0x1a, 0x3c, 0x50
  1513. .byte 0x1b, 0x19, 0x84
  1514. .byte 0x1c, 0x1e, 0x84
  1515. .byte 0x1d, 0x2b, 0x84
  1516. .byte 0x1e, 0x3c, 0x84
  1517. .byte 0
  1518. .ascii "REALTEK"
  1519. .byte 0
  1520. #endif /* CONFIG_VIDEO_SVGA */
  1521. # User-defined local mode table (VGA only)
  1522. #ifdef CONFIG_VIDEO_LOCAL
  1523. local_modes:
  1524. leaw local_mode_table, %si
  1525. locm1: lodsw
  1526. orw %ax, %ax
  1527. jz locm2
  1528. stosw
  1529. movsw
  1530. jmp locm1
  1531. locm2: ret
  1532. # This is the table of local video modes which can be supplied manually
  1533. # by the user. Each entry consists of mode ID (word) and dimensions
  1534. # (byte for column count and another byte for row count). These modes
  1535. # are placed before all SVGA and VESA modes and override them if table
  1536. # compacting is enabled. The table must end with a zero word followed
  1537. # by NUL-terminated video adapter name.
  1538. local_mode_table:
  1539. .word 0x0100 # Example: 40x25
  1540. .byte 25,40
  1541. .word 0
  1542. .ascii "Local"
  1543. .byte 0
  1544. #endif /* CONFIG_VIDEO_LOCAL */
  1545. # Read a key and return the ASCII code in al, scan code in ah
  1546. getkey: xorb %ah, %ah
  1547. int $0x16
  1548. ret
  1549. # Read a key with a timeout of 30 seconds.
  1550. # The hardware clock is used to get the time.
  1551. getkt: call gettime
  1552. addb $30, %al # Wait 30 seconds
  1553. cmpb $60, %al
  1554. jl lminute
  1555. subb $60, %al
  1556. lminute:
  1557. movb %al, %cl
  1558. again: movb $0x01, %ah
  1559. int $0x16
  1560. jnz getkey # key pressed, so get it
  1561. call gettime
  1562. cmpb %cl, %al
  1563. jne again
  1564. movb $0x20, %al # timeout, return `space'
  1565. ret
  1566. # Flush the keyboard buffer
  1567. flush: movb $0x01, %ah
  1568. int $0x16
  1569. jz empty
  1570. xorb %ah, %ah
  1571. int $0x16
  1572. jmp flush
  1573. empty: ret
  1574. # Print hexadecimal number.
  1575. prthw: pushw %ax
  1576. movb %ah, %al
  1577. call prthb
  1578. popw %ax
  1579. prthb: pushw %ax
  1580. shrb $4, %al
  1581. call prthn
  1582. popw %ax
  1583. andb $0x0f, %al
  1584. prthn: cmpb $0x0a, %al
  1585. jc prth1
  1586. addb $0x07, %al
  1587. prth1: addb $0x30, %al
  1588. jmp prtchr
  1589. # Print decimal number in al
  1590. prtdec: pushw %ax
  1591. pushw %cx
  1592. xorb %ah, %ah
  1593. movb $0x0a, %cl
  1594. idivb %cl
  1595. cmpb $0x09, %al
  1596. jbe lt100
  1597. call prtdec
  1598. jmp skip10
  1599. lt100: addb $0x30, %al
  1600. call prtchr
  1601. skip10: movb %ah, %al
  1602. addb $0x30, %al
  1603. call prtchr
  1604. popw %cx
  1605. popw %ax
  1606. ret
  1607. # VIDEO_SELECT-only variables
  1608. mt_end: .word 0 # End of video mode table if built
  1609. edit_buf: .space 6 # Line editor buffer
  1610. card_name: .word 0 # Pointer to adapter name
  1611. scanning: .byte 0 # Performing mode scan
  1612. do_restore: .byte 0 # Screen contents altered during mode change
  1613. svga_prefix: .byte VIDEO_FIRST_BIOS>>8 # Default prefix for BIOS modes
  1614. graphic_mode: .byte 0 # Graphic mode with a linear frame buffer
  1615. # Status messages
  1616. keymsg: .ascii "Press <RETURN> to see video modes available, "
  1617. .ascii "<SPACE> to continue or wait 30 secs"
  1618. .byte 0x0d, 0x0a, 0
  1619. listhdr: .byte 0x0d, 0x0a
  1620. .ascii "Mode:    COLSxROWS:"
  1621. crlft: .byte 0x0d, 0x0a, 0
  1622. prompt: .byte 0x0d, 0x0a
  1623. .asciz "Enter mode number or `scan': "
  1624. unknt: .asciz "Unknown mode ID. Try again."
  1625. badmdt: .ascii "You passed an undefined mode number."
  1626. .byte 0x0d, 0x0a, 0
  1627. vesaer: .ascii "Error: Scanning of VESA modes failed. Please "
  1628. .ascii "report to <mj@ucw.cz>."
  1629. .byte 0x0d, 0x0a, 0
  1630. old_name: .asciz "CGA/MDA/HGA"
  1631. ega_name: .asciz "EGA"
  1632. svga_name: .ascii " "
  1633. vga_name: .asciz "VGA"
  1634. vesa_name: .asciz "VESA"
  1635. name_bann: .asciz "Video adapter: "
  1636. #endif /* CONFIG_VIDEO_SELECT */
  1637. # Other variables:
  1638. adapter: .byte 0 # Video adapter: 0=CGA/MDA/HGA,1=EGA,2=VGA
  1639. video_segment: .word 0xb800 # Video memory segment
  1640. force_size: .word 0 # Use this size instead of the one in BIOS vars