summaryrefslogtreecommitdiffstats
path: root/sys/dev/bfe
Commit message (Collapse)AuthorAgeFilesLines
* The whitespace crusader strikes!des2004-08-072-95/+95
|
* Bring in the first chunk of altq driver modifications. This covers themlaier2004-07-021-4/+6
| | | | | | | | | | | following drivers: bfe(4), em(4), fxp(4), lnc(4), tun(4), de(4) rl(4), sis(4) and xl(4) More patches are pending on: http://peoples.freebsd.org/~mlaier/ Please take a look and tell me if "your" driver is missing, so I can fix this. Tested-by: many No-objection: -current, -net
* Add missing <sys/module.h> includesphk2004-05-301-0/+1
|
* Set the IFCAP_VLAN_MTU bit in capenable as well.des2004-05-251-0/+1
| | | | Reminded by: ru
* Set baudrate to 100 Mbps, and advertise our ability to handle extendeddes2004-05-251-1/+7
| | | | | | frames (802.1q). Submitted by: Steinar Haug <sthaug@nethelp.no>
* We don't need to initialize if_output, ether_ifattach() does itmux2004-05-231-1/+0
| | | | for us.
* Apply fix for long timeouts on driver initialisation.dmlb2004-05-231-2/+7
| | | | | | PR: 64656 Submitted by: Jianqin Qu <jqu@its.brooklyn.cuny.edu> Reviewed by: dmlb
* Added BSD license, as requested by author.wes2004-04-041-0/+22
| | | | | Requested-by: Stuart Walsh <stu@ipng.org.uk> Message-ID: <20040331190716.GB32835@deepfreeze.stu>
* Convert callers to the new bus_alloc_resource_any(9) API.njl2004-03-171-2/+2
| | | | | Submitted by: Mark Santcroos <marks@ripe.net> Reviewed by: imp, dfr, bde
* Announce ethernet MAC addresss in ether_ifattach().mdodd2004-03-141-3/+0
|
* When we get a packet error, move on, don't go into an infinite loopjulian2004-03-021-0/+2
| | | | | | looking at it. fixes at least one cause of "hanging" due to this driver.
* Whitespace changes to match rest of file..julian2004-03-021-65/+102
|
* Drop the driver lock around calls to if_input to avoid a LOR whensam2003-11-141-0/+2
| | | | | | | | the packets are immediately returned for sending (e.g. when bridging or packet forwarding). There are more efficient ways to do this but for now use the least intrusive approach. Reviewed by: imp, rwatson
* Replace the if_name and if_unit members of struct ifnet with new membersbrooks2003-10-311-2/+1
| | | | | | | | | | | | | if_xname, if_dname, and if_dunit. if_xname is the name of the interface and if_dname/unit are the driver name and instance. This change paves the way for interface renaming and enhanced pseudo device creation and configuration symantics. Approved By: re (in principle) Reviewed By: njl, imp Tested On: i386, amd64, sparc64 Obtained From: NetBSD (if_xname)
* Remove unnecessary #include of brgphyreg.h, left over from when Stuart usedwpaul2003-09-091-1/+0
| | | | the bge(4) driver as a template.
* Add a device driver for the Broadcom BCM4401 ethernet controller,wpaul2003-09-092-0/+2069
written by Stuart Walsh and Duncan Barclay (with some kibbitzing by me). I'm checking it in on Stuart's behalf. The BCM4401 is built into several x86 laptop and desktop systems. For the moment, I have only enabled it in the x86 kernel config because although it's a PCI device, I haven't heard of any standalone NICs that use it. If somebody knows of one, we can easily add it to the other arches. This driver uses register/structure data gleaned from the Linux driver released by Broadcom, but does not contain any of the code from the Linux driver itself. It uses busdma.
OpenPOWER on IntegriCloud