Home | History | Annotate | Line # | Download | only in common
disk.c revision 1.11.12.1
      1  1.11.12.1  jdolecek /*	$NetBSD: disk.c,v 1.11.12.1 2017/12/03 11:36:42 jdolecek Exp $	*/
      2        1.1   thorpej 
      3        1.1   thorpej /*
      4        1.1   thorpej  * Copyright (c) 1992, 1993
      5        1.1   thorpej  *	The Regents of the University of California.  All rights reserved.
      6        1.1   thorpej  *
      7        1.1   thorpej  * This code is derived from software contributed to Berkeley by
      8        1.1   thorpej  * Van Jacobson of Lawrence Berkeley Laboratory and Ralph Campbell.
      9        1.1   thorpej  *
     10        1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     11        1.1   thorpej  * modification, are permitted provided that the following conditions
     12        1.1   thorpej  * are met:
     13        1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     14        1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     15        1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17        1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     18        1.3       agc  * 3. Neither the name of the University nor the names of its contributors
     19        1.1   thorpej  *    may be used to endorse or promote products derived from this software
     20        1.1   thorpej  *    without specific prior written permission.
     21        1.1   thorpej  *
     22        1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23        1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24        1.1   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25        1.1   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26        1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27        1.1   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28        1.1   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29        1.1   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30        1.1   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31        1.1   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32        1.1   thorpej  * SUCH DAMAGE.
     33        1.1   thorpej  *
     34        1.1   thorpej  *	@(#)disk.c	8.1 (Berkeley) 6/10/93
     35        1.1   thorpej  */
     36        1.1   thorpej 
     37        1.1   thorpej #include <lib/libsa/stand.h>
     38        1.1   thorpej 
     39        1.1   thorpej #include <sys/param.h>
     40        1.1   thorpej #include <sys/disklabel.h>
     41        1.1   thorpej 
     42        1.1   thorpej #include <dev/arcbios/arcbios.h>
     43        1.1   thorpej 
     44        1.1   thorpej #include "common.h"
     45        1.1   thorpej #include "disk.h"
     46        1.1   thorpej 
     47        1.1   thorpej #define	RF_PROTECTED_SECTORS	64	/* XXX refer to <.../rf_optnames.h> */
     48        1.1   thorpej 
     49        1.1   thorpej struct	disk_softc {
     50        1.7   tsutsui 	u_long	sc_fd;			/* ARCBIOS file id */
     51        1.1   thorpej 	int	sc_part;		/* disk partition number */
     52        1.1   thorpej 	struct	disklabel sc_label;	/* disk label for this disk */
     53        1.1   thorpej };
     54        1.1   thorpej 
     55        1.1   thorpej int
     56        1.7   tsutsui diskstrategy(void *devdata, int rw, daddr_t bn, size_t reqcnt, void *addr,
     57        1.7   tsutsui     size_t *cnt)
     58        1.1   thorpej {
     59        1.1   thorpej 	struct disk_softc *sc = (struct disk_softc *)devdata;
     60        1.1   thorpej 	int part = sc->sc_part;
     61        1.1   thorpej 	struct partition *pp = &sc->sc_label.d_partitions[part];
     62        1.7   tsutsui 	long error;
     63        1.1   thorpej 	int64_t offset;
     64        1.6   tsutsui 	u_long count;
     65        1.1   thorpej 
     66        1.1   thorpej 	offset = bn;
     67        1.1   thorpej 
     68        1.1   thorpej 	/*
     69        1.1   thorpej 	 * Partial-block transfers not handled.
     70        1.1   thorpej 	 */
     71        1.1   thorpej 	if (reqcnt & (DEV_BSIZE - 1)) {
     72        1.1   thorpej 		*cnt = 0;
     73        1.7   tsutsui 		return EINVAL;
     74        1.1   thorpej 	}
     75        1.1   thorpej 
     76        1.1   thorpej 	offset += pp->p_offset;
     77        1.1   thorpej 
     78        1.1   thorpej 	if (pp->p_fstype == FS_RAID)
     79        1.1   thorpej 		offset += RF_PROTECTED_SECTORS;
     80        1.1   thorpej 
     81        1.1   thorpej 	/*
     82        1.1   thorpej 	 * Convert from blocks to bytes.
     83        1.1   thorpej 	 */
     84        1.1   thorpej 	offset *= DEV_BSIZE;
     85        1.1   thorpej 
     86       1.10      matt 	error = arcbios_Seek(sc->sc_fd, &offset, 0);
     87        1.7   tsutsui 	if (error != ARCBIOS_ESUCCESS)
     88        1.7   tsutsui 		return EIO;
     89       1.10      matt 	error = arcbios_Read(sc->sc_fd, addr, reqcnt, &count);
     90        1.7   tsutsui 	if (error != ARCBIOS_ESUCCESS)
     91        1.7   tsutsui 		return EIO;
     92        1.1   thorpej 
     93        1.1   thorpej 	*cnt = count;
     94        1.7   tsutsui 	return 0;
     95        1.1   thorpej }
     96        1.1   thorpej 
     97        1.1   thorpej int
     98        1.1   thorpej diskopen(struct open_file *f, ...)
     99        1.1   thorpej {
    100        1.4    sekiya 	int part;
    101        1.1   thorpej 
    102        1.1   thorpej 	struct disk_softc *sc;
    103        1.1   thorpej 	struct disklabel *lp;
    104        1.2   thorpej #ifdef arc
    105        1.2   thorpej 	char *msg, buf[DEV_BSIZE];
    106        1.7   tsutsui 	size_t cnt;
    107        1.7   tsutsui 	int mbrp_off, i;
    108        1.2   thorpej #endif
    109        1.7   tsutsui 	int error;
    110        1.6   tsutsui 	u_long fd;
    111        1.1   thorpej 	char *device;
    112        1.1   thorpej 	va_list ap;
    113        1.1   thorpej 
    114        1.1   thorpej 	va_start(ap, f);
    115        1.1   thorpej 	device = va_arg(ap, char *);
    116  1.11.12.1  jdolecek 	va_end(ap);
    117        1.2   thorpej 
    118        1.2   thorpej 	/*
    119        1.2   thorpej 	 * For NetBSD/sgimips, since we use the SGI partition map directly,
    120        1.2   thorpej 	 * we fake an in-core NetBSD disklabel with offset of 0.
    121        1.2   thorpej 	 *
    122        1.2   thorpej 	 * For NetBSD/arc, there is a MBR partition map on the disk, which we
    123        1.2   thorpej 	 * then expect to find a NetBSD disklabel within the MBR partition.
    124        1.2   thorpej 	 * We require that the kernel be located in first partition in the
    125        1.2   thorpej 	 * NetBSD disklabel, because we have not other way to represent the
    126        1.2   thorpej 	 * root partition.
    127        1.2   thorpej 	 */
    128        1.1   thorpej 	part = 0;
    129        1.2   thorpej 
    130        1.7   tsutsui 	if (part >= MAXPARTITIONS)
    131        1.7   tsutsui 		return ENXIO;
    132        1.1   thorpej 
    133       1.10      matt 	error = arcbios_Open(device, 0, &fd);
    134        1.7   tsutsui 	if (error) {
    135        1.7   tsutsui 		printf("diskopen: open failed, errno = %d\n", error);
    136        1.7   tsutsui 		return ENXIO;
    137        1.1   thorpej 	}
    138        1.1   thorpej 
    139        1.1   thorpej 	sc = alloc(sizeof(struct disk_softc));
    140        1.1   thorpej 	memset(sc, 0, sizeof(struct disk_softc));
    141        1.1   thorpej 	f->f_devdata = (void *)sc;
    142        1.1   thorpej 
    143        1.6   tsutsui 	sc->sc_fd = fd;
    144        1.1   thorpej 	sc->sc_part = part;
    145        1.1   thorpej 
    146        1.1   thorpej 	/* try to read disk label and partition table information */
    147        1.1   thorpej 	lp = &sc->sc_label;
    148        1.1   thorpej 	lp->d_secsize = DEV_BSIZE;
    149        1.1   thorpej 	lp->d_secpercyl = 1;
    150        1.1   thorpej 	lp->d_npartitions = MAXPARTITIONS;
    151        1.1   thorpej 	lp->d_partitions[part].p_offset = 0;
    152        1.1   thorpej 	lp->d_partitions[part].p_size = 0x7fffffff;
    153        1.1   thorpej 
    154        1.2   thorpej #ifdef arc
    155        1.7   tsutsui 	error = diskstrategy(sc, F_READ, (daddr_t)LABELSECTOR, DEV_BSIZE,
    156        1.2   thorpej 	    buf, &cnt);
    157        1.7   tsutsui 	if (error || cnt != DEV_BSIZE) {
    158        1.7   tsutsui 		printf("%s: can't read disklabel, errno = %d\n",
    159        1.7   tsutsui 		    device, error);
    160        1.9  christos 		dealloc(sc, sizeof(struct disk_softc));
    161        1.7   tsutsui 		return ENXIO;
    162        1.1   thorpej 	}
    163        1.1   thorpej 	msg = getdisklabel(buf, lp);
    164        1.1   thorpej 	if (msg) {
    165        1.1   thorpej 		/* If no label, just assume 0 and return */
    166        1.7   tsutsui 		return 0;
    167        1.7   tsutsui 	}
    168        1.7   tsutsui 
    169        1.7   tsutsui 	/*
    170        1.7   tsutsui 	 * On arc, we can't open whole disk, but can open each partition with
    171        1.7   tsutsui 	 * OSLOADPARTITION like scsi(0)disk(0)rdisk()partition(1) etc.
    172        1.7   tsutsui 	 * Thus, we don't have to add offset of the MBR partition.
    173        1.7   tsutsui 	 */
    174        1.7   tsutsui 	/* XXX magic: partition 2 is whole NetBSD partition */
    175        1.7   tsutsui 	mbrp_off = lp->d_partitions[2].p_offset;
    176        1.7   tsutsui 	for (i = 0; i < MAXPARTITIONS; i++) {
    177        1.7   tsutsui 		if (lp->d_partitions[i].p_fstype != FS_UNUSED &&
    178        1.7   tsutsui 		    lp->d_partitions[i].p_offset >= mbrp_off)
    179        1.7   tsutsui 			lp->d_partitions[i].p_offset -= mbrp_off;
    180        1.1   thorpej 	}
    181        1.1   thorpej 
    182        1.7   tsutsui 	if (part >= lp->d_npartitions ||
    183        1.7   tsutsui 	    lp->d_partitions[part].p_fstype == FS_UNUSED ||
    184        1.7   tsutsui 	    lp->d_partitions[part].p_size == 0) {
    185        1.9  christos 		dealloc(sc, sizeof(struct disk_softc));
    186        1.7   tsutsui 		return ENXIO;
    187        1.1   thorpej 	}
    188        1.7   tsutsui #endif
    189        1.7   tsutsui 	return 0;
    190        1.1   thorpej }
    191        1.1   thorpej 
    192        1.1   thorpej #ifndef LIBSA_NO_DEV_CLOSE
    193        1.1   thorpej int
    194        1.7   tsutsui diskclose(struct open_file *f)
    195        1.1   thorpej {
    196        1.7   tsutsui 
    197       1.10      matt 	arcbios_Close(((struct disk_softc *)(f->f_devdata))->sc_fd);
    198        1.9  christos 	dealloc(f->f_devdata, sizeof(struct disk_softc));
    199        1.7   tsutsui 	f->f_devdata = NULL;
    200        1.7   tsutsui 	return 0;
    201        1.1   thorpej }
    202        1.1   thorpej #endif
    203