Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-09 | get rid of some ifdef __otherbsd__ goo. no binary change | David Gwynne | |
2006-06-23 | In a drivers activate() entry point, if on DVACT_DEACTIVATE it does | Miod Vallat | |
something, then it MUST return zero on DVACT_ACTIVATE, not EOPNOTSUPP; this very popular bug has been cut and pasted a lot of times... ok deraadt@ mickey@ | |||
2006-06-01 | Pass the value of IPG2 to the AX88178 in the index register. | Christopher Pascoe | |
2006-06-01 | KNF. | Christopher Pascoe | |
2006-06-01 | Whitespace cleanup. | Christopher Pascoe | |
2006-04-23 | Remove superfluous use of usb_callout_init() (== timeout_set()). | Kenneth R Westerback | |
Superfluous because the immediately following usb_callout() does the same timeout_set(). And superfluous because the same usb_callout_init was done during attach. ok dlg@ | |||
2006-04-13 | free mem if attach fails; netbsd coverity cid 2329 | Jolan Luff | |
ok dlg@ | |||
2006-03-25 | allow bpf(4) to ignore packets based on their direction (inbound or | Damien Miller | |
outbound), using a new BIOCSDIRFILT ioctl; guidance, feedback and ok canacar@ | |||
2006-03-07 | Remove last NRND NetBSDisms from tree. | Kenneth R Westerback | |
ok deraadt@ brad@ | |||
2006-01-29 | Use usbd_clear_endpoint_stall_async() when clearing endpoint stalls in | Brad Smith | |
an interrupt context. From NetBSD ok dlg@ | |||
2006-01-10 | fix axe on big endian archs. for jolan | David Gwynne | |
2005-12-21 | Don't try to predict what different eeprom settings mean | Jonathan Gray | |
so much, makes the Level One AX88178 adapter work. Interestingly enough the Level One adapter seems to work fine without stalls. Though it uses ukphy, I think the correct phy types are supposed to be written in by the driver based on the values in the eeprom... | |||
2005-12-09 | Mention which chipset devices use on attach. | Jonathan Gray | |
2005-11-29 | Add support for ASIX AX88772 10/100 based adapters which are very similiar | Jonathan Gray | |
to the gigabit AX88178 but with a different initialisation routine because the PHY is not external. Man page changes reviewed by jmc@ and oxford commas added per his sugestion. Thanks to Bruno Scap for donating an adapter. | |||
2005-09-27 | enable support for gigabit adapters; it works reliably with USB1 but | Jolan Luff | |
seems to stall under some conditions with USB2 so you may wish to disable ehci in the mean time ok dlg@ jsg@ | |||
2005-08-29 | Handle AX88178 on 12 Mbit USB controllers such as ohci & uhci more | Jonathan Gray | |
gracefully. ok dlg@ permission granted by deraadt@ | |||
2005-08-28 | The AX88178 sends multiple frames per USB transfer | Jonathan Gray | |
and has extra bytes and rules to deal with this. Initial rxeof/encap changes by me, dlg@ rewrote axe_rxeof and axe_newbuf from scratch and cleaned up encap so they can jump over buildings in a single bound and be more elegant/readable. ok deraadt@ | |||
2005-08-28 | We don't need to do a PHY select for AX88178 but we should | Jonathan Gray | |
do a generic soft reset before doing a specific one. ok dlg@ deraadt@ | |||
2005-08-28 | Write back IPG values in a manner more likely to work. | Jonathan Gray | |
ok dlg@ deraadt@ | |||
2005-08-28 | Tell the AX88178 to give us the full transaction size. | Jonathan Gray | |
ok dlg@ deraadt@ | |||
2005-08-28 | Account for larger USB transaction size of AX88178 by | Jonathan Gray | |
making the size a member of the softc. ok dlg@ deraadt@ | |||
2005-08-28 | We have to do some extra hand holding on link state change | Jonathan Gray | |
on the AX88178 because of the external PHY. ok dlg@ deraadt@ | |||
2005-08-12 | Add some delays in the GPIO code so AX88178 phy gets powered up. | Jonathan Gray | |
Suggested by ASIX. | |||
2005-08-11 | Only match AX88178 if AXE_DEBUG is defined for the moment. | Jonathan Gray | |
2005-08-10 | Some of the bits that will be required for AX88178. | Jonathan Gray | |
PHY doesn't attach possibly due to not twiddling GPIO pins correctly, rx and tx pipes being swapped not dealt with yet. | |||
2005-08-01 | Don't keep the devinfo string on the stack, instead use malloc/free. | Brad Smith | |
This should cure some rare stack overflows. From augustss NetBSD ok dlg@ pascoe@ | |||
2005-07-18 | Good Way GWUSB2E Ethernet, found in Good Way USB docking stations. | Jonathan Gray | |
ID from <david-b () pacbell ! net> via Linux driver. | |||
2005-07-02 | clear IFF_RUNNING & IFF_OACTIVE in foo_stop() before de-allocating resources. | Brad Smith | |
2005-07-02 | don't call mii_pollstat() right after mii_tick() in foo_tick_task() | Brad Smith | |
2005-06-08 | remove netns crud. | Henning Brauer | |
some drivers actually had hooks for SIOCSIFADDR, most just useless includes "looks good" deraadt miod brad | |||
2005-03-14 | support jvc mp-prx1; iedowse | Theo de Raadt | |
2005-02-12 | Additional axe devices found in Linux driver. | Jonathan Gray | |
2005-01-03 | - make sure int is in running state before touching the multicast filters | Brad Smith | |
- call foo_setmulti only instead of init'ing the chip - don't overwrite potential error return with success when calling ether_addmulti/ether_delmulti ok dlg@ | |||
2004-12-31 | fixes so axe can work on big endian machines | David Gwynne | |
2004-11-11 | from netbsd, if_axe.c revision 1.6 | David Gwynne | |
When adding/deleting multicast addresses, only whack the address filter if the interface is marked RUNNING. | |||
2004-11-11 | the other half of the changes from netbsds if_axe.c revision 1.5: | David Gwynne | |
Set full duplex mode when status tells us to. | |||
2004-11-11 | half of the changes from netbsds if_axe.c revision 1.5: | David Gwynne | |
Protect MII reads and writes properly against multiple access. | |||
2004-11-11 | from netbsd, if_axe.c revision 1.5 | David Gwynne | |
Dont use lockmgr() from interrupt context. | |||
2004-11-11 | from netbsd revisions 1.2 and 1.3 | David Gwynne | |
revision 1.2 Alphabetize the supported device list. revision 1.3 Get rid of an oddly placed assert(). | |||
2004-11-11 | make setup of the rx transfers consistent | David Gwynne | |
2004-11-10 | add support for the Conceptronic SnapPort USB 2.0 LAN Adapter | David Gwynne | |
thanks go to Paul de Weerd for providing the hardware | |||
2004-11-10 | strncpy->strlcpy | Alexander Yurchenko | |
ok henning@ | |||
2004-10-04 | COREGA_FETHER_USB2_TX; tested by me | Theo de Raadt | |
2004-10-01 | add some missing $, ok djm@ 'That looks fine to me' millert@ | Jonathan Gray | |
2004-09-23 | don't need to set ifp->if_mtu or ifp->if_output in each driver, | Brad Smith | |
{ether,atm,fddi}_ifattach already does this. ok mcbride@ markus@ henning@ | |||
2004-09-18 | match the new ID | Theo de Raadt | |
2004-08-30 | from freebsd via Jonathan Gray | David Gwynne | |
"Use the USBD_FORCE_SHORT_XFER flag when setting up transmit transfers. Without this, the device cannot detect the end of ethernet packets whose size is a multiple of the USB packat size. ok deraadt@ | |||
2004-07-20 | typo | Theo de Raadt | |
2004-07-20 | another new device; shin@happynet.co.jp | Theo de Raadt | |
2004-07-08 | put "do { } while (0)" wrappers on all the debug maroc functions | Theo de Raadt | |