Merge from vendor branch OPENSSL:
[dragonfly.git] / sys / dev / raid / pst / pst-raid.c
1 /*-
2  * Copyright (c) 2001,2002 Søren Schmidt <sos@FreeBSD.org>
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  *    without modification, immediately at the beginning of the file.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * $FreeBSD: src/sys/dev/pst/pst-raid.c,v 1.2.2.1 2002/08/18 12:32:36 sos Exp $
29  * $DragonFly: src/sys/dev/raid/pst/pst-raid.c,v 1.10 2004/06/21 15:39:31 dillon Exp $
30  */
31
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/kernel.h>
35 #include <sys/module.h>
36 #include <sys/bus.h>
37 #include <sys/buf.h>
38 #include <sys/buf2.h>
39 #include <sys/conf.h>
40 #include <sys/disk.h>
41 #include <sys/devicestat.h>
42 #include <sys/eventhandler.h>
43 #include <sys/malloc.h>
44 #include <sys/lock.h>
45 #include <vm/vm.h>
46 #include <vm/pmap.h>
47 #include <machine/stdarg.h>
48 #include <machine/resource.h>
49 #include <machine/bus.h>
50 #include <sys/rman.h>
51 #include <bus/pci/pcivar.h>
52 #include <bus/pci/pcireg.h>
53
54 #include "pst-iop.h"
55
56 /* device structures */ 
57 static d_strategy_t pststrategy;
58 static struct cdevsw pst_cdevsw = {
59     /* name */  "pst",
60     /* maj */   168,
61     /* flags */ D_DISK,
62     /* port */  NULL,
63     /* clone */ NULL,
64
65     /* open */  nullopen,
66     /* close */ nullclose,
67     /* read */  physread,
68     /* write */ physwrite,
69     /* ioctl */ noioctl,
70     /* poll */  nopoll,
71     /* mmap */  nommap,
72     /* strat */ pststrategy,
73     /* dump */  nodump,
74     /* psize */ nopsize
75 };
76
77 struct pst_softc {
78     struct iop_softc            *iop;
79     struct i2o_lct_entry        *lct;
80     struct i2o_bsa_device       *info;
81     dev_t                       device;
82     struct devstat              stats;
83     struct disk                 disk;
84     struct buf_queue_head       queue;
85     int                         outstanding;
86 };
87
88 struct pst_request {
89     struct pst_softc            *psc;           /* pointer to softc */
90     u_int32_t                   mfa;            /* frame addreess */
91     struct callout_handle       timeout_handle; /* handle for untimeout */
92     struct buf                  *bp;            /* associated bio ptr */
93 };
94
95 /* prototypes */
96 static int pst_probe(device_t);
97 static int pst_attach(device_t);
98 #if 0
99 static int pst_shutdown(device_t);
100 #endif
101 static void pst_start(struct pst_softc *);
102 static void pst_done(struct iop_softc *, u_int32_t, struct i2o_single_reply *);
103 static int pst_rw(struct pst_request *);
104 static void pst_timeout(struct pst_request *);
105 static void bpack(int8_t *, int8_t *, int);
106
107 /* local vars */
108 static MALLOC_DEFINE(M_PSTRAID, "pst", "Promise SuperTrak RAID driver");
109
110 int
111 pst_add_raid(struct iop_softc *sc, struct i2o_lct_entry *lct)
112 {
113     struct pst_softc *psc;
114     device_t child = device_add_child(sc->dev, "pst", -1);
115
116     if (!child)
117         return ENOMEM;
118     psc = malloc(sizeof(struct pst_softc), M_PSTRAID, M_INTWAIT | M_ZERO); 
119     psc->iop = sc;
120     psc->lct = lct;
121     device_set_softc(child, psc);
122     return bus_generic_attach(sc->dev);
123 }
124
125 static int
126 pst_probe(device_t dev)
127 {
128     device_set_desc(dev, "Promise SuperTrak RAID");
129     return 0;
130 }
131
132 static int
133 pst_attach(device_t dev)
134 {
135     struct pst_softc *psc = device_get_softc(dev);
136     struct i2o_get_param_reply *reply;
137     struct i2o_device_identity *ident;
138     int lun = device_get_unit(dev);
139     int8_t name [32];
140
141     if (!(reply = iop_get_util_params(psc->iop, psc->lct->local_tid,
142                                       I2O_PARAMS_OPERATION_FIELD_GET,
143                                       I2O_BSA_DEVICE_INFO_GROUP_NO)))
144         return ENODEV;
145
146     psc->info = malloc(sizeof(struct i2o_bsa_device), M_PSTRAID, M_INTWAIT);
147     bcopy(reply->result, psc->info, sizeof(struct i2o_bsa_device));
148     contigfree(reply, PAGE_SIZE, M_PSTRAID);
149
150     if (!(reply = iop_get_util_params(psc->iop, psc->lct->local_tid,
151                                       I2O_PARAMS_OPERATION_FIELD_GET,
152                                       I2O_UTIL_DEVICE_IDENTITY_GROUP_NO)))
153         return ENODEV;
154     ident = (struct i2o_device_identity *)reply->result;
155 #ifdef PSTDEBUG    
156     printf("pst: vendor=<%.16s> product=<%.16s>\n",
157            ident->vendor, ident->product);
158     printf("pst: description=<%.16s> revision=<%.8s>\n",
159            ident->description, ident->revision);
160     printf("pst: capacity=%lld blocksize=%d\n",
161            psc->info->capacity, psc->info->block_size);
162 #endif
163     bpack(ident->vendor, ident->vendor, 16);
164     bpack(ident->product, ident->product, 16);
165     sprintf(name, "%s %s", ident->vendor, ident->product);
166     contigfree(reply, PAGE_SIZE, M_PSTRAID);
167
168     bufq_init(&psc->queue);
169
170     psc->device = disk_create(lun, &psc->disk, 0, &pst_cdevsw);
171     psc->device->si_drv1 = psc;
172     psc->device->si_iosize_max = 64 * 1024; /*I2O_SGL_MAX_SEGS * PAGE_SIZE;*/
173
174     bzero(&psc->disk.d_label, sizeof(struct disklabel));
175     psc->disk.d_label.d_secsize = psc->info->block_size;
176     psc->disk.d_label.d_nsectors = 63;
177     psc->disk.d_label.d_ntracks = 255;
178     psc->disk.d_label.d_ncylinders =
179         (psc->info->capacity / psc->info->block_size) / (255 * 63);
180     psc->disk.d_label.d_secpercyl = 255 * 63;
181     psc->disk.d_label.d_secperunit =
182         psc->info->capacity / psc->info->block_size;
183
184     devstat_add_entry(&psc->stats, "pst", lun, psc->info->block_size,
185                       DEVSTAT_NO_ORDERED_TAGS,
186                       DEVSTAT_TYPE_DIRECT | DEVSTAT_TYPE_IF_IDE,
187                       DEVSTAT_PRIORITY_DISK);
188
189     printf("pst%d: %lluMB <%.40s> [%d/%d/%d] on %.16s\n", lun,
190            (unsigned long long)psc->disk.d_label.d_secperunit / (1024 * 2),
191            name, psc->disk.d_label.d_ncylinders, 255, 63,
192            device_get_nameunit(psc->iop->dev));
193 #if 0
194     EVENTHANDLER_REGISTER(shutdown_post_sync, pst_shutdown,
195                           dev, SHUTDOWN_PRI_DEFAULT);
196 #endif
197     return 0;
198 }
199
200 #if 0
201 static int
202 pst_shutdown(device_t dev)
203 {
204     struct pst_softc *psc = device_get_softc(dev);
205     struct i2o_bsa_cache_flush_message *msg;
206     int mfa;
207
208     mfa = iop_get_mfa(psc->iop);
209     msg = (struct i2o_bsa_cache_flush_message *)(psc->iop->ibase + mfa);
210     bzero(msg, sizeof(struct i2o_bsa_cache_flush_message));
211     msg->version_offset = 0x01;
212     msg->message_flags = 0x0;
213     msg->message_size = sizeof(struct i2o_bsa_cache_flush_message) >> 2;
214     msg->target_address = psc->lct->local_tid;
215     msg->initiator_address = I2O_TID_HOST;
216     msg->function = I2O_BSA_CACHE_FLUSH;
217     msg->control_flags = 0x0; /* 0x80 = post progress reports */
218     if (iop_queue_wait_msg(psc->iop, mfa, (struct i2o_basic_message *)msg))
219         printf("pst: shutdown failed!\n");
220     return 0;
221 }
222 #endif
223
224 static void
225 pststrategy(struct buf *bp)
226 {
227     struct pst_softc *psc = bp->b_dev->si_drv1;
228     int s = splbio();
229
230     bufqdisksort(&psc->queue, bp);
231     pst_start(psc);
232     splx(s);
233 }
234
235 static void
236 pst_start(struct pst_softc *psc)
237 {
238     struct pst_request *request;
239     struct buf *bp;
240     u_int32_t mfa;
241
242     if (psc->outstanding < (I2O_IOP_OUTBOUND_FRAME_COUNT - 1) &&
243         (bp = bufq_first(&psc->queue))) {
244         if ((mfa = iop_get_mfa(psc->iop)) != 0xffffffff) {
245             request = malloc(sizeof(struct pst_request),
246                                M_PSTRAID, M_INTWAIT | M_ZERO);
247             psc->outstanding++;
248             request->psc = psc;
249             request->mfa = mfa;
250             request->bp = bp;
251             if (dumping)
252                 request->timeout_handle.callout = NULL;
253             else
254                 request->timeout_handle =
255                     timeout((timeout_t*)pst_timeout, request, 10 * hz);
256             bufq_remove(&psc->queue, bp);
257             devstat_start_transaction(&psc->stats);
258             if (pst_rw(request)) {
259                 devstat_end_transaction_buf(&psc->stats, request->bp);
260                 request->bp->b_error = EIO;
261                 request->bp->b_flags |= B_ERROR;
262                 biodone(request->bp);
263                 iop_free_mfa(request->psc->iop, request->mfa);
264                 psc->outstanding--;
265                 free(request, M_PSTRAID);
266             }
267         }
268     }
269 }
270
271 static void
272 pst_done(struct iop_softc *sc, u_int32_t mfa, struct i2o_single_reply *reply)
273 {
274     struct pst_request *request =
275         (struct pst_request *)reply->transaction_context;
276     struct pst_softc *psc = request->psc;
277     int s;
278
279     untimeout((timeout_t *)pst_timeout, request, request->timeout_handle);
280     request->bp->b_resid = request->bp->b_bcount - reply->donecount;
281     devstat_end_transaction_buf(&psc->stats, request->bp);
282     if (reply->status) {
283         request->bp->b_error = EIO;
284         request->bp->b_flags |= B_ERROR;
285     }
286     biodone(request->bp);
287     free(request, M_PSTRAID);
288     s = splbio();
289     psc->iop->reg->oqueue = mfa;
290     psc->outstanding--;
291     pst_start(psc);
292     splx(s);
293 }
294
295 static void
296 pst_timeout(struct pst_request *request)
297 {
298     int s = splbio();
299
300     printf("pst: timeout mfa=0x%08x cmd=%s\n",
301            request->mfa, request->bp->b_flags & B_READ ? "READ" : "WRITE");
302     iop_free_mfa(request->psc->iop, request->mfa);
303     if ((request->mfa = iop_get_mfa(request->psc->iop)) == 0xffffffff) {
304         printf("pst: timeout no mfa possible\n");
305         devstat_end_transaction_buf(&request->psc->stats, request->bp);
306         request->bp->b_error = EIO;
307         request->bp->b_flags |= B_ERROR;
308         biodone(request->bp);
309         request->psc->outstanding--;
310         splx(s);
311         return;
312     }
313     if (dumping)
314         request->timeout_handle.callout = NULL;
315     else
316         request->timeout_handle =
317             timeout((timeout_t*)pst_timeout, request, 10 * hz);
318     if (pst_rw(request)) {
319         iop_free_mfa(request->psc->iop, request->mfa);
320         devstat_end_transaction_buf(&request->psc->stats, request->bp);
321         request->bp->b_error = EIO;
322         request->bp->b_flags |= B_ERROR;
323         biodone(request->bp);
324         request->psc->outstanding--;
325     }
326     splx(s);
327 }
328
329 int
330 pst_rw(struct pst_request *request)
331 {
332     struct i2o_bsa_rw_block_message *msg;
333     int sgl_flag;
334
335     msg = (struct i2o_bsa_rw_block_message *)
336           (request->psc->iop->ibase + request->mfa);
337     bzero(msg, sizeof(struct i2o_bsa_rw_block_message));
338     msg->version_offset = 0x81;
339     msg->message_flags = 0x0;
340     msg->message_size = sizeof(struct i2o_bsa_rw_block_message) >> 2;
341     msg->target_address = request->psc->lct->local_tid;
342     msg->initiator_address = I2O_TID_HOST;
343     if (request->bp->b_flags & B_READ) {
344         msg->function = I2O_BSA_BLOCK_READ;
345         msg->control_flags = 0x0; /* 0x0c = read cache + readahead */
346         msg->fetch_ahead = 0x0; /* 8 Kb */
347         sgl_flag = 0;
348     }
349     else {
350         msg->function = I2O_BSA_BLOCK_WRITE;
351         msg->control_flags = 0x0; /* 0x10 = write behind cache */
352         msg->fetch_ahead = 0x0;
353         sgl_flag = I2O_SGL_DIR;
354     }
355     msg->initiator_context = (u_int32_t)pst_done;
356     msg->transaction_context = (u_int32_t)request;
357     msg->time_multiplier = 1;
358     msg->bytecount = request->bp->b_bcount;
359     msg->lba = ((u_int64_t)request->bp->b_pblkno) * (DEV_BSIZE * 1LL);
360     if (!iop_create_sgl((struct i2o_basic_message *)msg, request->bp->b_data,
361                         request->bp->b_bcount, sgl_flag))
362         return -1;
363     request->psc->iop->reg->iqueue = request->mfa;
364     return 0;
365 }
366
367 static void
368 bpack(int8_t *src, int8_t *dst, int len)
369 {
370     int i, j, blank;
371     int8_t *ptr, *buf = dst;
372
373     for (i = j = blank = 0 ; i < len; i++) {
374         if (blank && src[i] == ' ') continue;
375         if (blank && src[i] != ' ') {
376             dst[j++] = src[i];
377             blank = 0;
378             continue;
379         }
380         if (src[i] == ' ') {
381             blank = 1;
382             if (i == 0)
383                 continue;
384         }
385         dst[j++] = src[i];
386     }
387     if (j < len) 
388         dst[j] = 0x00;
389     for (ptr = buf; ptr < buf+len; ++ptr)
390         if (!*ptr)
391             *ptr = ' ';
392     for (ptr = buf + len - 1; ptr >= buf && *ptr == ' '; --ptr)
393         *ptr = 0;
394 }
395
396 static device_method_t pst_methods[] = {
397     DEVMETHOD(device_probe,     pst_probe),
398     DEVMETHOD(device_attach,    pst_attach),
399     { 0, 0 }
400 };
401         
402 static driver_t pst_driver = {
403     "pst",
404     pst_methods,
405     sizeof(struct pst_softc),
406 };
407
408 static devclass_t pst_devclass;
409
410 DRIVER_MODULE(pst, pstpci, pst_driver, pst_devclass, 0, 0);