summaryrefslogtreecommitdiff
path: root/include/misc.h
Commit message (Collapse)AuthorAgeLines
* misc: add "call" uclass opStephen Warren2016-08-12-0/+35
| | | | | | | | | | The call op requests that the callee pass a message to the underlying HW or device, wait for a response, and then pass back the response error code and message to the callee. It is useful for drivers that represent some kind of messaging or IPC channel to a remote device. Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Simon Glass <sjg@chromium.org>
* include: Correct "requset" typoes in misc.hRobert P. J. Day2016-01-08-2/+2
| | | | | Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Acked-by: Thomas Chou <thomas@wytron.com.tw>
* dm: implement a Miscellaneous uclassThomas Chou2015-10-23-0/+79
Implement a Miscellaneous uclass with generic read or write operations. This class is used only for those do not fit other more general classes. Signed-off-by: Thomas Chou <thomas@wytron.com.tw> Acked-by: Simon Glass <sjg@chromium.org>