summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpi/amdgpio.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Shifts (<<) of more than 32 bits must be done on 64-bit values.krw2020-06-201-2/+2
| | | | | | COVERITY 1491295 ok kettenis@
* Use the parsed address and interrupt information fromkettenis2020-05-221-60/+24
| | | | | | | struct acpi_attach_args. tpm(4) tested by kn@ ok jmatthew@
* In amdgpio_pin_intr() disable pins a pending interrupt is seen for whichjsg2020-01-261-12/+20
| | | | | | | have no interrupt handler registered. Avoids interrupt storm on Matebook D reported by brynet@ From James Hastings. ok kettenis@ brynet@
* Add amdgpio(4), a driver for the GPIO controller found on newer AMDkettenis2019-12-231-0/+312
AMD SoCs/chipsets. From James Hastings