summaryrefslogtreecommitdiff
path: root/sys/dev/de
AgeCommit message (Expand)Author
2009-02-09tulip_busdma_cleanup: pass correct vaddr (2nd arg) to bus_dmamem_free()Max Khon
2008-04-05During attach on some de(4) adapters the driver sends out a test packet asJohn Baldwin
2007-06-07The maxsegsz of a dma tag created in de(4) is TULIP_DATA_PER_DESC bytes.Pyun YongHyeon
2007-05-20Increase size of timer counter bitfield to accomodate the actual size of theMatt Jacob
2007-02-23o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati
2006-09-15- Consistently use if_printf() only in interface methods: if_start(),Gleb Smirnoff
2006-05-12Remove various bits of conditional Alpha code and fixup a few comments.John Baldwin
2006-02-26Repo copy de driver to dev/de, and adjust.Warner Losh
2005-12-22Use the copy of the card's MAC address saved in tulip_enaddr() in the softcJohn Baldwin
2005-12-21Use ETHER_ADDR_LEN rather than hardcoding 6.John Baldwin
2005-12-01Fix the type of "eaddr" to guarantee the required alignment.Ruslan Ermilov
2005-11-30Byte copy IF_LLADDR() on stack to align it to be safe for typecasts.Ruslan Ermilov
2005-11-21Various fixes to make de(4) not panic after ru@'s IF_LLADDR() changes:John Baldwin
2005-11-11- Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov
2005-08-26- Use m_defrag() instead of homerolling our own variantJohn Baldwin
2005-08-25- Remove non-bus-dma code.John Baldwin
2005-08-25Major rototill of this driver to add FreeBSD bus-dma support:John Baldwin
2005-08-17- Use htole32() instead of using bswap32() conditional on #if BYTE_ORDER.John Baldwin
2005-08-17Remove the unused TULIP_CSR_{READ,WRITE}BYTE macros.John Baldwin
2005-08-09Call tulip_start() rather than tulip_ifstart() from the interrupt handlerJohn Baldwin
2005-08-09Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson
2005-08-03Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson
2005-07-27- Use callout_*() rather than timeout() to periodically poll the media.John Baldwin
2005-07-21- Use the PCIR_BAR() macro rather than hardcoding rids.John Baldwin
2005-07-21Don't set if_start to tulip_ifstart all over the place. It is alreadyJohn Baldwin
2005-07-21Remove conditional code that has largely rotted that is also not on byJohn Baldwin
2005-07-21Use get_cyclecount() rather than hardcoding rdtsc and rpcc in asm for i386John Baldwin
2005-07-21Fix a typo and some whitespace nits.John Baldwin
2005-06-10Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis
2005-02-24Return BUS_PROBE_DEFAULT instead of 0.Warner Losh
2004-11-08Hide link up/down/media printfs behind bootverbosePoul-Henning Kamp
2004-10-18fix (for me) the problems where if_de gets really slow after timeJohn-Mark Gurney
2004-08-13Since the if_de driver doesn't contain locking, mark it asRobert Watson
2004-07-09Apply the long-overdue hatchet of style(9) death to this file.Bruce M Simpson
2004-07-05style(9) pass on prototypes.Bruce M Simpson
2004-07-04Consistently use __inline instead of __inline__ as the former is an empty macroStefan Farfeleder
2004-07-02Bring in the first chunk of altq driver modifications. This covers theMax Laier
2004-06-09Replace handrolled CRC calculation with ether_crc32_[lb]e().Christian Weisgerber
2004-05-30Add missing <sys/module.h> includesPoul-Henning Kamp
2004-03-17Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson
2004-03-14Announce ethernet MAC addresss in ether_ifattach().Matthew N. Dodd
2004-03-11Stop setting ifp->if_output to ether_output() since ether_ifattach()Maxime Henrion
2003-10-31Replace the if_name and if_unit members of struct ifnet with new membersBrooks Davis
2003-08-22Prefer new location of pci include files (which have only been in theWarner Losh
2003-06-13Fix alignment requirements of tulip_rombuf by further increasingBernd Walter
2003-06-11Use __FBSDID().David E. O'Brien
2003-05-31Move some FALLTHROUGH comments so they work.Poul-Henning Kamp
2003-04-15- Express hard dependencies on bus (pci, isa, pccard) andMatthew N. Dodd
2003-03-21- Use if_broadcastaddr from struct ifnet rather than relying onMatthew N. Dodd
2003-02-19Back out M_* changes, per decision of the TRB.Warner Losh