disp: msm: parse SPMI registers and append to IO lend list

Parse the display peripheral related SPMI SID/Peripheral
mask from device-tree and get the dynamic register range
of these peripherals using the SPMI API. These registers
are appended to the list of display IO ranges that is
lent from HLOS to trusted VM during trusted UI. This would
help in adding restrictions for SPMI registers on HLOS during
the trusted UI use case along with validation of the register
ranges in trusted VM.

Change-Id: I7077dac7962466e845d061e9ccd205f1bc0ce3ea
Signed-off-by: Veera Sundaram Sankaran <veeras@codeaurora.org>
Этот коммит содержится в:
Veera Sundaram Sankaran
2020-06-09 18:35:42 -07:00
коммит произвёл Gerrit - the friendly Code Review server
родитель 20ed4f0785
Коммит f7fece8238
3 изменённых файлов: 58 добавлений и 0 удалений

Просмотреть файл

@@ -88,6 +88,8 @@ void msm_dss_iounmap(struct dss_io_data *io_data);
int msm_dss_get_io_mem(struct platform_device *pdev, int msm_dss_get_io_mem(struct platform_device *pdev,
struct list_head *mem_list); struct list_head *mem_list);
void msm_dss_clean_io_mem(struct list_head *mem_list); void msm_dss_clean_io_mem(struct list_head *mem_list);
int msm_dss_get_pmic_io_mem(struct platform_device *pdev,
struct list_head *mem_list);
int msm_dss_get_io_irq(struct platform_device *pdev, int msm_dss_get_io_irq(struct platform_device *pdev,
struct list_head *irq_list, u32 label); struct list_head *irq_list, u32 label);
void msm_dss_clean_io_irq(struct list_head *irq_list); void msm_dss_clean_io_irq(struct list_head *irq_list);

Просмотреть файл

@@ -4127,6 +4127,12 @@ int sde_kms_get_io_resources(struct sde_kms *sde_kms, struct msm_io_res *io_res)
return rc; return rc;
} }
rc = msm_dss_get_pmic_io_mem(pdev, &io_res->mem);
if (rc) {
SDE_ERROR("failed to get io mem for pmic, rc:%d\n", rc);
return rc;
}
rc = msm_dss_get_io_irq(pdev, &io_res->irq, HH_IRQ_LABEL_SDE); rc = msm_dss_get_io_irq(pdev, &io_res->irq, HH_IRQ_LABEL_SDE);
if (rc) { if (rc) {
SDE_ERROR("failed to get io irq for KMS"); SDE_ERROR("failed to get io irq for KMS");

Просмотреть файл

@@ -7,6 +7,7 @@
#include <linux/err.h> #include <linux/err.h>
#include <linux/io.h> #include <linux/io.h>
#include <linux/regulator/consumer.h> #include <linux/regulator/consumer.h>
#include <linux/soc/qcom/spmi-pmic-arb.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/sde_io_util.h> #include <linux/sde_io_util.h>
#include <linux/sde_vm_event.h> #include <linux/sde_vm_event.h>
@@ -130,6 +131,55 @@ void msm_dss_iounmap(struct dss_io_data *io_data)
} /* msm_dss_iounmap */ } /* msm_dss_iounmap */
EXPORT_SYMBOL(msm_dss_iounmap); EXPORT_SYMBOL(msm_dss_iounmap);
int msm_dss_get_pmic_io_mem(struct platform_device *pdev,
struct list_head *mem_list)
{
struct list_head temp_head;
struct msm_io_mem_entry *io_mem;
struct resource *res = NULL;
struct property *prop;
const __be32 *cur;
int rc = 0;
u32 val;
INIT_LIST_HEAD(&temp_head);
res = kzalloc(sizeof(struct resource), GFP_KERNEL);
if (!res)
return -ENOMEM;
of_property_for_each_u32(pdev->dev.of_node, "qcom,pmic-arb-address",
prop, cur, val) {
rc = spmi_pmic_arb_map_address(&pdev->dev, val, res);
if (rc < 0) {
DEV_ERR("%pS - failed to map pmic address, rc:%d\n",
__func__, rc);
goto parse_fail;
}
io_mem = kzalloc(sizeof(struct msm_io_mem_entry), GFP_KERNEL);
if (!io_mem) {
rc = -ENOMEM;
goto parse_fail;
}
io_mem->base = res->start;
io_mem->size = resource_size(res);
list_add(&io_mem->list, &temp_head);
}
list_splice(&temp_head, mem_list);
goto end;
parse_fail:
msm_dss_clean_io_mem(&temp_head);
end:
kzfree(res);
return rc;
}
EXPORT_SYMBOL(msm_dss_get_pmic_io_mem);
int msm_dss_get_io_mem(struct platform_device *pdev, struct list_head *mem_list) int msm_dss_get_io_mem(struct platform_device *pdev, struct list_head *mem_list)
{ {
struct list_head temp_head; struct list_head temp_head;