mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 20:32:04 +09:00
Merge tag 'mailbox-v5.17' of git://git.linaro.org/landing-teams/working/fujitsu/integration
Pull mailbox updates from Jassi Brar:
- qcom: misc updates to qcom-ipcc driver
- mpfs: change compatible string
- pcc:
- fix handling of subtypes
- avoid uninitialized variable
- mtk:
- add missing of_node_put
- enable control_by_sw
- silent probe-defer prints
- fix gce_num for mt8192
- zynq: add missing of_node_put
- imx: check for NULL instead of IS_ERR
- appple: switch to generic compatibles
- hi3660: convert comments to kernel-doc notation
* tag 'mailbox-v5.17' of git://git.linaro.org/landing-teams/working/fujitsu/integration:
dt-bindings: mailbox: Add more protocol and client ID
mailbox: qcom-ipcc: Support interrupt wake up from suspend
mailbox: qcom-ipcc: Support more IPCC instance
mailbox: qcom-ipcc: Dynamic alloc for channel arrangement
mailbox: change mailbox-mpfs compatible string
mailbox: pcc: Handle all PCC subtypes correctly in pcc_mbox_irq
mailbox: pcc: Avoid using the uninitialized variable 'dev'
mailbox: mtk: add missing of_node_put before return
mailbox: zynq: add missing of_node_put before return
mailbox: imx: Fix an IS_ERR() vs NULL bug
mailbox: hi3660: convert struct comments to kernel-doc notation
mailbox: add control_by_sw for mt8195
mailbox: mtk-cmdq: Silent EPROBE_DEFER errors for clks
mailbox: fix gce_num of mt8192 driver data
mailbox: apple: Bind to generic compatibles
dt-bindings: mailbox: apple,mailbox: Add generic and t6000 compatibles
This commit is contained in:
@@ -27,14 +27,20 @@ properties:
|
|||||||
for example for the display controller, the system management
|
for example for the display controller, the system management
|
||||||
controller and the NVMe coprocessor.
|
controller and the NVMe coprocessor.
|
||||||
items:
|
items:
|
||||||
- const: apple,t8103-asc-mailbox
|
- enum:
|
||||||
|
- apple,t8103-asc-mailbox
|
||||||
|
- apple,t6000-asc-mailbox
|
||||||
|
- const: apple,asc-mailbox-v4
|
||||||
|
|
||||||
- description:
|
- description:
|
||||||
M3 mailboxes are an older variant with a slightly different MMIO
|
M3 mailboxes are an older variant with a slightly different MMIO
|
||||||
interface still found on the M1. It is used for the Thunderbolt
|
interface still found on the M1. It is used for the Thunderbolt
|
||||||
co-processors.
|
co-processors.
|
||||||
items:
|
items:
|
||||||
- const: apple,t8103-m3-mailbox
|
- enum:
|
||||||
|
- apple,t8103-m3-mailbox
|
||||||
|
- apple,t6000-m3-mailbox
|
||||||
|
- const: apple,m3-mailbox-v2
|
||||||
|
|
||||||
reg:
|
reg:
|
||||||
maxItems: 1
|
maxItems: 1
|
||||||
@@ -71,7 +77,7 @@ additionalProperties: false
|
|||||||
examples:
|
examples:
|
||||||
- |
|
- |
|
||||||
mailbox@77408000 {
|
mailbox@77408000 {
|
||||||
compatible = "apple,t8103-asc-mailbox";
|
compatible = "apple,t8103-asc-mailbox", "apple,asc-mailbox-v4";
|
||||||
reg = <0x77408000 0x4000>;
|
reg = <0x77408000 0x4000>;
|
||||||
interrupts = <1 583 4>, <1 584 4>, <1 585 4>, <1 586 4>;
|
interrupts = <1 583 4>, <1 584 4>, <1 585 4>, <1 586 4>;
|
||||||
interrupt-names = "send-empty", "send-not-empty",
|
interrupt-names = "send-empty", "send-not-empty",
|
||||||
|
|||||||
@@ -364,8 +364,8 @@ static const struct apple_mbox_hw apple_mbox_m3_hw = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const struct of_device_id apple_mbox_of_match[] = {
|
static const struct of_device_id apple_mbox_of_match[] = {
|
||||||
{ .compatible = "apple,t8103-asc-mailbox", .data = &apple_mbox_asc_hw },
|
{ .compatible = "apple,asc-mailbox-v4", .data = &apple_mbox_asc_hw },
|
||||||
{ .compatible = "apple,t8103-m3-mailbox", .data = &apple_mbox_m3_hw },
|
{ .compatible = "apple,m3-mailbox-v2", .data = &apple_mbox_m3_hw },
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, apple_mbox_of_match);
|
MODULE_DEVICE_TABLE(of, apple_mbox_of_match);
|
||||||
|
|||||||
@@ -44,14 +44,13 @@
|
|||||||
#define MBOX_MSG_LEN 8
|
#define MBOX_MSG_LEN 8
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hi3660 mailbox channel information
|
* struct hi3660_chan_info - Hi3660 mailbox channel information
|
||||||
|
* @dst_irq: Interrupt vector for remote processor
|
||||||
|
* @ack_irq: Interrupt vector for local processor
|
||||||
*
|
*
|
||||||
* A channel can be used for TX or RX, it can trigger remote
|
* A channel can be used for TX or RX, it can trigger remote
|
||||||
* processor interrupt to notify remote processor and can receive
|
* processor interrupt to notify remote processor and can receive
|
||||||
* interrupt if has incoming message.
|
* interrupt if it has an incoming message.
|
||||||
*
|
|
||||||
* @dst_irq: Interrupt vector for remote processor
|
|
||||||
* @ack_irq: Interrupt vector for local processor
|
|
||||||
*/
|
*/
|
||||||
struct hi3660_chan_info {
|
struct hi3660_chan_info {
|
||||||
unsigned int dst_irq;
|
unsigned int dst_irq;
|
||||||
@@ -59,16 +58,15 @@ struct hi3660_chan_info {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Hi3660 mailbox controller data
|
* struct hi3660_mbox - Hi3660 mailbox controller data
|
||||||
*
|
|
||||||
* Mailbox controller includes 32 channels and can allocate
|
|
||||||
* channel for message transferring.
|
|
||||||
*
|
|
||||||
* @dev: Device to which it is attached
|
* @dev: Device to which it is attached
|
||||||
* @base: Base address of the register mapping region
|
* @base: Base address of the register mapping region
|
||||||
* @chan: Representation of channels in mailbox controller
|
* @chan: Representation of channels in mailbox controller
|
||||||
* @mchan: Representation of channel info
|
* @mchan: Representation of channel info
|
||||||
* @controller: Representation of a communication channel controller
|
* @controller: Representation of a communication channel controller
|
||||||
|
*
|
||||||
|
* Mailbox controller includes 32 channels and can allocate
|
||||||
|
* channel for message transferring.
|
||||||
*/
|
*/
|
||||||
struct hi3660_mbox {
|
struct hi3660_mbox {
|
||||||
struct device *dev;
|
struct device *dev;
|
||||||
|
|||||||
@@ -563,8 +563,8 @@ static int imx_mu_probe(struct platform_device *pdev)
|
|||||||
size = sizeof(struct imx_sc_rpc_msg_max);
|
size = sizeof(struct imx_sc_rpc_msg_max);
|
||||||
|
|
||||||
priv->msg = devm_kzalloc(dev, size, GFP_KERNEL);
|
priv->msg = devm_kzalloc(dev, size, GFP_KERNEL);
|
||||||
if (IS_ERR(priv->msg))
|
if (!priv->msg)
|
||||||
return PTR_ERR(priv->msg);
|
return -ENOMEM;
|
||||||
|
|
||||||
priv->clk = devm_clk_get(dev, NULL);
|
priv->clk = devm_clk_get(dev, NULL);
|
||||||
if (IS_ERR(priv->clk)) {
|
if (IS_ERR(priv->clk)) {
|
||||||
|
|||||||
@@ -232,7 +232,7 @@ static int mpfs_mbox_probe(struct platform_device *pdev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const struct of_device_id mpfs_mbox_of_match[] = {
|
static const struct of_device_id mpfs_mbox_of_match[] = {
|
||||||
{.compatible = "microchip,polarfire-soc-mailbox", },
|
{.compatible = "microchip,mpfs-mailbox", },
|
||||||
{},
|
{},
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, mpfs_mbox_of_match);
|
MODULE_DEVICE_TABLE(of, mpfs_mbox_of_match);
|
||||||
|
|||||||
@@ -573,8 +573,11 @@ static int cmdq_probe(struct platform_device *pdev)
|
|||||||
cmdq->clocks[alias_id].id = clk_names[alias_id];
|
cmdq->clocks[alias_id].id = clk_names[alias_id];
|
||||||
cmdq->clocks[alias_id].clk = of_clk_get(node, 0);
|
cmdq->clocks[alias_id].clk = of_clk_get(node, 0);
|
||||||
if (IS_ERR(cmdq->clocks[alias_id].clk)) {
|
if (IS_ERR(cmdq->clocks[alias_id].clk)) {
|
||||||
dev_err(dev, "failed to get gce clk: %d\n", alias_id);
|
of_node_put(node);
|
||||||
return PTR_ERR(cmdq->clocks[alias_id].clk);
|
return dev_err_probe(dev,
|
||||||
|
PTR_ERR(cmdq->clocks[alias_id].clk),
|
||||||
|
"failed to get gce clk: %d\n",
|
||||||
|
alias_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -582,8 +585,8 @@ static int cmdq_probe(struct platform_device *pdev)
|
|||||||
cmdq->clocks[alias_id].id = clk_name;
|
cmdq->clocks[alias_id].id = clk_name;
|
||||||
cmdq->clocks[alias_id].clk = devm_clk_get(&pdev->dev, clk_name);
|
cmdq->clocks[alias_id].clk = devm_clk_get(&pdev->dev, clk_name);
|
||||||
if (IS_ERR(cmdq->clocks[alias_id].clk)) {
|
if (IS_ERR(cmdq->clocks[alias_id].clk)) {
|
||||||
dev_err(dev, "failed to get gce clk\n");
|
return dev_err_probe(dev, PTR_ERR(cmdq->clocks[alias_id].clk),
|
||||||
return PTR_ERR(cmdq->clocks[alias_id].clk);
|
"failed to get gce clk\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -658,13 +661,13 @@ static const struct gce_plat gce_plat_v5 = {
|
|||||||
.thread_nr = 24,
|
.thread_nr = 24,
|
||||||
.shift = 3,
|
.shift = 3,
|
||||||
.control_by_sw = true,
|
.control_by_sw = true,
|
||||||
.gce_num = 2
|
.gce_num = 1
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct gce_plat gce_plat_v6 = {
|
static const struct gce_plat gce_plat_v6 = {
|
||||||
.thread_nr = 24,
|
.thread_nr = 24,
|
||||||
.shift = 3,
|
.shift = 3,
|
||||||
.control_by_sw = false,
|
.control_by_sw = true,
|
||||||
.gce_num = 2
|
.gce_num = 2
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -241,9 +241,11 @@ static irqreturn_t pcc_mbox_irq(int irq, void *p)
|
|||||||
if (ret)
|
if (ret)
|
||||||
return IRQ_NONE;
|
return IRQ_NONE;
|
||||||
|
|
||||||
val &= pchan->cmd_complete.status_mask;
|
if (val) { /* Ensure GAS exists and value is non-zero */
|
||||||
if (!val)
|
val &= pchan->cmd_complete.status_mask;
|
||||||
return IRQ_NONE;
|
if (!val)
|
||||||
|
return IRQ_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
ret = pcc_chan_reg_read(&pchan->error, &val);
|
ret = pcc_chan_reg_read(&pchan->error, &val);
|
||||||
if (ret)
|
if (ret)
|
||||||
@@ -289,7 +291,7 @@ pcc_mbox_request_channel(struct mbox_client *cl, int subspace_id)
|
|||||||
pchan = chan_info + subspace_id;
|
pchan = chan_info + subspace_id;
|
||||||
chan = pchan->chan.mchan;
|
chan = pchan->chan.mchan;
|
||||||
if (IS_ERR(chan) || chan->cl) {
|
if (IS_ERR(chan) || chan->cl) {
|
||||||
dev_err(dev, "Channel not found for idx: %d\n", subspace_id);
|
pr_err("Channel not found for idx: %d\n", subspace_id);
|
||||||
return ERR_PTR(-EBUSY);
|
return ERR_PTR(-EBUSY);
|
||||||
}
|
}
|
||||||
dev = chan->mbox->dev;
|
dev = chan->mbox->dev;
|
||||||
|
|||||||
@@ -13,8 +13,6 @@
|
|||||||
|
|
||||||
#include <dt-bindings/mailbox/qcom-ipcc.h>
|
#include <dt-bindings/mailbox/qcom-ipcc.h>
|
||||||
|
|
||||||
#define IPCC_MBOX_MAX_CHAN 48
|
|
||||||
|
|
||||||
/* IPCC Register offsets */
|
/* IPCC Register offsets */
|
||||||
#define IPCC_REG_SEND_ID 0x0c
|
#define IPCC_REG_SEND_ID 0x0c
|
||||||
#define IPCC_REG_RECV_ID 0x10
|
#define IPCC_REG_RECV_ID 0x10
|
||||||
@@ -52,9 +50,10 @@ struct qcom_ipcc {
|
|||||||
struct device *dev;
|
struct device *dev;
|
||||||
void __iomem *base;
|
void __iomem *base;
|
||||||
struct irq_domain *irq_domain;
|
struct irq_domain *irq_domain;
|
||||||
struct mbox_chan chan[IPCC_MBOX_MAX_CHAN];
|
struct mbox_chan *chans;
|
||||||
struct qcom_ipcc_chan_info mchan[IPCC_MBOX_MAX_CHAN];
|
struct qcom_ipcc_chan_info *mchan;
|
||||||
struct mbox_controller mbox;
|
struct mbox_controller mbox;
|
||||||
|
int num_chans;
|
||||||
int irq;
|
int irq;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -166,25 +165,37 @@ static struct mbox_chan *qcom_ipcc_mbox_xlate(struct mbox_controller *mbox,
|
|||||||
struct qcom_ipcc *ipcc = to_qcom_ipcc(mbox);
|
struct qcom_ipcc *ipcc = to_qcom_ipcc(mbox);
|
||||||
struct qcom_ipcc_chan_info *mchan;
|
struct qcom_ipcc_chan_info *mchan;
|
||||||
struct mbox_chan *chan;
|
struct mbox_chan *chan;
|
||||||
unsigned int i;
|
struct device *dev;
|
||||||
|
int chan_id;
|
||||||
|
|
||||||
|
dev = ipcc->dev;
|
||||||
|
|
||||||
if (ph->args_count != 2)
|
if (ph->args_count != 2)
|
||||||
return ERR_PTR(-EINVAL);
|
return ERR_PTR(-EINVAL);
|
||||||
|
|
||||||
for (i = 0; i < IPCC_MBOX_MAX_CHAN; i++) {
|
for (chan_id = 0; chan_id < mbox->num_chans; chan_id++) {
|
||||||
chan = &ipcc->chan[i];
|
chan = &ipcc->chans[chan_id];
|
||||||
if (!chan->con_priv) {
|
mchan = chan->con_priv;
|
||||||
mchan = &ipcc->mchan[i];
|
|
||||||
mchan->client_id = ph->args[0];
|
|
||||||
mchan->signal_id = ph->args[1];
|
|
||||||
chan->con_priv = mchan;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
chan = NULL;
|
if (!mchan)
|
||||||
|
break;
|
||||||
|
else if (mchan->client_id == ph->args[0] &&
|
||||||
|
mchan->signal_id == ph->args[1])
|
||||||
|
return ERR_PTR(-EBUSY);
|
||||||
}
|
}
|
||||||
|
|
||||||
return chan ?: ERR_PTR(-EBUSY);
|
if (chan_id >= mbox->num_chans)
|
||||||
|
return ERR_PTR(-EBUSY);
|
||||||
|
|
||||||
|
mchan = devm_kzalloc(dev, sizeof(*mchan), GFP_KERNEL);
|
||||||
|
if (!mchan)
|
||||||
|
return ERR_PTR(-ENOMEM);
|
||||||
|
|
||||||
|
mchan->client_id = ph->args[0];
|
||||||
|
mchan->signal_id = ph->args[1];
|
||||||
|
chan->con_priv = mchan;
|
||||||
|
|
||||||
|
return chan;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct mbox_chan_ops ipcc_mbox_chan_ops = {
|
static const struct mbox_chan_ops ipcc_mbox_chan_ops = {
|
||||||
@@ -192,15 +203,49 @@ static const struct mbox_chan_ops ipcc_mbox_chan_ops = {
|
|||||||
.shutdown = qcom_ipcc_mbox_shutdown,
|
.shutdown = qcom_ipcc_mbox_shutdown,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int qcom_ipcc_setup_mbox(struct qcom_ipcc *ipcc)
|
static int qcom_ipcc_setup_mbox(struct qcom_ipcc *ipcc,
|
||||||
|
struct device_node *controller_dn)
|
||||||
{
|
{
|
||||||
|
struct of_phandle_args curr_ph;
|
||||||
|
struct device_node *client_dn;
|
||||||
struct mbox_controller *mbox;
|
struct mbox_controller *mbox;
|
||||||
struct device *dev = ipcc->dev;
|
struct device *dev = ipcc->dev;
|
||||||
|
int i, j, ret;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Find out the number of clients interested in this mailbox
|
||||||
|
* and create channels accordingly.
|
||||||
|
*/
|
||||||
|
ipcc->num_chans = 0;
|
||||||
|
for_each_node_with_property(client_dn, "mboxes") {
|
||||||
|
if (!of_device_is_available(client_dn))
|
||||||
|
continue;
|
||||||
|
i = of_count_phandle_with_args(client_dn,
|
||||||
|
"mboxes", "#mbox-cells");
|
||||||
|
for (j = 0; j < i; j++) {
|
||||||
|
ret = of_parse_phandle_with_args(client_dn, "mboxes",
|
||||||
|
"#mbox-cells", j, &curr_ph);
|
||||||
|
of_node_put(curr_ph.np);
|
||||||
|
if (!ret && curr_ph.np == controller_dn) {
|
||||||
|
ipcc->num_chans++;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* If no clients are found, skip registering as a mbox controller */
|
||||||
|
if (!ipcc->num_chans)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
ipcc->chans = devm_kcalloc(dev, ipcc->num_chans,
|
||||||
|
sizeof(struct mbox_chan), GFP_KERNEL);
|
||||||
|
if (!ipcc->chans)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
mbox = &ipcc->mbox;
|
mbox = &ipcc->mbox;
|
||||||
mbox->dev = dev;
|
mbox->dev = dev;
|
||||||
mbox->num_chans = IPCC_MBOX_MAX_CHAN;
|
mbox->num_chans = ipcc->num_chans;
|
||||||
mbox->chans = ipcc->chan;
|
mbox->chans = ipcc->chans;
|
||||||
mbox->ops = &ipcc_mbox_chan_ops;
|
mbox->ops = &ipcc_mbox_chan_ops;
|
||||||
mbox->of_xlate = qcom_ipcc_mbox_xlate;
|
mbox->of_xlate = qcom_ipcc_mbox_xlate;
|
||||||
mbox->txdone_irq = false;
|
mbox->txdone_irq = false;
|
||||||
@@ -212,6 +257,8 @@ static int qcom_ipcc_setup_mbox(struct qcom_ipcc *ipcc)
|
|||||||
static int qcom_ipcc_probe(struct platform_device *pdev)
|
static int qcom_ipcc_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct qcom_ipcc *ipcc;
|
struct qcom_ipcc *ipcc;
|
||||||
|
static int id;
|
||||||
|
char *name;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ipcc = devm_kzalloc(&pdev->dev, sizeof(*ipcc), GFP_KERNEL);
|
ipcc = devm_kzalloc(&pdev->dev, sizeof(*ipcc), GFP_KERNEL);
|
||||||
@@ -228,27 +275,33 @@ static int qcom_ipcc_probe(struct platform_device *pdev)
|
|||||||
if (ipcc->irq < 0)
|
if (ipcc->irq < 0)
|
||||||
return ipcc->irq;
|
return ipcc->irq;
|
||||||
|
|
||||||
|
name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "ipcc_%d", id++);
|
||||||
|
if (!name)
|
||||||
|
return -ENOMEM;
|
||||||
|
|
||||||
ipcc->irq_domain = irq_domain_add_tree(pdev->dev.of_node,
|
ipcc->irq_domain = irq_domain_add_tree(pdev->dev.of_node,
|
||||||
&qcom_ipcc_irq_ops, ipcc);
|
&qcom_ipcc_irq_ops, ipcc);
|
||||||
if (!ipcc->irq_domain)
|
if (!ipcc->irq_domain)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
ret = qcom_ipcc_setup_mbox(ipcc);
|
ret = qcom_ipcc_setup_mbox(ipcc, pdev->dev.of_node);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err_mbox;
|
goto err_mbox;
|
||||||
|
|
||||||
ret = devm_request_irq(&pdev->dev, ipcc->irq, qcom_ipcc_irq_fn,
|
ret = devm_request_irq(&pdev->dev, ipcc->irq, qcom_ipcc_irq_fn,
|
||||||
IRQF_TRIGGER_HIGH, "ipcc", ipcc);
|
IRQF_TRIGGER_HIGH | IRQF_NO_SUSPEND, name, ipcc);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(&pdev->dev, "Failed to register the irq: %d\n", ret);
|
dev_err(&pdev->dev, "Failed to register the irq: %d\n", ret);
|
||||||
goto err_mbox;
|
goto err_req_irq;
|
||||||
}
|
}
|
||||||
|
|
||||||
enable_irq_wake(ipcc->irq);
|
|
||||||
platform_set_drvdata(pdev, ipcc);
|
platform_set_drvdata(pdev, ipcc);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
err_req_irq:
|
||||||
|
if (ipcc->num_chans)
|
||||||
|
mbox_controller_unregister(&ipcc->mbox);
|
||||||
err_mbox:
|
err_mbox:
|
||||||
irq_domain_remove(ipcc->irq_domain);
|
irq_domain_remove(ipcc->irq_domain);
|
||||||
|
|
||||||
|
|||||||
@@ -655,6 +655,7 @@ static int zynqmp_ipi_probe(struct platform_device *pdev)
|
|||||||
mbox->pdata = pdata;
|
mbox->pdata = pdata;
|
||||||
ret = zynqmp_ipi_mbox_probe(mbox, nc);
|
ret = zynqmp_ipi_mbox_probe(mbox, nc);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
|
of_node_put(nc);
|
||||||
dev_err(dev, "failed to probe subdev.\n");
|
dev_err(dev, "failed to probe subdev.\n");
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto free_mbox_dev;
|
goto free_mbox_dev;
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
/* Signal IDs for MPROC protocol */
|
/* Signal IDs for MPROC protocol */
|
||||||
#define IPCC_MPROC_SIGNAL_GLINK_QMP 0
|
#define IPCC_MPROC_SIGNAL_GLINK_QMP 0
|
||||||
|
#define IPCC_MPROC_SIGNAL_TZ 1
|
||||||
#define IPCC_MPROC_SIGNAL_SMP2P 2
|
#define IPCC_MPROC_SIGNAL_SMP2P 2
|
||||||
#define IPCC_MPROC_SIGNAL_PING 3
|
#define IPCC_MPROC_SIGNAL_PING 3
|
||||||
|
|
||||||
@@ -29,6 +30,7 @@
|
|||||||
#define IPCC_CLIENT_PCIE1 14
|
#define IPCC_CLIENT_PCIE1 14
|
||||||
#define IPCC_CLIENT_PCIE2 15
|
#define IPCC_CLIENT_PCIE2 15
|
||||||
#define IPCC_CLIENT_SPSS 16
|
#define IPCC_CLIENT_SPSS 16
|
||||||
|
#define IPCC_CLIENT_TME 23
|
||||||
#define IPCC_CLIENT_WPSS 24
|
#define IPCC_CLIENT_WPSS 24
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user