1999-06-24 03:33:30 +00:00
|
|
|
/*-
|
2000-03-08 16:16:31 +00:00
|
|
|
* Copyright (c) 1999,2000 Jonathan Lemon
|
1999-06-24 03:33:30 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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.
|
|
|
|
*
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1999-06-24 03:33:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Disk driver for Compaq SMART RAID adapters.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/conf.h>
|
|
|
|
#include <sys/devicestat.h>
|
2000-03-08 16:16:31 +00:00
|
|
|
#include <sys/disk.h>
|
1999-06-24 03:33:30 +00:00
|
|
|
|
|
|
|
#if NPCI > 0
|
|
|
|
#include <machine/bus_memio.h>
|
|
|
|
#endif
|
|
|
|
#include <machine/bus_pio.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <machine/clock.h>
|
|
|
|
#include <sys/rman.h>
|
|
|
|
|
|
|
|
#include <dev/ida/idareg.h>
|
|
|
|
#include <dev/ida/idavar.h>
|
|
|
|
|
|
|
|
/* prototypes */
|
2000-04-22 06:28:03 +00:00
|
|
|
static int idad_probe(device_t dev);
|
|
|
|
static int idad_attach(device_t dev);
|
|
|
|
static int idad_detach(device_t dev);
|
1999-06-24 03:33:30 +00:00
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
static d_open_t idad_open;
|
|
|
|
static d_close_t idad_close;
|
|
|
|
static d_strategy_t idad_strategy;
|
1999-06-24 03:33:30 +00:00
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
#define IDAD_BDEV_MAJOR 29
|
|
|
|
#define IDAD_CDEV_MAJOR 109
|
1999-06-24 03:33:30 +00:00
|
|
|
|
|
|
|
static struct cdevsw id_cdevsw = {
|
2000-04-22 06:28:03 +00:00
|
|
|
/* open */ idad_open,
|
|
|
|
/* close */ idad_close,
|
1999-06-24 03:33:30 +00:00
|
|
|
/* read */ physread,
|
|
|
|
/* write */ physwrite,
|
2000-03-08 16:16:31 +00:00
|
|
|
/* ioctl */ noioctl,
|
1999-06-24 03:33:30 +00:00
|
|
|
/* poll */ nopoll,
|
|
|
|
/* mmap */ nommap,
|
2000-04-22 06:28:03 +00:00
|
|
|
/* strategy */ idad_strategy,
|
|
|
|
/* name */ "idad",
|
|
|
|
/* maj */ IDAD_CDEV_MAJOR,
|
1999-06-24 03:33:30 +00:00
|
|
|
/* dump */ nodump,
|
2000-03-08 16:16:31 +00:00
|
|
|
/* psize */ nopsize,
|
1999-06-24 03:33:30 +00:00
|
|
|
/* flags */ D_DISK,
|
2000-04-22 06:28:03 +00:00
|
|
|
/* bmaj */ IDAD_BDEV_MAJOR
|
1999-06-24 03:33:30 +00:00
|
|
|
};
|
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
static devclass_t idad_devclass;
|
|
|
|
static struct cdevsw idaddisk_cdevsw;
|
2000-03-08 16:16:31 +00:00
|
|
|
static int disks_registered = 0;
|
1999-06-24 03:33:30 +00:00
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
static device_method_t idad_methods[] = {
|
|
|
|
DEVMETHOD(device_probe, idad_probe),
|
|
|
|
DEVMETHOD(device_attach, idad_attach),
|
|
|
|
DEVMETHOD(device_detach, idad_detach),
|
1999-06-24 03:33:30 +00:00
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
static driver_t idad_driver = {
|
2000-03-08 16:16:31 +00:00
|
|
|
"idad",
|
2000-04-22 06:28:03 +00:00
|
|
|
idad_methods,
|
|
|
|
sizeof(struct idad_softc)
|
1999-06-24 03:33:30 +00:00
|
|
|
};
|
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
DRIVER_MODULE(idad, ida, idad_driver, idad_devclass, 0, 0);
|
|
|
|
|
|
|
|
static __inline struct idad_softc *
|
|
|
|
idad_getsoftc(dev_t dev)
|
1999-06-24 03:33:30 +00:00
|
|
|
{
|
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
return ((struct idad_softc *)dev->si_drv1);
|
1999-06-24 03:33:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-04-22 06:28:03 +00:00
|
|
|
idad_open(dev_t dev, int flags, int fmt, struct proc *p)
|
1999-06-24 03:33:30 +00:00
|
|
|
{
|
2000-04-22 06:28:03 +00:00
|
|
|
struct idad_softc *drv;
|
2000-03-08 16:16:31 +00:00
|
|
|
struct disklabel *label;
|
1999-06-24 03:33:30 +00:00
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
drv = idad_getsoftc(dev);
|
1999-06-24 03:33:30 +00:00
|
|
|
if (drv == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
|
2000-03-08 16:16:31 +00:00
|
|
|
label = &drv->disk.d_label;
|
|
|
|
bzero(label, sizeof(*label));
|
|
|
|
label->d_type = DTYPE_SCSI;
|
|
|
|
label->d_secsize = drv->secsize;
|
|
|
|
label->d_nsectors = drv->sectors;
|
|
|
|
label->d_ntracks = drv->heads;
|
|
|
|
label->d_ncylinders = drv->cylinders;
|
|
|
|
label->d_secpercyl = drv->sectors * drv->heads;
|
|
|
|
label->d_secperunit = drv->secperunit;
|
1999-06-24 03:33:30 +00:00
|
|
|
|
2000-03-08 16:16:31 +00:00
|
|
|
return (0);
|
1999-06-24 03:33:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-04-22 06:28:03 +00:00
|
|
|
idad_close(dev_t dev, int flags, int fmt, struct proc *p)
|
1999-06-24 03:33:30 +00:00
|
|
|
{
|
2000-04-22 06:28:03 +00:00
|
|
|
struct idad_softc *drv;
|
1999-06-24 03:33:30 +00:00
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
drv = idad_getsoftc(dev);
|
1999-06-24 03:33:30 +00:00
|
|
|
if (drv == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read/write routine for a buffer. Finds the proper unit, range checks
|
|
|
|
* arguments, and schedules the transfer. Does not wait for the transfer
|
|
|
|
* to complete. Multi-page transfers are supported. All I/O requests must
|
|
|
|
* be a multiple of a sector in length.
|
|
|
|
*/
|
|
|
|
static void
|
2000-04-22 06:28:03 +00:00
|
|
|
idad_strategy(struct bio *bp)
|
1999-06-24 03:33:30 +00:00
|
|
|
{
|
2000-04-22 06:28:03 +00:00
|
|
|
struct idad_softc *drv;
|
1999-06-24 03:33:30 +00:00
|
|
|
int s;
|
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
drv = idad_getsoftc(bp->bio_dev);
|
1999-06-24 03:33:30 +00:00
|
|
|
if (drv == NULL) {
|
2000-04-15 05:54:02 +00:00
|
|
|
bp->bio_error = EINVAL;
|
1999-06-24 03:33:30 +00:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* software write protect check
|
|
|
|
*/
|
2000-04-15 05:54:02 +00:00
|
|
|
if (drv->flags & DRV_WRITEPROT && (bp->bio_cmd == BIO_WRITE)) {
|
|
|
|
bp->bio_error = EROFS;
|
1999-06-24 03:33:30 +00:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If it's a null transfer, return immediately
|
|
|
|
*/
|
2000-04-15 05:54:02 +00:00
|
|
|
if (bp->bio_bcount == 0)
|
1999-06-24 03:33:30 +00:00
|
|
|
goto done;
|
|
|
|
|
2000-04-15 05:54:02 +00:00
|
|
|
bp->bio_driver1 = drv;
|
1999-06-24 03:33:30 +00:00
|
|
|
s = splbio();
|
|
|
|
devstat_start_transaction(&drv->stats);
|
|
|
|
ida_submit_buf(drv->controller, bp);
|
|
|
|
splx(s);
|
|
|
|
return;
|
|
|
|
|
|
|
|
bad:
|
2000-04-15 05:54:02 +00:00
|
|
|
bp->bio_flags |= BIO_ERROR;
|
1999-06-24 03:33:30 +00:00
|
|
|
|
|
|
|
done:
|
|
|
|
/*
|
|
|
|
* Correctly set the buf to indicate a completed transfer
|
|
|
|
*/
|
2000-04-15 05:54:02 +00:00
|
|
|
bp->bio_resid = bp->bio_bcount;
|
1999-06-24 03:33:30 +00:00
|
|
|
biodone(bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-04-22 06:28:03 +00:00
|
|
|
idad_intr(struct bio *bp)
|
1999-06-24 03:33:30 +00:00
|
|
|
{
|
2000-04-22 06:28:03 +00:00
|
|
|
struct idad_softc *drv = (struct idad_softc *)bp->bio_driver1;
|
1999-06-24 03:33:30 +00:00
|
|
|
|
2000-04-15 05:54:02 +00:00
|
|
|
if (bp->bio_flags & BIO_ERROR)
|
|
|
|
bp->bio_error = EIO;
|
1999-06-24 03:33:30 +00:00
|
|
|
else
|
2000-04-15 05:54:02 +00:00
|
|
|
bp->bio_resid = 0;
|
1999-06-24 03:33:30 +00:00
|
|
|
|
2000-04-15 05:54:02 +00:00
|
|
|
devstat_end_transaction_bio(&drv->stats, bp);
|
1999-06-24 03:33:30 +00:00
|
|
|
biodone(bp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-04-22 06:28:03 +00:00
|
|
|
idad_probe(device_t dev)
|
1999-06-24 03:33:30 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
device_set_desc(dev, "Compaq Logical Drive");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-04-22 06:28:03 +00:00
|
|
|
idad_attach(device_t dev)
|
1999-06-24 03:33:30 +00:00
|
|
|
{
|
|
|
|
struct ida_drive_info dinfo;
|
2000-04-22 06:28:03 +00:00
|
|
|
struct idad_softc *drv;
|
1999-06-24 03:33:30 +00:00
|
|
|
device_t parent;
|
2000-03-08 16:16:31 +00:00
|
|
|
dev_t dsk;
|
1999-06-24 03:33:30 +00:00
|
|
|
int error;
|
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
drv = (struct idad_softc *)device_get_softc(dev);
|
1999-06-24 03:33:30 +00:00
|
|
|
parent = device_get_parent(dev);
|
|
|
|
drv->controller = (struct ida_softc *)device_get_softc(parent);
|
|
|
|
drv->unit = device_get_unit(dev);
|
|
|
|
|
|
|
|
error = ida_command(drv->controller, CMD_GET_LOG_DRV_INFO,
|
|
|
|
&dinfo, sizeof(dinfo), drv->unit, DMA_DATA_IN);
|
|
|
|
if (error) {
|
|
|
|
device_printf(dev, "CMD_GET_LOG_DRV_INFO failed\n");
|
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
drv->cylinders = dinfo.ncylinders;
|
|
|
|
drv->heads = dinfo.nheads;
|
|
|
|
drv->sectors = dinfo.nsectors;
|
|
|
|
drv->secsize = dinfo.secsize;
|
|
|
|
drv->secperunit = dinfo.secperunit;
|
|
|
|
|
|
|
|
/* XXX
|
|
|
|
* other initialization
|
|
|
|
*/
|
|
|
|
device_printf(dev, "%uMB (%u sectors), blocksize=%d\n",
|
|
|
|
drv->secperunit / ((1024 * 1024) / drv->secsize),
|
|
|
|
drv->secperunit, drv->secsize);
|
|
|
|
|
2000-03-08 21:10:15 +00:00
|
|
|
devstat_add_entry(&drv->stats, "idad", drv->unit, drv->secsize,
|
1999-06-24 03:33:30 +00:00
|
|
|
DEVSTAT_NO_ORDERED_TAGS,
|
Revamp the devstat priority system. All disks now have the same priority.
The same goes for CD drivers and tape drivers. In systems with mixed IDE
and SCSI, devices in the same priority class will be sorted in attach
order.
Also, the 'CCD' priority is now the 'ARRAY' priority, and a number of
drivers have been modified to use that priority.
This includes the necessary changes to all drivers, except the ATA drivers.
Soren will modify those separately.
This does not include and does not require any change in the devstat
version number, since no known userland applications use the priority
enumerations.
Reviewed by: msmith, sos, phk, jlemon, mjacob, bde
1999-12-08 04:45:23 +00:00
|
|
|
DEVSTAT_TYPE_STORARRAY| DEVSTAT_TYPE_IF_OTHER,
|
|
|
|
DEVSTAT_PRIORITY_ARRAY);
|
1999-06-24 03:33:30 +00:00
|
|
|
|
2000-03-08 16:16:31 +00:00
|
|
|
dsk = disk_create(drv->unit, &drv->disk, 0,
|
2000-04-22 06:28:03 +00:00
|
|
|
&id_cdevsw, &idaddisk_cdevsw);
|
2000-03-08 16:16:31 +00:00
|
|
|
|
|
|
|
dsk->si_drv1 = drv;
|
2000-04-13 23:42:55 +00:00
|
|
|
dsk->si_iosize_max = DFLTPHYS; /* XXX guess? */
|
2000-03-08 16:16:31 +00:00
|
|
|
disks_registered++;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2000-04-22 06:28:03 +00:00
|
|
|
idad_detach(device_t dev)
|
2000-03-08 16:16:31 +00:00
|
|
|
{
|
2000-04-22 06:28:03 +00:00
|
|
|
struct idad_softc *drv;
|
2000-03-08 16:16:31 +00:00
|
|
|
|
2000-04-22 06:28:03 +00:00
|
|
|
drv = (struct idad_softc *)device_get_softc(dev);
|
2000-03-08 16:16:31 +00:00
|
|
|
devstat_remove_entry(&drv->stats);
|
|
|
|
|
|
|
|
if (--disks_registered == 0)
|
2000-04-22 06:28:03 +00:00
|
|
|
cdevsw_remove(&idaddisk_cdevsw);
|
1999-06-24 03:33:30 +00:00
|
|
|
return (0);
|
|
|
|
}
|