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