2000-06-13 17:59:15 +04:00
|
|
|
/* $NetBSD: siopvar.h,v 1.8 2000/06/13 13:59:17 bouyer Exp $ */
|
2000-04-21 21:56:58 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2000 Manuel Bouyer.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
2000-04-27 18:06:57 +04:00
|
|
|
* This product includes software developed by Manuel Bouyer
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
2000-04-21 21:56:58 +04:00
|
|
|
*
|
2000-05-15 11:48:24 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2000-04-21 21:56:58 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* structure and definitions for the siop driver */
|
|
|
|
|
|
|
|
TAILQ_HEAD(cmd_list, siop_cmd);
|
2000-05-23 21:08:07 +04:00
|
|
|
TAILQ_HEAD(cbd_list, siop_cbd);
|
2000-04-21 21:56:58 +04:00
|
|
|
|
|
|
|
/* Driver internal state */
|
|
|
|
struct siop_softc {
|
|
|
|
struct device sc_dev;
|
|
|
|
struct scsipi_link sc_link; /* link to upper level */
|
2000-04-25 20:27:05 +04:00
|
|
|
int features; /* chip's features */
|
|
|
|
int maxburst;
|
|
|
|
int maxoff;
|
2000-05-02 23:03:02 +04:00
|
|
|
int clock_div; /* async. clock divider (scntl3) */
|
|
|
|
int clock_period; /* clock period (ns * 10) */
|
|
|
|
int minsync; /* min and max sync period, */
|
|
|
|
int maxsync; /* as sent in SDTR message */
|
2000-04-21 21:56:58 +04:00
|
|
|
bus_space_tag_t sc_rt; /* bus_space registers tag */
|
|
|
|
bus_space_handle_t sc_rh; /* bus_space registers handle */
|
|
|
|
bus_addr_t sc_raddr; /* register adresses */
|
2000-05-25 14:10:54 +04:00
|
|
|
bus_space_tag_t sc_ramt; /* bus_space ram tag */
|
|
|
|
bus_space_handle_t sc_ramh; /* bus_space ram handle */
|
|
|
|
bus_addr_t sc_scriptaddr; /* on-board ram or physical adress */
|
2000-04-21 21:56:58 +04:00
|
|
|
bus_dma_tag_t sc_dmat; /* bus DMA tag */
|
2000-05-15 11:48:24 +04:00
|
|
|
void (*sc_reset) __P((struct siop_softc*)); /* reset callback */
|
2000-04-21 21:56:58 +04:00
|
|
|
bus_dmamap_t sc_scriptdma; /* DMA map for script */
|
2000-06-13 17:59:15 +04:00
|
|
|
bus_dmamap_t sc_sheddma; /* DMA map for scheduler script */
|
2000-04-21 21:56:58 +04:00
|
|
|
u_int32_t *sc_script; /* script location in memory */
|
2000-06-13 17:59:15 +04:00
|
|
|
u_int32_t *sc_shed; /* script scheduler location in mem */
|
|
|
|
int sc_nshedslots; /* number of scheduler slots */
|
|
|
|
int sc_currshedslot; /* current scheduler slot */
|
2000-05-23 21:08:07 +04:00
|
|
|
struct cbd_list cmds; /* list of command block descriptors */
|
2000-04-21 21:56:58 +04:00
|
|
|
struct cmd_list free_list; /* cmd descr free list */
|
2000-05-02 23:03:02 +04:00
|
|
|
struct siop_target *targets[16]; /* per-target states */
|
2000-04-21 21:56:58 +04:00
|
|
|
u_int32_t sc_flags;
|
|
|
|
};
|
|
|
|
/* defs for sc_flags */
|
2000-04-25 20:27:05 +04:00
|
|
|
/* none for now */
|
2000-04-21 21:56:58 +04:00
|
|
|
|
|
|
|
/* features */
|
|
|
|
#define SF_BUS_WIDE 0x00000001 /* wide bus */
|
|
|
|
#define SF_BUS_ULTRA 0x00000002 /* Ultra (20Mhz) bus */
|
|
|
|
#define SF_BUS_ULTRA2 0x00000004 /* Ultra2 (40Mhz) bus */
|
|
|
|
#define SF_BUS_DIFF 0x00000008 /* differential bus */
|
|
|
|
|
|
|
|
#define SF_CHIP_LED0 0x00000100 /* led on GPIO0 */
|
|
|
|
#define SF_CHIP_DBLR 0x00000200 /* clock doubler */
|
|
|
|
#define SF_CHIP_QUAD 0x00000400 /* clock quadrupler */
|
2000-05-02 23:03:02 +04:00
|
|
|
#define SF_CHIP_FIFO 0x00000800 /* large fifo */
|
|
|
|
#define SF_CHIP_PF 0x00001000 /* Intructions prefetch */
|
|
|
|
#define SF_CHIP_RAM 0x00002000 /* on-board RAM */
|
2000-05-15 11:48:24 +04:00
|
|
|
#define SF_CHIP_LS 0x00004000 /* load/store instruction */
|
|
|
|
#define SF_CHIP_10REGS 0x00008000 /* 10 scratch registers */
|
2000-04-21 21:56:58 +04:00
|
|
|
|
|
|
|
#define SF_PCI_RL 0x01000000 /* PCI read line */
|
|
|
|
#define SF_PCI_RM 0x02000000 /* PCI read multiple */
|
|
|
|
#define SF_PCI_BOF 0x04000000 /* PCI burst opcode fetch */
|
|
|
|
#define SF_PCI_CLS 0x08000000 /* PCI cache line size */
|
|
|
|
#define SF_PCI_WRI 0x10000000 /* PCI write and invalidate */
|
|
|
|
|
|
|
|
void siop_attach __P((struct siop_softc *));
|
|
|
|
int siop_intr __P((void *));
|