summaryrefslogtreecommitdiff
path: root/sys/dev/ste
AgeCommit message (Expand)Author
2025-03-27dev: Use recently added improvements to PME# support to simplify driversJohn Baldwin
2025-01-02Remove now-redundant calls to device_delete_childJohn Baldwin
2024-06-28net: Remove unneeded NULL check for the allocated ifnetZhenlei Huang
2023-08-16sys: Remove $FreeBSD$: one-line .c patternWarner Losh
2023-08-16sys: Remove $FreeBSD$: two-line .h patternWarner Losh
2023-02-06Mechanically convert if_ste(4) to IfAPIJustin Hibbits
2022-05-06ste: Remove unused devclass argument to DRIVER_MODULE.John Baldwin
2022-05-06Remove unused miibus_devclass and miibus_fdt_devclass.John Baldwin
2020-02-26Mark more nodes as CTLFLAG_MPSAFE or CTLFLAG_NEEDGIANT (17 of many)Pawel Biernacki
2019-10-21Convert to if_foreach_llmaddr() KPI.Gleb Smirnoff
2018-05-18ifnet: Replace if_addr_lock rwlock with epoch + mutexMatt Macy
2017-11-18spdx: initial adoption of licensing ID tags.Pedro F. Giffuni
2014-09-19Mechanically convert to if_inc_counter().Gleb Smirnoff
2014-08-30Use define from if_var.h to access a field inside struct if_data,Gleb Smirnoff
2014-06-11Fix various NIC drivers to properly cleanup static DMA resources.John Baldwin
2013-10-26The r48589 promised to remove implicit inclusion of if_var.h soon. PrepareGleb Smirnoff
2012-12-04Mechanically substitute flags from historic mbuf allocator withGleb Smirnoff
2012-11-05Remove duplicate const specifiers in many drivers (I hope I got all ofDimitry Andric
2011-11-22- There's no need to overwrite the default device method with the defaultMarius Strobl
2011-11-01- Import the common MII bitbang'ing code from NetBSD and convert drivers toMarius Strobl
2011-05-03- Remove attempts to implement setting of BMCR_LOOP/MIIF_NOLOOPMarius Strobl
2011-03-23Do a sweep of the tree replacing calls to pci_find_extcap() with calls toJohn Baldwin
2011-01-12sysctl(9) cleanup checkpoint: amd64 GENERIC builds cleanly.Matthew D Fleming
2010-10-15Convert the PHY drivers to honor the mii_flags passed down and convertMarius Strobl
2010-08-09It seems some old Sundace(now IC Plus Corp.) controllers do notPyun YongHyeon
2010-01-08Make sure to store dma address of RX buffer in little endian form.Pyun YongHyeon
2010-01-08Fix EEPROM access code to return data in host byte order.Pyun YongHyeon
2010-01-07Remove extraneous semicolons, no functional changes.Martin Blapp
2009-12-24ether_ifattach sets if_mtu, remove unnecessary code.Pyun YongHyeon
2009-12-24Update if_iqdrops in case of RX buffer allocation failure.Pyun YongHyeon
2009-12-24Add suspend/resume support as well as basic WOL.Pyun YongHyeon
2009-12-24Implement RX interrupt moderation using one-shot timer interrupt.Pyun YongHyeon
2009-12-23We don't need to generate DMA complete interrupt for everyPyun YongHyeon
2009-12-23Correct STE_COUNTDOWN register offset. The datasheet was wrong.Pyun YongHyeon
2009-12-23Remove unused duplicated register definition. It seems thePyun YongHyeon
2009-12-23Implement hardware MAC statistics counter support. The countersPyun YongHyeon
2009-12-23Report the correct result of mii_mediachg(). Previously it alwaysPyun YongHyeon
2009-12-23Don't report link status if driver is not running.Pyun YongHyeon
2009-12-23Overhaul RX filter programming.Pyun YongHyeon
2009-12-23Reimplement controller reset. Datasheet says full reset takes aboutPyun YongHyeon
2009-12-23Don't reinitialize controller if driver is already running. ThisPyun YongHyeon
2009-12-22Reimplement Tx status error handler as recommended by datasheet.Pyun YongHyeon
2009-12-22Prefer bus_write_{1,2,4}/bus_read_{1,2,4} toPyun YongHyeon
2009-12-22Prefer memory space register mapping over io space. If memory spacePyun YongHyeon
2009-12-22Instead of relying on hard resetting of controller to stopPyun YongHyeon
2009-12-22Reimplement miibus_statchg method. Don't rely on link state changePyun YongHyeon
2009-12-22Introduce sc_flags member variable and use it to keep track ofPyun YongHyeon
2009-12-22Add minimal dealy while ste(4) is waiting for the end of active DMAPyun YongHyeon
2009-12-22Add bus_dma(9) and endianness support to ste(4).Pyun YongHyeon
2009-12-21Sort function prototyes.Pyun YongHyeon