Home | History | Annotate | Line # | Download | only in lib
biosdisk_ll.c revision 1.21
      1  1.21  junyoung /*	$NetBSD: biosdisk_ll.c,v 1.21 2005/06/22 06:06:34 junyoung Exp $	 */
      2  1.21  junyoung 
      3  1.21  junyoung /*-
      4  1.21  junyoung  * Copyright (c) 2005 The NetBSD Foundation, Inc.
      5  1.21  junyoung  * All rights reserved.
      6  1.21  junyoung  *
      7  1.21  junyoung  * This code is derived from software contributed to The NetBSD Foundation
      8  1.21  junyoung  * by Bang Jun-Young.
      9  1.21  junyoung  *
     10  1.21  junyoung  * Redistribution and use in source and binary forms, with or without
     11  1.21  junyoung  * modification, are permitted provided that the following conditions
     12  1.21  junyoung  * are met:
     13  1.21  junyoung  * 1. Redistributions of source code must retain the above copyright
     14  1.21  junyoung  *    notice, this list of conditions and the following disclaimer.
     15  1.21  junyoung  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.21  junyoung  *    notice, this list of conditions and the following disclaimer in the
     17  1.21  junyoung  *    documentation and/or other materials provided with the distribution.
     18  1.21  junyoung  * 3. All advertising materials mentioning features or use of this software
     19  1.21  junyoung  *    must display the following acknowledgement:
     20  1.21  junyoung  *	This product includes software developed by the NetBSD
     21  1.21  junyoung  *	Foundation, Inc. and its contributors.
     22  1.21  junyoung  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.21  junyoung  *    contributors may be used to endorse or promote products derived
     24  1.21  junyoung  *    from this software without specific prior written permission.
     25  1.21  junyoung  *
     26  1.21  junyoung  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.21  junyoung  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.21  junyoung  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.21  junyoung  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.21  junyoung  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.21  junyoung  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.21  junyoung  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.21  junyoung  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.21  junyoung  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.21  junyoung  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.21  junyoung  * POSSIBILITY OF SUCH DAMAGE.
     37  1.21  junyoung  */
     38   1.1     perry 
     39   1.1     perry /*
     40   1.1     perry  * Copyright (c) 1996
     41   1.1     perry  * 	Matthias Drochner.  All rights reserved.
     42   1.1     perry  * Copyright (c) 1996
     43   1.1     perry  * 	Perry E. Metzger.  All rights reserved.
     44   1.1     perry  *
     45   1.1     perry  * Redistribution and use in source and binary forms, with or without
     46   1.1     perry  * modification, are permitted provided that the following conditions
     47   1.1     perry  * are met:
     48   1.1     perry  * 1. Redistributions of source code must retain the above copyright
     49   1.1     perry  *    notice, this list of conditions and the following disclaimer.
     50   1.1     perry  * 2. Redistributions in binary form must reproduce the above copyright
     51   1.1     perry  *    notice, this list of conditions and the following disclaimer in the
     52   1.1     perry  *    documentation and/or other materials provided with the distribution.
     53   1.1     perry  * 3. All advertising materials mentioning features or use of this software
     54   1.1     perry  *    must display the following acknowledgements:
     55   1.1     perry  *	This product includes software developed for the NetBSD Project
     56   1.1     perry  *	by Matthias Drochner.
     57   1.1     perry  *	This product includes software developed for the NetBSD Project
     58   1.1     perry  *	by Perry E. Metzger.
     59   1.1     perry  * 4. The names of the authors may not be used to endorse or promote products
     60   1.1     perry  *    derived from this software without specific prior written permission.
     61   1.1     perry  *
     62   1.1     perry  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     63   1.1     perry  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     64   1.1     perry  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     65   1.1     perry  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     66   1.1     perry  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     67   1.1     perry  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     68   1.1     perry  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     69   1.1     perry  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     70   1.1     perry  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     71   1.1     perry  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     72   1.1     perry  */
     73   1.1     perry 
     74   1.2   thorpej /*
     75   1.3  drochner  * shared by bootsector startup (bootsectmain) and biosdisk.c
     76   1.3  drochner  * needs lowlevel parts from bios_disk.S
     77   1.2   thorpej  */
     78   1.1     perry 
     79   1.1     perry #include <lib/libsa/stand.h>
     80   1.1     perry 
     81   1.1     perry #include "biosdisk_ll.h"
     82   1.1     perry #include "diskbuf.h"
     83  1.19  junyoung #include "libi386.h"
     84   1.1     perry 
     85  1.17       dsl static int do_read(struct biosdisk_ll *, daddr_t, int, char *);
     86   1.1     perry 
     87   1.7  drochner /*
     88   1.7  drochner  * we get from get_diskinfo():
     89  1.21  junyoung  *   unused      %ch      %cl      %dh (registers after int13/8), ie
     90  1.21  junyoung  * xxxxxxxx cccccccc CCssssss hhhhhhhh
     91   1.7  drochner  */
     92   1.7  drochner #define	SPT(di)		(((di)>>8)&0x3f)
     93   1.7  drochner #define	HEADS(di)	(((di)&0xff)+1)
     94   1.7  drochner #define CYL(di)		(((((di)>>16)&0xff)|(((di)>>6)&0x300))+1)
     95   1.1     perry 
     96   1.4  drochner #ifndef BIOSDISK_RETRIES
     97   1.4  drochner #define BIOSDISK_RETRIES 5
     98   1.4  drochner #endif
     99   1.4  drochner 
    100  1.20  junyoung int
    101  1.14       dsl set_geometry(struct biosdisk_ll *d, struct biosdisk_ext13info *ed)
    102   1.1     perry {
    103   1.7  drochner 	int diskinfo;
    104   1.1     perry 
    105   1.7  drochner 	diskinfo = get_diskinfo(d->dev);
    106   1.7  drochner 	d->sec = SPT(diskinfo);
    107   1.7  drochner 	d->head = HEADS(diskinfo);
    108   1.7  drochner 	d->cyl = CYL(diskinfo);
    109   1.8      fvdl 	d->chs_sectors = d->sec * d->head * d->cyl;
    110   1.1     perry 
    111  1.21  junyoung 	if (d->dev >= 0x80 + get_harddrives()) {
    112  1.21  junyoung 		d->secsize = 2048;
    113  1.21  junyoung 		d->type = BIOSDISK_TYPE_CD;
    114  1.21  junyoung 	} else {
    115  1.21  junyoung 		d->secsize = 512;
    116  1.21  junyoung 		if (d->dev & 0x80)
    117  1.21  junyoung 			d->type = BIOSDISK_TYPE_HD;
    118  1.21  junyoung 		else
    119  1.21  junyoung 			d->type = BIOSDISK_TYPE_FD;
    120  1.21  junyoung 	}
    121  1.21  junyoung 
    122  1.21  junyoung 	/*
    123  1.21  junyoung 	 * Some broken BIOSes such as one found on Soltek SL-75DRV2 report
    124  1.21  junyoung 	 * that they don't support int13 extension for CD-ROM drives while
    125  1.21  junyoung 	 * they actually do. As a workaround, if the boot device is a CD we
    126  1.21  junyoung 	 * assume that the extension is available. Note that only very old
    127  1.21  junyoung 	 * BIOSes don't support the extended mode, and they don't work with
    128  1.21  junyoung 	 * ATAPI CD-ROM drives, either. So there's no problem.
    129  1.21  junyoung 	 */
    130   1.5        ws 	d->flags = 0;
    131  1.21  junyoung 	if (d->type == BIOSDISK_TYPE_CD ||
    132  1.21  junyoung 	    (d->type == BIOSDISK_TYPE_HD && int13_extension(d->dev))) {
    133   1.5        ws 		d->flags |= BIOSDISK_EXT13;
    134  1.17       dsl 		if (ed != NULL) {
    135  1.21  junyoung 			ed->size = sizeof(*ed);
    136   1.6      fvdl 			int13_getextinfo(d->dev, ed);
    137  1.17       dsl 		}
    138  1.13  jdolecek 	}
    139  1.13  jdolecek 
    140  1.13  jdolecek 	/*
    141  1.20  junyoung 	 * If the drive is 2.88MB floppy drive, check that we can actually
    142  1.20  junyoung 	 * read sector >= 18. If not, assume 1.44MB floppy disk.
    143  1.13  jdolecek 	 */
    144  1.21  junyoung 	if (d->type == BIOSDISK_TYPE_FD && SPT(diskinfo) == 36) {
    145  1.21  junyoung 		char buf[512];
    146  1.21  junyoung 
    147  1.15       dsl 		if (biosread(d->dev, 0, 0, 18, 1, buf)) {
    148  1.13  jdolecek 			d->sec = 18;
    149  1.13  jdolecek 			d->chs_sectors /= 2;
    150  1.20  junyoung 		}
    151   1.6      fvdl 	}
    152   1.1     perry 
    153  1.21  junyoung 	return 0;
    154   1.1     perry }
    155   1.1     perry 
    156   1.2   thorpej /*
    157   1.2   thorpej  * Global shared "diskbuf" is used as read ahead buffer.  For reading from
    158   1.2   thorpej  * floppies, the bootstrap has to be loaded on a 64K boundary to ensure that
    159   1.2   thorpej  * this buffer doesn't cross a 64K DMA boundary.
    160   1.1     perry  */
    161   1.2   thorpej static int      ra_dev;
    162   1.2   thorpej static int      ra_end;
    163   1.2   thorpej static int      ra_first;
    164   1.2   thorpej 
    165  1.18   thorpej /*
    166  1.18   thorpej  * Because some older BIOSes have bugs in their int13 extensions, we
    167  1.18   thorpej  * only try to use the extended read if the I/O request can't be addressed
    168  1.18   thorpej  * using CHS.
    169  1.18   thorpej  *
    170  1.18   thorpej  * Of course, some BIOSes have bugs in ths CHS read, such as failing to
    171  1.18   thorpej  * function properly if the MBR table has a different geometry than the
    172  1.18   thorpej  * BIOS would generate internally for the device in question, and so we
    173  1.18   thorpej  * provide a way to force the extended on hard disks via a compile-time
    174  1.18   thorpej  * option.
    175  1.18   thorpej  */
    176  1.18   thorpej #if defined(FORCE_INT13EXT)
    177  1.18   thorpej #define	NEED_INT13EXT(d, dblk, num)				\
    178  1.18   thorpej 	(((d)->dev & 0x80) != 0)
    179  1.18   thorpej #else
    180  1.18   thorpej #define	NEED_INT13EXT(d, dblk, num)				\
    181  1.21  junyoung 	(((d)->type == BIOSDISK_TYPE_CD) ||                     \
    182  1.21  junyoung 	 ((d)->type == BIOSDISK_TYPE_HD &&			\
    183  1.21  junyoung 	  ((dblk) + (num)) >= (d)->chs_sectors))
    184  1.18   thorpej #endif
    185  1.18   thorpej 
    186   1.5        ws static int
    187  1.17       dsl do_read(struct biosdisk_ll *d, daddr_t dblk, int num, char *buf)
    188   1.5        ws {
    189   1.5        ws 
    190  1.18   thorpej 	if (NEED_INT13EXT(d, dblk, num)) {
    191  1.21  junyoung 		struct {
    192  1.21  junyoung 			int8_t size;
    193  1.21  junyoung 			int8_t resvd;
    194  1.21  junyoung 			int16_t cnt;
    195  1.21  junyoung 			int16_t off;
    196  1.21  junyoung 			int16_t seg;
    197  1.21  junyoung 			int64_t sec;
    198  1.21  junyoung 		} ext;
    199  1.21  junyoung 
    200   1.8      fvdl 		if (!(d->flags & BIOSDISK_EXT13))
    201   1.8      fvdl 			return -1;
    202   1.5        ws 		ext.size = sizeof(ext);
    203   1.5        ws 		ext.resvd = 0;
    204   1.5        ws 		ext.cnt = num;
    205  1.14       dsl 		/* seg:off of physical address */
    206  1.14       dsl 		ext.off = (int)buf & 0xf;
    207  1.14       dsl 		ext.seg = vtophys(buf) >> 4;
    208   1.5        ws 		ext.sec = dblk;
    209   1.5        ws 
    210  1.12    dyoung 		if (biosextread(d->dev, &ext)) {
    211  1.12    dyoung 			(void)biosdiskreset(d->dev);
    212   1.5        ws 			return -1;
    213  1.12    dyoung 		}
    214   1.5        ws 
    215   1.5        ws 		return ext.cnt;
    216   1.5        ws 	} else {
    217  1.21  junyoung 		int cyl, head, sec, nsec, spc, dblk32;
    218  1.21  junyoung 
    219  1.16      fvdl 		dblk32 = (int)dblk;
    220   1.7  drochner 		spc = d->head * d->sec;
    221  1.16      fvdl 		cyl = dblk32 / spc;
    222  1.16      fvdl 		head = (dblk32 % spc) / d->sec;
    223  1.16      fvdl 		sec = dblk32 % d->sec;
    224   1.6      fvdl 		nsec = d->sec - sec;
    225   1.5        ws 
    226   1.5        ws 		if (nsec > num)
    227   1.5        ws 			nsec = num;
    228   1.5        ws 
    229  1.12    dyoung 		if (biosread(d->dev, cyl, head, sec, nsec, buf)) {
    230  1.12    dyoung 			(void)biosdiskreset(d->dev);
    231   1.5        ws 			return -1;
    232  1.12    dyoung 		}
    233   1.5        ws 
    234   1.5        ws 		return nsec;
    235   1.5        ws 	}
    236   1.5        ws }
    237   1.5        ws 
    238  1.21  junyoung /*
    239  1.21  junyoung  * NB if 'cold' is set below not all of the program is loaded, so
    240  1.21  junyoung  * mustn't use data segment, bss, call library functions or do read-ahead.
    241  1.14       dsl  */
    242  1.20  junyoung int
    243  1.17       dsl readsects(struct biosdisk_ll *d, daddr_t dblk, int num, char *buf, int cold)
    244   1.1     perry {
    245  1.17       dsl #ifdef BOOTXX
    246  1.17       dsl #define cold 1		/* collapse out references to diskbufp */
    247  1.17       dsl #endif
    248   1.2   thorpej 	while (num) {
    249  1.20  junyoung 		int nsec;
    250   1.1     perry 
    251   1.2   thorpej 		/* check for usable data in read-ahead buffer */
    252   1.2   thorpej 		if (cold || diskbuf_user != &ra_dev || d->dev != ra_dev
    253   1.2   thorpej 		    || dblk < ra_first || dblk >= ra_end) {
    254   1.2   thorpej 
    255   1.2   thorpej 			/* no, read from disk */
    256  1.20  junyoung 			char *trbuf;
    257   1.7  drochner 			int maxsecs;
    258   1.4  drochner 			int retries = BIOSDISK_RETRIES;
    259   1.2   thorpej 
    260   1.2   thorpej 			if (cold) {
    261   1.2   thorpej 				/* transfer directly to buffer */
    262   1.2   thorpej 				trbuf = buf;
    263   1.7  drochner 				maxsecs = num;
    264   1.2   thorpej 			} else {
    265   1.2   thorpej 				/* fill read-ahead buffer */
    266  1.14       dsl 				trbuf = alloc_diskbuf(0); /* no data yet */
    267  1.21  junyoung 				maxsecs = DISKBUFSIZE / d->secsize;
    268   1.2   thorpej 			}
    269   1.2   thorpej 
    270   1.7  drochner 			while ((nsec = do_read(d, dblk, maxsecs, trbuf)) < 0) {
    271   1.4  drochner #ifdef DISK_DEBUG
    272   1.4  drochner 				if (!cold)
    273  1.10  drochner 					printf("read error dblk %d-%d\n", dblk,
    274  1.10  drochner 					       dblk + maxsecs - 1);
    275   1.4  drochner #endif
    276   1.5        ws 				if (--retries >= 0)
    277   1.4  drochner 					continue;
    278  1.20  junyoung 				return -1;	/* XXX cannot output here if
    279   1.2   thorpej 						 * (cold) */
    280   1.5        ws 			}
    281   1.5        ws 			if (!cold) {
    282   1.5        ws 				ra_dev = d->dev;
    283   1.5        ws 				ra_first = dblk;
    284   1.5        ws 				ra_end = dblk + nsec;
    285   1.5        ws 				diskbuf_user = &ra_dev;
    286   1.2   thorpej 			}
    287   1.2   thorpej 		} else		/* can take blocks from end of read-ahead
    288   1.2   thorpej 				 * buffer */
    289   1.2   thorpej 			nsec = ra_end - dblk;
    290   1.2   thorpej 
    291   1.2   thorpej 		if (!cold) {
    292   1.2   thorpej 			/* copy data from read-ahead to user buffer */
    293   1.2   thorpej 			if (nsec > num)
    294   1.2   thorpej 				nsec = num;
    295  1.11     perry 			memcpy(buf,
    296  1.21  junyoung 			       diskbufp + (dblk - ra_first) * d->secsize,
    297  1.21  junyoung 			       nsec * d->secsize);
    298   1.2   thorpej 		}
    299  1.21  junyoung 		buf += nsec * d->secsize;
    300   1.2   thorpej 		num -= nsec;
    301   1.2   thorpej 		dblk += nsec;
    302   1.1     perry 	}
    303   1.1     perry 
    304  1.20  junyoung 	return 0;
    305   1.1     perry }
    306  1.21  junyoung 
    307  1.21  junyoung /*
    308  1.21  junyoung  * Return the number of hard disk drives.
    309  1.21  junyoung  */
    310  1.21  junyoung int
    311  1.21  junyoung get_harddrives(void)
    312  1.21  junyoung {
    313  1.21  junyoung 	/*
    314  1.21  junyoung 	 * Some BIOSes are buggy so that they return incorrect number
    315  1.21  junyoung 	 * of hard drives with int13/ah=8. We read a byte at 0040:0075
    316  1.21  junyoung 	 * instead, which is known to be always correct.
    317  1.21  junyoung 	 */
    318  1.21  junyoung 	int n = 0;
    319  1.21  junyoung 
    320  1.21  junyoung 	pvbcopy((void *)0x475, &n, 1);
    321  1.21  junyoung 
    322  1.21  junyoung 	return n;
    323  1.21  junyoung }
    324