• Home
  • Raw
  • Download

Lines Matching refs:rpm_msg

80 	struct rpmh_request *rpm_msg = container_of(msg, struct rpmh_request,  in rpmh_tx_done()  local
82 struct completion *compl = rpm_msg->completion; in rpmh_tx_done()
83 bool free = rpm_msg->needs_free; in rpmh_tx_done()
85 rpm_msg->err = r; in rpmh_tx_done()
88 dev_err(rpm_msg->dev, "RPMH TX fail in msg addr=%#x, err=%d\n", in rpmh_tx_done()
89 rpm_msg->msg.cmds[0].addr, r); in rpmh_tx_done()
99 kfree(rpm_msg); in rpmh_tx_done()
174 struct rpmh_request *rpm_msg) in __rpmh_write() argument
181 rpm_msg->msg.state = state; in __rpmh_write()
184 for (i = 0; i < rpm_msg->msg.num_cmds; i++) { in __rpmh_write()
185 req = cache_rpm_request(ctrlr, state, &rpm_msg->msg.cmds[i]); in __rpmh_write()
190 rpm_msg->msg.state = state; in __rpmh_write()
194 ret = rpmh_rsc_send_data(ctrlr_to_drv(ctrlr), &rpm_msg->msg); in __rpmh_write()
198 rpmh_tx_done(&rpm_msg->msg, ret); in __rpmh_write()
233 struct rpmh_request *rpm_msg; in rpmh_write_async() local
236 rpm_msg = kzalloc(sizeof(*rpm_msg), GFP_ATOMIC); in rpmh_write_async()
237 if (!rpm_msg) in rpmh_write_async()
239 rpm_msg->needs_free = true; in rpmh_write_async()
241 ret = __fill_rpmh_msg(rpm_msg, state, cmd, n); in rpmh_write_async()
243 kfree(rpm_msg); in rpmh_write_async()
247 return __rpmh_write(dev, state, rpm_msg); in rpmh_write_async()
265 DEFINE_RPMH_MSG_ONSTACK(dev, state, &compl, rpm_msg); in rpmh_write()
271 memcpy(rpm_msg.cmd, cmd, n * sizeof(*cmd)); in rpmh_write()
272 rpm_msg.msg.num_cmds = n; in rpmh_write()
274 ret = __rpmh_write(dev, state, &rpm_msg); in rpmh_write()
296 const struct rpmh_request *rpm_msg; in flush_batch() local
305 rpm_msg = req->rpm_msgs + i; in flush_batch()
307 &rpm_msg->msg); in flush_batch()
433 DEFINE_RPMH_MSG_ONSTACK(dev, state, NULL, rpm_msg); in send_single()
437 rpm_msg.msg.wait_for_compl = (state == RPMH_WAKE_ONLY_STATE); in send_single()
438 rpm_msg.cmd[0].addr = addr; in send_single()
439 rpm_msg.cmd[0].data = data; in send_single()
440 rpm_msg.msg.num_cmds = 1; in send_single()
442 return rpmh_rsc_write_ctrl_data(ctrlr_to_drv(ctrlr), &rpm_msg.msg); in send_single()