summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_bge.c
AgeCommit message (Expand)Author
2006-08-04move the promiscuous mode handling code into bge_setpromisc() and simplifyBrad Smith
2006-07-01recognize the 5750 C2.Brad Smith
2006-06-29do not return from the reset function if there was a timeoutBrad Smith
2006-06-27don't set BGE_DEBUG by default, reduces the bloat a bit. noticed by deraadt.Brad Smith
2006-06-27Disable Jumbos on the 5714 family of chips for now. The bge driver assumesBrad Smith
2006-06-22recognize the BCM5703 B0.Brad Smith
2006-06-21remove some unused code.Brad Smith
2006-06-21add the BCM5786 PCI id.Brad Smith
2006-06-20have bge_start() check for an empty send queue instead.Brad Smith
2006-06-20- check for revision B2 intead of B1 in one more spot.Brad Smith
2006-06-20add the BCM5755 and BCM5787 ASICs to the appropriate macros.Brad Smith
2006-06-19add the new ASIC revs to the bge_majorrevs table.Brad Smith
2006-06-19add new PCI ids.Brad Smith
2006-06-17add sys/timeout.hBrad Smith
2006-06-15make these tables look a little bit nicer.Brad Smith
2006-06-11the link state detection code should be checking for revision B2 insteadBrad Smith
2006-06-02Deja-vu - again I make bge stop claiming all interrupts for it's own.Bob Beck
2006-05-31xcs -> xscBrad Smith
2006-05-28- remove ETHER_MAX_LEN_JUMBO and ETHERMTU_JUMBO.Brad Smith
2006-05-28unknown ioctl is ENOTTY not EINVALJason Wright
2006-05-27remove IFCAP_JUMBO_MTU interface capabilities flag and set if_hardmtu in a fewBrad Smith
2006-05-20remove commented out and unused capabilities flags.Brad Smith
2006-05-20set if_jumbo_mtu and the IFCAP_JUMBO_MTU capabilities flag whereBrad Smith
2006-05-08KNFBrad Smith
2006-04-30styleBrad Smith
2006-04-24add a missing return here.Brad Smith
2006-04-21recognize the BCM5752 A2Brad Smith
2006-04-05add a power hook for bge(4).Brad Smith
2006-03-29check for IFF_RUNNING being set before calling bge_init().Brad Smith
2006-03-25allow bpf(4) to ignore packets based on their direction (inbound orDamien Miller
2006-03-16if the link is down with a card using a fibre interface then show aBrad Smith
2006-03-10in bge_intr() also check the PCI State register to see if thereBrad Smith
2006-02-21- Overhaul link state detection code.Brad Smith
2006-02-13Due to an oversight on my part I forgot to remove clearing of theBrad Smith
2006-02-13revert rev 1.85. The mbuf needs to be re-mapped in the case of an error.Brad Smith
2006-02-11recognize another 5714 family chipset.Brad Smith
2006-02-09cleaning.Brad Smith
2006-02-09adjust timeouts a bit.Brad Smith
2006-02-08fix MTU check.Brad Smith
2006-02-06Make sure to call bge_setmulti() as we're enabling or disabling promiscuousBrad Smith
2006-02-02Call bge_setmulti() if IFF_ALLMULTI is set.Brad Smith
2006-02-02Optimize bge_rxeof() & bge_txeof(): return immediately if there are no packetsBrad Smith
2006-02-02Use alternate PCI DMA control register settings for PCI Express-basedBrad Smith
2006-02-01rearrange code section for enabling the read DMA state machineBrad Smith
2006-02-01one less magic value.Brad Smith
2006-02-01Set up the PCI DMA control register properly for the 5714 family,Brad Smith
2006-01-25- Count packets discarded by RX/TX MAC (cause of FIFO overflow, etc)Brad Smith
2005-12-28clear IFF_RUNNING here to get a full re-init.Brad Smith
2005-12-28using the PCI capability register to check for PCI-X mode doesn't get the exp...Brad Smith
2005-12-28Fix bge_eeprom_getbyte() to return 1 when timeout happens.Brad Smith