11ac4b82bSMike Smith /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 3718cf2ccSPedro F. Giffuni * 41ac4b82bSMike Smith * Copyright (c) 1999 Michael Smith 51ac4b82bSMike Smith * All rights reserved. 61ac4b82bSMike Smith * 71ac4b82bSMike Smith * Redistribution and use in source and binary forms, with or without 81ac4b82bSMike Smith * modification, are permitted provided that the following conditions 91ac4b82bSMike Smith * are met: 101ac4b82bSMike Smith * 1. Redistributions of source code must retain the above copyright 111ac4b82bSMike Smith * notice, this list of conditions and the following disclaimer. 121ac4b82bSMike Smith * 2. Redistributions in binary form must reproduce the above copyright 131ac4b82bSMike Smith * notice, this list of conditions and the following disclaimer in the 141ac4b82bSMike Smith * documentation and/or other materials provided with the distribution. 151ac4b82bSMike Smith * 161ac4b82bSMike Smith * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 171ac4b82bSMike Smith * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 181ac4b82bSMike Smith * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 191ac4b82bSMike Smith * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 201ac4b82bSMike Smith * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 211ac4b82bSMike Smith * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 221ac4b82bSMike Smith * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 231ac4b82bSMike Smith * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 241ac4b82bSMike Smith * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 251ac4b82bSMike Smith * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 261ac4b82bSMike Smith * SUCH DAMAGE. 271ac4b82bSMike Smith */ 281ac4b82bSMike Smith 29e2e050c8SConrad Meyer #include <sys/lock.h> 30e2e050c8SConrad Meyer #include <sys/mutex.h> 31e2e050c8SConrad Meyer 321ac4b82bSMike Smith /* 33da8bb3a3SMike Smith * Debugging levels: 34da8bb3a3SMike Smith * 0 - quiet, only emit warnings 35da8bb3a3SMike Smith * 1 - noisy, emit major function points and things done 36da8bb3a3SMike Smith * 2 - extremely noisy, emit trace items in loops, etc. 37da8bb3a3SMike Smith */ 38da8bb3a3SMike Smith #ifdef MLX_DEBUG 396e551fb6SDavid E. O'Brien #define debug(level, fmt, args...) do { if (level <= MLX_DEBUG) printf("%s: " fmt "\n", __func__ , ##args); } while(0) 406e551fb6SDavid E. O'Brien #define debug_called(level) do { if (level <= MLX_DEBUG) printf(__func__ ": called\n"); } while(0) 41da8bb3a3SMike Smith #else 42da8bb3a3SMike Smith #define debug(level, fmt, args...) 43da8bb3a3SMike Smith #define debug_called(level) 44da8bb3a3SMike Smith #endif 45da8bb3a3SMike Smith 46da8bb3a3SMike Smith /* 47baff09dbSMike Smith * Regardless of the actual capacity of the controller, we will allocate space 48baff09dbSMike Smith * for 64 s/g entries. Typically controllers support 17 or 33 entries (64k or 49baff09dbSMike Smith * 128k maximum transfer assuming 4k page size and non-optimal alignment), but 50baff09dbSMike Smith * making that fit cleanly without crossing page boundaries requires rounding up 51baff09dbSMike Smith * to the next power of two. 521ac4b82bSMike Smith */ 530f3fae61SXin LI #define MLX_MAXPHYS (128 * 1024) 54baff09dbSMike Smith #define MLX_NSEG 64 55baff09dbSMike Smith 561ac4b82bSMike Smith #define MLX_NSLOTS 256 /* max number of command slots */ 571ac4b82bSMike Smith 58da8bb3a3SMike Smith #define MLX_MAXDRIVES 32 /* max number of system drives */ 591ac4b82bSMike Smith 601ac4b82bSMike Smith /* 611ac4b82bSMike Smith * Structure describing a System Drive as attached to the controller. 621ac4b82bSMike Smith */ 631ac4b82bSMike Smith struct mlx_sysdrive 641ac4b82bSMike Smith { 651ac4b82bSMike Smith /* from MLX_CMD_ENQSYSDRIVE */ 661ac4b82bSMike Smith u_int32_t ms_size; 671ac4b82bSMike Smith int ms_state; 681ac4b82bSMike Smith int ms_raidlevel; 691ac4b82bSMike Smith 701ac4b82bSMike Smith /* synthetic geometry */ 711ac4b82bSMike Smith int ms_cylinders; 721ac4b82bSMike Smith int ms_heads; 731ac4b82bSMike Smith int ms_sectors; 741ac4b82bSMike Smith 751ac4b82bSMike Smith /* handle for attached driver */ 761ac4b82bSMike Smith device_t ms_disk; 771ac4b82bSMike Smith }; 781ac4b82bSMike Smith 791ac4b82bSMike Smith /* 801ac4b82bSMike Smith * Per-command control structure. 811ac4b82bSMike Smith */ 821ac4b82bSMike Smith struct mlx_command 831ac4b82bSMike Smith { 84e3975643SJake Burkholder TAILQ_ENTRY(mlx_command) mc_link; /* list linkage */ 851ac4b82bSMike Smith 861ac4b82bSMike Smith struct mlx_softc *mc_sc; /* controller that owns us */ 871ac4b82bSMike Smith u_int8_t mc_slot; /* command slot we occupy */ 881ac4b82bSMike Smith u_int16_t mc_status; /* command completion status */ 895792b7feSMike Smith time_t mc_timeout; /* when this command expires */ 901ac4b82bSMike Smith u_int8_t mc_mailbox[16]; /* command mailbox */ 911ac4b82bSMike Smith u_int32_t mc_sgphys; /* physical address of s/g array in controller space */ 921ac4b82bSMike Smith int mc_nsgent; /* number of entries in s/g map */ 931ac4b82bSMike Smith int mc_flags; 941ac4b82bSMike Smith #define MLX_CMD_DATAIN (1<<0) 951ac4b82bSMike Smith #define MLX_CMD_DATAOUT (1<<1) 961ac4b82bSMike Smith #define MLX_CMD_PRIORITY (1<<2) /* high-priority command */ 971ac4b82bSMike Smith 981ac4b82bSMike Smith void *mc_data; /* data buffer */ 991ac4b82bSMike Smith size_t mc_length; 1001ac4b82bSMike Smith bus_dmamap_t mc_dmamap; /* DMA map for data */ 1011ac4b82bSMike Smith u_int32_t mc_dataphys; /* data buffer base address controller space */ 1021ac4b82bSMike Smith 1031ac4b82bSMike Smith void (* mc_complete)(struct mlx_command *mc); /* completion handler */ 1041ac4b82bSMike Smith void *mc_private; /* submitter-private data or wait channel */ 1051b4404f9SScott Long int mc_command; 1061ac4b82bSMike Smith }; 1071ac4b82bSMike Smith 1081ac4b82bSMike Smith /* 1091ac4b82bSMike Smith * Per-controller structure. 1101ac4b82bSMike Smith */ 1111ac4b82bSMike Smith struct mlx_softc 1121ac4b82bSMike Smith { 1131ac4b82bSMike Smith /* bus connections */ 1141ac4b82bSMike Smith device_t mlx_dev; 11589c9c53dSPoul-Henning Kamp struct cdev *mlx_dev_t; 1161ac4b82bSMike Smith struct resource *mlx_mem; /* mailbox interface window */ 1179b11c7baSMatthew N. Dodd int mlx_mem_rid; 1189b11c7baSMatthew N. Dodd int mlx_mem_type; 1191ac4b82bSMike Smith bus_dma_tag_t mlx_parent_dmat;/* parent DMA tag */ 1201ac4b82bSMike Smith bus_dma_tag_t mlx_buffer_dmat;/* data buffer DMA tag */ 1211ac4b82bSMike Smith struct resource *mlx_irq; /* interrupt */ 1221ac4b82bSMike Smith void *mlx_intr; /* interrupt handle */ 1231ac4b82bSMike Smith 1241ac4b82bSMike Smith /* scatter/gather lists and their controller-visible mappings */ 1251ac4b82bSMike Smith struct mlx_sgentry *mlx_sgtable; /* s/g lists */ 1261ac4b82bSMike Smith u_int32_t mlx_sgbusaddr; /* s/g table base address in bus space */ 1271ac4b82bSMike Smith bus_dma_tag_t mlx_sg_dmat; /* s/g buffer DMA tag */ 1281ac4b82bSMike Smith bus_dmamap_t mlx_sg_dmamap; /* map for s/g buffers */ 1291ac4b82bSMike Smith 1301ac4b82bSMike Smith /* controller limits and features */ 1319eee27f1SMike Smith struct mlx_enquiry2 *mlx_enq2; 1321ac4b82bSMike Smith int mlx_feature; /* controller features/quirks */ 1331ac4b82bSMike Smith #define MLX_FEAT_PAUSEWORKS (1<<0) /* channel pause works as expected */ 1341ac4b82bSMike Smith 1351ac4b82bSMike Smith /* controller queues and arrays */ 136e3975643SJake Burkholder TAILQ_HEAD(, mlx_command) mlx_freecmds; /* command structures available for reuse */ 137e3975643SJake Burkholder TAILQ_HEAD(, mlx_command) mlx_work; /* active commands */ 1381ac4b82bSMike Smith struct mlx_command *mlx_busycmd[MLX_NSLOTS]; /* busy commands */ 1391ac4b82bSMike Smith int mlx_busycmds; /* count of busy commands */ 1401ac4b82bSMike Smith struct mlx_sysdrive mlx_sysdrive[MLX_MAXDRIVES]; /* system drives */ 141b04e4c12SJohn Baldwin struct bio_queue_head mlx_bioq; /* outstanding I/O operations */ 1421ac4b82bSMike Smith int mlx_waitbufs; /* number of bufs awaiting commands */ 1431ac4b82bSMike Smith 1441ac4b82bSMike Smith /* controller status */ 1451ac4b82bSMike Smith int mlx_geom; 1461ac4b82bSMike Smith #define MLX_GEOM_128_32 0 /* geoemetry translation modes */ 1471ac4b82bSMike Smith #define MLX_GEOM_256_63 1 1481ac4b82bSMike Smith int mlx_state; 1491ac4b82bSMike Smith #define MLX_STATE_INTEN (1<<0) /* interrupts have been enabled */ 1501ac4b82bSMike Smith #define MLX_STATE_SHUTDOWN (1<<1) /* controller is shut down */ 1511ac4b82bSMike Smith #define MLX_STATE_OPEN (1<<2) /* control device is open */ 1521ac4b82bSMike Smith #define MLX_STATE_SUSPEND (1<<3) /* controller is suspended */ 1530fca6f8bSJohn Baldwin #define MLX_STATE_QFROZEN (1<<4) /* bio queue frozen */ 1540fca6f8bSJohn Baldwin struct mtx mlx_io_lock; 1550fca6f8bSJohn Baldwin struct sx mlx_config_lock; 1560fca6f8bSJohn Baldwin struct callout mlx_timeout; /* periodic status monitor */ 1571ac4b82bSMike Smith time_t mlx_lastpoll; /* last time_second we polled for status */ 158421f2f7dSMike Smith u_int16_t mlx_lastevent; /* sequence number of the last event we recorded */ 1599eee27f1SMike Smith int mlx_currevent; /* sequence number last time we looked */ 160421f2f7dSMike Smith int mlx_background; /* if != 0 rebuild or check is in progress */ 161421f2f7dSMike Smith #define MLX_BACKGROUND_CHECK 1 /* we started a check */ 162421f2f7dSMike Smith #define MLX_BACKGROUND_REBUILD 2 /* we started a rebuild */ 163421f2f7dSMike Smith #define MLX_BACKGROUND_SPONTANEOUS 3 /* it just happened somehow */ 164421f2f7dSMike Smith struct mlx_rebuild_status mlx_rebuildstat; /* last rebuild status */ 1651ac4b82bSMike Smith struct mlx_pause mlx_pause; /* pending pause operation details */ 1661ac4b82bSMike Smith 167da8bb3a3SMike Smith int mlx_flags; 168da8bb3a3SMike Smith #define MLX_SPINUP_REPORTED (1<<0) /* "spinning up drives" message displayed */ 1695d278f5cSMike Smith #define MLX_EVENTLOG_BUSY (1<<1) /* currently reading event log */ 1705792b7feSMike Smith 1711ac4b82bSMike Smith /* interface-specific accessor functions */ 1721ac4b82bSMike Smith int mlx_iftype; /* interface protocol */ 173da8bb3a3SMike Smith #define MLX_IFTYPE_2 2 1741ac4b82bSMike Smith #define MLX_IFTYPE_3 3 1751ac4b82bSMike Smith #define MLX_IFTYPE_4 4 1761ac4b82bSMike Smith #define MLX_IFTYPE_5 5 1771ac4b82bSMike Smith int (* mlx_tryqueue)(struct mlx_softc *sc, struct mlx_command *mc); 1781ac4b82bSMike Smith int (* mlx_findcomplete)(struct mlx_softc *sc, u_int8_t *slot, u_int16_t *status); 1791ac4b82bSMike Smith void (* mlx_intaction)(struct mlx_softc *sc, int action); 1800fca6f8bSJohn Baldwin int (* mlx_fw_handshake)(struct mlx_softc *sc, int *error, int *param1, int *param2, int first); 1811ac4b82bSMike Smith #define MLX_INTACTION_DISABLE 0 1821ac4b82bSMike Smith #define MLX_INTACTION_ENABLE 1 1831ac4b82bSMike Smith }; 1841ac4b82bSMike Smith 1850fca6f8bSJohn Baldwin #define MLX_IO_LOCK(sc) mtx_lock(&(sc)->mlx_io_lock) 1860fca6f8bSJohn Baldwin #define MLX_IO_UNLOCK(sc) mtx_unlock(&(sc)->mlx_io_lock) 1870fca6f8bSJohn Baldwin #define MLX_IO_ASSERT_LOCKED(sc) mtx_assert(&(sc)->mlx_io_lock, MA_OWNED) 1880fca6f8bSJohn Baldwin #define MLX_CONFIG_LOCK(sc) sx_xlock(&(sc)->mlx_config_lock) 1890fca6f8bSJohn Baldwin #define MLX_CONFIG_UNLOCK(sc) sx_xunlock(&(sc)->mlx_config_lock) 1900fca6f8bSJohn Baldwin #define MLX_CONFIG_ASSERT_LOCKED(sc) sx_assert(&(sc)->mlx_config_lock, SA_XLOCKED) 1915792b7feSMike Smith 1925792b7feSMike Smith /* 1931ac4b82bSMike Smith * Interface between bus connections and driver core. 1941ac4b82bSMike Smith */ 1951ac4b82bSMike Smith extern void mlx_free(struct mlx_softc *sc); 1961ac4b82bSMike Smith extern int mlx_attach(struct mlx_softc *sc); 1971ac4b82bSMike Smith extern void mlx_startup(struct mlx_softc *sc); 1981ac4b82bSMike Smith extern void mlx_intr(void *data); 1991ac4b82bSMike Smith extern int mlx_detach(device_t dev); 2001ac4b82bSMike Smith extern int mlx_shutdown(device_t dev); 2011ac4b82bSMike Smith extern int mlx_suspend(device_t dev); 2021ac4b82bSMike Smith extern int mlx_resume(device_t dev); 2031ac4b82bSMike Smith extern d_open_t mlx_open; 2041ac4b82bSMike Smith extern d_close_t mlx_close; 2051ac4b82bSMike Smith extern d_ioctl_t mlx_ioctl; 2061ac4b82bSMike Smith 2071ac4b82bSMike Smith /* 2081ac4b82bSMike Smith * Mylex System Disk driver 2091ac4b82bSMike Smith */ 2101ac4b82bSMike Smith struct mlxd_softc 2111ac4b82bSMike Smith { 2121ac4b82bSMike Smith device_t mlxd_dev; 2131ac4b82bSMike Smith struct mlx_softc *mlxd_controller; 2141ac4b82bSMike Smith struct mlx_sysdrive *mlxd_drive; 2150b7ed341SPoul-Henning Kamp struct disk *mlxd_disk; 2161ac4b82bSMike Smith int mlxd_unit; 2171ac4b82bSMike Smith int mlxd_flags; 2181ac4b82bSMike Smith #define MLXD_OPEN (1<<0) /* drive is open (can't shut down) */ 2191ac4b82bSMike Smith }; 2201ac4b82bSMike Smith 2211ac4b82bSMike Smith /* 2221ac4b82bSMike Smith * Interface between driver core and disk driver (should be using a bus?) 2231ac4b82bSMike Smith */ 224b04e4c12SJohn Baldwin extern int mlx_submit_buf(struct mlx_softc *sc, struct bio *bp); 225b40ce416SJulian Elischer extern int mlx_submit_ioctl(struct mlx_softc *sc, 226b40ce416SJulian Elischer struct mlx_sysdrive *drive, u_long cmd, 227b40ce416SJulian Elischer caddr_t addr, int32_t flag, struct thread *td); 228b04e4c12SJohn Baldwin extern void mlxd_intr(struct bio *bp); 2291ac4b82bSMike Smith 2301ac4b82bSMike Smith 231