Date: Tue, 23 Jun 2009 20:36:59 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: cvs-src-old@freebsd.org Subject: cvs commit: src/sys/conf files src/sys/dev/gem if_gem.c if_gem_pci.c if_gem_sbus.c if_gemreg.h if_gemvar.h src/sys/modules/gem Makefile Message-ID: <200906232050.n5NKo17M068758@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
marius 2009-06-23 20:36:59 UTC FreeBSD src repository Modified files: sys/conf files sys/dev/gem if_gem.c if_gem_pci.c if_gemreg.h if_gemvar.h sys/modules/gem Makefile Added files: sys/dev/gem if_gem_sbus.c Log: SVN rev 194763 on 2009-06-23 20:36:59Z by marius - Initialize the ifnet structure, especially if_dname, before probing the PHYs as some PHY drivers use it (but probably shouldn't). How gem(4) has worked with brgphy(4) on powerpc without this so far is unclear to me. - Introduce a dying flag which is set during detach and checked in gem_ioctl() in order to prevent active BPF listeners to clear promiscuous mode which may lead to the tick callout being restarted which will trigger a panic once it's actually gone. - In gem_stop() reset rather than just disable the transmitter and receiver in order to ensure we're not unloading DMA maps still in use by the hardware. [1] - The blanking time is specified in PCI clocks so we should use twice the value when operating at 66MHz. - Spell some 2 as ETHER_ALIGN and a 19 as GEM_STATUS_TX_COMPLETION_SHFT to make the actual intentions clear. - As we don't unload the peak attempts counter ignore its overflow interrupts. - Remove a stale setting of a variable to GEM_TD_INTERRUPT_ME which isn't used afterwards. - For optimum performance increment the TX kick register in multiples of 4 if possible as suggested by the documentation. - Partially revert r164931; drivers should only clear the watchdog timer if all outstanding TX descriptors are done. - Fix some debugging strings. - Add a missing BUS_DMASYNC_POSTWRITE in gem_rint(). - As the error paths in the interrupt handler are generally unlikely predict them as false. - Add support for the SBus version of the GEM controller. [2] - Add some lock assertions. - Improve some comments. - Fix some more or less cosmetic issues in the code of the PCI front-end. - Change some softc members to be unsigned where more appropriate and remove unused ones. Approved by: re (kib) Obtained from: NetBSD (partially) [2], OpenBSD [1] MFC after: 2 weeks Revision Changes Path 1.1444 +1 -0 src/sys/conf/files 1.52 +148 -89 src/sys/dev/gem/if_gem.c 1.26 +23 -23 src/sys/dev/gem/if_gem_pci.c 1.1 +210 -0 src/sys/dev/gem/if_gem_sbus.c (new) 1.8 +164 -178 src/sys/dev/gem/if_gemreg.h 1.18 +24 -26 src/sys/dev/gem/if_gemvar.h 1.2 +5 -1 src/sys/modules/gem/Makefile
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906232050.n5NKo17M068758>