sys/dev/raid/mfi/mfi_disk.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 | /*- * Copyright (c) 2006 IronPort Systems * 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. * * $FreeBSD: src/sys/dev/mfi/mfi_disk.c,v 1.8 2008/11/17 23:30:19 jhb Exp $ * FreeBSD projects/head_mfi/ r232888 */ #include "opt_mfi.h" #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/module.h> #include <sys/malloc.h> #include <sys/uio.h> #include <sys/buf2.h> #include <sys/bus.h> #include <sys/conf.h> #include <sys/disk.h> #include <vm/vm.h> #include <vm/pmap.h> #include <machine/md_var.h> #include <sys/rman.h> #include <dev/raid/mfi/mfireg.h> #include <dev/raid/mfi/mfi_ioctl.h> #include <dev/raid/mfi/mfivar.h> static int mfi_disk_probe(device_t dev); static int mfi_disk_attach(device_t dev); static int mfi_disk_detach(device_t dev); static d_open_t mfi_disk_open; static d_close_t mfi_disk_close; static d_strategy_t mfi_disk_strategy; static d_dump_t mfi_disk_dump; static struct dev_ops mfi_disk_ops = { { "mfid", 0, D_DISK | D_MPSAFE }, .d_open = mfi_disk_open, .d_close = mfi_disk_close, .d_strategy = mfi_disk_strategy, .d_dump = mfi_disk_dump, }; static devclass_t mfi_disk_devclass; static device_method_t mfi_disk_methods[] = { DEVMETHOD(device_probe, mfi_disk_probe), DEVMETHOD(device_attach, mfi_disk_attach), DEVMETHOD(device_detach, mfi_disk_detach), DEVMETHOD_END }; static driver_t mfi_disk_driver = { "mfid", mfi_disk_methods, sizeof(struct mfi_disk) }; DRIVER_MODULE(mfid, mfi, mfi_disk_driver, mfi_disk_devclass, NULL, NULL); static int mfi_disk_probe(device_t dev) { return (0); } static int mfi_disk_attach(device_t dev) { struct mfi_disk *sc; struct mfi_ld_info *ld_info; struct disk_info info; uint64_t sectors; uint32_t secsize; char *state; sc = device_get_softc(dev); ld_info = device_get_ivars(dev); sc->ld_dev = dev; sc->ld_id = ld_info->ld_config.properties.ld.v.target_id; sc->ld_unit = device_get_unit(dev); sc->ld_info = ld_info; sc->ld_controller = device_get_softc(device_get_parent(dev)); sc->ld_flags = 0; sectors = ld_info->size; secsize = MFI_SECTOR_LEN; lockmgr(&sc->ld_controller->mfi_io_lock, LK_EXCLUSIVE); TAILQ_INSERT_TAIL(&sc->ld_controller->mfi_ld_tqh, sc, ld_link); lockmgr(&sc->ld_controller->mfi_io_lock, LK_RELEASE); switch (ld_info->ld_config.params.state) { case MFI_LD_STATE_OFFLINE: state = "offline"; break; case MFI_LD_STATE_PARTIALLY_DEGRADED: state = "partially degraded"; break; case MFI_LD_STATE_DEGRADED: state = "degraded"; break; case MFI_LD_STATE_OPTIMAL: state = "optimal"; break; default: state = "unknown"; break; } device_printf(dev, "%juMB (%ju sectors) RAID volume '%s' is %s\n", sectors / (1024 * 1024 / secsize), sectors, ld_info->ld_config.properties.name, state); devstat_add_entry(&sc->ld_devstat, "mfid", device_get_unit(dev), MFI_SECTOR_LEN, DEVSTAT_NO_ORDERED_TAGS, DEVSTAT_TYPE_STORARRAY | DEVSTAT_TYPE_IF_OTHER, DEVSTAT_PRIORITY_ARRAY); sc->ld_dev_t = disk_create(sc->ld_unit, &sc->ld_disk, &mfi_disk_ops); sc->ld_dev_t->si_drv1 = sc; sc->ld_dev_t->si_iosize_max = min(sc->ld_controller->mfi_max_io * secsize, (sc->ld_controller->mfi_max_sge - 1) * PAGE_SIZE); bzero(&info, sizeof(info)); info.d_media_blksize = secsize; /* mandatory */ info.d_media_blocks = sectors; if (info.d_media_blocks >= (1 * 1024 * 1024)) { info.d_nheads = 255; info.d_secpertrack = 63; } else { info.d_nheads = 64; info.d_secpertrack = 32; } disk_setdiskinfo(&sc->ld_disk, &info); return (0); } static int mfi_disk_detach(device_t dev) { struct mfi_disk *sc; sc = device_get_softc(dev); lockmgr(&sc->ld_controller->mfi_io_lock, LK_EXCLUSIVE); if ((sc->ld_flags & MFI_DISK_FLAGS_OPEN) && (sc->ld_controller->mfi_keep_deleted_volumes || sc->ld_controller->mfi_detaching)) { lockmgr(&sc->ld_controller->mfi_io_lock, LK_RELEASE); return (EBUSY); } lockmgr(&sc->ld_controller->mfi_io_lock, LK_RELEASE); disk_destroy(&sc->ld_disk); devstat_remove_entry(&sc->ld_devstat); lockmgr(&sc->ld_controller->mfi_io_lock, LK_EXCLUSIVE); TAILQ_REMOVE(&sc->ld_controller->mfi_ld_tqh, sc, ld_link); lockmgr(&sc->ld_controller->mfi_io_lock, LK_RELEASE); kfree(sc->ld_info, M_MFIBUF); return (0); } static int mfi_disk_open(struct dev_open_args *ap) { struct mfi_disk *sc = ap->a_head.a_dev->si_drv1; int error; lockmgr(&sc->ld_controller->mfi_io_lock, LK_EXCLUSIVE); if (sc->ld_flags & MFI_DISK_FLAGS_DISABLED) error = ENXIO; else { sc->ld_flags |= MFI_DISK_FLAGS_OPEN; error = 0; } lockmgr(&sc->ld_controller->mfi_io_lock, LK_RELEASE); return (error); } static int mfi_disk_close(struct dev_close_args *ap) { struct mfi_disk *sc = ap->a_head.a_dev->si_drv1; lockmgr(&sc->ld_controller->mfi_io_lock, LK_EXCLUSIVE); sc->ld_flags &= ~MFI_DISK_FLAGS_OPEN; lockmgr(&sc->ld_controller->mfi_io_lock, LK_RELEASE); return (0); } int mfi_disk_disable(struct mfi_disk *sc) { mfi_lockassert(&sc->ld_controller->mfi_io_lock); if (sc->ld_flags & MFI_DISK_FLAGS_OPEN) { if (sc->ld_controller->mfi_delete_busy_volumes) return (0); device_printf(sc->ld_dev, "Unable to delete busy ld device\n"); return (EBUSY); } sc->ld_flags |= MFI_DISK_FLAGS_DISABLED; return (0); } void mfi_disk_enable(struct mfi_disk *sc) { mfi_lockassert(&sc->ld_controller->mfi_io_lock); sc->ld_flags &= ~MFI_DISK_FLAGS_DISABLED; } static int mfi_disk_strategy(struct dev_strategy_args *ap) { struct bio *bio = ap->a_bio; struct buf *bp = bio->bio_buf; struct mfi_disk *sc = ap->a_head.a_dev->si_drv1; struct mfi_softc *controller; if (sc == NULL) { bp->b_error = EINVAL; bp->b_flags |= B_ERROR; bp->b_resid = bp->b_bcount; biodone(bio); return (0); } controller = sc->ld_controller; if (controller->hw_crit_error) { bp->b_error = EBUSY; return (0); } if (controller->issuepend_done == 0) { bp->b_error = EBUSY; return (0); } /* * XXX swildner * * If it's a null transfer, do nothing. FreeBSD's original driver * doesn't have this, but that caused hard error messages (even * though everything else continued to work fine). Interestingly, * only when HAMMER was used. * * Several others of our RAID drivers have this check, such as * aac(4) and ida(4), so we insert it here, too. * * The cause of null transfers is yet unknown. */ if (bp->b_bcount == 0) { bp->b_resid = bp->b_bcount; biodone(bio); return (0); } bio->bio_driver_info = sc; lockmgr(&controller->mfi_io_lock, LK_EXCLUSIVE); mfi_enqueue_bio(controller, bio); devstat_start_transaction(&sc->ld_devstat); mfi_startio(controller); lockmgr(&controller->mfi_io_lock, LK_RELEASE); return (0); } void mfi_disk_complete(struct bio *bio) { struct mfi_disk *sc = bio->bio_driver_info; struct buf *bp = bio->bio_buf; devstat_end_transaction_buf(&sc->ld_devstat, bp); if (bp->b_flags & B_ERROR) { if (bp->b_error == 0) bp->b_error = EIO; diskerr(bio, sc->ld_disk.d_cdev, "hard error", -1, 1); kprintf("\n"); } else { bp->b_resid = 0; } biodone(bio); } static int mfi_disk_dump(struct dev_dump_args *ap) { cdev_t dev = ap->a_head.a_dev; off_t offset = ap->a_offset; void *virt = ap->a_virtual; size_t len = ap->a_length; struct mfi_disk *sc; struct mfi_softc *parent_sc; int error; sc = dev->si_drv1; parent_sc = sc->ld_controller; if (len > 0) { if ((error = mfi_dump_blocks(parent_sc, sc->ld_id, offset / MFI_SECTOR_LEN, virt, len)) != 0) return (error); } else { /* mfi_sync_cache(parent_sc, sc->ld_id); */ } return (0); } |