]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/x86/boot/edd.c
067e28cd3c5f8f9108da6f0663dfb1c025cf0bb9
[linux-2.6-omap-h63xx.git] / arch / x86 / boot / edd.c
1 /* -*- linux-c -*- ------------------------------------------------------- *
2  *
3  *   Copyright (C) 1991, 1992 Linus Torvalds
4  *   Copyright 2007 rPath, Inc. - All Rights Reserved
5  *
6  *   This file is part of the Linux kernel, and is made available under
7  *   the terms of the GNU General Public License version 2.
8  *
9  * ----------------------------------------------------------------------- */
10
11 /*
12  * Get EDD BIOS disk information
13  */
14
15 #include "boot.h"
16 #include <linux/edd.h>
17
18 #if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE)
19
20 /*
21  * Read the MBR (first sector) from a specific device.
22  */
23 static int read_mbr(u8 devno, void *buf)
24 {
25         u16 ax, bx, cx, dx;
26
27         ax = 0x0201;            /* Legacy Read, one sector */
28         cx = 0x0001;            /* Sector 0-0-1 */
29         dx = devno;
30         bx = (size_t)buf;
31         asm volatile("pushfl; stc; int $0x13; setc %%al; popfl"
32                      : "+a" (ax), "+c" (cx), "+d" (dx), "+b" (bx)
33                      : : "esi", "edi", "memory");
34
35         /* Some BIOSes do not set carry flag on error but still return
36          * error in AH. The condition below is expected to catch both */
37         return -!!ax;           /* 0 or -1 */
38 }
39
40 static u32 read_mbr_sig(u8 devno, struct edd_info *ei, u32 *mbrsig)
41 {
42         int sector_size;
43         char *mbrbuf_ptr, *mbrbuf_end;
44         u32 buf_base, mbr_base;
45         extern char _end[];
46         u16 mbr_magic;
47
48         sector_size = ei->params.bytes_per_sector;
49         if (!sector_size)
50                 sector_size = 512; /* Best available guess */
51
52         /* Produce a naturally aligned buffer on the heap */
53         buf_base = (ds() << 4) + (u32)&_end;
54         mbr_base = (buf_base+sector_size-1) & ~(sector_size-1);
55         mbrbuf_ptr = _end + (mbr_base-buf_base);
56         mbrbuf_end = mbrbuf_ptr + sector_size;
57
58         /* Make sure we actually have space on the heap... */
59         if (!(boot_params.hdr.loadflags & CAN_USE_HEAP))
60                 return -1;
61         if (mbrbuf_end > (char *)(size_t)boot_params.hdr.heap_end_ptr)
62                 return -1;
63
64         memset(mbrbuf_ptr, 0, sector_size);
65         if (read_mbr(devno, mbrbuf_ptr))
66                 return -1;
67
68         *mbrsig = *(u32 *)&mbrbuf_ptr[EDD_MBR_SIG_OFFSET];
69         mbr_magic = *(u16 *)&mbrbuf_ptr[510];
70
71         /* check for valid MBR magic */
72         return mbr_magic == 0xAA55 ? 0 : -1;
73 }
74
75 static int get_edd_info(u8 devno, struct edd_info *ei)
76 {
77         u16 ax, bx, cx, dx, di;
78
79         memset(ei, 0, sizeof *ei);
80
81         /* Check Extensions Present */
82
83         ax = 0x4100;
84         bx = EDDMAGIC1;
85         dx = devno;
86         asm("pushfl; stc; int $0x13; setc %%al; popfl"
87             : "+a" (ax), "+b" (bx), "=c" (cx), "+d" (dx)
88             : : "esi", "edi");
89
90         if ((u8)ax)
91                 return -1;      /* No extended information */
92
93         if (bx != EDDMAGIC2)
94                 return -1;
95
96         ei->device  = devno;
97         ei->version = ax >> 8;  /* EDD version number */
98         ei->interface_support = cx; /* EDD functionality subsets */
99
100         /* Extended Get Device Parameters */
101
102         ei->params.length = sizeof(ei->params);
103         ax = 0x4800;
104         dx = devno;
105         asm("pushfl; int $0x13; popfl"
106             : "+a" (ax), "+d" (dx), "=m" (ei->params)
107             : "S" (&ei->params)
108             : "ebx", "ecx", "edi");
109
110         /* Get legacy CHS parameters */
111
112         /* Ralf Brown recommends setting ES:DI to 0:0 */
113         ax = 0x0800;
114         dx = devno;
115         di = 0;
116         asm("pushw %%es; "
117             "movw %%di,%%es; "
118             "pushfl; stc; int $0x13; setc %%al; popfl; "
119             "popw %%es"
120             : "+a" (ax), "=b" (bx), "=c" (cx), "+d" (dx), "+D" (di)
121             : : "esi");
122
123         if ((u8)ax == 0) {
124                 ei->legacy_max_cylinder = (cx >> 8) + ((cx & 0xc0) << 2);
125                 ei->legacy_max_head = dx >> 8;
126                 ei->legacy_sectors_per_track = cx & 0x3f;
127         }
128
129         return 0;
130 }
131
132 void query_edd(void)
133 {
134         char eddarg[8];
135         int do_mbr = 1;
136 #ifdef CONFIG_EDD_OFF
137         int do_edd = 0;
138 #else
139         int do_edd = 1;
140 #endif
141         int be_quiet;
142         int devno;
143         struct edd_info ei, *edp;
144         u32 *mbrptr;
145
146         if (cmdline_find_option("edd", eddarg, sizeof eddarg) > 0) {
147                 if (!strcmp(eddarg, "skipmbr") || !strcmp(eddarg, "skip")) {
148                         do_edd = 1;
149                         do_mbr = 0;
150                 }
151                 else if (!strcmp(eddarg, "off"))
152                         do_edd = 0;
153                 else if (!strcmp(eddarg, "on"))
154                         do_edd = 1;
155         }
156
157         be_quiet = cmdline_find_option_bool("quiet");
158
159         edp    = boot_params.eddbuf;
160         mbrptr = boot_params.edd_mbr_sig_buffer;
161
162         if (!do_edd)
163                 return;
164
165         /* Bugs in OnBoard or AddOnCards Bios may hang the EDD probe,
166          * so give a hint if this happens.
167          */
168
169         if (!be_quiet)
170                 printf("Probing EDD (edd=off to disable)... ");
171
172         for (devno = 0x80; devno < 0x80+EDD_MBR_SIG_MAX; devno++) {
173                 /*
174                  * Scan the BIOS-supported hard disks and query EDD
175                  * information...
176                  */
177                 if (!get_edd_info(devno, &ei)
178                     && boot_params.eddbuf_entries < EDDMAXNR) {
179                         memcpy(edp, &ei, sizeof ei);
180                         edp++;
181                         boot_params.eddbuf_entries++;
182                 }
183
184                 if (do_mbr && !read_mbr_sig(devno, &ei, mbrptr++))
185                         boot_params.edd_mbr_sig_buf_entries = devno-0x80+1;
186         }
187
188         if (!be_quiet)
189                 printf("ok\n");
190 }
191
192 #endif