Lines Matching defs:msg
36 struct imx_sc_msg_misc_get_soc_uid msg;
37 struct imx_sc_rpc_msg *hdr = &msg.hdr;
45 ret = imx_scu_call_rpc(imx_sc_soc_ipc_handle, &msg, true);
51 *soc_uid = msg.uid_high;
53 *soc_uid |= msg.uid_low;
60 struct imx_sc_msg_misc_get_soc_id msg;
61 struct imx_sc_rpc_msg *hdr = &msg.hdr;
69 msg.data.req.control = IMX_SC_C_ID;
70 msg.data.req.resource = IMX_SC_R_SYSTEM;
72 ret = imx_scu_call_rpc(imx_sc_soc_ipc_handle, &msg, true);
78 return msg.data.resp.id;