1 // SPDX-License-Identifier: GPL-2.0+
5 * Implementation of the SCU IRQ functions using MU.
9 #include <dt-bindings/firmware/imx/rsrc.h>
10 #include <linux/firmware/imx/ipc.h>
11 #include <linux/firmware/imx/sci.h>
12 #include <linux/mailbox_client.h>
13 #include <linux/suspend.h>
15 #define IMX_SC_IRQ_FUNC_ENABLE 1
16 #define IMX_SC_IRQ_FUNC_STATUS 2
17 #define IMX_SC_IRQ_NUM_GROUP 4
19 static u32 mu_resource_id
;
21 struct imx_sc_msg_irq_get_status
{
22 struct imx_sc_rpc_msg hdr
;
35 struct imx_sc_msg_irq_enable
{
36 struct imx_sc_rpc_msg hdr
;
43 static struct imx_sc_ipc
*imx_sc_irq_ipc_handle
;
44 static struct work_struct imx_sc_irq_work
;
45 static ATOMIC_NOTIFIER_HEAD(imx_scu_irq_notifier_chain
);
47 int imx_scu_irq_register_notifier(struct notifier_block
*nb
)
49 return atomic_notifier_chain_register(
50 &imx_scu_irq_notifier_chain
, nb
);
52 EXPORT_SYMBOL(imx_scu_irq_register_notifier
);
54 int imx_scu_irq_unregister_notifier(struct notifier_block
*nb
)
56 return atomic_notifier_chain_unregister(
57 &imx_scu_irq_notifier_chain
, nb
);
59 EXPORT_SYMBOL(imx_scu_irq_unregister_notifier
);
61 static int imx_scu_irq_notifier_call_chain(unsigned long status
, u8
*group
)
63 return atomic_notifier_call_chain(&imx_scu_irq_notifier_chain
,
64 status
, (void *)group
);
67 static void imx_scu_irq_work_handler(struct work_struct
*work
)
69 struct imx_sc_msg_irq_get_status msg
;
70 struct imx_sc_rpc_msg
*hdr
= &msg
.hdr
;
75 for (i
= 0; i
< IMX_SC_IRQ_NUM_GROUP
; i
++) {
76 hdr
->ver
= IMX_SC_RPC_VERSION
;
77 hdr
->svc
= IMX_SC_RPC_SVC_IRQ
;
78 hdr
->func
= IMX_SC_IRQ_FUNC_STATUS
;
81 msg
.data
.req
.resource
= mu_resource_id
;
82 msg
.data
.req
.group
= i
;
84 ret
= imx_scu_call_rpc(imx_sc_irq_ipc_handle
, &msg
, true);
86 pr_err("get irq group %d status failed, ret %d\n",
91 irq_status
= msg
.data
.resp
.status
;
96 imx_scu_irq_notifier_call_chain(irq_status
, &i
);
100 int imx_scu_irq_group_enable(u8 group
, u32 mask
, u8 enable
)
102 struct imx_sc_msg_irq_enable msg
;
103 struct imx_sc_rpc_msg
*hdr
= &msg
.hdr
;
106 if (!imx_sc_irq_ipc_handle
)
107 return -EPROBE_DEFER
;
109 hdr
->ver
= IMX_SC_RPC_VERSION
;
110 hdr
->svc
= IMX_SC_RPC_SVC_IRQ
;
111 hdr
->func
= IMX_SC_IRQ_FUNC_ENABLE
;
114 msg
.resource
= mu_resource_id
;
119 ret
= imx_scu_call_rpc(imx_sc_irq_ipc_handle
, &msg
, true);
121 pr_err("enable irq failed, group %d, mask %d, ret %d\n",
126 EXPORT_SYMBOL(imx_scu_irq_group_enable
);
128 static void imx_scu_irq_callback(struct mbox_client
*c
, void *msg
)
130 schedule_work(&imx_sc_irq_work
);
133 int imx_scu_enable_general_irq_channel(struct device
*dev
)
135 struct of_phandle_args spec
;
136 struct mbox_client
*cl
;
137 struct mbox_chan
*ch
;
140 ret
= imx_scu_get_handle(&imx_sc_irq_ipc_handle
);
144 cl
= devm_kzalloc(dev
, sizeof(*cl
), GFP_KERNEL
);
149 cl
->rx_callback
= imx_scu_irq_callback
;
151 /* SCU general IRQ uses general interrupt channel 3 */
152 ch
= mbox_request_channel_byname(cl
, "gip3");
155 dev_err(dev
, "failed to request mbox chan gip3, ret %d\n", ret
);
160 INIT_WORK(&imx_sc_irq_work
, imx_scu_irq_work_handler
);
162 if (!of_parse_phandle_with_args(dev
->of_node
, "mboxes",
163 "#mbox-cells", 0, &spec
))
164 i
= of_alias_get_id(spec
.np
, "mu");
166 /* use mu1 as general mu irq channel if failed */
170 mu_resource_id
= IMX_SC_R_MU_0A
+ i
;
174 EXPORT_SYMBOL(imx_scu_enable_general_irq_channel
);