Home | History | Annotate | Line # | Download | only in pci
twavar.h revision 1.3.4.1
      1  1.3.4.1   gdamore /*	$NetBSD: twavar.h,v 1.3.4.1 2006/07/13 17:49:29 gdamore Exp $ */
      2      1.2  wrstuden /*	$wasabi: twavar.h,v 1.12 2006/05/01 15:16:59 simonb Exp $	*/
      3      1.1  wrstuden 
      4      1.1  wrstuden /*-
      5      1.1  wrstuden  * Copyright (c) 2003-04 3ware, Inc.
      6      1.1  wrstuden  * Copyright (c) 2000 Michael Smith
      7      1.1  wrstuden  * Copyright (c) 2000 BSDi
      8      1.1  wrstuden  * All rights reserved.
      9      1.1  wrstuden  *
     10      1.1  wrstuden  * Redistribution and use in source and binary forms, with or without
     11      1.1  wrstuden  * modification, are permitted provided that the following conditions
     12      1.1  wrstuden  * are met:
     13      1.1  wrstuden  * 1. Redistributions of source code must retain the above copyright
     14      1.1  wrstuden  *    notice, this list of conditions and the following disclaimer.
     15      1.1  wrstuden  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1  wrstuden  *    notice, this list of conditions and the following disclaimer in the
     17      1.1  wrstuden  *    documentation and/or other materials provided with the distribution.
     18      1.1  wrstuden  *
     19      1.1  wrstuden  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     20      1.1  wrstuden  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21      1.1  wrstuden  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22      1.1  wrstuden  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     23      1.1  wrstuden  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24      1.1  wrstuden  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25      1.1  wrstuden  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26      1.1  wrstuden  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27      1.1  wrstuden  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28      1.1  wrstuden  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29      1.1  wrstuden  * SUCH DAMAGE.
     30      1.1  wrstuden  *
     31      1.1  wrstuden  *	$FreeBSD: src/sys/dev/twa/twa.h,v 1.4 2004/06/16 09:47:00 phk Exp $
     32      1.1  wrstuden  */
     33      1.1  wrstuden 
     34      1.1  wrstuden /*
     35      1.1  wrstuden  * 3ware driver for 9000 series storage controllers.
     36      1.1  wrstuden  *
     37      1.1  wrstuden  * Author: Vinod Kashyap
     38      1.1  wrstuden  */
     39      1.1  wrstuden #ifndef _PCI_TWAVAR_H_
     40      1.1  wrstuden #define	_PCI_TWAVAR_H_
     41      1.1  wrstuden 
     42      1.1  wrstuden #include "locators.h"
     43      1.1  wrstuden 
     44      1.1  wrstuden struct twa_callbacks {
     45      1.1  wrstuden 	void	(*tcb_openings)(struct device *, int);
     46      1.1  wrstuden };
     47      1.1  wrstuden 
     48      1.1  wrstuden struct twa_drive {
     49      1.1  wrstuden 	uint32_t	td_id;
     50      1.1  wrstuden 	uint64_t	td_size;
     51      1.1  wrstuden 	struct device	*td_dev;
     52      1.1  wrstuden 	const struct twa_callbacks *td_callbacks;
     53      1.1  wrstuden };
     54      1.1  wrstuden 
     55      1.1  wrstuden /* Per-controller structure. */
     56      1.1  wrstuden struct twa_softc {
     57      1.1  wrstuden 	struct device		twa_dv;
     58      1.1  wrstuden 	bus_space_tag_t		twa_bus_iot;	/* bus space tag */
     59      1.1  wrstuden 	bus_space_handle_t	twa_bus_ioh;	/* bus space handle */
     60      1.1  wrstuden 	bus_dma_tag_t		twa_dma_tag;	/* data buffer DMA tag */
     61      1.1  wrstuden 	bus_dmamap_t		twa_cmd_map;	/* DMA map for the array of cmd pkts */
     62      1.1  wrstuden 	void			*twa_ih;	/* interrupt handle cookie */
     63      1.1  wrstuden 	caddr_t			twa_cmds;
     64      1.1  wrstuden 	bus_addr_t		twa_cmd_pkt_phys;/* phys addr of first of array of cmd pkts */
     65      1.1  wrstuden 
     66      1.1  wrstuden 	pci_chipset_tag_t 	pc;
     67      1.1  wrstuden 	pcitag_t		tag;
     68      1.1  wrstuden 	/* Request queues and arrays. */
     69      1.1  wrstuden 	TAILQ_HEAD(, twa_request) twa_free;	/* free request packets */
     70      1.1  wrstuden 	TAILQ_HEAD(, twa_request) twa_busy;	/* requests busy in the controller */
     71      1.1  wrstuden 	TAILQ_HEAD(, twa_request) twa_pending;	/* internal requests pending */
     72      1.1  wrstuden 
     73      1.1  wrstuden 	struct twa_request	*twa_lookup[TWA_Q_LENGTH];/* requests indexed by request_id */
     74      1.1  wrstuden 
     75      1.1  wrstuden 	struct twa_request	*twa_req_buf;
     76      1.1  wrstuden 	struct twa_command_packet *twa_cmd_pkt_buf;
     77      1.1  wrstuden 
     78      1.1  wrstuden 	struct twa_drive	sc_units[TWA_MAX_UNITS];
     79      1.1  wrstuden 	/* AEN handler fields. */
     80      1.1  wrstuden 	struct tw_cl_event_packet *twa_aen_queue[TWA_Q_LENGTH];/* circular queue of AENs from firmware */
     81      1.1  wrstuden 	uint16_t		working_srl;	/* driver & firmware negotiated srl */
     82      1.1  wrstuden 	uint16_t		working_branch;	/* branch # of the firmware that the driver is compatible with */
     83      1.1  wrstuden 	uint16_t		working_build;	/* build # of the firmware that the driver is compatible with */
     84  1.3.4.1   gdamore 	uint32_t		twa_operating_mode; /* base mode/current mode */
     85  1.3.4.1   gdamore 	uint32_t		twa_aen_head;	/* AEN queue head */
     86  1.3.4.1   gdamore 	uint32_t		twa_aen_tail;	/* AEN queue tail */
     87  1.3.4.1   gdamore 	uint32_t		twa_current_sequence_id;/* index of the last event + 1 */
     88  1.3.4.1   gdamore 	uint32_t		twa_aen_queue_overflow;	/* indicates if unretrieved events were overwritten */
     89  1.3.4.1   gdamore 	uint32_t		twa_aen_queue_wrapped;	/* indicates if AEN queue ever wrapped */
     90      1.1  wrstuden 	/* Controller state. */
     91  1.3.4.1   gdamore 	uint32_t		twa_state;
     92  1.3.4.1   gdamore 	uint32_t		twa_sc_flags;
     93      1.1  wrstuden #ifdef TWA_DEBUG
     94      1.1  wrstuden 	struct twa_q_statistics	twa_qstats[TWAQ_COUNT];	/* queue statistics */
     95      1.1  wrstuden #endif /* TWA_DEBUG */
     96      1.1  wrstuden 
     97      1.1  wrstuden 	struct _twa_ioctl_lock{
     98  1.3.4.1   gdamore 		uint32_t	lock;		/* lock state */
     99  1.3.4.1   gdamore 		uint32_t	timeout;	/* time at which the lock
    100      1.1  wrstuden 						 * will become available,
    101      1.1  wrstuden 						 * even if not released
    102      1.1  wrstuden 						 */
    103      1.1  wrstuden 	} twa_ioctl_lock;			/* lock for use by user
    104      1.1  wrstuden 						 * applications,
    105      1.1  wrstuden 						 * for synchronization between
    106      1.1  wrstuden 						 * ioctl calls
    107      1.1  wrstuden 						 */
    108      1.1  wrstuden 	int			sc_openings;
    109      1.1  wrstuden 	int			sc_nunits;
    110      1.1  wrstuden 
    111      1.1  wrstuden 	struct twa_request      *sc_twa_request;
    112      1.1  wrstuden };
    113      1.1  wrstuden 
    114      1.1  wrstuden 
    115      1.1  wrstuden 
    116      1.1  wrstuden /* Possible values of tr->tr_status. */
    117      1.1  wrstuden #define TWA_CMD_SETUP		0x0	/* being assembled */
    118      1.1  wrstuden #define TWA_CMD_BUSY		0x1	/* submitted to controller */
    119      1.1  wrstuden #define TWA_CMD_PENDING		0x2	/* in pending queue */
    120      1.1  wrstuden #define TWA_CMD_COMPLETE	0x3	/* completed by controller */
    121      1.1  wrstuden 
    122      1.1  wrstuden /* Possible values of tr->tr_flags. */
    123      1.1  wrstuden #define TWA_CMD_DATA_IN			(1 << 0)
    124      1.1  wrstuden #define TWA_CMD_DATA_OUT		(1 << 1)
    125      1.1  wrstuden #define TWA_CMD_DATA_COPY_NEEDED	(1 << 2)
    126      1.1  wrstuden #define TWA_CMD_SLEEP_ON_REQUEST	(1 << 3)
    127      1.1  wrstuden #define TWA_CMD_IN_PROGRESS		(1 << 4)
    128      1.1  wrstuden #define TWA_CMD_AEN			(1 << 5)
    129      1.1  wrstuden #define TWA_CMD_AEN_BUSY		(1 << 6)
    130      1.1  wrstuden 
    131      1.1  wrstuden /* Possible values of tr->tr_cmd_pkt_type. */
    132      1.1  wrstuden #define TWA_CMD_PKT_TYPE_7K		(1<<0)
    133      1.1  wrstuden #define TWA_CMD_PKT_TYPE_9K		(1<<1)
    134      1.1  wrstuden #define TWA_CMD_PKT_TYPE_INTERNAL	(1<<2)
    135      1.1  wrstuden #define TWA_CMD_PKT_TYPE_IOCTL		(1<<3)
    136      1.1  wrstuden #define TWA_CMD_PKT_TYPE_EXTERNAL	(1<<4)
    137      1.1  wrstuden 
    138      1.1  wrstuden /* Possible values of sc->twa_state. */
    139      1.1  wrstuden #define TWA_STATE_INTR_ENABLED		(1<<0)	/* interrupts have been enabled */
    140      1.1  wrstuden #define TWA_STATE_SHUTDOWN		(1<<1)	/* controller is shut down */
    141      1.1  wrstuden #define TWA_STATE_OPEN			(1<<2)	/* control device is open */
    142      1.1  wrstuden #define TWA_STATE_SIMQ_FROZEN		(1<<3)	/* simq frozen */
    143      1.1  wrstuden #define TWA_STATE_REQUEST_WAIT		(1<<4)
    144      1.1  wrstuden 
    145      1.1  wrstuden /* Possible values of sc->twa_ioctl_lock.lock. */
    146      1.1  wrstuden #define TWA_LOCK_FREE		0x0	/* lock is free */
    147      1.1  wrstuden #define TWA_LOCK_HELD		0x1	/* lock is held */
    148      1.1  wrstuden 
    149      1.1  wrstuden /* Driver's request packet. */
    150      1.1  wrstuden struct twa_request {
    151      1.1  wrstuden 	struct twa_command_packet *tr_command;
    152      1.1  wrstuden 	/* ptr to cmd pkt submitted to controller */
    153  1.3.4.1   gdamore 	uint32_t		tr_request_id;
    154      1.1  wrstuden 	/* request id for tracking with firmware */
    155      1.1  wrstuden 	void			*tr_data;
    156      1.1  wrstuden 	/* ptr to data being passed to firmware */
    157      1.1  wrstuden 	size_t			tr_length;
    158      1.1  wrstuden 	/* length of buffer being passed to firmware */
    159      1.1  wrstuden 	void			*tr_real_data;
    160      1.1  wrstuden 	/* ptr to, and length of data passed */
    161      1.1  wrstuden 	size_t			tr_real_length;
    162      1.1  wrstuden 	/* to us from above, in case a buffer copy
    163      1.1  wrstuden 	 * was done due to non-compliance to
    164      1.1  wrstuden 	 * alignment requirements
    165      1.1  wrstuden 	 */
    166      1.1  wrstuden 	TAILQ_ENTRY(twa_request) tr_link;
    167      1.1  wrstuden 	/* to link this request in a list */
    168      1.1  wrstuden 	struct twa_softc	*tr_sc;
    169      1.1  wrstuden 	/* controller that owns us */
    170  1.3.4.1   gdamore 	uint32_t		tr_status;
    171      1.1  wrstuden 	/* command status */
    172  1.3.4.1   gdamore 	uint32_t		tr_flags;
    173      1.1  wrstuden 	/* request flags */
    174  1.3.4.1   gdamore 	uint32_t		tr_error;
    175      1.1  wrstuden 	/* error encountered before request submission */
    176  1.3.4.1   gdamore 	uint32_t		tr_cmd_pkt_type;
    177      1.1  wrstuden 	/* request specific data to use during callback */
    178      1.1  wrstuden 	void			(*tr_callback)(struct twa_request *tr);
    179      1.1  wrstuden 	/* callback handler */
    180      1.1  wrstuden 	bus_addr_t		tr_cmd_phys;
    181      1.1  wrstuden 	/* physical address of command in controller space */
    182      1.1  wrstuden 	bus_dmamap_t		tr_dma_map;
    183      1.1  wrstuden 	/* DMA map for data */
    184      1.1  wrstuden 	struct buf		*bp;
    185      1.1  wrstuden 
    186      1.1  wrstuden 	struct ld_twa_softc	*tr_ld_sc;
    187      1.1  wrstuden };
    188      1.1  wrstuden 
    189      1.2  wrstuden static __inline size_t twa_get_maxsegs(void) {
    190      1.1  wrstuden 	size_t max_segs = ((MAXPHYS + PAGE_SIZE - 1) / PAGE_SIZE) + 1;
    191      1.1  wrstuden #ifdef TWA_SG_SIZE
    192      1.1  wrstuden 	if (TWA_MAX_SG_ELEMENTS < max_segs)
    193      1.1  wrstuden 	    max_segs = TWA_MAX_SG_ELEMENTS;
    194      1.1  wrstuden #endif
    195      1.1  wrstuden 	return max_segs;
    196      1.1  wrstuden }
    197      1.1  wrstuden 
    198      1.2  wrstuden static __inline size_t twa_get_maxxfer(size_t maxsegs) {
    199      1.1  wrstuden 	return (maxsegs - 1) * PAGE_SIZE;
    200      1.1  wrstuden }
    201      1.1  wrstuden 
    202      1.1  wrstuden struct twa_attach_args {
    203      1.1  wrstuden 	int	twaa_unit;
    204      1.1  wrstuden };
    205      1.1  wrstuden 
    206      1.1  wrstuden #define twaacf_unit	cf_loc[TWACF_UNIT]
    207      1.1  wrstuden 
    208      1.1  wrstuden struct twa_request *twa_get_request(struct twa_softc *, int);
    209      1.1  wrstuden struct twa_request *twa_get_request_wait(struct twa_softc *, int);
    210      1.1  wrstuden int twa_map_request(struct twa_request *);
    211      1.1  wrstuden void	twa_register_callbacks(struct twa_softc *sc, int unit,
    212      1.1  wrstuden 		const struct twa_callbacks *);
    213      1.1  wrstuden void	twa_request_wait_handler(struct twa_request *);
    214      1.1  wrstuden void	twa_release_request(struct twa_request *);
    215      1.1  wrstuden 
    216      1.1  wrstuden /* Error/AEN message structure. */
    217      1.1  wrstuden struct twa_message {
    218  1.3.4.1   gdamore 	uint32_t	code;
    219      1.1  wrstuden 	const char	*message;
    220      1.1  wrstuden };
    221      1.1  wrstuden 
    222      1.1  wrstuden #endif	/* !_PCI_TWAVAR_H_ */
    223