diff options
author | Kumar Gala <galak@codeaurora.org> | 2016-06-03 18:25:26 -0500 |
---|---|---|
committer | Andy Gross <andy.gross@linaro.org> | 2016-06-24 13:34:00 -0500 |
commit | 6b1751a86ce2eb6ebbffa426a703a12f15bcea28 (patch) | |
tree | 590d675ae6b39dba91504ef06f1ca077e8cd0c4a /drivers/firmware/qcom_scm.c | |
parent | 16e59467a446514f971cc4669322ab387ca45155 (diff) | |
download | linux-6b1751a86ce2eb6ebbffa426a703a12f15bcea28.tar.gz linux-6b1751a86ce2eb6ebbffa426a703a12f15bcea28.tar.bz2 linux-6b1751a86ce2eb6ebbffa426a703a12f15bcea28.zip |
firmware: qcom: scm: Add support for ARM64 SoCs
Add an implementation of the SCM interface that works on ARM64 SoCs. This
is used by things like determine if we have HDCP support or not on the
system.
Signed-off-by: Kumar Gala <galak@codeaurora.org>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/firmware/qcom_scm.c')
-rw-r--r-- | drivers/firmware/qcom_scm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/firmware/qcom_scm.c b/drivers/firmware/qcom_scm.c index 937c64a78abf..fca0744c1b73 100644 --- a/drivers/firmware/qcom_scm.c +++ b/drivers/firmware/qcom_scm.c @@ -190,6 +190,8 @@ static int qcom_scm_probe(struct platform_device *pdev) __scm = scm; __scm->dev = &pdev->dev; + __qcom_scm_init(); + return 0; } |