aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/syscon/syscon.h
Commit message (Collapse)AuthorAgeFilesLines
* syscon: Move syscon code in dev/sysconEmmanuel Vadot2024-01-101-0/+77
| | | | | | | | | | | We've removed kernel option EXT_RESOURCES almost two years ago. While it was ok to have some code under a common 'extres' subdirectory at first, we now have a lot of consumer of it and we made it mandatory so no need to have it under a cryptic name. Reviewed by: mhorne Sponsored by: Beckhoff Automation GmbH & Co. KG Differential Revision: https://reviews.freebsd.org/D43196
* Move syscon into extres frameworkKyle Evans2017-12-231-77/+0
| | | | | | | | | This should help reduce confusion between syscon/syscons a little bit. syscon is a resource generally modeled by FDT platforms, and not to be confused with syscons. Notes: svn path=/head/; revision=327107
* syscon: Introduce kobj and split out fdt bitsKyle Evans2017-12-231-0/+77
Allow more flexibility by kobj'ifying syscon and splitting out fdt specific bits in preparation of a move to the extres framework. The generic fdt driver has been moved to syscon_generic.c and the fdt requirement has been removed from the syscon interface, as is common to the extres framework. Reviewed by: strejda Differential Revision: https://reviews.freebsd.org/D13521 Notes: svn path=/head/; revision=327106