xref: /freebsd/sys/dev/ips/ips.h (revision 7660b554bc59a07be0431c17e0e33815818baa69)
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$
29  */
30 
31 
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/kernel.h>
35 #include <sys/bus.h>
36 #include <sys/conf.h>
37 #include <sys/types.h>
38 #include <sys/queue.h>
39 #include <sys/bio.h>
40 #include <sys/malloc.h>
41 #include <sys/mutex.h>
42 
43 #include <machine/bus_memio.h>
44 #include <machine/bus.h>
45 #include <sys/rman.h>
46 #include <machine/resource.h>
47 
48 #include <dev/pci/pcireg.h>
49 #include <dev/pci/pcivar.h>
50 
51 /*
52  *   IPS CONSTANTS
53  */
54 #define IPS_VENDOR_ID                   0x1014
55 #define IPS_MORPHEUS_DEVICE_ID          0x01BD
56 #define IPS_COPPERHEAD_DEVICE_ID        0x002E
57 #define IPS_CSL				0xff
58 #define IPS_POCL			0x30
59 
60 /* amounts of memory to allocate for certain commands */
61 #define IPS_ADAPTER_INFO_LEN		(sizeof(ips_adapter_info_t))
62 #define IPS_DRIVE_INFO_LEN		(sizeof(ips_drive_info_t))
63 #define IPS_COMMAND_LEN			24
64 #define IPS_MAX_SG_LEN			(sizeof(ips_sg_element_t) * IPS_MAX_SG_ELEMENTS)
65 #define IPS_NVRAM_PAGE_SIZE		128
66 /* various flags */
67 #define IPS_NOWAIT_FLAG			1
68 
69 /* states for the card to be in */
70 #define IPS_DEV_OPEN			0x01
71 #define IPS_TIMEOUT			0x02 /* command time out, need reset */
72 #define IPS_OFFLINE			0x04 /* can't reset card/card failure */
73 
74 /* max number of commands set to something low for now */
75 #define IPS_MAX_CMD_NUM			128
76 #define IPS_MAX_NUM_DRIVES		8
77 #define IPS_MAX_SG_ELEMENTS		32
78 #define IPS_MAX_IOBUF_SIZE		(64 * 1024)
79 #define IPS_BLKSIZE			512
80 
81 /* logical drive states */
82 
83 #define IPS_LD_OFFLINE               	0x02
84 #define IPS_LD_OKAY                  	0x03
85 #define IPS_LD_FREE                  	0x00
86 #define IPS_LD_SYS                   	0x06
87 #define IPS_LD_CRS                   	0x24
88 
89 /* register offsets */
90 #define MORPHEUS_REG_OMR0               0x0018 /* Outbound Msg. Reg. 0 */
91 #define MORPHEUS_REG_OMR1               0x001C /* Outbound Msg. Reg. 1 */
92 #define MORPHEUS_REG_IDR		0x0020 /* Inbound Doorbell Reg. */
93 #define MORPHEUS_REG_IISR               0x0024 /* Inbound IRQ Status Reg. */
94 #define MORPHEUS_REG_IIMR               0x0028 /* Inbound IRQ Mask Reg. */
95 #define MORPHEUS_REG_OISR               0x0030 /* Outbound IRQ Status Reg. */
96 #define MORPHEUS_REG_OIMR               0x0034 /* Outbound IRQ Status Reg. */
97 #define MORPHEUS_REG_IQPR               0x0040 /* Inbound Queue Port Reg. */
98 #define MORPHEUS_REG_OQPR               0x0044 /* Outbound Queue Port Reg. */
99 
100 #define COPPER_REG_SCPR			0x05	/* Subsystem Ctrl. Port Reg. */
101 #define COPPER_REG_ISPR			0x06	/* IRQ Status Port Reg. */
102 #define COPPER_REG_CBSP			0x07	/* ? Reg. */
103 #define COPPER_REG_HISR			0x08	/* Host IRQ Status Reg.    */
104 #define COPPER_REG_CCSAR		0x10	/* Cmd. Channel Sys Addr Reg.*/
105 #define COPPER_REG_CCCR			0x14	/* Cmd. Channel Ctrl. Reg. */
106 #define COPPER_REG_SQHR                	0x20    /* Status Queue Head Reg.  */
107 #define COPPER_REG_SQTR                	0x24    /* Status Queue Tail Reg.  */
108 #define COPPER_REG_SQER                	0x28    /* Status Queue End Reg.   */
109 #define COPPER_REG_SQSR                	0x2C    /* Status Queue Start Reg. */
110 
111 /* bit definitions */
112 #define MORPHEUS_BIT_POST1              0x01
113 #define MORPHEUS_BIT_POST2              0x02
114 #define MORPHEUS_BIT_CMD_IRQ		0x08
115 
116 #define COPPER_CMD_START		0x101A
117 #define COPPER_SEM_BIT			0x08
118 #define COPPER_EI_BIT			0x80
119 #define COPPER_EBM_BIT			0x02
120 #define COPPER_RESET_BIT		0x80
121 #define COPPER_GHI_BIT			0x04
122 #define COPPER_SCE_BIT			0x01
123 #define COPPER_OP_BIT			0x01
124 #define COPPER_ILE_BIT			0x10
125 
126 /* status defines */
127 #define IPS_POST1_OK                    0x8000
128 #define IPS_POST2_OK                    0x000f
129 
130 /* command op codes */
131 #define IPS_READ_CMD			0x02
132 #define IPS_WRITE_CMD			0x03
133 #define IPS_ADAPTER_INFO_CMD		0x05
134 #define IPS_CACHE_FLUSH_CMD		0x0A
135 #define IPS_REBUILD_STATUS_CMD		0x0C
136 #define IPS_ERROR_TABLE_CMD		0x17
137 #define IPS_DRIVE_INFO_CMD		0x19
138 #define IPS_SUBSYS_PARAM_CMD		0x40
139 #define IPS_CONFIG_SYNC_CMD		0x58
140 #define IPS_SG_READ_CMD			0x82
141 #define IPS_SG_WRITE_CMD		0x83
142 #define IPS_RW_NVRAM_CMD		0xBC
143 
144 /* error information returned by the adapter */
145 #define IPS_MIN_ERROR			0x02
146 #define IPS_ERROR_STATUS		0x13000200 /* ahh, magic numbers */
147 
148 #define IPS_OS_FREEBSD			10
149 #define IPS_VERSION_MAJOR		"0.90"
150 #define IPS_VERSION_MINOR		".00"
151 
152 /*
153  *  IPS MACROS
154  */
155 
156 #define ips_read_1(sc,offset)		bus_space_read_1(sc->bustag, sc->bushandle, offset)
157 #define ips_read_2(sc,offset) 		bus_space_read_2(sc->bustag, sc->bushandle, offset)
158 #define ips_read_4(sc,offset)		bus_space_read_4(sc->bustag, sc->bushandle, offset)
159 
160 #define ips_write_1(sc,offset,value)	bus_space_write_1(sc->bustag, sc->bushandle, offset, value)
161 #define ips_write_2(sc,offset,value) 	bus_space_write_2(sc->bustag, sc->bushandle, offset, value)
162 #define ips_write_4(sc,offset,value)	bus_space_write_4(sc->bustag, sc->bushandle, offset, value)
163 
164 /* this is ugly.  It zeros the end elements in an ips_command_t struct starting with the status element */
165 #define clear_ips_command(command)	bzero(&((command)->status), (unsigned long)(&(command)[1])-(unsigned long)&((command)->status))
166 
167 #define ips_read_request(iobuf)		((iobuf)->bio_cmd == BIO_READ)
168 
169 #define COMMAND_ERROR(status)		(((status)->fields.basic_status & 0x0f) >= IPS_MIN_ERROR)
170 
171 #ifndef IPS_DEBUG
172 #define DEVICE_PRINTF(x...)
173 #define PRINTF(x...)
174 #else
175 #define DEVICE_PRINTF(level,x...)	if(IPS_DEBUG >= level)device_printf(x)
176 #define PRINTF(level,x...)		if(IPS_DEBUG >= level)printf(x)
177 #endif
178 /*
179  *   IPS STRUCTS
180  */
181 
182 struct ips_softc;
183 
184 typedef struct{
185 	u_int8_t	command;
186 	u_int8_t	id;
187 	u_int8_t	drivenum;
188 	u_int8_t	reserve2;
189 	u_int32_t	lba;
190 	u_int32_t	buffaddr;
191 	u_int32_t	reserve3;
192 } __attribute__ ((packed)) ips_generic_cmd;
193 
194 typedef struct{
195 	u_int8_t	command;
196 	u_int8_t	id;
197 	u_int8_t	drivenum;
198 	u_int8_t	segnum;
199 	u_int32_t	lba;
200 	u_int32_t	buffaddr;
201 	u_int16_t	length;
202 	u_int16_t	reserve1;
203 } __attribute__ ((packed)) ips_io_cmd;
204 
205 typedef struct{
206 	u_int8_t	command;
207 	u_int8_t	id;
208 	u_int8_t	pagenum;
209 	u_int8_t	rw;
210 	u_int32_t	reserve1;
211 	u_int32_t	buffaddr;
212 	u_int32_t	reserve3;
213 } __attribute__ ((packed)) ips_rw_nvram_cmd;
214 
215 typedef struct{
216 	u_int8_t	command;
217 	u_int8_t	id;
218 	u_int8_t	drivenum;
219 	u_int8_t	reserve1;
220 	u_int32_t	reserve2;
221 	u_int32_t	buffaddr;
222 	u_int32_t	reserve3;
223 } __attribute__ ((packed)) ips_drive_cmd;
224 
225 typedef struct{
226 	u_int8_t	command;
227 	u_int8_t	id;
228 	u_int8_t	reserve1;
229 	u_int8_t	commandtype;
230 	u_int32_t	reserve2;
231 	u_int32_t	buffaddr;
232 	u_int32_t	reserve3;
233 } __attribute__((packed)) ips_adapter_info_cmd;
234 
235 typedef union{
236 	ips_generic_cmd		generic_cmd;
237 	ips_drive_cmd 		drive_cmd;
238 	ips_adapter_info_cmd 	adapter_info_cmd;
239 } ips_cmd_buff_t;
240 
241 typedef struct {
242    u_int32_t  signature;
243    u_int8_t   reserved;
244    u_int8_t   adapter_slot;
245    u_int16_t  adapter_type;
246    u_int8_t   bios_high[4];
247    u_int8_t   bios_low[4];
248    u_int16_t  reserve2;
249    u_int8_t   reserve3;
250    u_int8_t   operating_system;
251    u_int8_t   driver_high[4];
252    u_int8_t   driver_low[4];
253    u_int8_t   reserve4[100];
254 }__attribute__((packed)) ips_nvram_page5;
255 
256 typedef struct{
257 	u_int32_t	addr;
258 	u_int32_t	len;
259 } ips_sg_element_t;
260 
261 typedef struct{
262 	u_int8_t	drivenum;
263 	u_int8_t	merge_id;
264 	u_int8_t	raid_lvl;
265 	u_int8_t	state;
266 	u_int32_t	sector_count;
267 } __attribute__((packed)) ips_drive_t;
268 
269 typedef struct{
270 	u_int8_t	drivecount;
271 	u_int8_t	reserve1;
272 	u_int16_t	reserve2;
273 	ips_drive_t drives[IPS_MAX_NUM_DRIVES];
274 }__attribute__((packed)) ips_drive_info_t;
275 
276 typedef struct{
277 	u_int8_t	drivecount;
278 	u_int8_t	miscflags;
279 	u_int8_t	SLTflags;
280 	u_int8_t	BSTflags;
281 	u_int8_t	pwr_chg_count;
282 	u_int8_t	wrong_addr_count;
283 	u_int8_t	unident_count;
284 	u_int8_t	nvram_dev_chg_count;
285 	u_int8_t	codeblock_version[8];
286 	u_int8_t	bootblock_version[8];
287 	u_int32_t	drive_sector_count[IPS_MAX_NUM_DRIVES];
288 	u_int8_t	max_concurrent_cmds;
289 	u_int8_t	max_phys_devices;
290 	u_int16_t	flash_prog_count;
291 	u_int8_t	defunct_disks;
292 	u_int8_t	rebuildflags;
293 	u_int8_t	offline_drivecount;
294 	u_int8_t	critical_drivecount;
295 	u_int16_t	config_update_count;
296 	u_int8_t	blockedflags;
297 	u_int8_t	psdn_error;
298 	u_int16_t	addr_dead_disk[4*16];/* ugly, max # channels * max # scsi devices per channel */
299 }__attribute__((packed)) ips_adapter_info_t;
300 
301 typedef struct {
302 	u_int32_t 	status[IPS_MAX_CMD_NUM];
303 	u_int32_t 	base_phys_addr;
304 	int 		nextstatus;
305 	bus_dma_tag_t	dmatag;
306 	bus_dmamap_t	dmamap;
307 } ips_copper_queue_t;
308 
309 typedef union {
310    struct {
311       u_int8_t  reserved;
312       u_int8_t  command_id;
313       u_int8_t  basic_status;
314       u_int8_t  extended_status;
315    } fields;
316    volatile u_int32_t    value;
317 } ips_cmd_status_t;
318 
319 /* used to keep track of current commands to the card */
320 typedef struct ips_command{
321 	u_int8_t		command_number;
322 	u_int8_t 		id;
323 	u_int8_t		timeout;
324 	struct ips_softc *	sc;
325 	bus_dmamap_t		command_dmamap;
326 	void *			command_buffer;
327 	u_int32_t		command_phys_addr;/*WARNING! must be changed if 64bit addressing ever used*/
328 	ips_cmd_status_t	status;
329 	SLIST_ENTRY(ips_command)	next;
330 	bus_dma_tag_t		data_dmatag;
331 	bus_dmamap_t		data_dmamap;
332 	void *			data_buffer;
333 	void * 			arg;
334 	void			(* callback)(struct ips_command *command);
335 }ips_command_t;
336 
337 typedef struct ips_wait_list{
338 	STAILQ_ENTRY(ips_wait_list) next;
339 	void 			*data;
340 	int			(* callback)(ips_command_t *command);
341 }ips_wait_list_t;
342 
343 typedef struct ips_softc{
344         struct resource *       iores;
345         struct resource *       irqres;
346         struct intr_config_hook ips_ich;
347         int                     configured;
348         int                     state;
349         int                     iotype;
350         int                     rid;
351         int                     irqrid;
352         void *                  irqcookie;
353         bus_space_tag_t	        bustag;
354 	bus_space_handle_t      bushandle;
355 	bus_dma_tag_t	        adapter_dmatag;
356 	bus_dma_tag_t		command_dmatag;
357 	bus_dma_tag_t		sg_dmatag;
358         device_t                dev;
359         dev_t                   device_file;
360 	struct callout_handle	timer;
361 	ips_adapter_info_t	adapter_info;
362 	device_t		diskdev[IPS_MAX_NUM_DRIVES];
363 	ips_drive_t		drives[IPS_MAX_NUM_DRIVES];
364 	u_int8_t		drivecount;
365 	u_int8_t		next_drive;
366 	u_int8_t		max_cmds;
367 	volatile u_int8_t	used_commands;
368 	ips_command_t		commandarray[IPS_MAX_CMD_NUM];
369 	SLIST_HEAD(command_list, ips_command) free_cmd_list;
370 	STAILQ_HEAD(command_wait_list,ips_wait_list)  cmd_wait_list;
371 	int			(* ips_adapter_reinit)(struct ips_softc *sc,
372 						       int force);
373         void                    (* ips_adapter_intr)(void *sc);
374 	void			(* ips_issue_cmd)(ips_command_t *command);
375 	ips_copper_queue_t *	copper_queue;
376 	struct mtx		cmd_mtx;
377 }ips_softc_t;
378 
379 /* function defines from ips_ioctl.c */
380 extern int ips_ioctl_request(ips_softc_t *sc, u_long ioctl_cmd, caddr_t addr,
381 				int32_t flags);
382 /* function defines from ips_disk.c */
383 extern void ipsd_finish(struct bio *iobuf);
384 
385 /* function defines from ips_commands.c */
386 extern int ips_flush_cache(ips_softc_t *sc);
387 extern void ips_start_io_request(ips_softc_t *sc, struct bio *iobuf);
388 extern int ips_get_drive_info(ips_softc_t *sc);
389 extern int ips_get_adapter_info(ips_softc_t *sc);
390 extern int ips_update_nvram(ips_softc_t *sc);
391 extern int ips_clear_adapter(ips_softc_t *sc);
392 
393 /* function defines from ips.c */
394 extern int ips_get_free_cmd(ips_softc_t *sc, int (*callback)(ips_command_t *),
395 				void *data, unsigned long flags);
396 extern void ips_insert_free_cmd(ips_softc_t *sc, ips_command_t *command);
397 extern int ips_adapter_init(ips_softc_t *sc);
398 extern int ips_morpheus_reinit(ips_softc_t *sc, int force);
399 extern int ips_adapter_free(ips_softc_t *sc);
400 extern void ips_morpheus_intr(void *sc);
401 extern void ips_issue_morpheus_cmd(ips_command_t *command);
402 extern int ips_copperhead_reinit(ips_softc_t *sc, int force);
403 extern void ips_copperhead_intr(void *sc);
404 extern void ips_issue_copperhead_cmd(ips_command_t *command);
405 
406