From owner-cvs-all@FreeBSD.ORG Thu Jun 10 05:11:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43D2416A4CE; Thu, 10 Jun 2004 05:11:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CEDB43D39; Thu, 10 Jun 2004 05:11:50 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i5A5Beon063882; Thu, 10 Jun 2004 05:11:40 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i5A5Beog063878; Thu, 10 Jun 2004 05:11:40 GMT (envelope-from scottl) Message-Id: <200406100511.i5A5Beog063878@repoman.freebsd.org> From: Scott Long Date: Thu, 10 Jun 2004 05:11:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/esp esp_sbus.c lsi64854.c lsi64854reg.h lsi64854var.h ncr53c9x.c ncr53c9xreg.h ncr53c9xvar.h src/sys/modules/esp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jun 2004 05:11:50 -0000 scottl 2004-06-10 05:11:40 UTC FreeBSD src repository Added files: sys/dev/esp esp_sbus.c lsi64854.c lsi64854reg.h lsi64854var.h ncr53c9x.c ncr53c9xreg.h ncr53c9xvar.h sys/modules/esp Makefile Log: Port the NetBSD esp(4) driver. This only includes the sbus front-end, so its primary use is for the FEPS/FAS366 SCSI found in Sun Ultra 1e and 2 machines. Once the pci front-end is ported, this driver can replace the amd(4) driver. The code as-is is fairly stable. I've disabled tagged-queueing until I can figure out a corruption bug related to it. I'm importing it now so that people with these machines can (finally) stop netbooting and report bugs before 5.3. Revision Changes Path 1.1 +581 -0 src/sys/dev/esp/esp_sbus.c (new) 1.1 +722 -0 src/sys/dev/esp/lsi64854.c (new) 1.1 +205 -0 src/sys/dev/esp/lsi64854reg.h (new) 1.1 +114 -0 src/sys/dev/esp/lsi64854var.h (new) 1.1 +2938 -0 src/sys/dev/esp/ncr53c9x.c (new) 1.1 +290 -0 src/sys/dev/esp/ncr53c9xreg.h (new) 1.1 +457 -0 src/sys/dev/esp/ncr53c9xvar.h (new) 1.1 +15 -0 src/sys/modules/esp/Makefile (new)