root/sys/arch/bebox/stand/boot/wd.c
/*      $NetBSD: wd.c,v 1.4 2019/01/08 19:41:09 jdolecek Exp $  */

/*-
 * Copyright (c) 2003 The NetBSD Foundation, Inc.
 * All rights reserved.
 *
 * This code is derived from software contributed to The NetBSD Foundation
 * by Manuel Bouyer.
 *
 * 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.
 *
 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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/types.h>
#include <sys/stdint.h>

#include <lib/libsa/stand.h>
#include <lib/libkern/libkern.h>

#include <dev/raidframe/raidframevar.h>         /* For RF_PROTECTED_SECTORS */

#include "boot.h"
#include "wdvar.h"

#ifdef DEBUG
#define DPRINTF(x)      printf x
#else
#define DPRINTF(x)
#endif

static int  wd_get_params(struct wd_softc *wd);
static int  wdgetdisklabel(struct wd_softc *wd);
static void wdgetdefaultlabel(struct wd_softc *wd, struct disklabel *lp);

int wdopen(struct open_file *, ...);
int wdclose(struct open_file *);
int wdstrategy(void *, int, daddr_t, size_t, void *, size_t *);

/*
 * Get drive parameters through 'device identify' command.
 */
int
wd_get_params(struct wd_softc *wd)
{
        int error;
        uint8_t buf[DEV_BSIZE];

        if ((error = wdc_exec_identify(wd, buf)) != 0)
                return error;

        wd->sc_params = *(struct ataparams *)buf;

        /* 48-bit LBA addressing */
        if ((wd->sc_params.atap_cmd2_en & ATA_CMD2_LBA48) != 0)
                wd->sc_flags |= WDF_LBA48;

        /* Prior to ATA-4, LBA was optional. */
        if ((wd->sc_params.atap_capabilities1 & WDC_CAP_LBA) != 0)
                wd->sc_flags |= WDF_LBA;
        
        if ((wd->sc_flags & WDF_LBA48) != 0) {
                DPRINTF(("Drive supports LBA48.\n"));
                wd->sc_capacity =
                    ((uint64_t)wd->sc_params.atap_max_lba[3] << 48) |
                    ((uint64_t)wd->sc_params.atap_max_lba[2] << 32) |
                    ((uint64_t)wd->sc_params.atap_max_lba[1] << 16) |
                    ((uint64_t)wd->sc_params.atap_max_lba[0] <<  0);
                DPRINTF(("atap_max_lba = (0x%x, 0x%x, 0x%x, 0x%x)\n",
                    wd->sc_params.atap_max_lba[3],
                    wd->sc_params.atap_max_lba[2],
                    wd->sc_params.atap_max_lba[1],
                    wd->sc_params.atap_max_lba[0]));
                wd->sc_capacity28 =
                    ((uint32_t)wd->sc_params.atap_capacity[1] << 16) |
                    ((uint32_t)wd->sc_params.atap_capacity[0] <<  0);
                DPRINTF(("atap_capacity = (0x%x, 0x%x)\n",
                    wd->sc_params.atap_capacity[1],
                    wd->sc_params.atap_capacity[0]));
        } else if ((wd->sc_flags & WDF_LBA) != 0) {
                DPRINTF(("Drive supports LBA.\n"));
                wd->sc_capacity =
                    ((uint32_t)wd->sc_params.atap_capacity[1] << 16) |
                    ((uint32_t)wd->sc_params.atap_capacity[0] <<  0);
                wd->sc_capacity28 =
                    ((uint32_t)wd->sc_params.atap_capacity[1] << 16) |
                    ((uint32_t)wd->sc_params.atap_capacity[0] <<  0);
        } else {
                DPRINTF(("Drive doesn't support LBA; using CHS.\n"));
                wd->sc_capacity = wd->sc_capacity28 =
                    wd->sc_params.atap_cylinders *
                    wd->sc_params.atap_heads *
                    wd->sc_params.atap_sectors;
        }
        DPRINTF(("wd->sc_capacity = %" PRId64 ", wd->sc_capacity28 = %d.\n",
            wd->sc_capacity, wd->sc_capacity28));

        return 0;
}

/*
 * Initialize disk label to the default value.
 */
void
wdgetdefaultlabel(struct wd_softc *wd, struct disklabel *lp)
{

        memset(lp, 0, sizeof(struct disklabel));

        lp->d_secsize = DEV_BSIZE;
        lp->d_ntracks = wd->sc_params.atap_heads;
        lp->d_nsectors = wd->sc_params.atap_sectors;
        lp->d_ncylinders = wd->sc_params.atap_cylinders;
        lp->d_secpercyl = lp->d_ntracks * lp->d_nsectors;

        if (strcmp((const char *)wd->sc_params.atap_model, "ST506") == 0)
                lp->d_type = DKTYPE_ST506;
        else
                lp->d_type = DKTYPE_ESDI;

        strncpy(lp->d_typename, (const char *)wd->sc_params.atap_model, 16);
        strncpy(lp->d_packname, "fictitious", 16);
        if (wd->sc_capacity > UINT32_MAX)
                lp->d_secperunit = UINT32_MAX;
        else
                lp->d_secperunit = wd->sc_capacity;
        lp->d_rpm = 3600;
        lp->d_interleave = 1;
        lp->d_flags = 0;

        lp->d_partitions[RAW_PART].p_offset = 0;
        lp->d_partitions[RAW_PART].p_size =
        lp->d_secperunit * (lp->d_secsize / DEV_BSIZE);
        lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
        lp->d_npartitions = MAXPARTITIONS;      /* RAW_PART + 1 ??? */

        lp->d_magic = DISKMAGIC;
        lp->d_magic2 = DISKMAGIC;
        lp->d_checksum = dkcksum(lp);
}

