135863739SMike Smith /*-
2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
3718cf2ccSPedro F. Giffuni *
435863739SMike Smith * Copyright (c) 2000 Michael Smith
5c6eafcf2SScott Long * Copyright (c) 2001 Scott Long
635863739SMike Smith * Copyright (c) 2000 BSDi
7c6eafcf2SScott Long * Copyright (c) 2001 Adaptec, Inc.
835863739SMike Smith * All rights reserved.
935863739SMike Smith *
1035863739SMike Smith * Redistribution and use in source and binary forms, with or without
1135863739SMike Smith * modification, are permitted provided that the following conditions
1235863739SMike Smith * are met:
1335863739SMike Smith * 1. Redistributions of source code must retain the above copyright
1435863739SMike Smith * notice, this list of conditions and the following disclaimer.
1535863739SMike Smith * 2. Redistributions in binary form must reproduce the above copyright
1635863739SMike Smith * notice, this list of conditions and the following disclaimer in the
1735863739SMike Smith * documentation and/or other materials provided with the distribution.
1835863739SMike Smith *
1935863739SMike Smith * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2035863739SMike Smith * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2135863739SMike Smith * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2235863739SMike Smith * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2335863739SMike Smith * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2435863739SMike Smith * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2535863739SMike Smith * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2635863739SMike Smith * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2735863739SMike Smith * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2835863739SMike Smith * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2935863739SMike Smith * SUCH DAMAGE.
3035863739SMike Smith */
3135863739SMike Smith
329e2e96d8SScott Long #include <sys/bio.h>
33ff0991c4SAttilio Rao #include <sys/callout.h>
349e2e96d8SScott Long #include <sys/lock.h>
359e2e96d8SScott Long #include <sys/mutex.h>
369e2e96d8SScott Long #include <sys/selinfo.h>
37da4882c2SMarius Strobl #include <sys/sysctl.h>
38da4882c2SMarius Strobl #include <sys/taskqueue.h>
39891619a6SPoul-Henning Kamp #include <geom/geom_disk.h>
40891619a6SPoul-Henning Kamp
41da4882c2SMarius Strobl SYSCTL_DECL(_hw_aac);
42da4882c2SMarius Strobl
438e7e6335SEd Maste #define AAC_TYPE_DEVO 1
448e7e6335SEd Maste #define AAC_TYPE_ALPHA 2
458e7e6335SEd Maste #define AAC_TYPE_BETA 3
468e7e6335SEd Maste #define AAC_TYPE_RELEASE 4
478e7e6335SEd Maste
488e7e6335SEd Maste #define AAC_DRIVER_MAJOR_VERSION 2
498e7e6335SEd Maste #define AAC_DRIVER_MINOR_VERSION 1
508e7e6335SEd Maste #define AAC_DRIVER_BUGFIX_LEVEL 9
518e7e6335SEd Maste #define AAC_DRIVER_TYPE AAC_TYPE_RELEASE
528e7e6335SEd Maste
537cb209f5SScott Long #ifndef AAC_DRIVER_BUILD
547cb209f5SScott Long # define AAC_DRIVER_BUILD 1
557cb209f5SScott Long #endif
569e2e96d8SScott Long
57914da7d0SScott Long /*
58914da7d0SScott Long * Driver Parameter Definitions
59914da7d0SScott Long */
6035863739SMike Smith
6135863739SMike Smith /*
6235863739SMike Smith * The firmware interface allows for a 16-bit s/g list length. We limit
6335863739SMike Smith * ourselves to a reasonable maximum and ensure alignment.
6435863739SMike Smith */
6535863739SMike Smith #define AAC_MAXSGENTRIES 64 /* max S/G entries, limit 65535 */
6635863739SMike Smith
6735863739SMike Smith /*
6835863739SMike Smith * We allocate a small set of FIBs for the adapter to use to send us messages.
6935863739SMike Smith */
7035863739SMike Smith #define AAC_ADAPTER_FIBS 8
7135863739SMike Smith
7235863739SMike Smith /*
73c6eafcf2SScott Long * The controller reports status events in AIFs. We hang on to a number of
74c6eafcf2SScott Long * these in order to pass them out to user-space management tools.
7535863739SMike Smith */
7635863739SMike Smith #define AAC_AIFQ_LENGTH 64
7735863739SMike Smith
7835863739SMike Smith /*
7935863739SMike Smith * Firmware messages are passed in the printf buffer.
8035863739SMike Smith */
8135863739SMike Smith #define AAC_PRINTF_BUFSIZE 256
8235863739SMike Smith
8335863739SMike Smith /*
84c6eafcf2SScott Long * We wait this many seconds for the adapter to come ready if it is still
85c6eafcf2SScott Long * booting
8635863739SMike Smith */
8735863739SMike Smith #define AAC_BOOT_TIMEOUT (3 * 60)
8835863739SMike Smith
8935863739SMike Smith /*
9035863739SMike Smith * Timeout for immediate commands.
9135863739SMike Smith */
920b94a66eSMike Smith #define AAC_IMMEDIATE_TIMEOUT 30 /* seconds */
930b94a66eSMike Smith
940b94a66eSMike Smith /*
950b94a66eSMike Smith * Timeout for normal commands
960b94a66eSMike Smith */
974a42b061SEd Maste #define AAC_CMD_TIMEOUT 120 /* seconds */
980b94a66eSMike Smith
990b94a66eSMike Smith /*
1000b94a66eSMike Smith * Rate at which we periodically check for timed out commands and kick the
1010b94a66eSMike Smith * controller.
1020b94a66eSMike Smith */
10336e0bf6eSScott Long #define AAC_PERIODIC_INTERVAL 20 /* seconds */
10435863739SMike Smith
10535863739SMike Smith /*
10635863739SMike Smith * Per-container data structure
10735863739SMike Smith */
10835863739SMike Smith struct aac_container
10935863739SMike Smith {
11035863739SMike Smith struct aac_mntobj co_mntobj;
11135863739SMike Smith device_t co_disk;
11236e0bf6eSScott Long int co_found;
11336e0bf6eSScott Long TAILQ_ENTRY(aac_container) co_link;
11435863739SMike Smith };
11535863739SMike Smith
11635863739SMike Smith /*
11770545d1aSScott Long * Per-SIM data structure
11870545d1aSScott Long */
119851f59d7SEd Maste struct aac_cam;
12070545d1aSScott Long struct aac_sim
12170545d1aSScott Long {
12270545d1aSScott Long device_t sim_dev;
12370545d1aSScott Long int TargetsPerBus;
12470545d1aSScott Long int BusNumber;
12570545d1aSScott Long int InitiatorBusId;
12670545d1aSScott Long struct aac_softc *aac_sc;
127851f59d7SEd Maste struct aac_cam *aac_cam;
12870545d1aSScott Long TAILQ_ENTRY(aac_sim) sim_link;
12970545d1aSScott Long };
13070545d1aSScott Long
13170545d1aSScott Long /*
13235863739SMike Smith * Per-disk structure
13335863739SMike Smith */
13435863739SMike Smith struct aac_disk
13535863739SMike Smith {
13635863739SMike Smith device_t ad_dev;
13735863739SMike Smith struct aac_softc *ad_controller;
13835863739SMike Smith struct aac_container *ad_container;
1390b7ed341SPoul-Henning Kamp struct disk *ad_disk;
14035863739SMike Smith int ad_flags;
14135863739SMike Smith #define AAC_DISK_OPEN (1<<0)
14235863739SMike Smith int ad_cylinders;
14335863739SMike Smith int ad_heads;
14435863739SMike Smith int ad_sectors;
145523da39bSEd Maste u_int64_t ad_size;
14636e0bf6eSScott Long int unit;
14735863739SMike Smith };
14835863739SMike Smith
14935863739SMike Smith /*
15035863739SMike Smith * Per-command control structure.
15135863739SMike Smith */
15235863739SMike Smith struct aac_command
15335863739SMike Smith {
15435863739SMike Smith TAILQ_ENTRY(aac_command) cm_link; /* list linkage */
15535863739SMike Smith
15635863739SMike Smith struct aac_softc *cm_sc; /* controller that owns us */
15735863739SMike Smith
158c6eafcf2SScott Long struct aac_fib *cm_fib; /* FIB associated with this
159c6eafcf2SScott Long * command */
1607cb209f5SScott Long u_int64_t cm_fibphys; /* bus address of the FIB */
1615ba8a38eSMarius Strobl void *cm_data; /* pointer to data in kernel
162c6eafcf2SScott Long * space */
16335863739SMike Smith u_int32_t cm_datalen; /* data length */
16435863739SMike Smith bus_dmamap_t cm_datamap; /* DMA map for bio data */
165c6eafcf2SScott Long struct aac_sg_table *cm_sgtable; /* pointer to s/g table in
166c6eafcf2SScott Long * command */
1675ba8a38eSMarius Strobl u_int cm_flags;
168c6eafcf2SScott Long #define AAC_CMD_MAPPED (1<<0) /* command has had its data
169c6eafcf2SScott Long * mapped */
170c6eafcf2SScott Long #define AAC_CMD_DATAIN (1<<1) /* command involves data moving
171c6eafcf2SScott Long * from controller to host */
172c6eafcf2SScott Long #define AAC_CMD_DATAOUT (1<<2) /* command involves data moving
173c6eafcf2SScott Long * from host to controller */
17435863739SMike Smith #define AAC_CMD_COMPLETED (1<<3) /* command has been completed */
1750b94a66eSMike Smith #define AAC_CMD_TIMEDOUT (1<<4) /* command taken too long */
176f6c4dd3fSScott Long #define AAC_ON_AACQ_FREE (1<<5)
177f6c4dd3fSScott Long #define AAC_ON_AACQ_READY (1<<6)
178f6c4dd3fSScott Long #define AAC_ON_AACQ_BUSY (1<<7)
1797cb209f5SScott Long #define AAC_ON_AACQ_AIF (1<<8)
1807cb209f5SScott Long #define AAC_ON_AACQ_NORM (1<<10)
1817cb209f5SScott Long #define AAC_ON_AACQ_MASK ((1<<5)|(1<<6)|(1<<7)|(1<<8)|(1<<10))
182cd481291SScott Long #define AAC_QUEUE_FRZN (1<<9) /* Freeze the processing of
183cd481291SScott Long * commands on the queue. */
1848fce673cSMarius Strobl #define AAC_REQ_BIO (1 << 11)
1858fce673cSMarius Strobl #define AAC_REQ_CCB (1 << 12)
18635863739SMike Smith
18735863739SMike Smith void (*cm_complete)(struct aac_command *cm);
18835863739SMike Smith void *cm_private;
1890b94a66eSMike Smith time_t cm_timestamp; /* command creation time */
19036e0bf6eSScott Long int cm_queue;
191cb0d64b9SScott Long int cm_index;
19235863739SMike Smith };
19335863739SMike Smith
194ffb37f33SScott Long struct aac_fibmap {
195ffb37f33SScott Long TAILQ_ENTRY(aac_fibmap) fm_link; /* list linkage */
196ffb37f33SScott Long struct aac_fib *aac_fibs;
197ffb37f33SScott Long bus_dmamap_t aac_fibmap;
198ffb37f33SScott Long struct aac_command *aac_commands;
199ffb37f33SScott Long };
200ffb37f33SScott Long
20135863739SMike Smith /*
20235863739SMike Smith * We gather a number of adapter-visible items into a single structure.
20335863739SMike Smith *
20435863739SMike Smith * The ordering of this strucure may be important; we copy the Linux driver:
20535863739SMike Smith *
20635863739SMike Smith * Adapter FIBs
20735863739SMike Smith * Init struct
20835863739SMike Smith * Queue headers (Comm Area)
20935863739SMike Smith * Printf buffer
21035863739SMike Smith *
21135863739SMike Smith * In addition, we add:
21235863739SMike Smith * Sync Fib
21335863739SMike Smith */
21435863739SMike Smith struct aac_common {
21535863739SMike Smith /* fibs for the controller to send us messages */
21635863739SMike Smith struct aac_fib ac_fibs[AAC_ADAPTER_FIBS];
21735863739SMike Smith
21835863739SMike Smith /* the init structure */
21935863739SMike Smith struct aac_adapter_init ac_init;
22035863739SMike Smith
22135863739SMike Smith /* arena within which the queue structures are kept */
222c6eafcf2SScott Long u_int8_t ac_qbuf[sizeof(struct aac_queue_table) +
223c6eafcf2SScott Long AAC_QUEUE_ALIGN];
22435863739SMike Smith
22535863739SMike Smith /* buffer for text messages from the controller */
22635863739SMike Smith char ac_printf[AAC_PRINTF_BUFSIZE];
22735863739SMike Smith
22835863739SMike Smith /* fib for synchronous commands */
22935863739SMike Smith struct aac_fib ac_sync_fib;
23035863739SMike Smith };
23135863739SMike Smith
23235863739SMike Smith /*
23335863739SMike Smith * Interface operations
23435863739SMike Smith */
23535863739SMike Smith struct aac_interface
23635863739SMike Smith {
23735863739SMike Smith int (*aif_get_fwstatus)(struct aac_softc *sc);
23835863739SMike Smith void (*aif_qnotify)(struct aac_softc *sc, int qbit);
23935863739SMike Smith int (*aif_get_istatus)(struct aac_softc *sc);
240b3457b51SScott Long void (*aif_clr_istatus)(struct aac_softc *sc, int mask);
24135863739SMike Smith void (*aif_set_mailbox)(struct aac_softc *sc, u_int32_t command,
242c6eafcf2SScott Long u_int32_t arg0, u_int32_t arg1,
243c6eafcf2SScott Long u_int32_t arg2, u_int32_t arg3);
244a6d35632SScott Long int (*aif_get_mailbox)(struct aac_softc *sc, int mb);
24535863739SMike Smith void (*aif_set_interrupts)(struct aac_softc *sc, int enable);
2467cb209f5SScott Long int (*aif_send_command)(struct aac_softc *sc, struct aac_command *cm);
2477cb209f5SScott Long int (*aif_get_outb_queue)(struct aac_softc *sc);
2487cb209f5SScott Long void (*aif_set_outb_queue)(struct aac_softc *sc, int index);
24935863739SMike Smith };
250da4882c2SMarius Strobl extern const struct aac_interface aac_rx_interface;
251da4882c2SMarius Strobl extern const struct aac_interface aac_sa_interface;
252da4882c2SMarius Strobl extern const struct aac_interface aac_fa_interface;
253da4882c2SMarius Strobl extern const struct aac_interface aac_rkt_interface;
25435863739SMike Smith
255da4882c2SMarius Strobl #define AAC_GET_FWSTATUS(sc) ((sc)->aac_if->aif_get_fwstatus((sc)))
256da4882c2SMarius Strobl #define AAC_QNOTIFY(sc, qbit) ((sc)->aac_if->aif_qnotify((sc), (qbit)))
257da4882c2SMarius Strobl #define AAC_GET_ISTATUS(sc) ((sc)->aac_if->aif_get_istatus((sc)))
258da4882c2SMarius Strobl #define AAC_CLEAR_ISTATUS(sc, mask) ((sc)->aac_if->aif_clr_istatus((sc), \
259c6eafcf2SScott Long (mask)))
26035863739SMike Smith #define AAC_SET_MAILBOX(sc, command, arg0, arg1, arg2, arg3) \
261da4882c2SMarius Strobl ((sc)->aac_if->aif_set_mailbox((sc), (command), (arg0), (arg1), (arg2), \
262c6eafcf2SScott Long (arg3)))
263da4882c2SMarius Strobl #define AAC_GET_MAILBOX(sc, mb) ((sc)->aac_if->aif_get_mailbox((sc), \
264a6d35632SScott Long (mb)))
265da4882c2SMarius Strobl #define AAC_MASK_INTERRUPTS(sc) ((sc)->aac_if->aif_set_interrupts((sc), \
266914da7d0SScott Long 0))
267da4882c2SMarius Strobl #define AAC_UNMASK_INTERRUPTS(sc) ((sc)->aac_if->aif_set_interrupts((sc), \
268914da7d0SScott Long 1))
269da4882c2SMarius Strobl #define AAC_SEND_COMMAND(sc, cm) ((sc)->aac_if->aif_send_command((sc), (cm)))
270da4882c2SMarius Strobl #define AAC_GET_OUTB_QUEUE(sc) ((sc)->aac_if->aif_get_outb_queue((sc)))
271da4882c2SMarius Strobl #define AAC_SET_OUTB_QUEUE(sc, idx) ((sc)->aac_if->aif_set_outb_queue((sc), (idx)))
27235863739SMike Smith
273ff0991c4SAttilio Rao #define AAC_MEM0_SETREG4(sc, reg, val) bus_space_write_4(sc->aac_btag0, \
274ff0991c4SAttilio Rao sc->aac_bhandle0, reg, val)
275ff0991c4SAttilio Rao #define AAC_MEM0_GETREG4(sc, reg) bus_space_read_4(sc->aac_btag0, \
276ff0991c4SAttilio Rao sc->aac_bhandle0, reg)
277ff0991c4SAttilio Rao #define AAC_MEM0_SETREG2(sc, reg, val) bus_space_write_2(sc->aac_btag0, \
278ff0991c4SAttilio Rao sc->aac_bhandle0, reg, val)
279ff0991c4SAttilio Rao #define AAC_MEM0_GETREG2(sc, reg) bus_space_read_2(sc->aac_btag0, \
280ff0991c4SAttilio Rao sc->aac_bhandle0, reg)
281ff0991c4SAttilio Rao #define AAC_MEM0_SETREG1(sc, reg, val) bus_space_write_1(sc->aac_btag0, \
282ff0991c4SAttilio Rao sc->aac_bhandle0, reg, val)
283ff0991c4SAttilio Rao #define AAC_MEM0_GETREG1(sc, reg) bus_space_read_1(sc->aac_btag0, \
284ff0991c4SAttilio Rao sc->aac_bhandle0, reg)
285ff0991c4SAttilio Rao
286ff0991c4SAttilio Rao #define AAC_MEM1_SETREG4(sc, reg, val) bus_space_write_4(sc->aac_btag1, \
287ff0991c4SAttilio Rao sc->aac_bhandle1, reg, val)
288ff0991c4SAttilio Rao #define AAC_MEM1_GETREG4(sc, reg) bus_space_read_4(sc->aac_btag1, \
289ff0991c4SAttilio Rao sc->aac_bhandle1, reg)
290ff0991c4SAttilio Rao #define AAC_MEM1_SETREG2(sc, reg, val) bus_space_write_2(sc->aac_btag1, \
291ff0991c4SAttilio Rao sc->aac_bhandle1, reg, val)
292ff0991c4SAttilio Rao #define AAC_MEM1_GETREG2(sc, reg) bus_space_read_2(sc->aac_btag1, \
293ff0991c4SAttilio Rao sc->aac_bhandle1, reg)
294ff0991c4SAttilio Rao #define AAC_MEM1_SETREG1(sc, reg, val) bus_space_write_1(sc->aac_btag1, \
295ff0991c4SAttilio Rao sc->aac_bhandle1, reg, val)
296ff0991c4SAttilio Rao #define AAC_MEM1_GETREG1(sc, reg) bus_space_read_1(sc->aac_btag1, \
297ff0991c4SAttilio Rao sc->aac_bhandle1, reg)
29835863739SMike Smith
299a723a548SEd Maste /* fib context (IOCTL) */
300a723a548SEd Maste struct aac_fib_context {
301a723a548SEd Maste u_int32_t unique;
302a723a548SEd Maste int ctx_idx;
303a723a548SEd Maste int ctx_wrap;
304a723a548SEd Maste struct aac_fib_context *next, *prev;
305a723a548SEd Maste };
306a723a548SEd Maste
30735863739SMike Smith /*
30835863739SMike Smith * Per-controller structure.
30935863739SMike Smith */
31035863739SMike Smith struct aac_softc
31135863739SMike Smith {
31235863739SMike Smith /* bus connections */
31335863739SMike Smith device_t aac_dev;
314ff0991c4SAttilio Rao struct resource *aac_regs_res0, *aac_regs_res1; /* reg. if. window */
315ff0991c4SAttilio Rao bus_space_handle_t aac_bhandle0, aac_bhandle1; /* bus space handle */
316ff0991c4SAttilio Rao bus_space_tag_t aac_btag0, aac_btag1; /* bus space tag */
31735863739SMike Smith bus_dma_tag_t aac_parent_dmat; /* parent DMA tag */
318c6eafcf2SScott Long bus_dma_tag_t aac_buffer_dmat; /* data buffer/command
319c6eafcf2SScott Long * DMA tag */
32035863739SMike Smith struct resource *aac_irq; /* interrupt */
32135863739SMike Smith void *aac_intr; /* interrupt handle */
3225f54d522SScott Long eventhandler_tag eh;
32335863739SMike Smith
32435863739SMike Smith /* controller features, limits and status */
32535863739SMike Smith int aac_state;
32635863739SMike Smith #define AAC_STATE_SUSPEND (1<<0)
32704f798ecSAttilio Rao #define AAC_STATE_UNUSED0 (1<<1)
32835863739SMike Smith #define AAC_STATE_INTERRUPTS_ON (1<<2)
32935863739SMike Smith #define AAC_STATE_AIF_SLEEPER (1<<3)
33035863739SMike Smith struct FsaRevision aac_revision;
33135863739SMike Smith
33235863739SMike Smith /* controller hardware interface */
33335863739SMike Smith int aac_hwif;
33435863739SMike Smith #define AAC_HWIF_I960RX 0
33535863739SMike Smith #define AAC_HWIF_STRONGARM 1
3364afedc31SScott Long #define AAC_HWIF_RKT 3
337ff0991c4SAttilio Rao #define AAC_HWIF_NARK 4
3380b94a66eSMike Smith #define AAC_HWIF_UNKNOWN -1
339c6eafcf2SScott Long bus_dma_tag_t aac_common_dmat; /* common structure
340c6eafcf2SScott Long * DMA tag */
341c6eafcf2SScott Long bus_dmamap_t aac_common_dmamap; /* common structure
342c6eafcf2SScott Long * DMA map */
34335863739SMike Smith struct aac_common *aac_common;
34435863739SMike Smith u_int32_t aac_common_busaddr;
345da4882c2SMarius Strobl const struct aac_interface *aac_if;
34635863739SMike Smith
34735863739SMike Smith /* command/fib resources */
348c6eafcf2SScott Long bus_dma_tag_t aac_fib_dmat; /* DMA tag for allocing FIBs */
349ffb37f33SScott Long TAILQ_HEAD(,aac_fibmap) aac_fibmap_tqh;
3508b149b51SJohn Baldwin u_int total_fibs;
351ffb37f33SScott Long struct aac_command *aac_commands;
35235863739SMike Smith
35335863739SMike Smith /* command management */
354c6eafcf2SScott Long TAILQ_HEAD(,aac_command) aac_free; /* command structures
355c6eafcf2SScott Long * available for reuse */
356c6eafcf2SScott Long TAILQ_HEAD(,aac_command) aac_ready; /* commands on hold for
357c6eafcf2SScott Long * controller resources */
3580b94a66eSMike Smith TAILQ_HEAD(,aac_command) aac_busy;
3597cb209f5SScott Long TAILQ_HEAD(,aac_event) aac_ev_cmfree;
36035863739SMike Smith struct bio_queue_head aac_bioq;
36135863739SMike Smith struct aac_queue_table *aac_queues;
36235863739SMike Smith struct aac_queue_entry *aac_qentries[AAC_QUEUE_COUNT];
36335863739SMike Smith
3640b94a66eSMike Smith struct aac_qstat aac_qstat[AACQ_COUNT]; /* queue statistics */
3650b94a66eSMike Smith
36635863739SMike Smith /* connected containters */
36770545d1aSScott Long TAILQ_HEAD(,aac_container) aac_container_tqh;
368bb6fe253SScott Long struct mtx aac_container_lock;
36935863739SMike Smith
37003b5fe51SScott Long /*
37103b5fe51SScott Long * The general I/O lock. This protects the sync fib, the lists, the
37203b5fe51SScott Long * queues, and the registers.
37303b5fe51SScott Long */
374bb6fe253SScott Long struct mtx aac_io_lock;
375ae543596SScott Long
37635863739SMike Smith /* delayed activity infrastructure */
377c6eafcf2SScott Long struct task aac_task_complete; /* deferred-completion
378c6eafcf2SScott Long * task */
37935863739SMike Smith struct intr_config_hook aac_ich;
38035863739SMike Smith
38135863739SMike Smith /* management interface */
38289c9c53dSPoul-Henning Kamp struct cdev *aac_dev_t;
383bb6fe253SScott Long struct mtx aac_aifq_lock;
384a723a548SEd Maste struct aac_fib aac_aifq[AAC_AIFQ_LENGTH];
385a723a548SEd Maste int aifq_idx;
386a723a548SEd Maste int aifq_filled;
387a723a548SEd Maste struct aac_fib_context *fibctx;
388b3457b51SScott Long struct selinfo rcv_select;
38936e0bf6eSScott Long struct proc *aifthread;
39036e0bf6eSScott Long int aifflags;
39136e0bf6eSScott Long #define AAC_AIFFLAGS_RUNNING (1 << 0)
3921bd320ecSAttilio Rao #define AAC_AIFFLAGS_UNUSED0 (1 << 1)
39336e0bf6eSScott Long #define AAC_AIFFLAGS_EXIT (1 << 2)
39436e0bf6eSScott Long #define AAC_AIFFLAGS_EXITED (1 << 3)
3951bd320ecSAttilio Rao #define AAC_AIFFLAGS_UNUSED1 (1 << 4)
396ae543596SScott Long #define AAC_AIFFLAGS_ALLOCFIBS (1 << 5)
3971bd320ecSAttilio Rao #define AAC_AIFFLAGS_PENDING AAC_AIFFLAGS_ALLOCFIBS
398a6d35632SScott Long u_int32_t flags;
399a6d35632SScott Long #define AAC_FLAGS_PERC2QC (1 << 0)
400a6d35632SScott Long #define AAC_FLAGS_ENABLE_CAM (1 << 1) /* No SCSI passthrough */
401a6d35632SScott Long #define AAC_FLAGS_CAM_NORESET (1 << 2) /* Fake SCSI resets */
402a6d35632SScott Long #define AAC_FLAGS_CAM_PASSONLY (1 << 3) /* Only create pass devices */
403a6d35632SScott Long #define AAC_FLAGS_SG_64BIT (1 << 4) /* Use 64-bit S/G addresses */
404a6d35632SScott Long #define AAC_FLAGS_4GB_WINDOW (1 << 5) /* Device can access host mem
405a6d35632SScott Long * 2GB-4GB range */
406a6d35632SScott Long #define AAC_FLAGS_NO4GB (1 << 6) /* Can't access host mem >2GB */
407a6d35632SScott Long #define AAC_FLAGS_256FIBS (1 << 7) /* Can only do 256 commands */
4084b00f859SScott Long #define AAC_FLAGS_BROKEN_MEMMAP (1 << 8) /* Broken HostPhysMemPages */
4097cb209f5SScott Long #define AAC_FLAGS_SLAVE (1 << 9)
4107cb209f5SScott Long #define AAC_FLAGS_MASTER (1 << 10)
4117cb209f5SScott Long #define AAC_FLAGS_NEW_COMM (1 << 11) /* New comm. interface supported */
4127cb209f5SScott Long #define AAC_FLAGS_RAW_IO (1 << 12) /* Raw I/O interface */
4137cb209f5SScott Long #define AAC_FLAGS_ARRAY_64BIT (1 << 13) /* 64-bit array size */
414523da39bSEd Maste #define AAC_FLAGS_LBA_64BIT (1 << 14) /* 64-bit LBA support */
4157a22215cSEitan Adler #define AAC_FLAGS_NOMSI (1U << 31) /* Broken MSI */
416fe3cb0e1SScott Long
417a6d35632SScott Long u_int32_t supported_options;
418fe3cb0e1SScott Long u_int32_t scsi_method_id;
41970545d1aSScott Long TAILQ_HEAD(,aac_sim) aac_sim_tqh;
4207cb209f5SScott Long
421ff0991c4SAttilio Rao struct callout aac_daemontime; /* clock daemon callout */
422ff0991c4SAttilio Rao
4237cb209f5SScott Long u_int32_t aac_max_fibs; /* max. FIB count */
4247cb209f5SScott Long u_int32_t aac_max_fibs_alloc; /* max. alloc. per alloc_commands() */
4257cb209f5SScott Long u_int32_t aac_max_fib_size; /* max. FIB size */
4267cb209f5SScott Long u_int32_t aac_sg_tablesize; /* max. sg count from host */
4277cb209f5SScott Long u_int32_t aac_max_sectors; /* max. I/O size from host (blocks) */
428851f59d7SEd Maste #define AAC_CAM_TARGET_WILDCARD ~0
429851f59d7SEd Maste void (*cam_rescan_cb)(struct aac_softc *, uint32_t,
430851f59d7SEd Maste uint32_t);
43135863739SMike Smith };
43235863739SMike Smith
4337cb209f5SScott Long /*
4347cb209f5SScott Long * Event callback mechanism for the driver
4357cb209f5SScott Long */
4367cb209f5SScott Long #define AAC_EVENT_NONE 0x00
4377cb209f5SScott Long #define AAC_EVENT_CMFREE 0x01
4387cb209f5SScott Long #define AAC_EVENT_MASK 0xff
4397cb209f5SScott Long #define AAC_EVENT_REPEAT 0x100
4407cb209f5SScott Long
4417cb209f5SScott Long typedef void aac_event_cb_t(struct aac_softc *sc, struct aac_event *event,
4427cb209f5SScott Long void *arg);
4437cb209f5SScott Long struct aac_event {
4447cb209f5SScott Long TAILQ_ENTRY(aac_event) ev_links;
4457cb209f5SScott Long int ev_type;
4467cb209f5SScott Long aac_event_cb_t *ev_callback;
4477cb209f5SScott Long void *ev_arg;
4487cb209f5SScott Long };
44935863739SMike Smith
45035863739SMike Smith /*
45135863739SMike Smith * Public functions
45235863739SMike Smith */
45335863739SMike Smith extern void aac_free(struct aac_softc *sc);
45435863739SMike Smith extern int aac_attach(struct aac_softc *sc);
45535863739SMike Smith extern int aac_detach(device_t dev);
45635863739SMike Smith extern int aac_shutdown(device_t dev);
45735863739SMike Smith extern int aac_suspend(device_t dev);
45835863739SMike Smith extern int aac_resume(device_t dev);
4597cb209f5SScott Long extern void aac_new_intr(void *arg);
460e46b9eeaSEd Maste extern int aac_filter(void *arg);
46135863739SMike Smith extern void aac_submit_bio(struct bio *bp);
4620b94a66eSMike Smith extern void aac_biodone(struct bio *bp);
463fe3cb0e1SScott Long extern void aac_startio(struct aac_softc *sc);
464fe3cb0e1SScott Long extern int aac_alloc_command(struct aac_softc *sc,
465fe3cb0e1SScott Long struct aac_command **cmp);
466fe3cb0e1SScott Long extern void aac_release_command(struct aac_command *cm);
467cbfd045bSScott Long extern int aac_sync_fib(struct aac_softc *sc, u_int32_t command,
468cbfd045bSScott Long u_int32_t xferstate, struct aac_fib *fib,
469cbfd045bSScott Long u_int16_t datasize);
4707cb209f5SScott Long extern void aac_add_event(struct aac_softc *sc, struct aac_event
4717cb209f5SScott Long *event);
47235863739SMike Smith
47335863739SMike Smith #ifdef AAC_DEBUG
47431a0399eSEd Maste extern int aac_debug_enable;
47531a0399eSEd Maste # define fwprintf(sc, flags, fmt, args...) \
4760b94a66eSMike Smith do { \
47731a0399eSEd Maste if (!aac_debug_enable) \
47831a0399eSEd Maste break; \
47931a0399eSEd Maste if (sc != NULL) \
48031a0399eSEd Maste device_printf(((struct aac_softc *)sc)->aac_dev, \
48131a0399eSEd Maste "%s: " fmt "\n", __func__, ##args); \
48231a0399eSEd Maste else \
48331a0399eSEd Maste printf("%s: " fmt "\n", __func__, ##args); \
4840b94a66eSMike Smith } while(0)
48535863739SMike Smith
48635863739SMike Smith extern void aac_print_queues(struct aac_softc *sc);
48735863739SMike Smith extern void aac_panic(struct aac_softc *sc, char *reason);
488c6eafcf2SScott Long extern void aac_print_fib(struct aac_softc *sc, struct aac_fib *fib,
48970148712SPeter Wemm const char *caller);
490c6eafcf2SScott Long extern void aac_print_aif(struct aac_softc *sc,
491c6eafcf2SScott Long struct aac_aif_command *aif);
49235863739SMike Smith
4936e551fb6SDavid E. O'Brien #define AAC_PRINT_FIB(sc, fib) aac_print_fib(sc, fib, __func__)
49435863739SMike Smith
49535863739SMike Smith #else
49631a0399eSEd Maste # define fwprintf(sc, flags, fmt, args...)
49735863739SMike Smith
49835863739SMike Smith # define aac_print_queues(sc)
49935863739SMike Smith # define aac_panic(sc, reason)
50035863739SMike Smith
50135863739SMike Smith # define AAC_PRINT_FIB(sc, fib)
50236e0bf6eSScott Long # define aac_print_aif(sc, aac_aif_command)
50335863739SMike Smith #endif
50435863739SMike Smith
50535863739SMike Smith struct aac_code_lookup {
506da4882c2SMarius Strobl const char *string;
50735863739SMike Smith u_int32_t code;
50835863739SMike Smith };
50935863739SMike Smith
510914da7d0SScott Long /*
5110b94a66eSMike Smith * Queue primitives for driver queues.
51235863739SMike Smith */
5130b94a66eSMike Smith #define AACQ_ADD(sc, qname) \
5140b94a66eSMike Smith do { \
515914da7d0SScott Long struct aac_qstat *qs; \
516914da7d0SScott Long \
517914da7d0SScott Long qs = &(sc)->aac_qstat[qname]; \
5180b94a66eSMike Smith \
5190b94a66eSMike Smith qs->q_length++; \
5200b94a66eSMike Smith if (qs->q_length > qs->q_max) \
5210b94a66eSMike Smith qs->q_max = qs->q_length; \
5220b94a66eSMike Smith } while (0)
52335863739SMike Smith
5240b94a66eSMike Smith #define AACQ_REMOVE(sc, qname) (sc)->aac_qstat[qname].q_length--
5250b94a66eSMike Smith #define AACQ_INIT(sc, qname) \
5260b94a66eSMike Smith do { \
5270b94a66eSMike Smith sc->aac_qstat[qname].q_length = 0; \
5280b94a66eSMike Smith sc->aac_qstat[qname].q_max = 0; \
5290b94a66eSMike Smith } while (0)
5300b94a66eSMike Smith
5310b94a66eSMike Smith #define AACQ_COMMAND_QUEUE(name, index) \
5320b94a66eSMike Smith static __inline void \
5330b94a66eSMike Smith aac_initq_ ## name (struct aac_softc *sc) \
5340b94a66eSMike Smith { \
5350b94a66eSMike Smith TAILQ_INIT(&sc->aac_ ## name); \
5360b94a66eSMike Smith AACQ_INIT(sc, index); \
5370b94a66eSMike Smith } \
5380b94a66eSMike Smith static __inline void \
5390b94a66eSMike Smith aac_enqueue_ ## name (struct aac_command *cm) \
5400b94a66eSMike Smith { \
541f6c4dd3fSScott Long if ((cm->cm_flags & AAC_ON_AACQ_MASK) != 0) { \
542729e10b9SEd Maste panic("aac: command %p is on another queue, flags = %#x", \
543f6c4dd3fSScott Long cm, cm->cm_flags); \
544f6c4dd3fSScott Long } \
5450b94a66eSMike Smith TAILQ_INSERT_TAIL(&cm->cm_sc->aac_ ## name, cm, cm_link); \
546f6c4dd3fSScott Long cm->cm_flags |= AAC_ON_ ## index; \
5470b94a66eSMike Smith AACQ_ADD(cm->cm_sc, index); \
5480b94a66eSMike Smith } \
5490b94a66eSMike Smith static __inline void \
5500b94a66eSMike Smith aac_requeue_ ## name (struct aac_command *cm) \
5510b94a66eSMike Smith { \
552f6c4dd3fSScott Long if ((cm->cm_flags & AAC_ON_AACQ_MASK) != 0) { \
553729e10b9SEd Maste panic("aac: command %p is on another queue, flags = %#x", \
554f6c4dd3fSScott Long cm, cm->cm_flags); \
555f6c4dd3fSScott Long } \
5560b94a66eSMike Smith TAILQ_INSERT_HEAD(&cm->cm_sc->aac_ ## name, cm, cm_link); \
557f6c4dd3fSScott Long cm->cm_flags |= AAC_ON_ ## index; \
5580b94a66eSMike Smith AACQ_ADD(cm->cm_sc, index); \
5590b94a66eSMike Smith } \
5600b94a66eSMike Smith static __inline struct aac_command * \
5610b94a66eSMike Smith aac_dequeue_ ## name (struct aac_softc *sc) \
5620b94a66eSMike Smith { \
5630b94a66eSMike Smith struct aac_command *cm; \
5640b94a66eSMike Smith \
5650b94a66eSMike Smith if ((cm = TAILQ_FIRST(&sc->aac_ ## name)) != NULL) { \
566f6c4dd3fSScott Long if ((cm->cm_flags & AAC_ON_ ## index) == 0) { \
567729e10b9SEd Maste panic("aac: command %p not in queue, flags = %#x, bit = %#x", \
568729e10b9SEd Maste cm, cm->cm_flags, AAC_ON_ ## index); \
569f6c4dd3fSScott Long } \
5700b94a66eSMike Smith TAILQ_REMOVE(&sc->aac_ ## name, cm, cm_link); \
571f6c4dd3fSScott Long cm->cm_flags &= ~AAC_ON_ ## index; \
5720b94a66eSMike Smith AACQ_REMOVE(sc, index); \
5730b94a66eSMike Smith } \
5740b94a66eSMike Smith return(cm); \
5750b94a66eSMike Smith } \
5760b94a66eSMike Smith static __inline void \
5770b94a66eSMike Smith aac_remove_ ## name (struct aac_command *cm) \
5780b94a66eSMike Smith { \
579f6c4dd3fSScott Long if ((cm->cm_flags & AAC_ON_ ## index) == 0) { \
580729e10b9SEd Maste panic("aac: command %p not in queue, flags = %#x, bit = %#x", \
581729e10b9SEd Maste cm, cm->cm_flags, AAC_ON_ ## index); \
582f6c4dd3fSScott Long } \
5830b94a66eSMike Smith TAILQ_REMOVE(&cm->cm_sc->aac_ ## name, cm, cm_link); \
584f6c4dd3fSScott Long cm->cm_flags &= ~AAC_ON_ ## index; \
5850b94a66eSMike Smith AACQ_REMOVE(cm->cm_sc, index); \
5860b94a66eSMike Smith } \
5870b94a66eSMike Smith
5880b94a66eSMike Smith AACQ_COMMAND_QUEUE(free, AACQ_FREE);
5890b94a66eSMike Smith AACQ_COMMAND_QUEUE(ready, AACQ_READY);
5900b94a66eSMike Smith AACQ_COMMAND_QUEUE(busy, AACQ_BUSY);
5910b94a66eSMike Smith
5920b94a66eSMike Smith /*
5930b94a66eSMike Smith * outstanding bio queue
5940b94a66eSMike Smith */
59535863739SMike Smith static __inline void
aac_initq_bio(struct aac_softc * sc)5960b94a66eSMike Smith aac_initq_bio(struct aac_softc *sc)
59735863739SMike Smith {
5980b94a66eSMike Smith bioq_init(&sc->aac_bioq);
5990b94a66eSMike Smith AACQ_INIT(sc, AACQ_BIO);
60035863739SMike Smith }
60135863739SMike Smith
60235863739SMike Smith static __inline void
aac_enqueue_bio(struct aac_softc * sc,struct bio * bp)6030b94a66eSMike Smith aac_enqueue_bio(struct aac_softc *sc, struct bio *bp)
60435863739SMike Smith {
6050b94a66eSMike Smith bioq_insert_tail(&sc->aac_bioq, bp);
6060b94a66eSMike Smith AACQ_ADD(sc, AACQ_BIO);
60735863739SMike Smith }
60835863739SMike Smith
6090b94a66eSMike Smith static __inline struct bio *
aac_dequeue_bio(struct aac_softc * sc)6100b94a66eSMike Smith aac_dequeue_bio(struct aac_softc *sc)
61135863739SMike Smith {
6120b94a66eSMike Smith struct bio *bp;
61335863739SMike Smith
6140b94a66eSMike Smith if ((bp = bioq_first(&sc->aac_bioq)) != NULL) {
6150b94a66eSMike Smith bioq_remove(&sc->aac_bioq, bp);
6160b94a66eSMike Smith AACQ_REMOVE(sc, AACQ_BIO);
61735863739SMike Smith }
6180b94a66eSMike Smith return(bp);
61935863739SMike Smith }
62036e0bf6eSScott Long
62136e0bf6eSScott Long static __inline void
aac_print_printf(struct aac_softc * sc)62236e0bf6eSScott Long aac_print_printf(struct aac_softc *sc)
62336e0bf6eSScott Long {
624b3457b51SScott Long /*
625b3457b51SScott Long * XXX We have the ability to read the length of the printf string
626b3457b51SScott Long * from out of the mailboxes.
627b3457b51SScott Long */
62836e0bf6eSScott Long device_printf(sc->aac_dev, "**Monitor** %.*s", AAC_PRINTF_BUFSIZE,
62936e0bf6eSScott Long sc->aac_common->ac_printf);
6309148fa21SScott Long sc->aac_common->ac_printf[0] = 0;
63136e0bf6eSScott Long AAC_QNOTIFY(sc, AAC_DB_PRINTF);
63236e0bf6eSScott Long }
63303b5fe51SScott Long
63403b5fe51SScott Long static __inline int
aac_alloc_sync_fib(struct aac_softc * sc,struct aac_fib ** fib)63503b5fe51SScott Long aac_alloc_sync_fib(struct aac_softc *sc, struct aac_fib **fib)
63603b5fe51SScott Long {
63703b5fe51SScott Long
6387cb209f5SScott Long mtx_assert(&sc->aac_io_lock, MA_OWNED);
63903b5fe51SScott Long *fib = &sc->aac_common->ac_sync_fib;
64003b5fe51SScott Long return (0);
64103b5fe51SScott Long }
64203b5fe51SScott Long
64303b5fe51SScott Long static __inline void
aac_release_sync_fib(struct aac_softc * sc)64403b5fe51SScott Long aac_release_sync_fib(struct aac_softc *sc)
64503b5fe51SScott Long {
64603b5fe51SScott Long
6477cb209f5SScott Long mtx_assert(&sc->aac_io_lock, MA_OWNED);
64803b5fe51SScott Long }
649