aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/pwm/pwmbus.c
Commit message (Expand)AuthorAgeFilesLines
* Remove "all rights reserved" from copyright for the file I own.Emmanuel Vadot2019-12-031-1/+0
* Add ofw_pwmbus to enumerate pwmbus devices on systems configured with fdtIan Lepore2019-06-171-5/+0
* Rework pwmbus and pwmc so that each child will handle a single PWM channel.Ian Lepore2019-06-161-16/+145
* Rename pwmbus.h to ofw_pwm.h, because after all the recent changes, thereIan Lepore2019-06-161-2/+0
* This code no longer uses fdt/ofw stuff, no need to include ofw headers.Ian Lepore2019-06-161-3/+0
* Make pwm channel numbers unsigned.Ian Lepore2019-06-151-8/+8
* Restructure the pwm device hirearchy and interfaces.Ian Lepore2019-06-151-69/+36
* Rename the channel_max method to channel_count, because that's what it'sIan Lepore2019-06-151-1/+1
* Spell unsigned int as u_int and channel as chan; eliminates the need to wrapIan Lepore2019-06-151-18/+18
* 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-151-29/+0
* pwm: Convert period and duty to unsigned intEmmanuel Vadot2018-12-141-2/+2
* Add a pwm subsystem so we can configure pwm controller from kernel and userland.Emmanuel Vadot2018-12-121-0/+244