summaryrefslogtreecommitdiffstats
path: root/sys/dev/fdt/syscon.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* If we are compatible with "simple-mfd", attempt to attach child nodes.kettenis2018-03-171-11/+16
| | | | ok visa@
* Print the name of the device tree node like we do for simplebus(4).kettenis2017-10-091-1/+8
| | | | | | This makes it easier to match dmesg output to the device tree. ok patrick@
* Add support for being a regmap provider in syscon(4). So far the driverpatrick2017-09-191-22/+47
| | | | | | | | supports being used as a regmap client to reset or power down a machine, so this change implements the other side where we provide the registers to write into. ok kettenis@
* Add syscon(4), a driver that provides reboot/poweroff functionality throughkettenis2017-03-091-0/+119
the generic "regmap" interface. ok patrick@