/*
 * Read disk label from the device.
 */
int
wdgetdisklabel(struct wd_softc *wd)
{
        struct mbr_sector *mbr;
        struct mbr_partition *mp;
        struct disklabel *lp;
        size_t rsize;
        int sector, i;
        char *msg;
        uint8_t buf[DEV_BSIZE];

        wdgetdefaultlabel(wd, &wd->sc_label);

        /*
         * Find NetBSD Partition in DOS partition table.
         */
        sector = 0;
        if (wdstrategy(wd, F_READ, MBR_BBSECTOR, DEV_BSIZE, buf, &rsize))
                return EOFFSET;

        mbr = (struct mbr_sector *)buf;
        if (mbr->mbr_magic == htole16(MBR_MAGIC)) {
                /*
                 * Lookup NetBSD slice. If there is none, go ahead
                 * and try to read the disklabel off sector #0.
                 */
                mp = mbr->mbr_parts;
                for (i = 0; i < MBR_PART_COUNT; i++) {
                        if (mp[i].mbrp_type == MBR_PTYPE_NETBSD) {
                                sector = le32toh(mp[i].mbrp_start);
                                break;
                        }
                }
        }

        if (wdstrategy(wd, F_READ, sector + LABELSECTOR, DEV_BSIZE,
            buf, &rsize))
                return EOFFSET;

        msg = getdisklabel((const char *)buf + LABELOFFSET, &wd->sc_label);
        if (msg)
                printf("ide/0/%s/0: getdisklabel: %s\n",
                    (wd->sc_unit == 0) ? "master" : "slave", msg);

        lp = &wd->sc_label;

        /* check partition */
        if ((wd->sc_part >= lp->d_npartitions) ||
            (lp->d_partitions[wd->sc_part].p_fstype == FS_UNUSED)) {
                DPRINTF(("illegal partition\n"));
                return EPART;
        }

        DPRINTF(("label info: d_secsize %d, d_nsectors %d, d_ncylinders %d,"
            " d_ntracks %d, d_secpercyl %d\n",
            wd->sc_label.d_secsize,
            wd->sc_label.d_nsectors,
            wd->sc_label.d_ncylinders,
            wd->sc_label.d_ntracks,
            wd->sc_label.d_secpercyl));

        return 0;
}

/*
 * Open device (read drive parameters and disklabel)
 */
int
wdopen(struct open_file *f, ...)
{
        int error;
        va_list ap;
        u_int ctlr, unit, lunit, part;
        struct wd_softc *wd;

        va_start(ap, f);
        ctlr = va_arg(ap, u_int);
        unit = va_arg(ap, u_int);
        lunit = va_arg(ap, u_int);
        part = va_arg(ap, u_int);
        va_end(ap);

        DPRINTF(("wdopen: ide/%d/%s/%d_%d\n",
            ctlr, (unit == 0) ? "master" : "slave", lunit, part));
        if (lunit != 0)
                return ENOENT;

        wd = alloc(sizeof(struct wd_softc));
        if (wd == NULL)
                return ENOMEM;

        memset(wd, 0, sizeof(struct wd_softc));

        wd->sc_part = part;
        wd->sc_unit = unit;
        wd->sc_ctlr = ctlr;

        if ((error = wd_get_params(wd)) != 0)
                return error;

        if ((error = wdgetdisklabel(wd)) != 0)
                return error;

        f->f_devdata = wd;
        return 0;
}

/*
 * Close device.
 */
int
wdclose(struct open_file *f)
{

        return 0;
}

/*
 * Read some data.
 */
int
wdstrategy(void *f, int rw, daddr_t dblk, size_t size, void *p, size_t *rsize)
{
        int i, nsect;
        daddr_t blkno;
        struct wd_softc *wd;
        struct partition *pp;
        uint8_t *buf;

        if (size == 0)
                return 0;
    
        if (rw != F_READ)
                return EOPNOTSUPP;

        buf = p;
        wd = f;
        pp = &wd->sc_label.d_partitions[wd->sc_part];

        nsect = howmany(size, wd->sc_label.d_secsize);
        blkno = dblk + pp->p_offset;
        if (pp->p_fstype == FS_RAID)
                blkno += RF_PROTECTED_SECTORS;

        for (i = 0; i < nsect; i++, blkno++) {
                int error;

                if ((error = wdc_exec_read(wd, WDCC_READ, blkno, buf)) != 0)
                        return error;

                buf += wd->sc_label.d_secsize;
        }

        *rsize = size;
        return 0;
}