edd.c 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/* -*- linux-c -*- ------------------------------------------------------- *
 *
 *   Copyright (C) 1991, 1992 Linus Torvalds
 *   Copyright 2007 rPath, Inc. - All Rights Reserved
 *
 *   This file is part of the Linux kernel, and is made available under
 *   the terms of the GNU General Public License version 2.
 *
 * ----------------------------------------------------------------------- */

/*
 * Get EDD BIOS disk information
 */

#include "boot.h"
#include <linux/edd.h>

#if defined(CONFIG_EDD) || defined(CONFIG_EDD_MODULE)

/*
 * Read the MBR (first sector) from a specific device.
 */
static int read_mbr(u8 devno, void *buf)
{
25
	u16 ax, bx, cx, dx;
26 27 28 29 30

	ax = 0x0201;		/* Legacy Read, one sector */
	cx = 0x0001;		/* Sector 0-0-1 */
	dx = devno;
	bx = (size_t)buf;
31 32 33
	asm volatile("pushfl; stc; int $0x13; setc %%al; popfl"
		     : "+a" (ax), "+c" (cx), "+d" (dx), "+b" (bx)
		     : : "esi", "edi", "memory");
34 35 36 37

	return -(u8)ax;		/* 0 or -1 */
}

38
static u32 read_mbr_sig(u8 devno, struct edd_info *ei, u32 *mbrsig)
39 40 41 42 43 44 45 46 47 48
{
	int sector_size;
	char *mbrbuf_ptr, *mbrbuf_end;
	u32 buf_base, mbr_base;
	extern char _end[];

	sector_size = ei->params.bytes_per_sector;
	if (!sector_size)
		sector_size = 512; /* Best available guess */

49
	/* Produce a naturally aligned buffer on the heap */
50 51
	buf_base = (ds() << 4) + (u32)&_end;
	mbr_base = (buf_base+sector_size-1) & ~(sector_size-1);
52
	mbrbuf_ptr = _end + (mbr_base-buf_base);
53 54
	mbrbuf_end = mbrbuf_ptr + sector_size;

55
	/* Make sure we actually have space on the heap... */
56
	if (!(boot_params.hdr.loadflags & CAN_USE_HEAP))
57
		return -1;
58
	if (mbrbuf_end > (char *)(size_t)boot_params.hdr.heap_end_ptr)
59
		return -1;
60 61

	if (read_mbr(devno, mbrbuf_ptr))
62
		return -1;
63

64 65
	*mbrsig = *(u32 *)&mbrbuf_ptr[EDD_MBR_SIG_OFFSET];
	return 0;
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
}

static int get_edd_info(u8 devno, struct edd_info *ei)
{
	u16 ax, bx, cx, dx, di;

	memset(ei, 0, sizeof *ei);

	/* Check Extensions Present */

	ax = 0x4100;
	bx = EDDMAGIC1;
	dx = devno;
	asm("pushfl; stc; int $0x13; setc %%al; popfl"
	    : "+a" (ax), "+b" (bx), "=c" (cx), "+d" (dx)
	    : : "esi", "edi");

	if ((u8)ax)
		return -1;	/* No extended information */

	if (bx != EDDMAGIC2)
		return -1;

	ei->device  = devno;
	ei->version = ax >> 8;	/* EDD version number */
	ei->interface_support = cx; /* EDD functionality subsets */

	/* Extended Get Device Parameters */

	ei->params.length = sizeof(ei->params);
	ax = 0x4800;
	dx = devno;
	asm("pushfl; int $0x13; popfl"
99
	    : "+a" (ax), "+d" (dx), "=m" (ei->params)
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
	    : "S" (&ei->params)
	    : "ebx", "ecx", "edi");

	/* Get legacy CHS parameters */

	/* Ralf Brown recommends setting ES:DI to 0:0 */
	ax = 0x0800;
	dx = devno;
	di = 0;
	asm("pushw %%es; "
	    "movw %%di,%%es; "
	    "pushfl; stc; int $0x13; setc %%al; popfl; "
	    "popw %%es"
	    : "+a" (ax), "=b" (bx), "=c" (cx), "+d" (dx), "+D" (di)
	    : : "esi");

	if ((u8)ax == 0) {
		ei->legacy_max_cylinder = (cx >> 8) + ((cx & 0xc0) << 2);
		ei->legacy_max_head = dx >> 8;
		ei->legacy_sectors_per_track = cx & 0x3f;
	}

	return 0;
}

void query_edd(void)
{
	char eddarg[8];
	int do_mbr = 1;
129 130 131
#ifdef CONFIG_EDD_OFF
	int do_edd = 0;
#else
132
	int do_edd = 1;
133
#endif
134
	int be_quiet;
135 136
	int devno;
	struct edd_info ei, *edp;
137
	u32 *mbrptr;
138 139

	if (cmdline_find_option("edd", eddarg, sizeof eddarg) > 0) {
140 141
		if (!strcmp(eddarg, "skipmbr") || !strcmp(eddarg, "skip")) {
			do_edd = 1;
142
			do_mbr = 0;
143
		}
144 145
		else if (!strcmp(eddarg, "off"))
			do_edd = 0;
146 147
		else if (!strcmp(eddarg, "on"))
			do_edd = 1;
148 149
	}

150 151
	be_quiet = cmdline_find_option_bool("quiet");

152 153
	edp    = boot_params.eddbuf;
	mbrptr = boot_params.edd_mbr_sig_buffer;
154 155 156 157

	if (!do_edd)
		return;

158 159 160 161 162
	/* Bugs in OnBoard or AddOnCards Bios may hang the EDD probe,
	 * so give a hint if this happens.
	 */

	if (!be_quiet)
163
		printf("Probing EDD (edd=off to disable)... ");
164

165 166 167 168 169 170 171 172 173 174 175 176 177
	for (devno = 0x80; devno < 0x80+EDD_MBR_SIG_MAX; devno++) {
		/*
		 * Scan the BIOS-supported hard disks and query EDD
		 * information...
		 */
		get_edd_info(devno, &ei);

		if (boot_params.eddbuf_entries < EDDMAXNR) {
			memcpy(edp, &ei, sizeof ei);
			edp++;
			boot_params.eddbuf_entries++;
		}

178 179
		if (do_mbr && !read_mbr_sig(devno, &ei, mbrptr++))
			boot_params.edd_mbr_sig_buf_entries = devno-0x80+1;
180
	}
181 182

	if (!be_quiet)
183
		printf("ok\n");
184 185 186
}

#endif