Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/firmware/qcom/qcom_scm-smc.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ static int __scm_smc_do_quirk_handle_waitq(struct device *dev, struct arm_smccc_
wq_ctx = res->a1;
smc_call_ctx = res->a2;

ret = qcom_scm_wait_for_wq_completion(wq_ctx);
ret = qcom_scm_wait_for_wq_completion(dev, wq_ctx);
if (ret)
return ret;

Expand Down
126 changes: 106 additions & 20 deletions drivers/firmware/qcom/qcom_scm.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,25 @@
#include <linux/sizes.h>
#include <linux/types.h>

#include <dt-bindings/interrupt-controller/arm-gic.h>

#include "qcom_scm.h"
#include "qcom_tzmem.h"

static u32 download_mode;

#define GIC_SPI_BASE 32
#define GIC_MAX_SPI 1019 // SPIs in GICv3 spec range from 32..1019
#define GIC_ESPI_BASE 4096
#define GIC_MAX_ESPI 5119 // ESPIs in GICv3 spec range from 4096..5119

struct qcom_scm {
struct device *dev;
struct clk *core_clk;
struct clk *iface_clk;
struct clk *bus_clk;
struct icc_path *path;
struct completion waitq_comp;
struct completion *waitq_comps;
struct reset_controller_dev reset;

/* control access to the interconnect path */
Expand All @@ -52,6 +59,7 @@ struct qcom_scm {
u64 dload_mode_addr;

struct qcom_tzmem_pool *mempool;
unsigned int wq_cnt;
};

struct qcom_scm_current_perm_info {
Expand Down Expand Up @@ -133,6 +141,8 @@ static const u8 qcom_scm_cpu_warm_bits[QCOM_SCM_BOOT_MAX_CPUS] = {
#define QCOM_DLOAD_MINIDUMP 2
#define QCOM_DLOAD_BOTHDUMP 3

#define QCOM_SCM_DEFAULT_WAITQ_COUNT 1

static const char * const qcom_scm_convention_names[] = {
[SMC_CONVENTION_UNKNOWN] = "unknown",
[SMC_CONVENTION_ARM_32] = "smc arm 32",
Expand Down Expand Up @@ -2607,42 +2617,104 @@ int qcom_scm_camera_update_camnoc_qos(uint32_t use_case_id,
}
EXPORT_SYMBOL_GPL(qcom_scm_camera_update_camnoc_qos);

static int qcom_scm_assert_valid_wq_ctx(u32 wq_ctx)
static int qcom_scm_fill_irq_fwspec_params(struct irq_fwspec *fwspec, u32 hwirq)
{
/* FW currently only supports a single wq_ctx (zero).
* TODO: Update this logic to include dynamic allocation and lookup of
* completion structs when FW supports more wq_ctx values.
*/
if (wq_ctx != 0) {
dev_err(__scm->dev, "Firmware unexpectedly passed non-zero wq_ctx\n");
return -EINVAL;
if (hwirq >= GIC_SPI_BASE && hwirq <= GIC_MAX_SPI) {
fwspec->param[0] = GIC_SPI;
fwspec->param[1] = hwirq - GIC_SPI_BASE;
} else if (hwirq >= GIC_ESPI_BASE && hwirq <= GIC_MAX_ESPI) {
fwspec->param[0] = GIC_ESPI;
fwspec->param[1] = hwirq - GIC_ESPI_BASE;
} else {
WARN(1, "Unexpected hwirq: %d\n", hwirq);
return -ENXIO;
}

fwspec->param[2] = IRQ_TYPE_EDGE_RISING;
fwspec->param_count = 3;

return 0;
}

int qcom_scm_wait_for_wq_completion(u32 wq_ctx)
static int qcom_scm_query_waitq_count(struct qcom_scm *scm)
{
struct qcom_scm_desc desc = {
.svc = QCOM_SCM_SVC_WAITQ,
.cmd = QCOM_SCM_WAITQ_GET_INFO,
.owner = ARM_SMCCC_OWNER_SIP
};
struct qcom_scm_res res;
int ret;

ret = qcom_scm_assert_valid_wq_ctx(wq_ctx);
ret = qcom_scm_call_atomic(scm->dev, &desc, &res);
if (ret)
return ret;

wait_for_completion(&__scm->waitq_comp);

return 0;
return res.result[0] & GENMASK(7, 0);
}

static int qcom_scm_waitq_wakeup(unsigned int wq_ctx)
static int qcom_scm_get_waitq_irq(struct qcom_scm *scm)
{
struct qcom_scm_desc desc = {
.svc = QCOM_SCM_SVC_WAITQ,
.cmd = QCOM_SCM_WAITQ_GET_INFO,
.owner = ARM_SMCCC_OWNER_SIP
};
struct device_node *parent_irq_node;
struct irq_fwspec fwspec;
struct qcom_scm_res res;
u32 hwirq;
int ret;

ret = qcom_scm_assert_valid_wq_ctx(wq_ctx);
ret = qcom_scm_call_atomic(scm->dev, &desc, &res);
if (ret)
return ret;

complete(&__scm->waitq_comp);
hwirq = res.result[1] & GENMASK(15, 0);
ret = qcom_scm_fill_irq_fwspec_params(&fwspec, hwirq);
if (ret)
return ret;

parent_irq_node = of_irq_find_parent(scm->dev->of_node);
if (!parent_irq_node)
return -ENODEV;

fwspec.fwnode = of_fwnode_handle(parent_irq_node);

return irq_create_fwspec_mapping(&fwspec);
}

static struct completion *qcom_scm_get_completion(struct qcom_scm *scm, u32 wq_ctx)
{
if (WARN_ON_ONCE(wq_ctx >= scm->wq_cnt))
return ERR_PTR(-EINVAL);

return &scm->waitq_comps[wq_ctx];
}

int qcom_scm_wait_for_wq_completion(struct device *dev, u32 wq_ctx)
{
struct qcom_scm *scm = dev_get_drvdata(dev);
struct completion *wq;

wq = qcom_scm_get_completion(scm, wq_ctx);
if (IS_ERR(wq))
return PTR_ERR(wq);

wait_for_completion_state(wq, TASK_IDLE);

return 0;
}

static int qcom_scm_waitq_wakeup(struct qcom_scm *scm, unsigned int wq_ctx)
{
struct completion *wq;

wq = qcom_scm_get_completion(scm, wq_ctx);
if (IS_ERR(wq))
return PTR_ERR(wq);

complete(wq);

return 0;
}
Expand All @@ -2665,7 +2737,7 @@ static irqreturn_t qcom_scm_irq_handler(int irq, void *data)
goto out;
}

ret = qcom_scm_waitq_wakeup(wq_ctx);
ret = qcom_scm_waitq_wakeup(scm, wq_ctx);
if (ret)
goto out;
} while (more_pending);
Expand Down Expand Up @@ -2718,17 +2790,18 @@ static int qcom_scm_probe(struct platform_device *pdev)
struct qcom_tzmem_pool_config pool_config;
struct qcom_scm *scm;
int irq, ret;
int i;

scm = devm_kzalloc(&pdev->dev, sizeof(*scm), GFP_KERNEL);
if (!scm)
return -ENOMEM;

scm->dev = &pdev->dev;
platform_set_drvdata(pdev, scm);
ret = qcom_scm_find_dload_address(&pdev->dev, &scm->dload_mode_addr);
if (ret < 0)
return ret;

init_completion(&scm->waitq_comp);
mutex_init(&scm->scm_bw_lock);

scm->path = devm_of_icc_get(&pdev->dev, NULL);
Expand Down Expand Up @@ -2780,7 +2853,20 @@ static int qcom_scm_probe(struct platform_device *pdev)
return dev_err_probe(scm->dev, PTR_ERR(scm->mempool),
"Failed to create the SCM memory pool\n");

irq = platform_get_irq_optional(pdev, 0);
ret = qcom_scm_query_waitq_count(scm);
scm->wq_cnt = ret < 0 ? QCOM_SCM_DEFAULT_WAITQ_COUNT : ret;
scm->waitq_comps = devm_kcalloc(&pdev->dev, scm->wq_cnt, sizeof(*scm->waitq_comps),
GFP_KERNEL);
if (!scm->waitq_comps)
return -ENOMEM;

for (i = 0; i < scm->wq_cnt; i++)
init_completion(&scm->waitq_comps[i]);

irq = qcom_scm_get_waitq_irq(scm);
if (irq < 0)
irq = platform_get_irq_optional(pdev, 0);

if (irq < 0) {
if (irq != -ENXIO)
return irq;
Expand Down
3 changes: 2 additions & 1 deletion drivers/firmware/qcom/qcom_scm.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ struct qcom_scm_res {
u64 result[MAX_QCOM_SCM_RETS];
};

int qcom_scm_wait_for_wq_completion(u32 wq_ctx);
int qcom_scm_wait_for_wq_completion(struct device *dev, u32 wq_ctx);
int scm_get_wq_ctx(u32 *wq_ctx, u32 *flags, u32 *more_pending);

#define SCM_SMC_FNID(s, c) ((((s) & 0xFF) << 8) | ((c) & 0xFF))
Expand Down Expand Up @@ -153,6 +153,7 @@ int qcom_scm_shm_bridge_enable(struct device *scm_dev);
#define QCOM_SCM_SVC_WAITQ 0x24
#define QCOM_SCM_WAITQ_RESUME 0x02
#define QCOM_SCM_WAITQ_GET_WQ_CTX 0x03
#define QCOM_SCM_WAITQ_GET_INFO 0x04

#define QCOM_SCM_SVC_GPU 0x28
#define QCOM_SCM_SVC_GPU_INIT_REGS 0x01
Expand Down
Loading