summaryrefslogtreecommitdiff
path: root/sys/arch/mips64
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-06-18 21:46:42 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-06-18 21:46:42 +0000
commit9e5ceb5bd8d691b1473128174c64d101f290dd99 (patch)
tree44c613e206225104a275e6b82c834cafc9bbed86 /sys/arch/mips64
parent7f976c165a96163324cee0dc14a56cb772e5a41c (diff)
this is the sgi disksubr, not some mythical "all mips64 architectures can use it" balony
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r--sys/arch/mips64/conf/files.mips643
-rw-r--r--sys/arch/mips64/mips64/disksubr.c279
2 files changed, 1 insertions, 281 deletions
diff --git a/sys/arch/mips64/conf/files.mips64 b/sys/arch/mips64/conf/files.mips64
index b54b74857d2..c70c94557b8 100644
--- a/sys/arch/mips64/conf/files.mips64
+++ b/sys/arch/mips64/conf/files.mips64
@@ -1,6 +1,5 @@
-# $OpenBSD: files.mips64,v 1.7 2005/07/14 02:09:46 uwe Exp $
+# $OpenBSD: files.mips64,v 1.8 2007/06/18 21:46:41 deraadt Exp $
-file arch/mips64/mips64/disksubr.c disk
file arch/mips64/mips64/mem.c
file arch/mips64/mips64/process_machdep.c
file arch/mips64/mips64/sys_machdep.c
diff --git a/sys/arch/mips64/mips64/disksubr.c b/sys/arch/mips64/mips64/disksubr.c
deleted file mode 100644
index 33d8eaa73d0..00000000000
--- a/sys/arch/mips64/mips64/disksubr.c
+++ /dev/null
@@ -1,279 +0,0 @@
-/* $OpenBSD: disksubr.c,v 1.61 2007/06/18 07:09:25 deraadt Exp $ */
-
-/*
- * Copyright (c) 1999 Michael Shalayeff
- * Copyright (c) 1997 Niklas Hallqvist
- * Copyright (c) 1996 Theo de Raadt
- * Copyright (c) 1982, 1986, 1988 Regents of the University of California.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the University nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
- * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
- * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGE.
- */
-
-#include <sys/param.h>
-#include <sys/systm.h>
-#include <sys/buf.h>
-#include <sys/device.h>
-#include <sys/disklabel.h>
-#include <sys/syslog.h>
-#include <sys/disk.h>
-
-char *readbsdlabel(struct buf *, void (*)(struct buf *), int, int,
- int, struct disklabel *, int);
-char *readsgilabel(struct buf *, void (*)(struct buf *),
- struct disklabel *, struct cpu_disklabel *, int *, int *, int);
-
-/*
- * Try to read a standard BSD disklabel at a certain sector.
- */
-char *
-readbsdlabel(struct buf *bp, void (*strat)(struct buf *),
- int cyl, int sec, int off, struct disklabel *lp,
- int spoofonly)
-{
- /* don't read the on-disk label if we are in spoofed-only mode */
- if (spoofonly)
- return (NULL);
-
- bp->b_blkno = sec;
- bp->b_cylinder = cyl;
- bp->b_bcount = lp->d_secsize;
- bp->b_flags = B_BUSY | B_READ;
- (*strat)(bp);
-
- /* if successful, locate disk label within block and validate */
- if (biowait(bp))
- return ("disk label I/O error");
-
- return checkdisklabel(bp->b_data + LABELOFFSET, lp);
-}
-
-/*
- * Attempt to read a disk label from a device
- * using the indicated strategy routine.
- * The label must be partly set up before this:
- * secpercyl, secsize and anything required for a block i/o read
- * operation in the driver's strategy/start routines
- * must be filled in before calling us.
- *
- * Returns null on success and an error string on failure.
- */
-char *
-readdisklabel(dev_t dev, void (*strat)(struct buf *),
- struct disklabel *lp, struct cpu_disklabel *osdep, int spoofonly)
-{
- struct buf *bp = NULL;
- char *msg;
-
- if ((msg = initdisklabel(lp)))
- goto done;
-
- /* get a buffer and initialize it */
- bp = geteblk((int)lp->d_secsize);
- bp->b_dev = dev;
-
- msg = readsgilabel(bp, strat, lp, osdep, 0, 0, spoofonly);
- if (msg == NULL)
- goto done;
-
- msg = readdoslabel(bp, strat, lp, osdep, 0, 0, spoofonly);
- if (msg == NULL)
- goto done;
-
-#if defined(CD9660)
- if (iso_disklabelspoof(dev, strat, lp) == 0) {
- msg = NULL;
- goto done;
- }
-#endif
-#if defined(UDF)
- if (udf_disklabelspoof(dev, strat, lp) == 0) {
- msg = NULL;
- goto done;
- }
-#endif
-
-done:
- if (bp) {
- bp->b_flags |= B_INVAL;
- brelse(bp);
- }
- return (msg);
-}
-
-static struct {
- int m;
- int b;
-} maptab[] = {
- { 0, FS_BSDFFS}, { 1, FS_SWAP}, { 10, FS_BSDFFS},
- { 3, FS_BSDFFS}, { 4, FS_BSDFFS}, { 5, FS_BSDFFS},
- { 6, FS_BSDFFS}, { 7, FS_BSDFFS}, { 15, FS_OTHER},
- { 9, FS_BSDFFS}, { 2, FS_UNUSED}, { 11, FS_BSDFFS},
- { 12, FS_BSDFFS}, { 13, FS_BSDFFS}, { 14, FS_BSDFFS},
- { 8, FS_BSDFFS}
-};
-
-char *
-readsgilabel(struct buf *bp, void (*strat)(struct buf *),
- struct disklabel *lp, struct cpu_disklabel *osdep,
- int *partoffp, int *cylp, int spoofonly)
-{
- struct sgilabel *dlp;
- char *msg = NULL;
- int i, *p, cs = 0;
- int fsoffs = 0;
-
- bp->b_blkno = 0;
- bp->b_cylinder = 0;
- bp->b_bcount = lp->d_secsize;
- bp->b_flags = B_BUSY | B_READ;
- (*strat)(bp);
-
- /* if successful, locate disk label within block and validate */
- if (biowait(bp)) {
- msg = "disk label I/O error";
- goto done;
- }
-
- dlp = (struct sgilabel *)(bp->b_data + LABELOFFSET);
- if (dlp->magic != htobe32(SGILABEL_MAGIC)) {
- fsoffs = 0;
- goto finished;
- }
-
- if (dlp->partitions[0].blocks == 0) {
- msg = "no BSD partition";
- goto done;
- }
- fsoffs = dlp->partitions[0].first;
-
- if (spoofonly)
- goto finished;
-
- p = (int *)dlp;
- i = sizeof(struct sgilabel) / sizeof(int);
- while (i--)
- cs += *p++;
- if (cs != 0) {
- msg = "sgilabel checksum error";
- goto done;
- }
-
- /* Set up partitions i-l if there is no BSD label. */
- lp->d_secsize = dlp->dp.dp_secbytes;
- lp->d_nsectors = dlp->dp.dp_secs;
- lp->d_ntracks = dlp->dp.dp_trks0;
- lp->d_ncylinders = dlp->dp.dp_cyls;
- lp->d_interleave = dlp->dp.dp_interleave;
- lp->d_npartitions = MAXPARTITIONS;
-
- for (i = 0; i < 16; i++) {
- int bsd = maptab[i].m;
-
- DL_SETPOFFSET(&lp->d_partitions[bsd],
- dlp->partitions[i].first);
- DL_SETPSIZE(&lp->d_partitions[bsd],
- dlp->partitions[i].blocks);
- lp->d_partitions[bsd].p_fstype = maptab[i].b;
- if (lp->d_partitions[bsd].p_fstype == FS_BSDFFS) {
- lp->d_partitions[bsd].p_fragblock =
- DISKLABELV1_FFS_FRAGBLOCK(1024, 8);
- lp->d_partitions[bsd].p_cpg = 16;
- }
- }
-
- lp->d_version = 1;
- lp->d_flags = D_VENDOR;
- lp->d_checksum = 0;
- lp->d_checksum = dkcksum(lp);
-
-finished:
- if (partoffp)
- *partoffp = fsoffs;
-
- if (spoofonly)
- goto done;
-
- bp->b_blkno = fsoffs + LABELSECTOR;
- bp->b_cylinder = 0;
- bp->b_bcount = lp->d_secsize;
- bp->b_flags = B_BUSY | B_READ;
- (*strat)(bp);
- if (biowait(bp)) {
- msg = "disk label I/O error";
- goto done;
- }
-
- return checkdisklabel(bp->b_data + LABELOFFSET, lp);
-
-done:
- if (bp) {
- bp->b_flags |= B_INVAL;
- brelse(bp);
- }
- return (msg);
-}
-
-/*
- * Write disk label back to device after modification.
- */
-int
-writedisklabel(dev_t dev, void (*strat)(struct buf *),
- struct disklabel *lp, struct cpu_disklabel *osdep)
-{
- int error = EIO, partoff = -1, cyl = 0;
- struct buf *bp = NULL;
- struct disklabel *dlp;
-
- /* get a buffer and initialize it */
- bp = geteblk((int)lp->d_secsize);
- bp->b_dev = dev;
-
- if (readsgilabel(bp, strat, lp, osdep, &partoff, &cyl, 1) != NULL &&
- readdoslabel(bp, strat, lp, osdep, &partoff, &cyl, 1) != NULL)
- goto done;
-
- /* Read it in, slap the new label in, and write it back out */
- bp->b_blkno = partoff + LABELSECTOR;
- bp->b_cylinder = cyl;
- bp->b_bcount = lp->d_secsize;
- bp->b_flags = B_BUSY | B_READ;
- (*strat)(bp);
- if ((error = biowait(bp)) != 0)
- goto done;
-
- dlp = (struct disklabel *)(bp->b_data + LABELOFFSET);
- *dlp = *lp;
- bp->b_flags = B_BUSY | B_WRITE;
- (*strat)(bp);
- error = biowait(bp);
-
-done:
- if (bp) {
- bp->b_flags |= B_INVAL;
- brelse(bp);
- }
- return (error);
-}