Revision tags: release/6.3.0_cvs, release/6.3.0 |
|
#
6a087a87 |
| 22-Nov-2007 |
Pyun YongHyeon <yongari@FreeBSD.org> |
Fix function prototype for device_shutdown method.
|
#
cbb1d39d |
| 16-Nov-2007 |
Sam Leffler <sam@FreeBSD.org> |
use the private task q thread instead of the shared system thread
Reviewed by: yongari MFC after: 1 week
|
#
144e07f0 |
| 06-Nov-2007 |
Pyun YongHyeon <yongari@FreeBSD.org> |
Apparently some NVIDIA NICs store ethernet address in reverse order while other variants have inorder ethernet address for the same chipset. Override ethernet address ordering if we already know how
Apparently some NVIDIA NICs store ethernet address in reverse order while other variants have inorder ethernet address for the same chipset. Override ethernet address ordering if we already know how it was stored. This fixes the use of inversed ethernet address on MCP67.
Submitted by: ariff MFC after: 3 days
show more ...
|
#
0142a9b1 |
| 14-Sep-2007 |
Pyun YongHyeon <yongari@FreeBSD.org> |
During boot(before setting IP address) PHY can generate link state change interrupt if the link is established with link parter. However interrupt handler didn't acknowledge the interrupt if nfe(4) w
During boot(before setting IP address) PHY can generate link state change interrupt if the link is established with link parter. However interrupt handler didn't acknowledge the interrupt if nfe(4) was not running at the time of interrupt delivery. This caused endless interrupt generation. Fix the bug by acknowledging the interrupt regardless of running state of the driver.
PR: kern/116295 Submitted by: Mark Derbyshire (mark At taom dot com) Approved by: re (kensmith)
show more ...
|
#
50c55b29 |
| 14-Sep-2007 |
Pyun YongHyeon <yongari@FreeBSD.org> |
Fix typo.
Pointed out: marius Approved by: re (bmah)
|
#
8b590ad2 |
| 24-Jul-2007 |
Pyun YongHyeon <yongari@FreeBSD.org> |
Don't fail on device attach if jumbo frame support was unsuccessful. Because nfe(4) hardware doesn't support SG on Rx path, supporting jumbo frame requires very large contiguous kernel memory(i.e. se
Don't fail on device attach if jumbo frame support was unsuccessful. Because nfe(4) hardware doesn't support SG on Rx path, supporting jumbo frame requires very large contiguous kernel memory(i.e. several mega bytes). In case of lack of contiguous kernel memory that allocation request may always fail. However nfe(4) can operate on normal sized MTU frames, so go ahead and just disable jumbo frame support. While I'm here add a new tunable "hw.nfe.jumbo_disable" to disable jumbo frame support. In nfe_poll, make sure to invoke correct Rx handler.
Approved by: re (kensmith)
show more ...
|
#
1c889016 |
| 12-Jun-2007 |
Pyun YongHyeon <yongari@FreeBSD.org> |
Increase a maximum segment size of DMA to 4096. Previously it used MCLBYTES for the segment size but it used too many Tx descriptors in TSO case. While I'm here adjust maximum size of the sum of all
Increase a maximum segment size of DMA to 4096. Previously it used MCLBYTES for the segment size but it used too many Tx descriptors in TSO case. While I'm here adjust maximum size of the sum of all segment lengths in a given DMA mapping to 65535, the maximum size, in bytes, of a IP packet.
show more ...
|
#
aab5582f |
| 12-Jun-2007 |
Pyun YongHyeon <yongari@FreeBSD.org> |
Bring overhauled nfe(4) into tree.
o s/printf/device_printf/g o Nuke OpenBSDism. o Nuke NetBSD/OpenBSD specific DMA sync operations.(we don't have a way to sync a single descriptor within a DMA m
Bring overhauled nfe(4) into tree.
o s/printf/device_printf/g o Nuke OpenBSDism. o Nuke NetBSD/OpenBSD specific DMA sync operations.(we don't have a way to sync a single descriptor within a DMA map.) o Remove recursive mutex. o bus_dma(9) clean up. o 40bit DMA address support. o Add protection for Rx map load failure. o Fix a long standing bug for watchdog timeout. [1] o Add additional protections, missing Tx completion interrupt, losing start Tx command, for watchdog timeout. o Switch to taskqueue(9) API to handle interrupts. o Use our own timer for watchdog instead of if_watchdog/if_timer interface. o Advertise VLAN header length/capability correctly to upper layer. o Remove excessive kernel stack consumption in nfe_encap(). o Handle highly fragmented mbuf chains correctly. o Enable etherenet address reprogramming with ifconfig(8). o Add ALTQ/TSO, MSI/MSIX support. o Increased Rx ring to 256 descriptors from 128. o Align Tx/Rx descriptor ring on sizeof(struct nfe_desc64) boundary. o Remove alignment restrictions on Tx/Rx buffers. o Rewritten jumbo frame support code. o Add support for hardware assistend VLAN tag insertion/stripping. o Add support for Tx/Rx flow control based on patches from Peer Chen. [2] o Add a routine that detects whether ethernet address swap routines is required. [3] o Add a workaround that take MAC/PHY out of power down mode. o Add suspend/resume support. o style(9) and code clean up.
Special thanks to Shigeaki Tagashira, the original porter of nfe(4), who submitted lots of patches, performed uncountable number of regression tests and maintained nfe(4) for a long time. Without his enthusiastic help and support I could never have completed this overhauling task.
The only weak point of nfe(4) compared to nve(4) is instability of manual half-duplex media selection on certain hardwares(auto sensing media type should work for all cases, though). This was a long standing bug of nfe(4) and I still have no idea why it doesn't work on some hardwares.
Obtained from: OpenBSD [1] Submitted by: Peer Chen < pchen at nvidia dot com > [2], [3] Reviewed by: Shigeaki Tagashira < shigeaki AT se DOT hiroshima-u DOT ac DOT jp > Tested by: Shigeaki Tagashira, current Discussed with: current Silence from: obrien
show more ...
|
#
59a0d28b |
| 04-Mar-2007 |
Christian S.J. Peron <csjp@FreeBSD.org> |
Catch up the rest of the drivers with the ether_vlan_mtap modifications. If these drivers are setting M_VLANTAG because they are stripping the layer 2 802.1Q headers, then they need to be re-insertin
Catch up the rest of the drivers with the ether_vlan_mtap modifications. If these drivers are setting M_VLANTAG because they are stripping the layer 2 802.1Q headers, then they need to be re-inserting them so any bpf(4) peers can properly decode them.
It should be noted that this is compiled tested only.
MFC after: 3 weeks
show more ...
|
#
ef544f63 |
| 23-Feb-2007 |
Paolo Pisati <piso@FreeBSD.org> |
o break newbus api: add a new argument of type driver_filter_t to bus_setup_intr()
o add an int return code to all fast handlers
o retire INTR_FAST/IH_FAST
For more info: http://docs.freebsd.org
o break newbus api: add a new argument of type driver_filter_t to bus_setup_intr()
o add an int return code to all fast handlers
o retire INTR_FAST/IH_FAST
For more info: http://docs.freebsd.org/cgi/getmsg.cgi?fetch=465712+0+current/freebsd-current
Reviewed by: many Approved by: re@
show more ...
|
Revision tags: release/6.2.0_cvs, release/6.2.0 |
|
#
7597761a |
| 27-Nov-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
Fix TX/RX checksum offload.
Submitted by: Peer Chen at nVIDIA
|
#
30ce3a12 |
| 27-Nov-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
Reformat to KNF after revision 1.12.
|
#
6124fe21 |
| 27-Nov-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
Fix the jumbo frame support.
Submitted by: Peer Chen at nVIDIA (reworked by me)
|
#
a0f9e922 |
| 27-Nov-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
Grrr. new .vimrc file is really giving me trouble.. get the whitespace right.
|
#
96058696 |
| 27-Nov-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
Fix editor fatfingering in rev 1.9.
|
#
9565e1fa |
| 27-Nov-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
nfe_stop() requires lock to be held when calling.
|
#
9ae2249d |
| 17-Nov-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
Missed two nits in rev 1.7.
|
#
2c3adf61 |
| 19-Oct-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
style(9) cleanup.
|
#
6bec3967 |
| 16-Oct-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
Try to be more precise in identifying the various nForce networking adapters.
|
#
78ba57b9 |
| 17-Sep-2006 |
Andre Oppermann <andre@FreeBSD.org> |
Move ethernet VLAN tags from mtags to its own mbuf packet header field m_pkthdr.ether_vlan. The presence of the M_VLANTAG flag on the mbuf signifies the presence and validity of its content.
Driver
Move ethernet VLAN tags from mtags to its own mbuf packet header field m_pkthdr.ether_vlan. The presence of the M_VLANTAG flag on the mbuf signifies the presence and validity of its content.
Drivers that support hardware VLAN tag stripping fill in the received VLAN tag (containing both vlan and priority information) into the ether_vtag mbuf packet header field:
m->m_pkthdr.ether_vtag = vlan_id; /* ntohs()? */ m->m_flags |= M_VLANTAG;
to mark the packet m with the specified VLAN tag.
On output the driver should check the mbuf for the M_VLANTAG flag to see if a VLAN tag is present and valid:
if (m->m_flags & M_VLANTAG) { ... = m->m_pkthdr.ether_vtag; /* htons()? */ ... pass tag to hardware ... }
VLAN tags are stored in host byte order. Byte swapping may be necessary.
(Note: This driver conversion was mechanic and did not add or remove any byte swapping in the drivers.)
Remove zone_mtag_vlan UMA zone and MTAG_VLAN definition. No more tag memory allocation have to be done.
Reviewed by: thompsa, yar Sponsored by: TCP/IP Optimization Fundraise 2005
show more ...
|
#
3e232000 |
| 11-Sep-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
Add support for MCP61 and MCP65 adaptors.
Submitted by: Peer Chen at nVIDIA
|
#
d0220c83 |
| 14-Aug-2006 |
Ruslan Ermilov <ru@FreeBSD.org> |
Fix alignment of RX bufs DMA map to be realistic. Maybe it works on i386 (I don't know) but on amd64 at hand here, it paniced early at boot.
(I'm pretty sure that PAGE_SIZE here was miscopied from
Fix alignment of RX bufs DMA map to be realistic. Maybe it works on i386 (I don't know) but on amd64 at hand here, it paniced early at boot.
(I'm pretty sure that PAGE_SIZE here was miscopied from another place during porting, where in OpenBSD bus_dmamem_alloc() is used, but there PAGE_SIZE means completely different thing.)
show more ...
|
#
bfc788c2 |
| 27-Jun-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
Add a pure open source nForce Ethernet driver, under BSDL. This driver was ported from OpenBSD by Shigeaki Tagashira <shigeaki@se.hiroshima-u.ac.jp> and posted at http://www.se.hiroshima-u.ac.jp/~shi
Add a pure open source nForce Ethernet driver, under BSDL. This driver was ported from OpenBSD by Shigeaki Tagashira <shigeaki@se.hiroshima-u.ac.jp> and posted at http://www.se.hiroshima-u.ac.jp/~shigeaki/software/freebsd-nfe.html It was additionally cleaned up by me. It is still a work-in-progress and thus is purposefully not in GENERIC. And it conflicts with nve(4), so only one should be loaded.
show more ...
|
#
257c5577 |
| 26-Jun-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
Import the nfe (nForce Ethernet) driver from OpenBSD. This is a pure open source NIC driver with a BSD license. These bits were taken from the OpenBSD public CVS repository on 1-May-06.
|
#
d5638eab |
| 26-Jun-2006 |
David E. O'Brien <obrien@FreeBSD.org> |
This commit was generated by cvs2svn to compensate for changes in r159952, which included commits to RCS files with non-trunk default branches.
|