613923b42e
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
18 lines
312 B
Makefile
18 lines
312 B
Makefile
# $NetBSD: Makefile,v 1.2 2001/04/30 04:47:51 tsutsui Exp $
|
|
|
|
all: siop.out osiop.out
|
|
|
|
PROG= ncr53cxxx
|
|
MKSHARE=no
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
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
|