summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2009-10-11At initialization of HT chips, write configuration on the correspondingAlexandre Ratchov
control registers rather than on the PCI configuration space (which is ok for non-HT chips only). Also fix the offset GPIO mask/dir are read from EEPROM, old ones are working by accident. both fixes are from Alexandr Shadchin <ShadchinAV _at_ mail.ru> Thanks!
2009-10-11Minor cleanup run, no functional changes;Marcus Glocker
- Spacing / comments. - Be constant in using variable types. - Avoid repeating function-inline definitions for the same variable.
2009-10-11Add support for the Broadcom BCM5717 ASIC and the BCM5717 / BCM5718 chipsets.Stuart Henderson
Based on info gleaned from the Linux tg3 driver. From Brad, ok naddy@
2009-10-11* define a constant for the specification defined maximum number ofJacob Meuser
codecs a controller can support * dynamically allocate memory for the array of codec structures
2009-10-11let page requests sleep instead of polling for completion. not used justDavid Gwynne
yet...
2009-10-11* start all "initialization failure" messages with lowercase letter.Jacob Meuser
* instead of printing "initialization failure", print "initialization failure, detaching". perhaps instills more confidence that the failure was handled in an orderly manner.
2009-10-11add support for ICH9 M V chipset, from brad.Dariusz Swiderski
ok by claudio@
2009-10-11this driver doesn't yet support HDMI codecs enough for them to beJacob Meuser
usable. detach the driver if the device is only capable of HDMI. this keeps an unusable device from being /dev/audio0 (thus /dev/audio by default), while /dev/audio1 is fully functional.
2009-10-10Let udl select the maximum resolution supported by the udl device and theMats O Jansson
monitor. Use the EDID parsing from videomode. -moj ok mglocker@
2009-10-10Again, in detatch... call whatever disconnects our interrupt, before weTheo de Raadt
go messing with the maps. Only affects my disconnectable em(4).
2009-10-09Must also timeout_del twice in detach()...Theo de Raadt
2009-10-09A working detach function. Has no impact on anything else in the driver.Theo de Raadt
2009-10-08Import EDID handling code from NetBSD. Ok deraadt@, miod@, mglocker@.Matthieu Herrb
2009-10-08set a couple bits in the pci configuration space for nvidia hdaJacob Meuser
controllers. according to ALSA and OSS, these enable input and output stream DMA coherency. fixes broken playback problem reported by Laurence Tratt (laurie at tratt dot net), who graciously tested a number of previous attempts to solve this problem.
2009-10-07The BCM5703 ASIC ID is actually shared with the BCM5702 ASIC soStuart Henderson
indicate so in the text strings. From Brad.
2009-10-06Allow MD limits for allocating PCI io and mem space and specify limits onMark Kettenis
i386 and amd64 to make avoid legacy ISA I/O registers. Fixes issues with ThinkPad T-series Dock II units as reported by sobrado@ ok miod@
2009-10-06Remove hack that helped us to work on Lenovo X200, as of last commit the phyDariusz Swiderski
gets detected properly. tested by ckuethe@ and jdixon@ ok by claudio@
2009-10-05Fill pciide_unmapregs_compat() with stuff which might work, if we ever getTheo de Raadt
there. ok jsg
2009-10-05Add some minimalistic detach/unmap bits for pciide,Jonathan Gray
done using a chipset unmap callback. Still needs to work to distinguish between compat register mappings and compat interrupts so we don't get caught out. Tested with a diskless sii3112 CardBus eSATA controller by me, and testing and feedback by deraadt@ with a phison based expresscard SSD.
2009-10-05match() function was leaving the i2c bus locked; ok kettenisTheo de Raadt
2009-10-05regenJonathan Gray
2009-10-05Add a bunch of Intel 10GbE devices found in the FreeBSD versionJonathan Gray
of the Intel ixgbe driver.
2009-10-05nvidia MCP73 on acer aspire m1640; proger@uaoug.org.uaTheo de Raadt
2009-10-04Merge over a bunch of detach logic from msk(4) so that this driver canTheo de Raadt
detach as well ok kettenis
2009-10-04Correctly store the tag results from bus_dmamem_alloc() so that theTheo de Raadt
detach routine can free the right resources ok dlg kettenis
2009-10-03Driver for the SD/MMC part of the Winbond W83L518D/W83L519D Integrated MediaMark Kettenis
Reader.
2009-10-03Add missing <sys/device.h>.Mark Kettenis
ok deraadt@, miod@
2009-10-02remove trash left in debug changes; lindroos@nls.fiTheo de Raadt
2009-10-02syncStuart Henderson
2009-10-02Remove BCM57720 as it's not going to be released. From a BroadcomStuart Henderson
commit to the Linux driver via Brad. Also checked dmesglog.
2009-10-02Remove BCM57720 as it's not going to be released. From a BroadcomStuart Henderson
commit to the Linux driver via Brad.
2009-10-02regenMiod Vallat
2009-10-02One more DEC device found on alpha clustersMiod Vallat
2009-09-30- Sync the BCM5785G PCI id for bge(4) and add BCM5785F / BCM57788.Stuart Henderson
PCI ids from the Linux tg3 driver via Brad.
2009-09-30syncStuart Henderson
2009-09-30- Some new PCI ids for the BCM5717, BCM5718, BCM5785F, and BCM57788 chipsets.Stuart Henderson
- Rename the existing BCM5785 entry to BCM5785G. PCI ids from the Linux tg3 driver via Brad.
2009-09-30Need to scsi_done() before returning COMPLETE for untranslated commands,Miod Vallat
such a Test Unit Ready; found the hard way by jbg@, and inexplicably missed during dlg@ and I audit of hba drivers behaviour.
2009-09-29Support the Phison PS5000. IO Data and other vendors are now using thisTheo de Raadt
on an expresscard SSD adaptor. ok jsg
2009-09-29syncTheo de Raadt
2009-09-29phison pciide controller found in expresscard SSD cardsTheo de Raadt
2009-09-27If no xfer buffer is free for the UDLIO_DAMAGE ioctl, sleep in the kernelMarcus Glocker
until one xfer buffer gets freed again, instead userland needs to handle this. Help and OK miod@, matthieu@
2009-09-26Fix artefacts in compression mode especially seen when running X.Marcus Glocker
2009-09-24Handle the upper 32 bits of the prefetchable memory range when setting upMiod Vallat
the ppb resource extents, on LP64 systems. Found the hard way on an alpha. ok kettenis@
2009-09-24Make sure the scsi_xfer timeout always get initialized with timeout_set(),Miod Vallat
since the scsi_done() wrapper will timeout_del() unconditionnaly and the scsi midlayer no longer provides scsi_xfer with zeroed struct timeout. ok dlg@
2009-09-24In trm_scsi_cmd(), in an splbio() protected block, don't bother doing splx()Miod Vallat
and splbio() around a simple timeout_set() call, it won't gain us anything. ok dlg@ krw@
2009-09-23Disable SPLUSBCHECK for now, as these turn out to be harmful on sparc64.Miod Vallat
2009-09-23do not attach the AR5416 and AR5418 (AR5416 PCIe) to the ath(4)Damien Bergamini
driver as these chipsets are not currently supported. noticed by ian@ "makes sense" millert@ ok jsg@
2009-09-21Fix use before init on wu.Marco Peereboom
Found by jsing, tested and ok jsing.
2009-09-21Document a private ioctl range for wscons drivers (from Miod). ThereforeMarcus Glocker
change the UDLIO_DAMAGE ioctl from 0 to 128 and move the ioctl part from udl.h to udlio.h so we can include it in userland applications. Suggested and OK miod@
2009-09-20Implement a detach function in wpi(4) and iwn(4).Damien Bergamini
Some laptops will power off the PCIe socket when the radio kill switch is turned on. Reported and tested by Frantisek Holop on iwn(4). Initial diff for iwn(4) by jsg@ Some additional bits by Frantisek Holop (sensor_detach). Some tweaks and adaptation to wpi(4) by me. Fixes kernel/6223.