summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2008-12-03allow users to select a fixed rate.Damien Bergamini
2008-12-03don't overwrite an error code from wpi_init() in wpi_ioctl(), logic isConstantine A. Murenin
now in line with iwn_ioctl(); 'dead assignment' llvm/clang; ok damien
2008-12-03Weongyo Jeong has consented to switch from an inappropriate licenseJonathan Gray
to license.template
2008-12-03- Fix unit for dwFrameInterval in DPRINTF.Marcus Glocker
- Add a comment from yuo@ which describes dwFrameInterval values a bit.
2008-12-03Fix error handling for usbd_transfer().Marcus Glocker
2008-12-03allocate the right number of entries in the "jumbo" rx ring now that it isDavid Gwynne
actually used. this fixes vic on esx3. problem found by matthieu@ also includes misc tweaks to comments and some cleanup code.
2008-12-03use the right variable when looping over rxqs.David Gwynne
2008-12-03add UYVY video format support for uncompressed videoYojiro Uo
ok mglocker@
2008-12-03remove bogus part (GUID_UYVY part) form last commit.Yojiro Uo
(this diff will be include next diff.)
2008-12-03change UVC VS negotiation logic.Yojiro Uo
some device return wrong value for get probe request without initial set probe request. so, now it issue set probe request and then get probe to initialize device configuration.
2008-12-03fix USB packet size handling of uvideo(4)Yojiro Uo
2008-12-03recommit the use of the new mbuf cluster allocator.David Gwynne
this starts em up with 4 mbufs on the rx ring, which will then grow as usage demands. this also allows em to take advantage of the new livelock mitigation code as well as freeing up a boatload of kernel memory. this version of the diff makes sure we only ever post the last descriptor we filled to the hardware, rather than the whole ring when bringing the interface up. it has been tested by users who got panics with the previous diff without trouble.
2008-12-02backout: would have been nice if this had been tested, to see that itTheo de Raadt
crashes the moment a card is plugged in.
2008-12-02Add code for 5150 support (not tested since I don't have the hardware andDamien Bergamini
because it requires a specific firmware that Intel has not released yet.) Fix crystal calibration for 5000 Series.
2008-12-02syncDamien Bergamini
2008-12-02Intel WiFi Link 5150Damien Bergamini
2008-12-01regenMartin Reindl
2008-12-01add the Huawei E510 modemMartin Reindl
ok fkr@
2008-12-01leak memory in the realloc function until we find out who has a pointerTheo de Raadt
to it, otherwise as seen by sthen/matthieu in master mode: cdcef0 at usbf0: usbf_open_pipe failed ok miod
2008-12-01regenJonathan Gray
2008-12-01Add product ids for the cardreader functions of the JMC261.Jonathan Gray
From Ethan at JMicron.
2008-12-01Configure the clock sources for tx mac/offload engines, requiredJonathan Gray
for newer revisions, makes the JMC261 work. Thanks to JMicron for supplying hardware to test against. ok brad@
2008-12-01syncKevin Lo
2008-12-01fix the naming of the D-Link AR9170 entryKevin Lo
ok damien@
2008-11-30oops. don't continue on to the next widget here. there may be otherJacob Meuser
controls on the widget that need to be configured.
2008-11-30only put a control in the record class if it is the sole input toJacob Meuser
an ADC.
2008-11-30if an input mixer or selector has no usable inputs, disable it, asJacob Meuser
it is useless.
2008-11-30syncTheo de Raadt
2008-11-30ricoh camerasTheo de Raadt
2008-11-30Setup three isoc transfers at a time so we don't miss frames. This fixesMarcus Glocker
transfers which require larger bandwidths, e.g. for higher resolutions. discussed with yuo@, deraadt@
2008-11-30syncTheo de Raadt
2008-11-30another radeonTheo de Raadt
2008-11-30- AZ_MAX_SENSE_PINS -> HDA_MAX_SENSE_PINSJacob Meuser
- MI_TARGET_* are enumerated in hex from Alexey Suslikov
2008-11-30Add initial 8168D/8111D support.Brad Smith
2008-11-30don't rebuild the list of supported formats if it isn't goingJacob Meuser
to change.
2008-11-30- don't access nonexistent converter goupsJacob Meuser
- don't try to create formats for converter groups that don't exist - don't allow playback or recording if there is no corresponding converter group - don't try to set audio processing parameters on converter groups that don't exist allows playback (or record) only devices to work, such as the azalias found on ATI graphics devices. note, the ATI devices generally attach before the onboard devices do. that means they will be audio0 and onboard devices will be audio1. don't forget to make sure the /dev/{audio[ctl],mixer,sound} links point to the nodes of the device you want to be the default. tested by naddy@, thanks
2008-11-29syncTheo de Raadt
2008-11-29liebert ubs as ugenTheo de Raadt
2008-11-29use the the correct register mask. Fixes certain mixer settingsAlexandre Ratchov
being unreachable.
2008-11-29Fix damage done by brad@ and dlg@.Matthieu Herrb
2008-11-29revert 1.197 if_em.c, 1.38/1.39 if_em.h, requested by dlg, until a bugStuart Henderson
reported on misc@ can be tracked down. identical diff from jsing.
2008-11-29Fix high-speed isoc USB transfers; 64bit capable USB host controllersMarcus Glocker
have a different transfer descriptor than non-64bit capable ones. This fixes isoc transfer issues (resulting in broken image data) for uvideo(4) devices attached to ehci(4) seen on USB Intel host controllers. From Jeremy Morse via NetBSD.
2008-11-29unbreak tree breakage snuck inTheo de Raadt
2008-11-29Iain Hibbert (plunky@netbsd) removed clauses 3 and 4 from hisRay Lai
licenses as well. Thanks! "Groovy" deraadt
2008-11-29Fix a possible NULL pointer dereference. Spotted by Tobias Ulmer; thanks!Owain Ainsworth
2008-11-28don't create a _source control on mixers if none of the sources areJacob Meuser
usable. better (generalized) solution forthcoming, but this is a reasonable check anyway. problem noted and fix tested by Alexey Suslikov, thanks.
2008-11-28AZ_TARGET_PINSENSE -> MI_TARGET_PINSENSEJacob Meuser
reminder from Alexey Suslikov, thanks
2008-11-28check the jack detect override bit before creating jack sense mixerJacob Meuser
items. BIOSes can set the jack detect override bit to tell us that the jack detection circuirty isn't actually attached. should remove the _sense controls that never change.
2008-11-28Welcome gpiodcf(4), a driver that attaches to a GPIO pin, decodes theMarc Balmer
signal from an attached DCF77, HG, or TDF receiver and provides a timedelta.
2008-11-28- remove a couple unneeded checksJacob Meuser
- another place to use azalia_nid_to_index