diff options
| author | tsutsui <tsutsui@NetBSD.org> | 2001-04-30 04:47:50 +0000 |
|---|---|---|
| committer | tsutsui <tsutsui@NetBSD.org> | 2001-04-30 04:47:50 +0000 |
| commit | 613923b42e2edddb10cbb1590ebf9410de2bb545 (patch) | |
| tree | 3d785460eedae4ef4fde20926ffe3f89a2e8f617 /sys/dev/microcode/siop/Makefile | |
| parent | 79649c917a98fbb8c9aaff15ff83376da2682c93 (diff) | |
Add a MI driver for the Symbios/NCR 53c710 SCSI controller.
This is based on amiga's siop driver, but converted to use
bus_space(9) functions and modified to fit bus_dma(9) framework.
Currently tested on NetBSD/arc with jazzio 53c710 SCSI,
which really requires bus_dma(9) functions :-)
Sync transfers and disconnect/reconnect are also working.
TODO:
- Test under more heavy load
- Clean up osiop_checkintr() hander
- Reorganize command queue and sync negotiation handling more suitable
for thorpej-scsipi mid-layer
- Re-think defered interrupt handling for amiga
Diffstat (limited to 'sys/dev/microcode/siop/Makefile')
| -rw-r--r-- | sys/dev/microcode/siop/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/dev/microcode/siop/Makefile b/sys/dev/microcode/siop/Makefile index 01461bfff26..56a9a344e45 100644 --- a/sys/dev/microcode/siop/Makefile +++ b/sys/dev/microcode/siop/Makefile @@ -1,15 +1,17 @@ -# $NetBSD: Makefile,v 1.1 2000/04/21 17:57:01 bouyer Exp $ +# $NetBSD: Makefile,v 1.2 2001/04/30 04:47:51 tsutsui Exp $ -all: siop.out +all: siop.out osiop.out PROG= ncr53cxxx MKSHARE=no .include <bsd.prog.mk> -regen: siop.out -headers: siop.out +regen: siop.out osiop.out +headers: siop.out osiop.out siop.out: siop.ss ${PROG} ./${PROG} siop.ss -o siop.out - + +osiop.out: osiop.ss ${PROG} + ./${PROG} osiop.ss -p osiop.out |
