sys/dev/raid/iir/iir_ctrl.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | /* $FreeBSD: src/sys/dev/iir/iir_ctrl.c,v 1.17 2005/05/06 02:32:34 cperciva Exp $ */ /*- * Copyright (c) 2000-03 ICP vortex GmbH * Copyright (c) 2002-03 Intel Corporation * Copyright (c) 2003 Adaptec Inc. * 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, * without modification, immediately at the beginning of the file. * 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. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * 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. */ /* * iir_ctrl.c: Control functions and /dev entry points for /dev/iir* * * Written by: Achim Leubner <achim_leubner@adaptec.com> * Fixes/Additions: Boji Tony Kannanthanam <boji.t.kannanthanam@intel.com> * * $Id: iir_ctrl.c 1.3 2003/08/26 12:31:15 achim Exp $" */ #include <sys/param.h> #include <sys/systm.h> #include <sys/endian.h> #include <sys/malloc.h> #include <sys/kernel.h> #include <sys/uio.h> #include <sys/bus.h> #include <sys/conf.h> #include <sys/stat.h> #include <sys/device.h> #include <sys/thread2.h> #include "pcidevs.h" #include <vm/vm.h> #include <vm/vm_kern.h> #include <vm/vm_extern.h> #include <vm/pmap.h> #include "iir.h" /* Entry points and other prototypes */ static struct gdt_softc *gdt_minor2softc(int minor_no); static d_open_t iir_open; static d_close_t iir_close; static d_write_t iir_write; static d_read_t iir_read; static d_ioctl_t iir_ioctl; static struct dev_ops iir_ops = { { "iir", 0, 0 }, .d_open = iir_open, .d_close = iir_close, .d_read = iir_read, .d_write = iir_write, .d_ioctl = iir_ioctl, }; #ifndef SDEV_PER_HBA static int sdev_made = 0; #endif extern int gdt_cnt; extern char ostype[]; extern char osrelease[]; extern gdt_statist_t gdt_stat; /* * Given a controller number, * make a special device and return the cdev_t */ cdev_t gdt_make_dev(int unit) { cdev_t dev; #ifdef SDEV_PER_HBA dev = make_dev(&iir_ops, hba2minor(unit), UID_ROOT, GID_OPERATOR, S_IRUSR | S_IWUSR, "iir%d", unit); #else if (sdev_made) return (0); dev = make_dev(&iir_ops, 0, UID_ROOT, GID_OPERATOR, S_IRUSR | S_IWUSR, "iir"); sdev_made = 1; #endif reference_dev(dev); return (dev); } void gdt_destroy_dev(cdev_t dev) { if (dev != NULL) destroy_dev(dev); } /* * Given a minor device number, * return the pointer to its softc structure */ static struct gdt_softc * gdt_minor2softc(int minor_no) { struct gdt_softc *gdt; int hanum; #ifdef SDEV_PER_HBA hanum = minor2hba(minor_no); #else hanum = minor_no; #endif for (gdt = TAILQ_FIRST(&gdt_softcs); gdt != NULL && gdt->sc_hanum != hanum; gdt = TAILQ_NEXT(gdt, links)); return (gdt); } static int iir_open(struct dev_open_args *ap) { GDT_DPRINTF(GDT_D_DEBUG, ("iir_open()\n")); #ifdef SDEV_PER_HBA int minor_no; struct gdt_softc *gdt; minor_no = minor(dev); gdt = gdt_minor2softc(minor_no); if (gdt == NULL) return (ENXIO); #endif return (0); } static int iir_close(struct dev_close_args *ap) { GDT_DPRINTF(GDT_D_DEBUG, ("iir_close()\n")); #ifdef SDEV_PER_HBA int minor_no; struct gdt_softc *gdt; minor_no = minor(dev); gdt = gdt_minor2softc(minor_no); if (gdt == NULL) return (ENXIO); #endif return (0); } static int iir_write(struct dev_write_args *ap) { GDT_DPRINTF(GDT_D_DEBUG, ("iir_write()\n")); #ifdef SDEV_PER_HBA int minor_no; struct gdt_softc *gdt; minor_no = minor(dev); gdt = gdt_minor2softc(minor_no); if (gdt == NULL) return (ENXIO); #endif return (0); } static int iir_read(struct dev_read_args *ap) { GDT_DPRINTF(GDT_D_DEBUG, ("iir_read()\n")); #ifdef SDEV_PER_HBA int minor_no; struct gdt_softc *gdt; minor_no = minor(dev); gdt = gdt_minor2softc(minor_no); if (gdt == NULL) return (ENXIO); #endif return (0); } /** * This is the control syscall interface. * It should be binary compatible with UnixWare, * if not totally syntatically so. */ static int iir_ioctl(struct dev_ioctl_args *ap) { GDT_DPRINTF(GDT_D_DEBUG, ("iir_ioctl() cmd 0x%lx\n",cmd)); #ifdef SDEV_PER_HBA int minor_no; struct gdt_softc *gdt; minor_no = minor(dev); gdt = gdt_minor2softc(minor_no); if (gdt == NULL) return (ENXIO); #endif ++gdt_stat.io_count_act; if (gdt_stat.io_count_act > gdt_stat.io_count_max) gdt_stat.io_count_max = gdt_stat.io_count_act; switch (ap->a_cmd) { case GDT_IOCTL_GENERAL: { gdt_ucmd_t *ucmd; struct gdt_softc *gdt; ucmd = (gdt_ucmd_t *)ap->a_data; gdt = gdt_minor2softc(ucmd->io_node); if (gdt == NULL) return (ENXIO); crit_enter(); TAILQ_INSERT_TAIL(&gdt->sc_ucmd_queue, ucmd, links); ucmd->complete_flag = FALSE; crit_exit(); gdt_next(gdt); if (!ucmd->complete_flag) (void) tsleep((void *)ucmd, PCATCH, "iirucw", 0); break; } case GDT_IOCTL_DRVERS: case GDT_IOCTL_DRVERS_OLD: *(int *)ap->a_data = (IIR_DRIVER_VERSION << 8) | IIR_DRIVER_SUBVERSION; break; case GDT_IOCTL_CTRTYPE: case GDT_IOCTL_CTRTYPE_OLD: { gdt_ctrt_t *p; struct gdt_softc *gdt; p = (gdt_ctrt_t *)ap->a_data; gdt = gdt_minor2softc(p->io_node); if (gdt == NULL) return (ENXIO); /* only RP controllers */ p->ext_type = 0x6000 | gdt->sc_device; if (gdt->sc_vendor == PCI_VENDOR_INTEL) { p->oem_id = OEM_ID_INTEL; p->type = 0xfd; /* new -> subdevice into ext_type */ if (gdt->sc_device >= 0x600) p->ext_type = 0x6000 | gdt->sc_subdevice; } else { p->oem_id = OEM_ID_ICP; p->type = 0xfe; /* new -> subdevice into ext_type */ if (gdt->sc_device >= 0x300) p->ext_type = 0x6000 | gdt->sc_subdevice; } p->info = (gdt->sc_bus << 8) | (gdt->sc_slot << 3); p->device_id = gdt->sc_device; p->sub_device_id = gdt->sc_subdevice; break; } case GDT_IOCTL_OSVERS: { gdt_osv_t *p; p = (gdt_osv_t *)ap->a_data; p->oscode = 10; p->version = osrelease[0] - '0'; if (osrelease[1] == '.') p->subversion = osrelease[2] - '0'; else p->subversion = 0; if (osrelease[3] == '.') p->revision = osrelease[4] - '0'; else p->revision = 0; strcpy(p->name, ostype); break; } case GDT_IOCTL_CTRCNT: *(int *)ap->a_data = gdt_cnt; break; case GDT_IOCTL_EVENT: { gdt_event_t *p; p = (gdt_event_t *)ap->a_data; if (p->erase == 0xff) { if (p->dvr.event_source == GDT_ES_TEST) p->dvr.event_data.size = sizeof(p->dvr.event_data.eu.test); else if (p->dvr.event_source == GDT_ES_DRIVER) p->dvr.event_data.size= sizeof(p->dvr.event_data.eu.driver); else if (p->dvr.event_source == GDT_ES_SYNC) p->dvr.event_data.size = sizeof(p->dvr.event_data.eu.sync); else p->dvr.event_data.size = sizeof(p->dvr.event_data.eu.async); crit_enter(); gdt_store_event(p->dvr.event_source, p->dvr.event_idx, &p->dvr.event_data); crit_exit(); } else if (p->erase == 0xfe) { crit_enter(); gdt_clear_events(); crit_exit(); } else if (p->erase == 0) { p->handle = gdt_read_event(p->handle, &p->dvr); } else { gdt_readapp_event((u_int8_t)p->erase, &p->dvr); } break; } case GDT_IOCTL_STATIST: { gdt_statist_t *p; p = (gdt_statist_t *)ap->a_data; bcopy(&gdt_stat, p, sizeof(gdt_statist_t)); break; } default: break; } --gdt_stat.io_count_act; return (0); } |