1 /*- 2 * Copyright (c) 1999 Jonathan Lemon 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 */ 28 29 /* 30 * software structures for the Compaq RAID controller 31 */ 32 33 #ifndef _IDAVAR_H 34 #define _IDAVAR_H 35 36 struct ida_hdr { 37 u_int8_t drive; /* logical drive */ 38 u_int8_t priority; /* block priority */ 39 u_int16_t size; /* size of request, in words */ 40 }; 41 42 struct ida_req { 43 u_int16_t next; /* offset of next request */ 44 u_int8_t command; /* command */ 45 u_int8_t error; /* return error code */ 46 u_int32_t blkno; /* block number */ 47 u_int16_t bcount; /* block count */ 48 u_int8_t sgcount; /* number of scatter/gather entries */ 49 u_int8_t spare; /* reserved */ 50 }; 51 52 struct ida_sgb { 53 u_int32_t length; /* length of S/G segment */ 54 u_int32_t addr; /* physical address of block */ 55 }; 56 57 #define IDA_NSEG 32 /* maximum number of segments */ 58 59 /* 60 * right now, this structure totals 276 bytes. 61 */ 62 struct ida_hardware_qcb { 63 struct ida_hdr hdr; /* 4 */ 64 struct ida_req req; /* 12 */ 65 struct ida_sgb seg[IDA_NSEG]; /* 256 */ 66 struct ida_qcb *qcb; /* 4 - qcb backpointer */ 67 }; 68 69 typedef enum { 70 QCB_FREE = 0x0000, 71 QCB_ACTIVE = 0x0001, /* waiting for completion */ 72 } qcb_state; 73 74 #define DMA_DATA_IN 0x0001 75 #define DMA_DATA_OUT 0x0002 76 #define IDA_COMMAND 0x0004 77 #define DMA_DATA_TRANSFER (DMA_DATA_IN | DMA_DATA_OUT) 78 79 #define IDA_QCB_MAX 256 80 #define IDA_CONTROLLER 0 /* drive "number" for controller */ 81 82 struct ida_qcb { 83 struct ida_hardware_qcb *hwqcb; 84 qcb_state state; 85 short flags; 86 union { 87 STAILQ_ENTRY(ida_qcb) stqe; 88 SLIST_ENTRY(ida_qcb) sle; 89 } link; 90 bus_dmamap_t dmamap; 91 struct buf *buf; /* buf associated with qcb */ 92 }; 93 94 /* 95 * flags for the controller 96 */ 97 #define IDA_ATTACHED 0x01 /* attached, interrupts okay */ 98 99 struct ida_softc { 100 device_t dev; 101 int unit; 102 103 int regs_res_type; 104 int regs_res_id; 105 struct resource *regs; 106 107 int irq_res_type; 108 struct resource *irq; 109 void *ih; 110 111 bus_space_tag_t tag; 112 bus_space_handle_t bsh; 113 114 /* various DMA tags */ 115 bus_dma_tag_t parent_dmat; 116 bus_dma_tag_t buffer_dmat; 117 118 bus_dma_tag_t hwqcb_dmat; 119 bus_dmamap_t hwqcb_dmamap; 120 bus_addr_t hwqcb_busaddr; 121 122 bus_dma_tag_t sg_dmat; 123 124 int num_drives; 125 int num_qcbs; 126 int flags; 127 128 struct ida_hardware_qcb *hwqcbs; /* HW QCB array */ 129 struct ida_qcb *qcbs; /* kernel QCB array */ 130 SLIST_HEAD(, ida_qcb) free_qcbs; 131 STAILQ_HEAD(, ida_qcb) qcb_queue; 132 struct buf_queue_head buf_queue; 133 }; 134 135 /* 136 * drive flags 137 */ 138 #define DRV_WRITEPROT 0x0001 139 140 struct id_softc { 141 device_t dev; 142 struct ida_softc *controller; 143 struct diskslices *slices; 144 struct devstat stats; 145 int unit; 146 int cylinders; 147 int heads; 148 int sectors; 149 int secsize; 150 int secperunit; 151 int flags; 152 }; 153 154 extern struct ida_softc *ida_alloc(device_t dev, struct resource *regs, 155 int regs_type, int regs_id, bus_dma_tag_t parent_dmat); 156 extern void ida_free(struct ida_softc *ida); 157 extern int ida_init(struct ida_softc *ida); 158 extern void ida_attach(struct ida_softc *ida); 159 extern int ida_command(struct ida_softc *ida, int command, void *data, 160 int datasize, int drive, int flags); 161 extern void ida_submit_buf(struct ida_softc *ida, struct buf *bp); 162 extern void ida_intr(void *data); 163 164 extern void id_intr(struct buf *bp); 165 166 #endif /* _IDAVAR_H */ 167