aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
Commit message (Expand)AuthorAgeFilesLines
* random(4): Fix a regression in short AES mode readsConrad Meyer2019-06-181-1/+1
* Handle labels specified with hints even on FDT systems. Hints are theIan Lepore2019-06-181-14/+5
* Remove everything related to channels from the pwmc public interface, nowIan Lepore2019-06-182-10/+2
* Add ACPI support for USB driver.Takanori Watanabe2019-06-173-48/+547
* random(4): Fortuna: allow increased concurrencyConrad Meyer2019-06-175-91/+291
* Separate kernel crc32() implementation to its own header (gsb_crc32.h) andXin LI2019-06-174-1/+4
* Put the pwmc cdev filenames under the pwm directory along with any labelIan Lepore2019-06-171-1/+1
* random(4): Generalize algorithm-independent APIsConrad Meyer2019-06-176-112/+189
* random(4): Add regression tests for uint128 implementation, Chacha CTRConrad Meyer2019-06-172-2/+6
* Add back a const qualifier I somehow fumbled away between test-buildingIan Lepore2019-06-171-1/+1
* Add ofw_pwmbus to enumerate pwmbus devices on systems configured with fdtIan Lepore2019-06-174-12/+292
* Rework pwmbus and pwmc so that each child will handle a single PWM channel.Ian Lepore2019-06-163-29/+234
* Rename pwmbus.h to ofw_pwm.h, because after all the recent changes, thereIan Lepore2019-06-163-7/+4
* Add macOS-like three finger drag trackpad gesture to psm(4)Philip Paeps2019-06-161-3/+15
* This code no longer uses fdt/ofw stuff, no need to include ofw headers.Ian Lepore2019-06-161-3/+0
* Make channel number unsigned, and spell unsigned int u_int. This shouldIan Lepore2019-06-161-3/+3
* Make pwm channel numbers unsigned.Ian Lepore2019-06-154-20/+20
* Restructure the pwm device hirearchy and interfaces.Ian Lepore2019-06-156-192/+50
* Destroy the cdev on device detach. Also, make the driver and devclassIan Lepore2019-06-151-2/+6
* Rename the channel_max method to channel_count, because that's what it'sIan Lepore2019-06-153-3/+3
* Spell unsigned int as u_int and channel as chan; eliminates the need to wrapIan Lepore2019-06-151-18/+18
* Unwrap prototype lines so that return type and function name are on theIan Lepore2019-06-151-8/+4
* Make pwmbus driver and devclass vars static; they're not mentioned in anyIan Lepore2019-06-151-2/+2
* Use device_delete_children() instead of a locally-rolled copy of it thatIan Lepore2019-06-151-12/+4
* Remove pwmbus_attach_bus(), it no longer has any callers. Also remove aIan Lepore2019-06-152-33/+0
* Move/rename the sys/pwm.h header file to dev/pwm/pwmc.h. The file containsIan Lepore2019-06-152-1/+54
* Do not include pwm.h here, it is purely a userland interface file containingIan Lepore2019-06-152-5/+0
* Don't print the request we may be aborting in ciss_notify_abort asWarner Losh2019-06-131-4/+10
* Some devices take undesired actions when RTS and DTR areStephen Hurd2019-06-123-5/+11
* The current IPMI KCS code is waiting 100us for all transitions (roughlyJonathan T. Looney2019-06-121-34/+25
* Add support for the GPIO SD Card VCC regulator/switch and the GPIO SD CardLuiz Otavio O Souza2019-06-101-0/+83
* psm(4): Enable touchpads and trackpads by defaultNiclas Zeising2019-06-101-3/+3
* psm(4): Add extra sanity checks to Elantech trackpoint packet parser.Vladimir Kondratyev2019-06-081-13/+23
* psm(4): Fix Elantech trackpoint support.Vladimir Kondratyev2019-06-081-3/+3
* Add SDIO support.Bjoern A. Zeeb2019-06-086-0/+1767
* Improve sdhci slot_printf() debug printing.Bjoern A. Zeeb2019-06-081-4/+9
* Introduce sim_dev and cam_sim_alloc_dev().Bjoern A. Zeeb2019-06-081-2/+2
* Fix debug trace after removal of pdu_overhead.John Baldwin2019-06-071-2/+2
* Fix nda(4) PCIe link status outputChuck Tuffli2019-06-071-6/+10
* Replace uses of vm_page_unwire(m, PQ_NONE) with vm_page_unwire_noq(m).Mark Johnston2019-06-073-3/+3
* cxgbe(4): Rename the DDP sysctl to rx_zcopy to match the tx_zcopy sysctlNavdeep Parhar2019-06-071-2/+4
* Do not overwrite the RGMII bits in the CPU port register of Switch.Luiz Otavio O Souza2019-06-062-2/+5
* Zero the GPIO regulator pins memory.Luiz Otavio O Souza2019-06-061-1/+1
* nvdimm: Provide nvdimm location informationD Scott Phillips2019-06-061-0/+19
* Don't refer to the cpu variable in a KASSERT before initializing it.Ian Lepore2019-06-061-1/+1
* Only respond to the PCIe Attention Button if a device is already plugged in.Colin Percival2019-06-051-1/+4
* In usb(4) fix a lost completion event issue towards libusb(3). It may happenHans Petter Selasky2019-06-041-4/+47
* In xhci(4) there is no stream ID in the completion TRB.Hans Petter Selasky2019-06-041-13/+13
* Make sure the DMA tags get freed in mlx5en(4).Hans Petter Selasky2019-06-042-0/+3
* virtio(4): Add PNP match metadata for virtio devicesConrad Meyer2019-06-047-42/+54