summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-01-02more constantsBrad Smith
2005-01-02rev 1.21Brad Smith
Defs for three (unused so far) bits in PCI command/status register were off by one bit. From FreeBSD
2005-01-02cleanup and better ram sizing.Brad Smith
2005-01-02Moosehead A/V Board audio driver.Mark Kettenis
2005-01-02ugh, need this too for the last commit to sk(4).Brad Smith
2005-01-01better chip/card identification.Brad Smith
From NetBSD ok krw@
2005-01-01rev 1.92Brad Smith
only clear the IFF_OACTIVE flag when we have a chance of being able to queue a packet to the hardware... instead of when the hardware queue is empty.. don't initalize cur_tx now that it doesn't need to be... rev 1.90 _OACTIVE is now handled better... From FreeBSD ok krw@
2005-01-01Add BGE_QUIRK_ONLY_PHY_1 to BCM5701_B2. From NetBSD PR #23778, asKenneth R Westerback
pointed out by Theo 2003/12/13. ok brad@.
2005-01-012005Michael Shalayeff
2005-01-01Don't initialize the card (and start an autonegotiation!) every timeKenneth R Westerback
the IP address changes. Makes 'dhclient sk0' invocations way faster and more consistant. i.e. one DHCPREQUEST elicts the DHCPACK. ok brad@ 'Wow. Great Idea.' deraadt@.
2005-01-01my -> mayBrad Smith
2005-01-01allow reception of VLAN sized frames.Brad Smith
tested and ok niklas@ From NetBSD
2005-01-01gcc 3.3.5 will store zero-initialized variables in bss by default,Todd C. Miller
move bootdev to data so it doesn't get zapped when bss is cleared. deraadt@ OK
2005-01-01Add more debugging printf #ifdef DEBUG. This was useful when trackingTodd C. Miller
down the bootdev issue. OK deraadt@
2005-01-01Move the declaration of bootdev from autoconf.c to locore.s. gccTodd C. Miller
3.3.5 was placing bootdev into bss and its value was getting zeroed when bss is cleared. Apparently we lucked out before and gcc 2.9.5 put it in .data; now it is explicit. OK deraadt@
2005-01-01Disable timeout before destroying a pppoe interfaceCan Erkin Acar
ok deraadt@, henning@, krw@
2004-12-31typoTheo de Raadt
2004-12-31kludge around this build problem for now.Dale Rahn
2004-12-31sprinkle some more list macros in herePedro Martelletto
2004-12-31shrink (low memory machine) and comment correctly.Dale Rahn
2004-12-31port is zaurusDale Rahn
2004-12-31These are now zaurus headers, not cats ifdef protect appropriately.Dale Rahn
2004-12-31when releasing a vnode, make it inactive before sticking it to one ofPedro Martelletto
the free lists. should fix some races on filesystems that don't have locks, such as nfs. also, it allows for a more straightforward way of releasing vnodes (nodes that are going to be recycled don't have to be moved to the head of the list). tested by many, thanks. ok tedu@ deraadt@
2004-12-31Define atw cfdriver struct in atw.c so atw at cardbus does notJonathan Gray
depend on atw at pci. ok millert@
2004-12-31strncpy -> strlcpyDavid Gwynne
2004-12-31people who don't understand the preprocessor should stay away from the tree.Marc Espie
2004-12-31fixes so axe can work on big endian machinesDavid Gwynne
2004-12-31sync with the latest work and add some stuff needed by the upcoming ↵Reyk Floeter
ar5211/ar5212 support. some further cleanups and changes will follow.
2004-12-31cleanups pointed out by miod@Dale Rahn
2004-12-31zaurus will be able to use this one dayTheo de Raadt
2004-12-31Enable Realtek RTL8180 driver (rtw) to get more testing feedback.Jonathan Gray
Can people with these devices please mail me with the name of the device and a dmesg. ok deraadt@
2004-12-31Move the cfdriver struct to rtw.c where it belongs so cardbus rtwJonathan Gray
can be enabled seperately from pci rtw. From fgsch@
2004-12-31Port of OpenBSD to the Zaurus, currently running on C860, soon C3000.Dale Rahn
2004-12-30xscale bits, taken from NetBSD with modifications as appropriate for OpenBSD.Dale Rahn
2004-12-30pcmcia (CF) adapter. Needs to be split into seperate layers soDale Rahn
that the offchip portion (not on pxa*) is not embedded here, interrupt routing is performed offchip.
2004-12-30PXA serial port is just enough different to make it difficult to shareDale Rahn
with dev/ic. For now, make it's own copy.
2004-12-30Add pxa interrupt controller support.Dale Rahn
2004-12-30better #includeDale Rahn
2004-12-30pxa270 is xscaleDale Rahn
2004-12-30Properly include fcom.h defines.Dale Rahn
2004-12-30#include cleanup.Dale Rahn
2004-12-30Work around the previous xscale/sa1xx muck, should now work for cats and xscaleDale Rahn
systems.
2004-12-30shorter symbolic names for regulation domains and 2GHz channels for FCC1A.Reyk Floeter
2004-12-30Support for pxa270, at least a running start.Dale Rahn
2004-12-30replace __attribute__((__packed__)) with __packed.Reyk Floeter
2004-12-30Include types and defines for items used in these inlined functions.Dale Rahn
2004-12-30Add pxa270 idDale Rahn
2004-12-30Fix (and de-inline) bus_space_(read|write)_raw* functions, they didDale Rahn
not terminate correctly on odd length, they still truncate the transfer.
2004-12-30Silence resettodr() unless option DEBUG.Miod Vallat
2004-12-30If we are running on a 68040 or a 68060 processor, overwrite the copypage()Miod Vallat
code with the faster copypage040() before the kernel text is mapped read-only.