2 * BIOS Enhanced Disk Drive support
3 * Copyright (C) 2002, 2003, 2004 Dell, Inc.
4 * by Matt Domsch <Matt_Domsch@dell.com> October 2002
5 * conformant to T13 Committee www.t13.org
6 * projects 1572D, 1484D, 1386D, 1226DT
7 * disk signature read by Matt Domsch <Matt_Domsch@dell.com>
8 * and Andrew Wilks <Andrew_Wilks@dell.com> September 2003, June 2004
9 * legacy CHS retrieval by Patrick J. LoPresti <patl@users.sourceforge.net>
11 * Command line option parsing, Matt Domsch, November 2004
14 #include <linux/edd.h>
15 #include <asm/setup.h>
17 #if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE)
18 movb $0, (EDD_MBR_SIG_NR_BUF)
21 # Check the command line for two options:
22 # edd=of disables EDD completely (edd=off)
23 # edd=sk skips the MBR test (edd=skipmbr)
25 cmpl $0, %cs:cmd_line_ptr
27 movl %cs:(cmd_line_ptr), %esi
28 # ds:esi has the pointer to the command line now
29 movl $(COMMAND_LINE_SIZE-7), %ecx
30 # loop through kernel command line one byte at a time
32 cmpl $EDD_CL_EQUALS, (%si)
38 # only looking at first two characters after equals
40 cmpw $EDD_CL_OFF, (%si) # edd=of
42 cmpw $EDD_CL_SKIP, (%si) # edd=sk
55 # Read the first sector of each BIOS disk device and store the 4-byte signature
57 movb $0x80, %dl # from device 80
58 movw $EDD_MBR_SIG_BUF, %bx # store buffer ptr in bx
60 movl $0xFFFFFFFF, %eax
61 movl %eax, (%bx) # assume failure
63 movb $READ_SECTORS, %ah
64 movb $1, %al # read 1 sector
65 movb $0, %dh # at head 0
66 movw $1, %cx # cylinder 0, sector 0
70 movw $EDDBUF, %bx # disk's data goes into EDDBUF
71 pushw %dx # work around buggy BIOSes
72 stc # work around buggy BIOSes
74 sti # work around buggy BIOSes
78 jc edd_mbr_sig_done # on failure, we're done.
79 cmpb $0, %ah # some BIOSes do not set CF
80 jne edd_mbr_sig_done # on failure, we're done.
81 movl (EDDBUF+EDD_MBR_SIG_OFFSET), %eax # read sig out of the MBR
82 movl %eax, (%bx) # store success
83 incb (EDD_MBR_SIG_NR_BUF) # note that we stored something
84 incb %dl # increment to next device
85 addw $4, %bx # increment sig buffer ptr
86 cmpb $EDD_MBR_SIG_MAX, (EDD_MBR_SIG_NR_BUF) # Out of space?
87 jb edd_mbr_sig_read # keep looping
90 # Do the BIOS Enhanced Disk Drive calls
91 # This consists of two calls:
92 # int 13h ah=41h "Check Extensions Present"
93 # int 13h ah=48h "Get Device Parameters"
94 # int 13h ah=08h "Legacy Get Device Parameters"
96 # A buffer of size EDDMAXNR*(EDDEXTSIZE+EDDPARMSIZE) is reserved for our use
97 # in the boot_params at EDDBUF. The first four bytes of which are
98 # used to store the device number, interface support map and version
99 # results from fn41. The next four bytes are used to store the legacy
100 # cylinders, heads, and sectors from fn08. The following 74 bytes are used to
101 # store the results from fn48. Starting from device 80h, fn41, then fn48
102 # are called and their results stored in EDDBUF+n*(EDDEXTSIZE+EDDPARMIZE).
103 # Then the pointer is incremented to store the data for the next call.
104 # This repeats until either a device doesn't exist, or until EDDMAXNR
105 # devices have been stored.
106 # The one tricky part is that ds:si always points EDDEXTSIZE bytes into
107 # the structure, and the fn41 and fn08 results are stored at offsets
108 # from there. This removes the need to increment the pointer for
109 # every store, and leaves it ready for the fn48 call.
110 # A second one-byte buffer, EDDNR, in the boot_params stores
111 # the number of BIOS devices which exist, up to EDDMAXNR.
112 # In setup.c, copy_edd() stores both boot_params buffers away
113 # for later use, as they would get overwritten otherwise.
114 # This code is sensitive to the size of the structs in edd.h
116 # %ds points to the bootsector
117 # result buffer for fn48
118 movw $EDDBUF+EDDEXTSIZE, %si # in ds:si, fn41 results
119 # kept just before that
120 movb $0x80, %dl # BIOS device 0x80
123 movb $CHECKEXTENSIONSPRESENT, %ah # Function 41
124 movw $EDDMAGIC1, %bx # magic
125 int $0x13 # make the call
126 jc edd_done # no more BIOS devices
128 cmpw $EDDMAGIC2, %bx # is magic right?
129 jne edd_next # nope, next...
131 movb %dl, %ds:-8(%si) # store device number
132 movb %ah, %ds:-7(%si) # store version
133 movw %cx, %ds:-6(%si) # store extensions
134 incb (EDDNR) # note that we stored something
136 edd_get_device_params:
137 movw $EDDPARMSIZE, %ds:(%si) # put size
138 movw $0x0, %ds:2(%si) # work around buggy BIOSes
139 movb $GETDEVICEPARAMETERS, %ah # Function 48
140 int $0x13 # make the call
141 # Don't check for fail return
145 movw %ax, %ds:-4(%si)
146 movw %ax, %ds:-2(%si)
147 # Ralf Brown's Interrupt List says to set ES:DI to
148 # 0000h:0000h "to guard against BIOS bugs"
152 pushw %dx # legacy call clobbers %dl
153 movb $LEGACYGETDEVICEPARAMETERS, %ah # Function 08
154 int $0x13 # make the call
155 jc edd_legacy_done # failed
156 movb %cl, %al # Low 6 bits are max
157 andb $0x3F, %al # sector number
158 movb %al, %ds:-1(%si) # Record max sect
159 movb %dh, %ds:-2(%si) # Record max head number
160 movb %ch, %al # Low 8 bits of max cyl
162 movb %cl, %ah # High 2 bits of max cyl
163 movw %ax, %ds:-4(%si)
168 movw %si, %ax # increment si
169 addw $EDDPARMSIZE+EDDEXTSIZE, %ax
173 incb %dl # increment to next device
174 cmpb $EDDMAXNR, (EDDNR) # Out of space?
175 jb edd_check_ext # keep looping