xref: /dflybsd-src/sys/dev/raid/ips/ips.h (revision d9ea1be3e2886810aaa5c005106dfc90c64882e7)
1 /*-
2  * Copyright (c) 2002 Adaptec Inc.
3  * All rights reserved.
4  *
5  * Written by: David Jeffery
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD: src/sys/dev/ips/ips.h,v 1.10 2004/05/30 20:08:34 phk Exp $
29  * $DragonFly: src/sys/dev/raid/ips/ips.h,v 1.13 2006/12/22 23:26:23 swildner Exp $
30  */
31 
32 
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/kernel.h>
36 #include <sys/module.h>
37 #include <sys/bus.h>
38 #include <sys/conf.h>
39 #include <sys/types.h>
40 #include <sys/thread.h>
41 #include <sys/queue.h>
42 #include <sys/buf.h>
43 #include <sys/malloc.h>
44 #include <sys/time.h>
45 #include <sys/lock.h>
46 #include <sys/rman.h>
47 #include <sys/buf2.h>
48 #include <sys/thread2.h>
49 
50 #include <bus/pci/pcireg.h>
51 #include <bus/pci/pcivar.h>
52 
53 MALLOC_DECLARE(M_IPSBUF);
54 
55 /*
56  *   IPS CONSTANTS
57  */
58 #define IPS_VENDOR_ID			0x1014
59 #define IPS_VENDOR_ID_ADAPTEC		0x9005
60 #define IPS_MORPHEUS_DEVICE_ID		0x01BD
61 #define IPS_COPPERHEAD_DEVICE_ID	0x002E
62 #define IPS_MARCO_DEVICE_ID		0x0250
63 #define IPS_CSL				0xff
64 #define IPS_POCL			0x30
65 
66 /* amounts of memory to allocate for certain commands */
67 #define IPS_ADAPTER_INFO_LEN		(sizeof(ips_adapter_info_t))
68 #define IPS_DRIVE_INFO_LEN		(sizeof(ips_drive_info_t))
69 #define IPS_COMMAND_LEN			24
70 #define IPS_MAX_SG_LEN			(sizeof(ips_sg_element_t) * IPS_MAX_SG_ELEMENTS)
71 #define IPS_NVRAM_PAGE_SIZE		128
72 /* various flags */
73 #define IPS_STATIC_FLAG			1
74 
75 /* states for the card to be in */
76 #define IPS_DEV_OPEN			0x01
77 #define IPS_TIMEOUT			0x02 /* command time out, need reset */
78 #define IPS_OFFLINE			0x04 /* can't reset card/card failure */
79 #define IPS_STATIC_BUSY			0x08 /* static command slot in use */
80 
81 /* max number of commands set to something low for now */
82 #define IPS_MAX_CMD_NUM			128
83 #define IPS_MAX_NUM_DRIVES		8
84 #define IPS_MAX_SG_ELEMENTS		32
85 #define IPS_MAX_IOBUF_SIZE		(64 * 1024)
86 #define IPS_BLKSIZE			512
87 
88 /* logical drive states */
89 
90 #define IPS_LD_OFFLINE			0x02
91 #define IPS_LD_OKAY			0x03
92 #define IPS_LD_DEGRADED			0x04
93 #define IPS_LD_FREE			0x00
94 #define IPS_LD_SYS			0x06
95 #define IPS_LD_CRS			0x24
96 
97 /* register offsets */
98 #define MORPHEUS_REG_OMR0		0x0018 /* Outbound Msg. Reg. 0 */
99 #define MORPHEUS_REG_OMR1		0x001C /* Outbound Msg. Reg. 1 */
100 #define MORPHEUS_REG_IDR		0x0020 /* Inbound Doorbell Reg. */
101 #define MORPHEUS_REG_IISR		0x0024 /* Inbound IRQ Status Reg. */
102 #define MORPHEUS_REG_IIMR		0x0028 /* Inbound IRQ Mask Reg. */
103 #define MORPHEUS_REG_OISR		0x0030 /* Outbound IRQ Status Reg. */
104 #define MORPHEUS_REG_OIMR		0x0034 /* Outbound IRQ Status Reg. */
105 #define MORPHEUS_REG_IQPR		0x0040 /* Inbound Queue Port Reg. */
106 #define MORPHEUS_REG_OQPR		0x0044 /* Outbound Queue Port Reg. */
107 
108 #define COPPER_REG_SCPR			0x05	/* Subsystem Ctrl. Port Reg. */
109 #define COPPER_REG_ISPR			0x06	/* IRQ Status Port Reg. */
110 #define COPPER_REG_CBSP			0x07	/* ? Reg. */
111 #define COPPER_REG_HISR			0x08	/* Host IRQ Status Reg.    */
112 #define COPPER_REG_CCSAR		0x10	/* Cmd. Channel Sys Addr Reg.*/
113 #define COPPER_REG_CCCR			0x14	/* Cmd. Channel Ctrl. Reg. */
114 #define COPPER_REG_SQHR			0x20    /* Status Queue Head Reg.  */
115 #define COPPER_REG_SQTR			0x24    /* Status Queue Tail Reg.  */
116 #define COPPER_REG_SQER			0x28    /* Status Queue End Reg.   */
117 #define COPPER_REG_SQSR			0x2C    /* Status Queue Start Reg. */
118 
119 /* bit definitions */
120 #define MORPHEUS_BIT_POST1		0x01
121 #define MORPHEUS_BIT_POST2		0x02
122 #define MORPHEUS_BIT_CMD_IRQ		0x08
123 
124 #define COPPER_CMD_START		0x101A
125 #define COPPER_SEM_BIT			0x08
126 #define COPPER_EI_BIT			0x80
127 #define COPPER_EBM_BIT			0x02
128 #define COPPER_RESET_BIT		0x80
129 #define COPPER_GHI_BIT			0x04
130 #define COPPER_SCE_BIT			0x01
131 #define COPPER_OP_BIT			0x01
132 #define COPPER_ILE_BIT			0x10
133 
134 /* status defines */
135 #define IPS_POST1_OK			0x8000
136 #define IPS_POST2_OK			0x000f
137 
138 /* command op codes */
139 #define IPS_READ_CMD			0x02
140 #define IPS_WRITE_CMD			0x03
141 #define IPS_ADAPTER_INFO_CMD		0x05
142 #define IPS_CACHE_FLUSH_CMD		0x0A
143 #define IPS_REBUILD_STATUS_CMD		0x0C
144 #define IPS_ERROR_TABLE_CMD		0x17
145 #define IPS_DRIVE_INFO_CMD		0x19
146 #define IPS_SUBSYS_PARAM_CMD		0x40
147 #define IPS_CONFIG_SYNC_CMD		0x58
148 #define IPS_SG_READ_CMD			0x82
149 #define IPS_SG_WRITE_CMD		0x83
150 #define IPS_RW_NVRAM_CMD		0xBC
151 #define IPS_FFDC_CMD			0xD7
152 
153 /* error information returned by the adapter */
154 #define IPS_MIN_ERROR			0x02
155 #define IPS_ERROR_STATUS		0x13000200 /* ahh, magic numbers */
156 
157 #define IPS_OS_FREEBSD			8
158 #define IPS_VERSION_MAJOR		"0.90"
159 #define IPS_VERSION_MINOR		".10"
160 
161 /* Adapter Types */
162 #define IPS_ADAPTER_COPPERHEAD		0x01
163 #define IPS_ADAPTER_COPPERHEAD2		0x02
164 #define IPS_ADAPTER_COPPERHEADOB1	0x03
165 #define IPS_ADAPTER_COPPERHEADOB2	0x04
166 #define IPS_ADAPTER_CLARINET		0x05
167 #define IPS_ADAPTER_CLARINETLITE	0x06
168 #define IPS_ADAPTER_TROMBONE		0x07
169 #define IPS_ADAPTER_MORPHEUS		0x08
170 #define IPS_ADAPTER_MORPHEUSLITE	0x09
171 #define IPS_ADAPTER_NEO			0x0A
172 #define IPS_ADAPTER_NEOLITE		0x0B
173 #define IPS_ADAPTER_SARASOTA2		0x0C
174 #define IPS_ADAPTER_SARASOTA1		0x0D
175 #define IPS_ADAPTER_MARCO		0x0E
176 #define IPS_ADAPTER_SEBRING		0x0F
177 #define IPS_ADAPTER_7T			0x10
178 #define IPS_ADAPTER_7K			0x11
179 #define IPS_ADAPTER_7M			0x12
180 #define IPS_ADAPTER_MAX_T		IPS_ADAPTER_7M
181 
182 /* values for ffdc_settime (from gmtime) */
183 #define IPS_SECSPERMIN      60
184 #define IPS_MINSPERHOUR     60
185 #define IPS_HOURSPERDAY     24
186 #define IPS_DAYSPERWEEK     7
187 #define IPS_DAYSPERNYEAR    365
188 #define IPS_DAYSPERLYEAR    366
189 #define IPS_SECSPERHOUR     (IPS_SECSPERMIN * IPS_MINSPERHOUR)
190 #define IPS_SECSPERDAY      ((long) IPS_SECSPERHOUR * IPS_HOURSPERDAY)
191 #define IPS_MONSPERYEAR     12
192 #define IPS_EPOCH_YEAR      1970
193 #define IPS_LEAPS_THRU_END_OF(y)    ((y) / 4 - (y) / 100 + (y) / 400)
194 #define ips_isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0))
195 
196 
197 /*
198  * for compatibility
199  */
200 /* struct buf to struct bio changes */
201 
202 #define d_maxsize	si_iosize_max
203 
204 #if defined(PCIR_MAPS) && !defined(PCIR_BARS)
205 # define PCIR_BAR(x)	(PCIR_BARS + (x) * 4)
206 # define PCIR_BARS	PCIR_MAPS
207 #endif
208 
209 
210 /*
211  *  IPS MACROS
212  */
213 
214 #define ips_read_1(sc,offset)		bus_space_read_1(sc->bustag, sc->bushandle, offset)
215 #define ips_read_2(sc,offset) 		bus_space_read_2(sc->bustag, sc->bushandle, offset)
216 #define ips_read_4(sc,offset)		bus_space_read_4(sc->bustag, sc->bushandle, offset)
217 
218 #define ips_write_1(sc,offset,value)	bus_space_write_1(sc->bustag, sc->bushandle, offset, value)
219 #define ips_write_2(sc,offset,value) 	bus_space_write_2(sc->bustag, sc->bushandle, offset, value)
220 #define ips_write_4(sc,offset,value)	bus_space_write_4(sc->bustag, sc->bushandle, offset, value)
221 
222 #define ips_read_request(iobuf)		((bio)->bio_buf->b_cmd == BUF_CMD_READ)
223 
224 #define COMMAND_ERROR(status)		(((status)->fields.basic_status & 0x0f) >= IPS_MIN_ERROR)
225 
226 #ifndef IPS_DEBUG
227 #define DEVICE_PRINTF(x...)
228 #define PRINTF(x...)
229 #else
230 #define DEVICE_PRINTF(level,x...)	if(IPS_DEBUG >= level)device_printf(x)
231 #define PRINTF(level,x...)		if(IPS_DEBUG >= level)kprintf(x)
232 #endif
233 
234 /*
235  *   IPS STRUCTS
236  */
237 struct ips_softc;
238 
239 typedef struct {
240 	u_int8_t	command;
241 	u_int8_t	id;
242 	u_int8_t	drivenum;
243 	u_int8_t	reserve2;
244 	u_int32_t	lba;
245 	u_int32_t	buffaddr;
246 	u_int32_t	reserve3;
247 } __attribute__ ((packed)) ips_generic_cmd;
248 
249 typedef struct {
250 	u_int8_t	command;
251 	u_int8_t	id;
252 	u_int8_t	drivenum;
253 	u_int8_t	segnum;
254 	u_int32_t	lba;
255 	u_int32_t	buffaddr;
256 	u_int16_t	length;
257 	u_int16_t	reserve1;
258 } __attribute__ ((packed)) ips_io_cmd;
259 
260 typedef struct {
261 	u_int8_t	command;
262 	u_int8_t	id;
263 	u_int8_t	pagenum;
264 	u_int8_t	rw;
265 	u_int32_t	reserve1;
266 	u_int32_t	buffaddr;
267 	u_int32_t	reserve3;
268 } __attribute__ ((packed)) ips_rw_nvram_cmd;
269 
270 typedef struct {
271 	u_int8_t	command;
272 	u_int8_t	id;
273 	u_int8_t	drivenum;
274 	u_int8_t	reserve1;
275 	u_int32_t	reserve2;
276 	u_int32_t	buffaddr;
277 	u_int32_t	reserve3;
278 } __attribute__ ((packed)) ips_drive_cmd;
279 
280 typedef struct {
281 	u_int8_t	command;
282 	u_int8_t	id;
283 	u_int8_t	reserve1;
284 	u_int8_t	commandtype;
285 	u_int32_t	reserve2;
286 	u_int32_t	buffaddr;
287 	u_int32_t	reserve3;
288 } __attribute__((packed)) ips_adapter_info_cmd;
289 
290 typedef struct {
291 	u_int8_t	command;
292 	u_int8_t	id;
293 	u_int8_t	reset_count;
294 	u_int8_t	reset_type;
295 	u_int8_t	second;
296 	u_int8_t	minute;
297 	u_int8_t	hour;
298 	u_int8_t	day;
299 	u_int8_t	reserve1[4];
300 	u_int8_t	month;
301 	u_int8_t	yearH;
302 	u_int8_t	yearL;
303 	u_int8_t	reserve2;
304 } __attribute__((packed)) ips_adapter_ffdc_cmd;
305 
306 typedef union{
307 	ips_generic_cmd		generic_cmd;
308 	ips_drive_cmd 		drive_cmd;
309 	ips_adapter_info_cmd 	adapter_info_cmd;
310 } ips_cmd_buff_t;
311 
312 typedef struct {
313    u_int32_t  signature;
314    u_int8_t   reserved;
315    u_int8_t   adapter_slot;
316    u_int16_t  adapter_type;
317    u_int8_t   bios_high[4];
318    u_int8_t   bios_low[4];
319    u_int16_t  reserve2;
320    u_int8_t   reserve3;
321    u_int8_t   operating_system;
322    u_int8_t   driver_high[4];
323    u_int8_t   driver_low[4];
324    u_int8_t   reserve4[100];
325 } __attribute__((packed)) ips_nvram_page5;
326 
327 typedef struct {
328 	u_int32_t	addr;
329 	u_int32_t	len;
330 } ips_sg_element_t;
331 
332 typedef struct {
333 	u_int8_t	drivenum;
334 	u_int8_t	merge_id;
335 	u_int8_t	raid_lvl;
336 	u_int8_t	state;
337 	u_int32_t	sector_count;
338 } __attribute__((packed)) ips_drive_t;
339 
340 typedef struct {
341 	u_int8_t	drivecount;
342 	u_int8_t	reserve1;
343 	u_int16_t	reserve2;
344 	ips_drive_t drives[IPS_MAX_NUM_DRIVES];
345 } __attribute__((packed)) ips_drive_info_t;
346 
347 typedef struct {
348 	u_int8_t	drivecount;
349 	u_int8_t	miscflags;
350 	u_int8_t	SLTflags;
351 	u_int8_t	BSTflags;
352 	u_int8_t	pwr_chg_count;
353 	u_int8_t	wrong_addr_count;
354 	u_int8_t	unident_count;
355 	u_int8_t	nvram_dev_chg_count;
356 	u_int8_t	codeblock_version[8];
357 	u_int8_t	bootblock_version[8];
358 	u_int32_t	drive_sector_count[IPS_MAX_NUM_DRIVES];
359 	u_int8_t	max_concurrent_cmds;
360 	u_int8_t	max_phys_devices;
361 	u_int16_t	flash_prog_count;
362 	u_int8_t	defunct_disks;
363 	u_int8_t	rebuildflags;
364 	u_int8_t	offline_drivecount;
365 	u_int8_t	critical_drivecount;
366 	u_int16_t	config_update_count;
367 	u_int8_t	blockedflags;
368 	u_int8_t	psdn_error;
369 	u_int16_t	addr_dead_disk[4*16];	/* ugly, max # channels * max # scsi devices per channel */
370 } __attribute__((packed)) ips_adapter_info_t;
371 
372 typedef struct {
373 	u_int32_t 	status[IPS_MAX_CMD_NUM];
374 	u_int32_t 	base_phys_addr;
375 	int 		nextstatus;
376 	bus_dma_tag_t	dmatag;
377 	bus_dmamap_t	dmamap;
378 } ips_copper_queue_t;
379 
380 typedef union {
381    struct {
382       u_int8_t  reserved;
383       u_int8_t  command_id;
384       u_int8_t  basic_status;
385       u_int8_t  extended_status;
386    } fields;
387    volatile u_int32_t    value;
388 } ips_cmd_status_t;
389 
390 /* used to keep track of current commands to the card */
391 typedef struct ips_command {
392 	u_int8_t		command_number;
393 	u_int8_t 		id;
394 	u_int8_t		timeout;
395 	struct ips_softc	*sc;
396 	bus_dmamap_t		command_dmamap;
397 	void			*command_buffer;
398 	u_int32_t		command_phys_addr;	/*WARNING! must be changed if 64bit addressing ever used*/
399 	bus_dma_tag_t		data_dmatag;
400 	bus_dmamap_t		data_dmamap;
401 	/* members below are zero'd when handed out */
402 	ips_cmd_status_t	status;
403 	SLIST_ENTRY(ips_command)	next;
404 	void			*data_buffer;
405 	void			*arg;
406 	void			(*callback)(struct ips_command *command);
407 	int			completed;
408 } ips_command_t;
409 
410 typedef struct ips_wait_list {
411 	STAILQ_ENTRY(ips_wait_list) next;
412 	void 			*data;
413 	int			(* callback)(ips_command_t *command);
414 } ips_wait_list_t;
415 
416 typedef struct ips_softc {
417 	struct resource		*iores;
418 	struct resource		*irqres;
419 	struct intr_config_hook ips_ich;
420 	int			configured;
421 	int			state;
422 	int			iotype;
423 	int			rid;
424 	int			irqrid;
425 	void			*irqcookie;
426 	bus_space_tag_t		bustag;
427 	bus_space_handle_t	bushandle;
428 	bus_dma_tag_t		adapter_dmatag;
429 	bus_dma_tag_t		command_dmatag;
430 	bus_dma_tag_t		sg_dmatag;
431 	device_t		dev;
432 	struct callout		timer;
433 	u_int16_t		adapter_type;
434 	ips_adapter_info_t	adapter_info;
435 	device_t		diskdev[IPS_MAX_NUM_DRIVES];
436 	ips_drive_t		drives[IPS_MAX_NUM_DRIVES];
437 	u_int8_t		drivecount;
438 	u_int16_t		ffdc_resetcount;
439 	struct timeval		ffdc_resettime;
440 	u_int8_t		next_drive;
441 	u_int8_t		max_cmds;
442 	volatile u_int8_t	used_commands;
443 	ips_command_t		*commandarray;
444 	ips_command_t		*staticcmd;
445 	SLIST_HEAD(command_list, ips_command) free_cmd_list;
446 	int			(*ips_adapter_reinit)(struct ips_softc *sc,
447 						       int force);
448 	void			(*ips_adapter_intr)(void *sc);
449 	void			(*ips_issue_cmd)(ips_command_t *command);
450 	void			(*ips_poll_cmd)(ips_command_t *command);
451 	ips_copper_queue_t	*copper_queue;
452 
453 	struct lock		queue_lock;
454 	struct bio_queue_head   bio_queue;
455 } ips_softc_t;
456 
457 /* function defines from ips_ioctl.c */
458 extern int ips_ioctl_request(ips_softc_t *sc, u_long ioctl_cmd, caddr_t addr,
459 				int32_t flags);
460 /* function defines from ips_disk.c */
461 extern void ipsd_finish(struct bio *iobuf);
462 
463 /* function defines from ips_commands.c */
464 extern int ips_flush_cache(ips_softc_t *sc);
465 extern void ips_start_io_request(ips_softc_t *sc);
466 extern int ips_get_drive_info(ips_softc_t *sc);
467 extern int ips_get_adapter_info(ips_softc_t *sc);
468 extern int ips_ffdc_reset(ips_softc_t *sc);
469 extern int ips_update_nvram(ips_softc_t *sc);
470 extern int ips_clear_adapter(ips_softc_t *sc);
471 
472 /* function defines from ips.c */
473 extern int ips_get_free_cmd(ips_softc_t *sc, ips_command_t **command,
474 			    unsigned long flags);
475 extern void ips_insert_free_cmd(ips_softc_t *sc, ips_command_t *command);
476 extern int ips_adapter_init(ips_softc_t *sc);
477 extern int ips_morpheus_reinit(ips_softc_t *sc, int force);
478 extern int ips_adapter_free(ips_softc_t *sc);
479 extern void ips_morpheus_intr(void *sc);
480 extern void ips_issue_morpheus_cmd(ips_command_t *command);
481 extern void ips_morpheus_poll(ips_command_t *command);
482 extern int ips_copperhead_reinit(ips_softc_t *sc, int force);
483 extern void ips_copperhead_intr(void *sc);
484 extern void ips_issue_copperhead_cmd(ips_command_t *command);
485 extern void ips_copperhead_poll(ips_command_t *command);
486 int ips_timed_wait(ips_command_t *, const char *, int);
487 
488 #define IPS_CDEV_MAJOR 175
489 #define IPSD_CDEV_MAJOR 176
490