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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * setup.S Copyright (C) 1991, 1992 Linus Torvalds
  3.  *
  4.  * setup.s is responsible for getting the system data from the BIOS,
  5.  * and putting them into the appropriate places in system memory.
  6.  * both setup.s and system has been loaded by the bootblock.
  7.  *
  8.  * This code asks the bios for memory/disk/other parameters, and
  9.  * puts them in a "safe" place: 0x90000-0x901FF, ie where the
  10.  * boot-block used to be. It is then up to the protected mode
  11.  * system to read them from there before the area is overwritten
  12.  * for buffer-blocks.
  13.  *
  14.  * Move PS/2 aux init code to psaux.c
  15.  * (troyer@saifr00.cfsat.Honeywell.COM) 03Oct92
  16.  *
  17.  * some changes and additional features by Christoph Niemann,
  18.  * March 1993/June 1994 (Christoph.Niemann@linux.org)
  19.  *
  20.  * add APM BIOS checking by Stephen Rothwell, May 1994
  21.  * (sfr@canb.auug.org.au)
  22.  *
  23.  * High load stuff, initrd support and position independency
  24.  * by Hans Lermen & Werner Almesberger, February 1996
  25.  * <lermen@elserv.ffm.fgan.de>, <almesber@lrc.epfl.ch>
  26.  *
  27.  * Video handling moved to video.S by Martin Mares, March 1996
  28.  * <mj@k332.feld.cvut.cz>
  29.  *
  30.  * Extended memory detection scheme retwiddled by orc@pell.chi.il.us (david
  31.  * parsons) to avoid loadlin confusion, July 1997
  32.  *
  33.  * Transcribed from Intel (as86) -> AT&T (gas) by Chris Noe, May 1999.
  34.  * <stiker@northlink.com>
  35.  *
  36.  * Fix to work around buggy BIOSes which dont use carry bit correctly
  37.  * and/or report extended memory in CX/DX for e801h memory size detection 
  38.  * call.  As a result the kernel got wrong figures.  The int15/e801h docs
  39.  * from Ralf Brown interrupt list seem to indicate AX/BX should be used
  40.  * anyway.  So to avoid breaking many machines (presumably there was a reason
  41.  * to orginally use CX/DX instead of AX/BX), we do a kludge to see
  42.  * if CX/DX have been changed in the e801 call and if so use AX/BX .
  43.  * Michael Miller, April 2001 <michaelm@mjmm.org>
  44.  *
  45.  */
  46. #include <linux/config.h>
  47. #include <asm/segment.h>
  48. #include <linux/version.h>
  49. #include <linux/compile.h>
  50. #include <asm/boot.h>
  51. #include <asm/e820.h>
  52. /* Signature words to ensure LILO loaded us right */
  53. #define SIG1 0xAA55
  54. #define SIG2 0x5A5A
  55. INITSEG  = DEF_INITSEG # 0x9000, we move boot here, out of the way
  56. SYSSEG   = DEF_SYSSEG # 0x1000, system loaded at 0x10000 (65536).
  57. SETUPSEG = DEF_SETUPSEG # 0x9020, this is the current segment
  58. # ... and the former contents of CS
  59. DELTA_INITSEG = SETUPSEG - INITSEG # 0x0020
  60. .code16
  61. .globl begtext, begdata, begbss, endtext, enddata, endbss
  62. .text
  63. begtext:
  64. .data
  65. begdata:
  66. .bss
  67. begbss:
  68. .text
  69. start:
  70. jmp trampoline
  71. # This is the setup header, and it must start at %cs:2 (old 0x9020:2)
  72. .ascii "HdrS" # header signature
  73. .word 0x0202 # header version number (>= 0x0105)
  74. # or else old loadlin-1.5 will fail)
  75. realmode_swtch: .word 0, 0 # default_switch, SETUPSEG
  76. start_sys_seg: .word SYSSEG
  77. .word kernel_version # pointing to kernel version string
  78. # above section of header is compatible
  79. # with loadlin-1.5 (header v1.5). Don't
  80. # change it.
  81. type_of_loader: .byte 0 # = 0, old one (LILO, Loadlin,
  82. #      Bootlin, SYSLX, bootsect...)
  83. # See Documentation/i386/boot.txt for
  84. # assigned ids
  85. # flags, unused bits must be zero (RFU) bit within loadflags
  86. loadflags:
  87. LOADED_HIGH = 1 # If set, the kernel is loaded high
  88. CAN_USE_HEAP = 0x80 # If set, the loader also has set
  89. # heap_end_ptr to tell how much
  90. # space behind setup.S can be used for
  91. # heap purposes.
  92. # Only the loader knows what is free
  93. #ifndef __BIG_KERNEL__
  94. .byte 0
  95. #else
  96. .byte LOADED_HIGH
  97. #endif
  98. setup_move_size: .word  0x8000 # size to move, when setup is not
  99. # loaded at 0x90000. We will move setup 
  100. # to 0x90000 then just before jumping
  101. # into the kernel. However, only the
  102. # loader knows how much data behind
  103. # us also needs to be loaded.
  104. code32_start: # here loaders can put a different
  105. # start address for 32-bit code.
  106. #ifndef __BIG_KERNEL__
  107. .long 0x1000 #   0x1000 = default for zImage
  108. #else
  109. .long 0x100000 # 0x100000 = default for big kernel
  110. #endif
  111. ramdisk_image: .long 0 # address of loaded ramdisk image
  112. # Here the loader puts the 32-bit
  113. # address where it loaded the image.
  114. # This only will be read by the kernel.
  115. ramdisk_size: .long 0 # its size in bytes
  116. bootsect_kludge:
  117. .word  bootsect_helper, SETUPSEG
  118. heap_end_ptr: .word modelist+1024 # (Header version 0x0201 or later)
  119. # space from here (exclusive) down to
  120. # end of setup code can be used by setup
  121. # for local heap purposes.
  122. pad1: .word 0
  123. cmd_line_ptr: .long 0 # (Header version 0x0202 or later)
  124. # If nonzero, a 32-bit pointer
  125. # to the kernel command line.
  126. # The command line should be
  127. # located between the start of
  128. # setup and the end of low
  129. # memory (0xa0000), or it may
  130. # get overwritten before it
  131. # gets read.  If this field is
  132. # used, there is no longer
  133. # anything magical about the
  134. # 0x90000 segment; the setup
  135. # can be located anywhere in
  136. # low memory 0x10000 or higher.
  137. trampoline: call start_of_setup
  138. .space 1024
  139. # End of setup header #####################################################
  140. start_of_setup:
  141. # Bootlin depends on this being done early
  142. movw $0x01500, %ax
  143. movb $0x81, %dl
  144. int $0x13
  145. #ifdef SAFE_RESET_DISK_CONTROLLER
  146. # Reset the disk controller.
  147. movw $0x0000, %ax
  148. movb $0x80, %dl
  149. int $0x13
  150. #endif
  151. # Set %ds = %cs, we know that SETUPSEG = %cs at this point
  152. movw %cs, %ax # aka SETUPSEG
  153. movw %ax, %ds
  154. # Check signature at end of setup
  155. cmpw $SIG1, setup_sig1
  156. jne bad_sig
  157. cmpw $SIG2, setup_sig2
  158. jne bad_sig
  159. jmp good_sig1
  160. # Routine to print asciiz string at ds:si
  161. prtstr:
  162. lodsb
  163. andb %al, %al
  164. jz fin
  165. call prtchr
  166. jmp prtstr
  167. fin: ret
  168. # Space printing
  169. prtsp2: call prtspc # Print double space
  170. prtspc: movb $0x20, %al # Print single space (note: fall-thru)
  171. # Part of above routine, this one just prints ascii al
  172. prtchr: pushw %ax
  173. pushw %cx
  174. xorb %bh, %bh
  175. movw $0x01, %cx
  176. movb $0x0e, %ah
  177. int $0x10
  178. popw %cx
  179. popw %ax
  180. ret
  181. beep: movb $0x07, %al
  182. jmp prtchr
  183. no_sig_mess: .string "No setup signature found ..."
  184. good_sig1:
  185. jmp good_sig
  186. # We now have to find the rest of the setup code/data
  187. bad_sig:
  188. movw %cs, %ax # SETUPSEG
  189. subw $DELTA_INITSEG, %ax # INITSEG
  190. movw %ax, %ds
  191. xorb %bh, %bh
  192. movb (497), %bl # get setup sect from bootsect
  193. subw $4, %bx # LILO loads 4 sectors of setup
  194. shlw $8, %bx # convert to words (1sect=2^8 words)
  195. movw %bx, %cx
  196. shrw $3, %bx # convert to segment
  197. addw $SYSSEG, %bx
  198. movw %bx, %cs:start_sys_seg
  199. # Move rest of setup code/data to here
  200. movw $2048, %di # four sectors loaded by LILO
  201. subw %si, %si
  202. movw %cs, %ax # aka SETUPSEG
  203. movw %ax, %es
  204. movw $SYSSEG, %ax
  205. movw %ax, %ds
  206. rep
  207. movsw
  208. movw %cs, %ax # aka SETUPSEG
  209. movw %ax, %ds
  210. cmpw $SIG1, setup_sig1
  211. jne no_sig
  212. cmpw $SIG2, setup_sig2
  213. jne no_sig
  214. jmp good_sig
  215. no_sig:
  216. lea no_sig_mess, %si
  217. call prtstr
  218. no_sig_loop:
  219. jmp no_sig_loop
  220. good_sig:
  221. movw %cs, %ax # aka SETUPSEG
  222. subw $DELTA_INITSEG, %ax  # aka INITSEG
  223. movw %ax, %ds
  224. # Check if an old loader tries to load a big-kernel
  225. testb $LOADED_HIGH, %cs:loadflags # Do we have a big kernel?
  226. jz loader_ok # No, no danger for old loaders.
  227. cmpb $0, %cs:type_of_loader  # Do we have a loader that
  228. # can deal with us?
  229. jnz loader_ok # Yes, continue.
  230. pushw %cs # No, we have an old loader,
  231. popw %ds # die. 
  232. lea loader_panic_mess, %si
  233. call prtstr
  234. jmp no_sig_loop
  235. loader_panic_mess: .string "Wrong loader, giving up..."
  236. loader_ok:
  237. # Get memory size (extended mem, kB)
  238. xorl %eax, %eax
  239. movl %eax, (0x1e0)
  240. #ifndef STANDARD_MEMORY_BIOS_CALL
  241. movb %al, (E820NR)
  242. # Try three different memory detection schemes.  First, try
  243. # e820h, which lets us assemble a memory map, then try e801h,
  244. # which returns a 32-bit memory size, and finally 88h, which
  245. # returns 0-64m
  246. # method E820H:
  247. # the memory map from hell.  e820h returns memory classified into
  248. # a whole bunch of different types, and allows memory holes and
  249. # everything.  We scan through this memory map and build a list
  250. # of the first 32 memory areas, which we return at [E820MAP].
  251. # This is documented at http://www.teleport.com/~acpi/acpihtml/topic245.htm
  252. #define SMAP  0x534d4150
  253. meme820:
  254. xorl %ebx, %ebx # continuation counter
  255. movw $E820MAP, %di # point into the whitelist
  256. # so we can have the bios
  257. # directly write into it.
  258. jmpe820:
  259. movl $0x0000e820, %eax # e820, upper word zeroed
  260. movl $SMAP, %edx # ascii 'SMAP'
  261. movl $20, %ecx # size of the e820rec
  262. pushw %ds # data record.
  263. popw %es
  264. int $0x15 # make the call
  265. jc bail820 # fall to e801 if it fails
  266. cmpl $SMAP, %eax # check the return is `SMAP'
  267. jne bail820 # fall to e801 if it fails
  268. # cmpl $1, 16(%di) # is this usable memory?
  269. # jne again820
  270. # If this is usable memory, we save it by simply advancing %di by
  271. # sizeof(e820rec).
  272. #
  273. good820:
  274. movb (E820NR), %al # up to 32 entries
  275. cmpb $E820MAX, %al
  276. jnl bail820
  277. incb (E820NR)
  278. movw %di, %ax
  279. addw $20, %ax
  280. movw %ax, %di
  281. again820:
  282. cmpl $0, %ebx # check to see if
  283. jne jmpe820 # %ebx is set to EOF
  284. bail820:
  285. # method E801H:
  286. # memory size is in 1k chunksizes, to avoid confusing loadlin.
  287. # we store the 0xe801 memory size in a completely different place,
  288. # because it will most likely be longer than 16 bits.
  289. # (use 1e0 because that's what Larry Augustine uses in his
  290. # alternative new memory detection scheme, and it's sensible
  291. # to write everything into the same place.)
  292. meme801:
  293. stc # fix to work around buggy
  294. xorw %cx,%cx # BIOSes which dont clear/set
  295. xorw %dx,%dx # carry on pass/error of
  296. # e801h memory size call
  297. # or merely pass cx,dx though
  298. # without changing them.
  299. movw $0xe801, %ax
  300. int $0x15
  301. jc mem88
  302. cmpw $0x0, %cx # Kludge to handle BIOSes
  303. jne e801usecxdx # which report their extended
  304. cmpw $0x0, %dx # memory in AX/BX rather than
  305. jne e801usecxdx # CX/DX.  The spec I have read
  306. movw %ax, %cx # seems to indicate AX/BX 
  307. movw %bx, %dx # are more reasonable anyway...
  308. e801usecxdx:
  309. andl $0xffff, %edx # clear sign extend
  310. shll $6, %edx # and go from 64k to 1k chunks
  311. movl %edx, (0x1e0) # store extended memory size
  312. andl $0xffff, %ecx # clear sign extend
  313.   addl %ecx, (0x1e0) # and add lower memory into
  314. # total size.
  315. # Ye Olde Traditional Methode.  Returns the memory size (up to 16mb or
  316. # 64mb, depending on the bios) in ax.
  317. mem88:
  318. #endif
  319. movb $0x88, %ah
  320. int $0x15
  321. movw %ax, (2)
  322. # Set the keyboard repeat rate to the max
  323. movw $0x0305, %ax
  324. xorw %bx, %bx
  325. int $0x16
  326. # Check for video adapter and its parameters and allow the
  327. # user to browse video modes.
  328. call video # NOTE: we need %ds pointing
  329. # to bootsector
  330. # Get hd0 data...
  331. xorw %ax, %ax
  332. movw %ax, %ds
  333. ldsw (4 * 0x41), %si
  334. movw %cs, %ax # aka SETUPSEG
  335. subw $DELTA_INITSEG, %ax # aka INITSEG
  336. pushw %ax
  337. movw %ax, %es
  338. movw $0x0080, %di
  339. movw $0x10, %cx
  340. pushw %cx
  341. cld
  342. rep
  343.   movsb
  344. # Get hd1 data...
  345. xorw %ax, %ax
  346. movw %ax, %ds
  347. ldsw (4 * 0x46), %si
  348. popw %cx
  349. popw %es
  350. movw $0x0090, %di
  351. rep
  352. movsb
  353. # Check that there IS a hd1 :-)
  354. movw $0x01500, %ax
  355. movb $0x81, %dl
  356. int $0x13
  357. jc no_disk1
  358. cmpb $3, %ah
  359. je is_disk1
  360. no_disk1:
  361. movw %cs, %ax # aka SETUPSEG
  362. subw $DELTA_INITSEG, %ax  # aka INITSEG
  363. movw %ax, %es
  364. movw $0x0090, %di
  365. movw $0x10, %cx
  366. xorw %ax, %ax
  367. cld
  368. rep
  369. stosb
  370. is_disk1:
  371. # Check for PS/2 pointing device
  372. movw %cs, %ax # aka SETUPSEG
  373. subw $DELTA_INITSEG, %ax # aka INITSEG
  374. movw %ax, %ds
  375. movw $0, (0x1ff) # default is no pointing device
  376. int $0x11 # int 0x11: equipment list
  377. testb $0x04, %al # check if mouse installed
  378. jz no_psmouse
  379. movw $0xAA, (0x1ff) # device present
  380. no_psmouse:
  381. # Now we want to move to protected mode ...
  382. cmpw $0, %cs:realmode_swtch
  383. jz rmodeswtch_normal
  384. lcall %cs:realmode_swtch
  385. jmp rmodeswtch_end
  386. rmodeswtch_normal:
  387.         pushw %cs
  388. call default_switch
  389. rmodeswtch_end:
  390. # we get the code32 start address and modify the below 'jmpi'
  391. # (loader may have changed it)
  392. movl %cs:code32_start, %eax
  393. movl %eax, %cs:code32
  394. # Now we move the system to its rightful place ... but we check if we have a
  395. # big-kernel. In that case we *must* not move it ...
  396. testb $LOADED_HIGH, %cs:loadflags
  397. jz do_move0 # .. then we have a normal low
  398. # loaded zImage
  399. # .. or else we have a high
  400. # loaded bzImage
  401. jmp end_move # ... and we skip moving
  402. do_move0:
  403. movw $0x100, %ax # start of destination segment
  404. movw %cs, %bp # aka SETUPSEG
  405. subw $DELTA_INITSEG, %bp # aka INITSEG
  406. movw %cs:start_sys_seg, %bx # start of source segment
  407. cld
  408. do_move:
  409. movw %ax, %es # destination segment
  410. incb %ah # instead of add ax,#0x100
  411. movw %bx, %ds # source segment
  412. addw $0x100, %bx
  413. subw %di, %di
  414. subw %si, %si
  415. movw  $0x800, %cx
  416. rep
  417. movsw
  418. cmpw %bp, %bx # assume start_sys_seg > 0x200,
  419. # so we will perhaps read one
  420. # page more than needed, but
  421. # never overwrite INITSEG
  422. # because destination is a
  423. # minimum one page below source
  424. jb do_move
  425. end_move:
  426. # then we load the segment descriptors
  427. movw %cs, %ax # aka SETUPSEG
  428. movw %ax, %ds
  429. # Check whether we need to be downward compatible with version <=201
  430. cmpl $0, cmd_line_ptr
  431. jne end_move_self # loader uses version >=202 features
  432. cmpb $0x20, type_of_loader
  433. je end_move_self # bootsect loader, we know of it
  434. # Boot loader doesnt support boot protocol version 2.02.
  435. # If we have our code not at 0x90000, we need to move it there now.
  436. # We also then need to move the params behind it (commandline)
  437. # Because we would overwrite the code on the current IP, we move
  438. # it in two steps, jumping high after the first one.
  439. movw %cs, %ax
  440. cmpw $SETUPSEG, %ax
  441. je end_move_self
  442. cli # make sure we really have
  443. # interrupts disabled !
  444. # because after this the stack
  445. # should not be used
  446. subw $DELTA_INITSEG, %ax # aka INITSEG
  447. movw %ss, %dx
  448. cmpw %ax, %dx
  449. jb move_self_1
  450. addw $INITSEG, %dx
  451. subw %ax, %dx # this will go into %ss after
  452. # the move
  453. move_self_1:
  454. movw %ax, %ds
  455. movw $INITSEG, %ax # real INITSEG
  456. movw %ax, %es
  457. movw %cs:setup_move_size, %cx
  458. std # we have to move up, so we use
  459. # direction down because the
  460. # areas may overlap
  461. movw %cx, %di
  462. decw %di
  463. movw %di, %si
  464. subw $move_self_here+0x200, %cx
  465. rep
  466. movsb
  467. ljmp $SETUPSEG, $move_self_here
  468. move_self_here:
  469. movw $move_self_here+0x200, %cx
  470. rep
  471. movsb
  472. movw $SETUPSEG, %ax
  473. movw %ax, %ds
  474. movw %dx, %ss
  475. end_move_self: # now we are at the right place
  476. lidt idt_48 # load idt with 0,0
  477. xorl %eax, %eax # Compute gdt_base
  478. movw %ds, %ax # (Convert %ds:gdt to a linear ptr)
  479. shll $4, %eax
  480. addl $gdt, %eax
  481. movl %eax, (gdt_48+2)
  482. lgdt gdt_48 # load gdt with whatever is
  483. # appropriate
  484. # that was painless, now we enable a20
  485. call empty_8042
  486. movb $0xD1, %al # command write
  487. outb %al, $0x64
  488. call empty_8042
  489. movb $0xDF, %al # A20 on
  490. outb %al, $0x60
  491. call empty_8042
  492. #
  493. # You must preserve the other bits here. Otherwise embarrasing things
  494. # like laptops powering off on boot happen. Corrected version by Kira
  495. # Brown from Linux 2.2
  496. #
  497. inb $0x92, %al # 
  498. orb $02, %al # "fast A20" version
  499. outb %al, $0x92 # some chips have only this
  500. # wait until a20 really *is* enabled; it can take a fair amount of
  501. # time on certain systems; Toshiba Tecras are known to have this
  502. # problem.  The memory location used here (0x200) is the int 0x80
  503. # vector, which should be safe to use.
  504. xorw %ax, %ax # segment 0x0000
  505. movw %ax, %fs
  506. decw %ax # segment 0xffff (HMA)
  507. movw %ax, %gs
  508. a20_wait:
  509. incw %ax # unused memory location <0xfff0
  510. movw %ax, %fs:(0x200) # we use the "int 0x80" vector
  511. cmpw %gs:(0x210), %ax # and its corresponding HMA addr
  512. je a20_wait # loop until no longer aliased
  513. # make sure any possible coprocessor is properly reset..
  514. xorw %ax, %ax
  515. outb %al, $0xf0
  516. call delay
  517. outb %al, $0xf1
  518. call delay
  519. # well, that went ok, I hope. Now we mask all interrupts - the rest
  520. # is done in init_IRQ().
  521. movb $0xFF, %al # mask all interrupts for now
  522. outb %al, $0xA1
  523. call delay
  524. movb $0xFB, %al # mask all irq's but irq2 which
  525. outb %al, $0x21 # is cascaded
  526. # Well, that certainly wasn't fun :-(. Hopefully it works, and we don't
  527. # need no steenking BIOS anyway (except for the initial loading :-).
  528. # The BIOS-routine wants lots of unnecessary data, and it's less
  529. # "interesting" anyway. This is how REAL programmers do it.
  530. #
  531. # Well, now's the time to actually move into protected mode. To make
  532. # things as simple as possible, we do no register set-up or anything,
  533. # we let the gnu-compiled 32-bit programs do that. We just jump to
  534. # absolute address 0x1000 (or the loader supplied one),
  535. # in 32-bit protected mode.
  536. #
  537. # Note that the short jump isn't strictly needed, although there are
  538. # reasons why it might be a good idea. It won't hurt in any case.
  539. movw $1, %ax # protected mode (PE) bit
  540. lmsw %ax # This is it!
  541. jmp flush_instr
  542. flush_instr:
  543. xorw %bx, %bx # Flag to indicate a boot
  544. xorl %esi, %esi # Pointer to real-mode code
  545. movw %cs, %si
  546. subw $DELTA_INITSEG, %si
  547. shll $4, %esi # Convert to 32-bit pointer
  548. # NOTE: For high loaded big kernels we need a
  549. # jmpi    0x100000,__KERNEL_CS
  550. #
  551. # but we yet haven't reloaded the CS register, so the default size 
  552. # of the target offset still is 16 bit.
  553. #       However, using an operand prefix (0x66), the CPU will properly
  554. # take our 48 bit far pointer. (INTeL 80386 Programmer's Reference
  555. # Manual, Mixing 16-bit and 32-bit code, page 16-6)
  556. .byte 0x66, 0xea # prefix + jmpi-opcode
  557. code32: .long 0x1000 # will be set to 0x100000
  558. # for big kernels
  559. .word __KERNEL_CS
  560. # Here's a bunch of information about your current kernel..
  561. kernel_version: .ascii UTS_RELEASE
  562. .ascii " ("
  563. .ascii LINUX_COMPILE_BY
  564. .ascii "@"
  565. .ascii LINUX_COMPILE_HOST
  566. .ascii ") "
  567. .ascii UTS_VERSION
  568. .byte 0
  569. # This is the default real mode switch routine.
  570. # to be called just before protected mode transition
  571. default_switch:
  572. cli # no interrupts allowed !
  573. movb $0x80, %al # disable NMI for bootup
  574. # sequence
  575. outb %al, $0x70
  576. lret
  577. # This routine only gets called, if we get loaded by the simple
  578. # bootsect loader _and_ have a bzImage to load.
  579. # Because there is no place left in the 512 bytes of the boot sector,
  580. # we must emigrate to code space here.
  581. bootsect_helper:
  582. cmpw $0, %cs:bootsect_es
  583. jnz bootsect_second
  584. movb $0x20, %cs:type_of_loader
  585. movw %es, %ax
  586. shrw $4, %ax
  587. movb %ah, %cs:bootsect_src_base+2
  588. movw %es, %ax
  589. movw %ax, %cs:bootsect_es
  590. subw $SYSSEG, %ax
  591. lret # nothing else to do for now
  592. bootsect_second:
  593. pushw %cx
  594. pushw %si
  595. pushw %bx
  596. testw %bx, %bx # 64K full?
  597. jne bootsect_ex
  598. movw $0x8000, %cx # full 64K, INT15 moves words
  599. pushw %cs
  600. popw %es
  601. movw $bootsect_gdt, %si
  602. movw $0x8700, %ax
  603. int $0x15
  604. jc bootsect_panic # this, if INT15 fails
  605. movw %cs:bootsect_es, %es # we reset %es to always point
  606. incb %cs:bootsect_dst_base+2 # to 0x10000
  607. bootsect_ex:
  608. movb %cs:bootsect_dst_base+2, %ah
  609. shlb $4, %ah # we now have the number of
  610. # moved frames in %ax
  611. xorb %al, %al
  612. popw %bx
  613. popw %si
  614. popw %cx
  615. lret
  616. bootsect_gdt:
  617. .word 0, 0, 0, 0
  618. .word 0, 0, 0, 0
  619. bootsect_src:
  620. .word 0xffff
  621. bootsect_src_base:
  622. .byte 0x00, 0x00, 0x01 # base = 0x010000
  623. .byte 0x93 # typbyte
  624. .word 0 # limit16,base24 =0
  625. bootsect_dst:
  626. .word 0xffff
  627. bootsect_dst_base:
  628. .byte 0x00, 0x00, 0x10 # base = 0x100000
  629. .byte 0x93 # typbyte
  630. .word 0 # limit16,base24 =0
  631. .word 0, 0, 0, 0 # BIOS CS
  632. .word 0, 0, 0, 0 # BIOS DS
  633. bootsect_es:
  634. .word 0
  635. bootsect_panic:
  636. pushw %cs
  637. popw %ds
  638. cld
  639. leaw bootsect_panic_mess, %si
  640. call prtstr
  641. bootsect_panic_loop:
  642. jmp bootsect_panic_loop
  643. bootsect_panic_mess:
  644. .string "INT15 refuses to access high mem, giving up."
  645. # This routine checks that the keyboard command queue is empty
  646. # (after emptying the output buffers)
  647. #
  648. # Some machines have delusions that the keyboard buffer is always full
  649. # with no keyboard attached...
  650. #
  651. # If there is no keyboard controller, we will usually get 0xff
  652. # to all the reads.  With each IO taking a microsecond and
  653. # a timeout of 100,000 iterations, this can take about half a
  654. # second ("delay" == outb to port 0x80). That should be ok,
  655. # and should also be plenty of time for a real keyboard controller
  656. # to empty.
  657. #
  658. empty_8042:
  659. pushl %ecx
  660. movl $100000, %ecx
  661. empty_8042_loop:
  662. decl %ecx
  663. jz empty_8042_end_loop
  664. call delay
  665. inb $0x64, %al # 8042 status port
  666. testb $1, %al # output buffer?
  667. jz no_output
  668. call delay
  669. inb $0x60, %al # read it
  670. jmp empty_8042_loop
  671. no_output:
  672. testb $2, %al # is input buffer full?
  673. jnz empty_8042_loop # yes - loop
  674. empty_8042_end_loop:
  675. popl %ecx
  676. ret
  677. # Read the cmos clock. Return the seconds in al
  678. gettime:
  679. pushw %cx
  680. movb $0x02, %ah
  681. int $0x1a
  682. movb %dh, %al # %dh contains the seconds
  683. andb $0x0f, %al
  684. movb %dh, %ah
  685. movb $0x04, %cl
  686. shrb %cl, %ah
  687. aad
  688. popw %cx
  689. ret
  690. # Delay is needed after doing I/O
  691. delay:
  692. outb %al,$0x80
  693. ret
  694. # Descriptor tables
  695. gdt:
  696. .word 0, 0, 0, 0 # dummy
  697. .word 0, 0, 0, 0 # unused
  698. .word 0xFFFF # 4Gb - (0x100000*0x1000 = 4Gb)
  699. .word 0 # base address = 0
  700. .word 0x9A00 # code read/exec
  701. .word 0x00CF # granularity = 4096, 386
  702. #  (+5th nibble of limit)
  703. .word 0xFFFF # 4Gb - (0x100000*0x1000 = 4Gb)
  704. .word 0 # base address = 0
  705. .word 0x9200 # data read/write
  706. .word 0x00CF # granularity = 4096, 386
  707. #  (+5th nibble of limit)
  708. # this is 64bit descriptor for code
  709. .word 0xFFFF
  710. .word 0
  711. .word 0x9A00 # code read/exec
  712. .word 0x00AF # as above, but it is long mode and with D=0
  713. # it does not seem to do the trick.
  714. idt_48:
  715. .word 0 # idt limit = 0
  716. .word 0, 0 # idt base = 0L
  717. gdt_48:
  718. .word 0x8000 # gdt limit=2048,
  719. #  256 GDT entries
  720. .word 0, 0 # gdt base (filled in later)
  721. # Include video setup & detection code
  722. #include "video.S"
  723. # Setup signature -- must be last
  724. setup_sig1: .word SIG1
  725. setup_sig2: .word SIG2
  726. # After this point, there is some free space which is used by the video mode
  727. # handling code to store the temporary mode table (not used by the kernel).
  728. modelist:
  729. .text
  730. endtext:
  731. .data
  732. enddata:
  733. .bss
  734. endbss: