FCP-101: Remove sf(4).
Relnotes: yes FCP: https://github.com/freebsd/fcp/blob/master/fcp-0101.md Reviewed by: jhb, imp Differential Revision: https://reviews.freebsd.org/D20230
This commit is contained in:
parent
607790d10f
commit
3b70dd81f5
@ -50,6 +50,8 @@ OLD_FILES+=usr/share/man/man4/ex.4
|
||||
OLD_FILES+=usr/share/man/man4/fe.4
|
||||
OLD_FILES+=usr/share/man/man4/pcn.4
|
||||
OLD_FILES+=usr/share/man/man4/if_pcn.4
|
||||
OLD_FILES+=usr/share/man/man4/sf.4
|
||||
OLD_FILES+=usr/share/man/man4/if_sf.4
|
||||
# 20190513: libcap_sysctl interface change
|
||||
OLD_FILES+=lib/casper/libcap_sysctl.1
|
||||
# 20190509: tests/sys/opencrypto requires the net/py-dpkt package.
|
||||
|
@ -451,7 +451,6 @@ MAN= aac.4 \
|
||||
sem.4 \
|
||||
send.4 \
|
||||
ses.4 \
|
||||
sf.4 \
|
||||
${_sfxge.4} \
|
||||
sge.4 \
|
||||
siba.4 \
|
||||
@ -701,7 +700,6 @@ MLINKS+=scsi.4 CAM.4 \
|
||||
scsi.4 cam.4 \
|
||||
scsi.4 scbus.4 \
|
||||
scsi.4 SCSI.4
|
||||
MLINKS+=sf.4 if_sf.4
|
||||
MLINKS+=sge.4 if_sge.4
|
||||
MLINKS+=sis.4 if_sis.4
|
||||
MLINKS+=sk.4 if_sk.4
|
||||
|
@ -1,217 +0,0 @@
|
||||
.\" Copyright (c) 1997, 1998, 1999
|
||||
.\" Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
|
||||
.\"
|
||||
.\" 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:
|
||||
.\" This product includes software developed by Bill Paul.
|
||||
.\" 4. Neither the name of the author nor the names of any co-contributors
|
||||
.\" may be used to endorse or promote products derived from this software
|
||||
.\" without specific prior written permission.
|
||||
.\"
|
||||
.\" THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``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 Bill Paul OR THE VOICES IN HIS HEAD
|
||||
.\" 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.
|
||||
.\"
|
||||
.\" $FreeBSD$
|
||||
.\"
|
||||
.Dd October 24, 2018
|
||||
.Dt SF 4
|
||||
.Os
|
||||
.Sh NAME
|
||||
.Nm sf
|
||||
.Nd "Adaptec AIC-6915"
|
||||
.Qq Starfire
|
||||
PCI Fast Ethernet adapter driver
|
||||
.Sh SYNOPSIS
|
||||
To compile this driver into the kernel,
|
||||
place the following lines in your
|
||||
kernel configuration file:
|
||||
.Bd -ragged -offset indent
|
||||
.Cd "device miibus"
|
||||
.Cd "device sf"
|
||||
.Ed
|
||||
.Pp
|
||||
Alternatively, to load the driver as a
|
||||
module at boot time, place the following line in
|
||||
.Xr loader.conf 5 :
|
||||
.Bd -literal -offset indent
|
||||
if_sf_load="YES"
|
||||
.Ed
|
||||
.Sh DEPRECATION NOTICE
|
||||
The
|
||||
.Nm
|
||||
driver is not present in
|
||||
.Fx 13.0
|
||||
and later.
|
||||
See https://github.com/freebsd/fcp/blob/master/fcp-0101.md for more
|
||||
information.
|
||||
.Sh DESCRIPTION
|
||||
The
|
||||
.Nm
|
||||
driver provides support for Adaptec Duralink Fast Ethernet adapters
|
||||
based on the Adaptec AIC-6915 "Starfire" chipset.
|
||||
.Pp
|
||||
The AIC-6915 is a bus master controller with an MII interface.
|
||||
It
|
||||
supports high and low priority transmit and receive queues, TCP/IP
|
||||
checksum offload, multiple DMA descriptor formats and both polling
|
||||
and producer/consumer DMA models.
|
||||
The AIC-6915 receive filtering
|
||||
options include a 16 entry perfect filter, a 512-bit hash table
|
||||
for multicast addresses, a 512-bit hash table for priority address
|
||||
matching and VLAN filtering.
|
||||
An external MII-compliant transceiver
|
||||
is required for media interfacing.
|
||||
.Pp
|
||||
Multiport adapters consist of several AIC-6915 controllers connected
|
||||
via a PCI to PCI bridge.
|
||||
Each controller is treated as a separate
|
||||
interface by the
|
||||
.Nm
|
||||
driver.
|
||||
.Pp
|
||||
The
|
||||
.Nm
|
||||
driver supports the following media types:
|
||||
.Bl -tag -width xxxxxxxxxxxxxxxxxxxx
|
||||
.It autoselect
|
||||
Enable autoselection of the media type and options.
|
||||
The user can manually override
|
||||
the autoselected mode by adding media options to the
|
||||
.Pa /etc/rc.conf
|
||||
file.
|
||||
.It 10baseT/UTP
|
||||
Set 10Mbps operation.
|
||||
The
|
||||
.Ar mediaopt
|
||||
option can also be used to select either
|
||||
.Ar full-duplex
|
||||
or
|
||||
.Ar half-duplex
|
||||
modes.
|
||||
.It 100baseTX
|
||||
Set 100Mbps (Fast Ethernet) operation.
|
||||
The
|
||||
.Ar mediaopt
|
||||
option can also be used to select either
|
||||
.Ar full-duplex
|
||||
or
|
||||
.Ar half-duplex
|
||||
modes.
|
||||
.El
|
||||
.Pp
|
||||
The
|
||||
.Nm
|
||||
driver supports the following media options:
|
||||
.Bl -tag -width xxxxxxxxxxxxxxxxxxxx
|
||||
.It full-duplex
|
||||
Force full duplex operation
|
||||
.It half-duplex
|
||||
Force half duplex operation.
|
||||
.El
|
||||
.Pp
|
||||
For more information on configuring this device, see
|
||||
.Xr ifconfig 8 .
|
||||
.Sh HARDWARE
|
||||
Adapters supported by the
|
||||
.Nm
|
||||
driver include:
|
||||
.Pp
|
||||
.Bl -bullet -compact
|
||||
.It
|
||||
ANA-62011 64-bit single port 10/100baseTX adapter
|
||||
.It
|
||||
ANA-62022 64-bit dual port 10/100baseTX adapter
|
||||
.It
|
||||
ANA-62044 64-bit quad port 10/100baseTX adapter
|
||||
.It
|
||||
ANA-69011 32-bit single port 10/100baseTX adapter
|
||||
.It
|
||||
ANA-62020 64-bit single port 100baseFX adapter
|
||||
.El
|
||||
.Sh SYSCTL VARIABLES
|
||||
The following variables are available as both
|
||||
.Xr sysctl 8
|
||||
variables and
|
||||
.Xr loader 8
|
||||
tunables:
|
||||
.Bl -tag -width indent
|
||||
.It Va dev.sf.%d.int_mod
|
||||
Maximum amount of time to delay interrupt processing in units of
|
||||
102.4us.
|
||||
The accepted range is 0 to 31, the default value is 1 (102.4us).
|
||||
Value 0 completely disables the interrupt moderation.
|
||||
The interface does not need to be brought down and up again before
|
||||
a change takes effect.
|
||||
.It Va dev.sf.%d.stats
|
||||
Display lots of useful MAC counters maintained in the driver.
|
||||
.El
|
||||
.Sh DIAGNOSTICS
|
||||
.Bl -diag
|
||||
.It "sf%d: couldn't map memory"
|
||||
A fatal initialization error has occurred.
|
||||
This may
|
||||
happen if the PCI BIOS not configured the device, which may be because
|
||||
the BIOS has been configured for a "Plug and Play" operating system.
|
||||
The "Plug and Play OS" setting in the BIOS should be set to "no" or
|
||||
"off" in order for PCI devices to work properly with
|
||||
.Fx .
|
||||
.It "sf%d: couldn't map ports"
|
||||
A fatal initialization error has occurred.
|
||||
This may
|
||||
happen if the PCI BIOS not configured the device, which may be because
|
||||
the BIOS has been configured for a "Plug and Play" operating system.
|
||||
The "Plug and Play OS" setting in the BIOS should be set to "no" or
|
||||
"off" in order for PCI devices to work properly with
|
||||
.Fx .
|
||||
.It "sf%d: couldn't map interrupt"
|
||||
A fatal initialization error has occurred.
|
||||
.It "sf%d: no memory for softc struct!"
|
||||
The driver failed to allocate memory for per-device instance information
|
||||
during initialization.
|
||||
.It "sf%d: failed to enable I/O ports/memory mapping!"
|
||||
The driver failed to initialize PCI I/O port or shared memory access.
|
||||
This might happen if the card is not in a bus-master slot.
|
||||
.It "sf%d: watchdog timeout"
|
||||
The device has stopped responding to the network, or there is a problem with
|
||||
the network connection (cable).
|
||||
.El
|
||||
.Sh SEE ALSO
|
||||
.Xr altq 4 ,
|
||||
.Xr arp 4 ,
|
||||
.Xr miibus 4 ,
|
||||
.Xr netintro 4 ,
|
||||
.Xr ng_ether 4 ,
|
||||
.Xr polling 4 ,
|
||||
.Xr vlan 4 ,
|
||||
.Xr ifconfig 8
|
||||
.Rs
|
||||
.%T The Adaptec AIC-6915 Programmer's Manual
|
||||
.%U http://download.adaptec.com/pdfs/user_guides/aic6915_pg.pdf
|
||||
.Re
|
||||
.Sh HISTORY
|
||||
The
|
||||
.Nm
|
||||
device driver first appeared in
|
||||
.Fx 3.0 .
|
||||
.Sh AUTHORS
|
||||
The
|
||||
.Nm
|
||||
driver was written by
|
||||
.An Bill Paul Aq Mt wpaul@ctr.columbia.edu .
|
@ -273,7 +273,6 @@ device nfe # nVidia nForce MCP on-board Ethernet
|
||||
device nge # NatSemi DP83820 gigabit Ethernet
|
||||
device re # RealTek 8139C+/8169/8169S/8110S
|
||||
device rl # RealTek 8129/8139
|
||||
device sf # Adaptec AIC-6915 (``Starfire'')
|
||||
device sge # Silicon Integrated Systems SiS190/191
|
||||
device sis # Silicon Integrated Systems SiS 900/SiS 7016
|
||||
device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
|
||||
|
@ -1977,11 +1977,6 @@ device xmphy # XaQti XMAC II
|
||||
# chipset and is supported by this driver, not the 'vr' driver.
|
||||
# rtwn: RealTek wireless adapters.
|
||||
# rtwnfw: RealTek wireless firmware.
|
||||
# sf: Support for Adaptec Duralink PCI fast ethernet adapters based on the
|
||||
# Adaptec AIC-6915 "starfire" controller.
|
||||
# This includes dual and quad port cards, as well as one 100baseFX card.
|
||||
# Most of these are 64-bit PCI devices, except for one single port
|
||||
# card which is 32-bit.
|
||||
# sge: Silicon Integrated Systems SiS190/191 Fast/Gigabit Ethernet adapter
|
||||
# sis: Support for NICs based on the Silicon Integrated Systems SiS 900,
|
||||
# SiS 7016 and NS DP83815 PCI fast ethernet controller chips.
|
||||
@ -2066,7 +2061,6 @@ device my # Myson Fast Ethernet (MTD80X, MTD89X)
|
||||
device nge # NatSemi DP83820 gigabit Ethernet
|
||||
device re # RealTek 8139C+/8169/8169S/8110S
|
||||
device rl # RealTek 8129/8139
|
||||
device sf # Adaptec AIC-6915 (``Starfire'')
|
||||
device sge # Silicon Integrated Systems SiS190/191
|
||||
device sis # Silicon Integrated Systems SiS 900/SiS 7016
|
||||
device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
|
||||
|
@ -3009,7 +3009,6 @@ dev/sdhci/sdhci_fdt_gpio.c optional sdhci fdt gpio
|
||||
dev/sdhci/sdhci_if.m optional sdhci
|
||||
dev/sdhci/sdhci_acpi.c optional sdhci acpi
|
||||
dev/sdhci/sdhci_pci.c optional sdhci pci
|
||||
dev/sf/if_sf.c optional sf pci
|
||||
dev/sge/if_sge.c optional sge pci
|
||||
dev/siis/siis.c optional siis pci
|
||||
dev/sis/if_sis.c optional sis pci
|
||||
|
2740
sys/dev/sf/if_sf.c
2740
sys/dev/sf/if_sf.c
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,118 +0,0 @@
|
||||
/* $FreeBSD$ */
|
||||
/*
|
||||
* MODULE: GFP_RX.H
|
||||
*
|
||||
* (c)2001 Adaptec, Inc. By using this software you agree that it is
|
||||
* licensed to you "AS IS" and that Adaptec makes no warranties,
|
||||
* express or implied, regarding the Software.
|
||||
* Any redistribution of this Software must include this disclaimer and
|
||||
* copyright notice.
|
||||
*/
|
||||
|
||||
static unsigned char rxfwdata[624] =
|
||||
{
|
||||
0x00,0x00,0x01,0x00,0x03,0xdc,
|
||||
0x00,0x86,0x04,0x00,0x04,0x21,
|
||||
0x18,0x0e,0x80,0x00,0x00,0x15,
|
||||
0x66,0x64,0x81,0x00,0x00,0x15,
|
||||
0x0b,0x06,0x1a,0x00,0x40,0xab,
|
||||
0x00,0x00,0x14,0x20,0x00,0x11,
|
||||
0xaa,0xaa,0x14,0x20,0x40,0x22,
|
||||
0x03,0x00,0x14,0x20,0x40,0x22,
|
||||
0x00,0x00,0x14,0x20,0x40,0x22,
|
||||
0x0b,0x14,0x1a,0x00,0x40,0xab,
|
||||
0x00,0x00,0x14,0x20,0x00,0x11,
|
||||
0x00,0x02,0x83,0x00,0x00,0x15,
|
||||
0x00,0x00,0x04,0x00,0x00,0x21,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x87,0x04,0x00,0x04,0x21,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x00,0x80,0x15,
|
||||
0x00,0x00,0x00,0x00,0x00,0x3e,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x40,0x00,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x00,0x9e,0x80,0x50,
|
||||
0x00,0x00,0x03,0x00,0x80,0x15,
|
||||
0x00,0x00,0x86,0x00,0x80,0x15,
|
||||
0x80,0x00,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x01,0x00,0x00,0x1c,
|
||||
0x01,0x0c,0x00,0x00,0x50,0xa0,
|
||||
0x60,0x08,0x4e,0x20,0xd0,0x11,
|
||||
0x40,0x08,0x14,0x20,0xd0,0x12,
|
||||
0x70,0x00,0x00,0x00,0xf0,0x90,
|
||||
0x30,0x00,0x00,0x00,0xc8,0xb0,
|
||||
0x00,0x00,0x00,0x00,0x40,0x40,
|
||||
0x00,0x00,0x00,0x10,0x80,0x15,
|
||||
0x40,0x00,0x00,0xa2,0xc1,0x50,
|
||||
0x00,0x14,0x00,0xa4,0x00,0xb0,
|
||||
0x00,0x00,0x00,0x00,0x00,0x20,
|
||||
0x25,0x25,0x25,0x00,0x40,0x0d,
|
||||
0x31,0x00,0x00,0x04,0x72,0x20,
|
||||
0x00,0x00,0x00,0x93,0x40,0x70,
|
||||
0x00,0x00,0x00,0x00,0x00,0x20,
|
||||
0x01,0x84,0x00,0x92,0x44,0x60,
|
||||
0x00,0x00,0x2b,0x20,0xc0,0x11,
|
||||
0x05,0x40,0x00,0x00,0xc4,0x20,
|
||||
0x42,0x2d,0x36,0x01,0x40,0x18,
|
||||
0x00,0x00,0x14,0x20,0x00,0x11,
|
||||
0x01,0x83,0x00,0x92,0x44,0x60,
|
||||
0x00,0x34,0x32,0x00,0x00,0x1f,
|
||||
0x00,0x02,0x02,0xac,0x00,0x15,
|
||||
0x00,0x08,0x00,0xa6,0x01,0x10,
|
||||
0x00,0x00,0x42,0x20,0x00,0x11,
|
||||
0x01,0x03,0x00,0x92,0x40,0x60,
|
||||
0x00,0x00,0x00,0x00,0x00,0x1e,
|
||||
0x01,0x00,0x00,0x00,0x00,0x20,
|
||||
0x00,0x00,0x00,0x00,0x00,0x1e,
|
||||
0x00,0x86,0x00,0x92,0x44,0x60,
|
||||
0x00,0x00,0x00,0x00,0x40,0x80,
|
||||
0x00,0x00,0x00,0x92,0xc0,0x70,
|
||||
0x01,0x00,0x00,0x92,0x40,0x60,
|
||||
0x50,0x00,0x00,0x00,0xc8,0x90,
|
||||
0x00,0x00,0x00,0xa6,0xc1,0x10,
|
||||
0x00,0x12,0x00,0xb0,0xc0,0x90,
|
||||
0x00,0x00,0x02,0x1c,0x00,0x15,
|
||||
0x00,0x34,0x32,0x00,0x00,0x1f,
|
||||
0x05,0x10,0x00,0x92,0x44,0x60,
|
||||
0x00,0x00,0x44,0x21,0x00,0x11,
|
||||
0x00,0x00,0x42,0x00,0x00,0x11,
|
||||
0x00,0x40,0x83,0x00,0x00,0x15,
|
||||
0x05,0x08,0x00,0x92,0x44,0x60,
|
||||
0x45,0x45,0x45,0x01,0x40,0x18,
|
||||
0x00,0x00,0x00,0x80,0x80,0x50,
|
||||
0x00,0x40,0x83,0x00,0x00,0x15,
|
||||
0x00,0x00,0x62,0x20,0x80,0x12,
|
||||
0x08,0x00,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x15,0x20,0x00,0x11,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0xee,0xa4,0x80,0x00,0x00,0x15,
|
||||
0x00,0x5f,0x81,0x00,0x00,0x15,
|
||||
0x00,0x00,0x00,0x00,0x00,0x60,
|
||||
0x00,0x00,0x00,0x00,0x41,0x20,
|
||||
0x40,0x00,0x00,0x00,0x4a,0x00,
|
||||
0x01,0x90,0x00,0x92,0x44,0x60,
|
||||
0x59,0x56,0x56,0x01,0x40,0x1a,
|
||||
0x00,0x00,0x14,0x00,0x00,0x11,
|
||||
0x00,0x18,0x00,0x93,0x40,0x50,
|
||||
0x00,0x18,0x00,0x93,0x00,0x50,
|
||||
0x00,0x2d,0x36,0x01,0x40,0x3a,
|
||||
0x00,0x00,0x00,0x06,0x43,0xa9,
|
||||
0x01,0x40,0x00,0x00,0xc4,0x20,
|
||||
0x59,0x56,0x56,0x01,0x40,0x1a,
|
||||
0x00,0x00,0x14,0x00,0x00,0x11,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x06,0x42,0xa9,
|
||||
0x01,0x83,0x00,0x02,0x44,0x20,
|
||||
0x59,0x56,0x56,0x01,0x40,0x1a,
|
||||
0x20,0x00,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x15,0x20,0x00,0x11,
|
||||
0x00,0x10,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x15,0x20,0x00,0x11,
|
||||
0x00,0x10,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x15,0x20,0x00,0x11
|
||||
};
|
@ -1,118 +0,0 @@
|
||||
/* $FreeBSD$ */
|
||||
/*
|
||||
* MODULE: GFP_TX.H
|
||||
*
|
||||
* (c)2001 Adaptec, Inc. By using this software you agree that it is
|
||||
* licensed to you "AS IS" and that Adaptec makes no warranties,
|
||||
* express or implied, regarding the Software.
|
||||
* Any redistribution of this Software must include this disclaimer and
|
||||
* copyright notice.
|
||||
*/
|
||||
|
||||
static unsigned char txfwdata[624] =
|
||||
{
|
||||
0x00,0x00,0x01,0x00,0x03,0xdc,
|
||||
0x00,0x86,0x04,0x00,0x04,0x21,
|
||||
0x18,0x0e,0x80,0x00,0x00,0x15,
|
||||
0x66,0x64,0x81,0x00,0x00,0x15,
|
||||
0x0b,0x06,0x1a,0x00,0x40,0xab,
|
||||
0x00,0x00,0x14,0x20,0x00,0x11,
|
||||
0xaa,0xaa,0x14,0x20,0x40,0x22,
|
||||
0x03,0x00,0x14,0x20,0x40,0x22,
|
||||
0x00,0x00,0x14,0x20,0x40,0x22,
|
||||
0x0b,0x14,0x1a,0x00,0x40,0xab,
|
||||
0x00,0x00,0x14,0x20,0x00,0x11,
|
||||
0x00,0x02,0x83,0x00,0x00,0x15,
|
||||
0x00,0x00,0x04,0x00,0x00,0x21,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x0c,0x14,0x20,0x40,0x22,
|
||||
0x00,0x87,0x04,0x00,0x04,0x21,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x00,0x80,0x15,
|
||||
0x00,0x00,0x00,0x00,0x00,0x3e,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x40,0x00,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x00,0x9e,0x80,0x50,
|
||||
0x00,0x00,0x03,0x00,0x80,0x15,
|
||||
0x00,0x00,0x86,0x00,0x80,0x15,
|
||||
0x80,0x00,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x01,0x00,0x00,0x1c,
|
||||
0x01,0x0c,0x00,0x00,0x50,0xa0,
|
||||
0x60,0x08,0x4e,0x20,0xd0,0x11,
|
||||
0x40,0x08,0x14,0x20,0xd0,0x12,
|
||||
0x70,0x00,0x00,0x00,0xf0,0x90,
|
||||
0x30,0x00,0x00,0x00,0xc8,0xb0,
|
||||
0x00,0x00,0x00,0x00,0x40,0x40,
|
||||
0x00,0x00,0x00,0x10,0x80,0x15,
|
||||
0x40,0x00,0x00,0xa2,0xc1,0x50,
|
||||
0x00,0x14,0x00,0xa4,0x00,0xb0,
|
||||
0x00,0x00,0x00,0x00,0x00,0x20,
|
||||
0x25,0x25,0x25,0x00,0x40,0x0d,
|
||||
0x31,0x00,0x00,0x04,0x72,0x20,
|
||||
0x00,0x00,0x00,0x93,0x40,0x70,
|
||||
0x00,0x00,0x00,0x00,0x00,0x20,
|
||||
0x01,0x84,0x00,0x92,0x44,0x60,
|
||||
0x00,0x00,0x2b,0x20,0xc0,0x11,
|
||||
0x05,0x40,0x00,0x00,0xc4,0x20,
|
||||
0x4b,0x2d,0x36,0x01,0x40,0x18,
|
||||
0x00,0x00,0x14,0x20,0x00,0x11,
|
||||
0x01,0x83,0x00,0x92,0x44,0x60,
|
||||
0x00,0x34,0x32,0x00,0x00,0x1f,
|
||||
0x00,0x02,0x02,0xac,0x00,0x15,
|
||||
0x00,0x08,0x00,0xa6,0x01,0x10,
|
||||
0x00,0x00,0x42,0x20,0x00,0x11,
|
||||
0x01,0x03,0x00,0x92,0x40,0x60,
|
||||
0x00,0x00,0x00,0x00,0x00,0x1e,
|
||||
0x01,0x00,0x00,0x00,0x00,0x20,
|
||||
0x00,0x00,0x00,0x00,0x00,0x1e,
|
||||
0x00,0x86,0x00,0x92,0x44,0x60,
|
||||
0x00,0x00,0x00,0x00,0x40,0x80,
|
||||
0x00,0x00,0x00,0x92,0xc0,0x70,
|
||||
0x01,0x00,0x00,0x92,0x40,0x60,
|
||||
0x50,0x00,0x00,0x00,0xc8,0x90,
|
||||
0x00,0x00,0x00,0xa6,0xc1,0x10,
|
||||
0x00,0x12,0x00,0xb0,0xc0,0x90,
|
||||
0x00,0x00,0x02,0x1c,0x00,0x15,
|
||||
0x00,0x34,0x32,0x00,0x00,0x1f,
|
||||
0x05,0x10,0x00,0x92,0x44,0x60,
|
||||
0x00,0x00,0x45,0x21,0x00,0x11,
|
||||
0x00,0x00,0x42,0x00,0x00,0x11,
|
||||
0x43,0x43,0x43,0x01,0x40,0x18,
|
||||
0x00,0x40,0x83,0x00,0x00,0x15,
|
||||
0x05,0x08,0x00,0x92,0x44,0x60,
|
||||
0x00,0x00,0x00,0x80,0x80,0x50,
|
||||
0x00,0x00,0x62,0x20,0x80,0x12,
|
||||
0x08,0x00,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x15,0x20,0x00,0x11,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x00,0x00,0x50,
|
||||
0x00,0x00,0x00,0x07,0x00,0x50,
|
||||
0x42,0x2d,0x36,0x01,0x40,0x18,
|
||||
0xee,0xa4,0x80,0x00,0x00,0x15,
|
||||
0x00,0x5f,0x81,0x00,0x00,0x15,
|
||||
0x00,0x00,0x00,0x00,0x00,0x60,
|
||||
0x00,0x00,0x00,0x00,0x41,0x20,
|
||||
0x40,0x00,0x00,0x00,0x4a,0x00,
|
||||
0x01,0x90,0x00,0x92,0x44,0x60,
|
||||
0x59,0x56,0x56,0x01,0x40,0x1a,
|
||||
0x00,0x00,0x14,0x00,0x00,0x11,
|
||||
0x00,0x18,0x00,0x93,0x40,0x50,
|
||||
0x00,0x18,0x00,0x93,0x00,0x50,
|
||||
0x00,0x2d,0x36,0x01,0x40,0x3a,
|
||||
0x00,0x00,0x00,0x06,0x43,0xa9,
|
||||
0x01,0x40,0x00,0x00,0xc4,0x20,
|
||||
0x59,0x56,0x56,0x01,0x40,0x1a,
|
||||
0x00,0x00,0x14,0x00,0x00,0x11,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x00,0x00,0x10,
|
||||
0x00,0x00,0x00,0x06,0x42,0xa9,
|
||||
0x01,0x83,0x00,0x02,0x44,0x20,
|
||||
0x59,0x56,0x56,0x01,0x40,0x1a,
|
||||
0x20,0x00,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x15,0x20,0x00,0x11,
|
||||
0x00,0x10,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x15,0x20,0x00,0x11,
|
||||
0x00,0x10,0x82,0x00,0x00,0x15,
|
||||
0x00,0x00,0x15,0x20,0x00,0x11
|
||||
};
|
@ -255,7 +255,6 @@ device nfe # nVidia nForce MCP on-board Ethernet
|
||||
device nge # NatSemi DP83820 gigabit Ethernet
|
||||
device re # RealTek 8139C+/8169/8169S/8110S
|
||||
device rl # RealTek 8129/8139
|
||||
device sf # Adaptec AIC-6915 (``Starfire'')
|
||||
device sge # Silicon Integrated Systems SiS190/191
|
||||
device sis # Silicon Integrated Systems SiS 900/SiS 7016
|
||||
device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
|
||||
|
@ -325,7 +325,6 @@ SUBDIR= \
|
||||
sdhci_pci \
|
||||
sem \
|
||||
send \
|
||||
${_sf} \
|
||||
${_sfxge} \
|
||||
sge \
|
||||
${_sgx} \
|
||||
@ -516,7 +515,6 @@ _pfsync= pfsync
|
||||
_bce= bce
|
||||
_fxp= fxp
|
||||
_ispfw= ispfw
|
||||
_sf= sf
|
||||
_ti= ti
|
||||
_txp= txp
|
||||
|
||||
|
@ -1,9 +0,0 @@
|
||||
# $FreeBSD$
|
||||
|
||||
.PATH: ${SRCTOP}/sys/dev/sf
|
||||
|
||||
KMOD= if_sf
|
||||
SRCS= if_sf.c device_if.h bus_if.h pci_if.h
|
||||
SRCS+= miibus_if.h
|
||||
|
||||
.include <bsd.kmod.mk>
|
@ -203,7 +203,6 @@ device hme # Sun HME (Happy Meal Ethernet)
|
||||
device nge # NatSemi DP83820 gigabit Ethernet
|
||||
device re # RealTek 8139C+/8169/8169S/8110S
|
||||
device rl # RealTek 8129/8139
|
||||
device sf # Adaptec AIC-6915 (``Starfire'')
|
||||
device sis # Silicon Integrated Systems SiS 900/SiS 7016
|
||||
device sk # SysKonnect SK-984x & SK-982x gigabit Ethernet
|
||||
device ste # Sundance ST201 (D-Link DFE-550TX)
|
||||
|
Loading…
Reference in New Issue
Block a user