summaryrefslogtreecommitdiff
path: root/sys/dev/gem
Commit message (Expand)AuthorAgeFilesLines
* MFC: r179925Marius Strobl2008-07-131-90/+90
* MFC: r176996, r177560Marius Strobl2008-06-114-222/+296
* MFC: if_npe.c 1.8, if_gem.c 1.47, if_msk.c 1.27, if_nfe.c 1.25, if_wpi.c 1.6Pyun YongHyeon2008-03-181-88/+1
* MFC: if_gem.c 1.46; if_gem_pci.c 1.24; if_gemreg.h 1.6; if_gemvar.h 1.16Marius Strobl2008-03-174-514/+423
* MFC if_gem.c, rev 1.45 to RELENG_7:Pyun YongHyeon2007-10-181-0/+5
* o Revert the part of if_gem.c rev. 1.35 which added a call to gem_stop()Marius Strobl2007-09-264-417/+774
* - In gem_bitwait() check that the bit clears/was set in the contentMarius Strobl2007-06-161-2/+2
* o Implemented Rx/Tx checksum offload. The simple checksum logic inPyun YongHyeon2007-06-043-224/+420
* Since if_gem is being touted as one of our more architecturallyPoul-Henning Kamp2007-05-043-195/+141
* o break newbus api: add a new argument of type driver_filter_t toPaolo Pisati2007-02-231-1/+1
* - Use the gem_tick() callout instead of if_slowtimo() for drivingMarius Strobl2006-12-062-22/+25
* add a newbus method for obtaining the bus's bus_dma_tag_t... This isJohn-Mark Gurney2006-09-031-3/+4
* add missed calls to bpf_peers_presentSam Leffler2006-06-021-2/+1
* Fix -Wundef warnings found when compiling i386 LINT, GENERIC andRuslan Ermilov2005-12-051-1/+1
* - Store pointer to the link-level address right in "struct ifnet"Ruslan Ermilov2005-11-111-1/+1
* - In gem_ioctl() move the call to ether_ioctl() to the default case ofMarius Strobl2005-09-181-47/+29
* - Allow for VLAN-sized frames and set IFCAP_VLAN_MTU.Marius Strobl2005-08-281-8/+23
* Propagate rename of IFF_OACTIVE and IFF_RUNNING to IFF_DRV_OACTIVE andRobert Watson2005-08-091-8/+9
* Modify device drivers supporting multicast addresses to lock if_addr_mtxRobert Watson2005-08-031-0/+2
* Remove NOP spl*() calls and add locking (making gem(4) MPSAFE).Marius Strobl2005-07-243-35/+118
* - Wrap the handler and associated code for collecting completed RXMarius Strobl2005-07-241-31/+23
* Stop the interface before detaching and freeing it, rather than after.Brooks Davis2005-06-121-1/+1
* Stop embedding struct ifnet at the top of driver softcs. Instead theBrooks Davis2005-06-103-15/+24
* Use BUS_PROBE_DEFAULT for pci probe return valueWarner Losh2005-03-051-1/+1
* Start each of the license/copyright comments with /*-, minor shuffle of linesWarner Losh2005-01-063-3/+3
* Since if_gem doesn't contain locking or run with INTR_MPSAFE, markRobert Watson2004-08-131-1/+2
* - Remove a variable no longer used after the conversion to ether_crc32_le().Marius Strobl2004-06-101-4/+2
* Replace handrolled CRC calculation with ether_crc32_[lb]e().Christian Weisgerber2004-06-091-17/+1
* Add missing <sys/module.h> includes currently relying on nested includePoul-Henning Kamp2004-06-032-0/+2
* We don't need to initialize if_output, ether_ifattach() does itMaxime Henrion2004-05-231-1/+0
* Clean up two printf()s that were on a line by themselves unintendedlyThomas Moestl2004-04-231-2/+2
* Let ether_ifattach() announce our MAC address.Matthew N. Dodd2004-03-201-5/+0
* Convert callers to the new bus_alloc_resource_any(9) API.Nate Lawson2004-03-171-4/+4
* Add new Apple GEM PCI id.Peter Grehan2004-02-021-0/+1
* Properly initialize all members of the sentinel entry.David E. O'Brien2003-12-261-1/+1
* Replace the if_name and if_unit members of struct ifnet with new membersBrooks Davis2003-10-311-2/+2
* Preparatory commit to allow prototypes in ofw_machdep.h to containMarcel Moolenaar2003-09-021-0/+1
* Use __FBSDID().David E. O'Brien2003-08-242-4/+7
* s=gem/foo=dev/gem/foo=Warner Losh2003-08-231-2/+2
* Mega busdma API commit.Scott Long2003-07-011-4/+4
* Some gem and hme hardware bogusly has the intpin register hardwired toThomas Moestl2003-07-011-3/+6
* Miscellaneous fixes:Thomas Moestl2003-05-152-6/+59
* - Don't call pci_enable_io() in drivers (unless needed for resume).Matthew N. Dodd2003-04-161-1/+0
* - Express hard dependencies on bus (pci, isa, pccard) andMatthew N. Dodd2003-04-151-1/+3
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-1/+1
* Free resources when failing to set up the interrupt.Thomas Moestl2003-01-211-0/+1
* bus_dmamap_sync() overhaul:Thomas Moestl2003-01-212-22/+18
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-1/+1
* Add detach, shutdown, suspend and resume methods. The latter two areThomas Moestl2003-01-083-42/+97
* - Convert to use bus_dmamap_load_mbuf().Thomas Moestl2003-01-062-397/+155