remoteproc: tisci: add TI-SCI processor control helper functions
authorLokesh Vutla <lokeshvutla@ti.com>
Fri, 7 Jun 2019 13:55:57 +0000 (19:25 +0530)
committerTom Rini <trini@konsulko.com>
Sat, 27 Jul 2019 01:49:24 +0000 (21:49 -0400)
commit4fa23ebe73d649827d1076273854fad9e58b5704
treed579763ed9eacc4c4127c626f88383485928e393
parent96f41f9cde17373680a652e39c8521fcf0a9722f
remoteproc: tisci: add TI-SCI processor control helper functions

Texas Instruments' K3 generation SoCs has specific modules/register
spaces used for configuring the various aspects of a remote processor.
These include power, reset, boot vector and other configuration features
specific to each compute processor present on the SoC. These registers
are managed by the System Controller such as DMSC on K3 AM65x SoCs.

The Texas Instrument's System Control Interface (TI-SCI) Message Protocol
is used to communicate to the System Controller from various compute
processors to invoke specific services provided by the firmware running
on the System Controller.

Add a common processor control interface header file that can be used by
multiple remoteproc drivers. The helper functions within this header file
abstract the various TI SCI protocol ops for the remoteproc drivers, and
allow them to request the System Controller to be able to program and
manage various remote processors on the SoC. The common macros required
by the R5 remoteproc driver were also added. The remoteproc drivers are
expected to manage the life-cycle of their ti_sci_proc_dev local
structures.

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: Suman Anna <s-anna@ti.com>
drivers/remoteproc/ti_sci_proc.h [new file with mode: 0644]