2019-06-13 13:10:36 +03:00
==========================
2009-09-22 19:50:32 +04:00
Regulator API design notes
==========================
This document provides a brief, partially structured, overview of some
of the design considerations which impact the regulator API design.
Safety
------
- Errors in regulator configuration can have very serious consequences
for the system, potentially including lasting hardware damage.
2014-08-25 12:47:51 +04:00
- It is not possible to automatically determine the power configuration
2009-09-22 19:50:32 +04:00
of the system - software-equivalent variants of the same chip may
2014-08-25 12:47:51 +04:00
have different power requirements, and not all components with power
2009-09-22 19:50:32 +04:00
requirements are visible to software.
2019-06-13 13:10:36 +03:00
.. note ::
The API should make no changes to the hardware state unless it has
2014-08-25 12:47:51 +04:00
specific knowledge that these changes are safe to perform on this
particular system.
2009-09-22 19:50:32 +04:00
Consumer use cases
------------------
- The overwhelming majority of devices in a system will have no
requirement to do any runtime configuration of their power beyond
being able to turn it on or off.
- Many of the power supplies in the system will be shared between many
different consumers.
2019-06-13 13:10:36 +03:00
.. note ::
The consumer API should be structured so that these use cases are
2009-09-22 19:50:32 +04:00
very easy to handle and so that consumers will work with shared
supplies without any additional effort.