Lines Matching refs:t
194 struct scmi_xfer *t; in scmi_perf_attributes_get() local
198 sizeof(*attr), &t); in scmi_perf_attributes_get()
202 attr = t->rx.buf; in scmi_perf_attributes_get()
204 ret = ph->xops->do_xfer(ph, t); in scmi_perf_attributes_get()
221 ph->xops->xfer_put(ph, t); in scmi_perf_attributes_get()
243 struct scmi_xfer *t; in scmi_perf_domain_attributes_get() local
247 sizeof(dom_info->id), sizeof(*attr), &t); in scmi_perf_domain_attributes_get()
251 put_unaligned_le32(dom_info->id, t->tx.buf); in scmi_perf_domain_attributes_get()
252 attr = t->rx.buf; in scmi_perf_domain_attributes_get()
254 ret = ph->xops->do_xfer(ph, t); in scmi_perf_domain_attributes_get()
283 ph->xops->xfer_put(ph, t); in scmi_perf_domain_attributes_get()
474 struct scmi_xfer *t; in scmi_perf_msg_limits_set() local
478 sizeof(*limits), 0, &t); in scmi_perf_msg_limits_set()
482 limits = t->tx.buf; in scmi_perf_msg_limits_set()
487 ret = ph->xops->do_xfer(ph, t); in scmi_perf_msg_limits_set()
489 ph->xops->xfer_put(ph, t); in scmi_perf_msg_limits_set()
551 struct scmi_xfer *t; in scmi_perf_msg_limits_get() local
555 sizeof(__le32), 0, &t); in scmi_perf_msg_limits_get()
559 put_unaligned_le32(domain, t->tx.buf); in scmi_perf_msg_limits_get()
561 ret = ph->xops->do_xfer(ph, t); in scmi_perf_msg_limits_get()
563 limits = t->rx.buf; in scmi_perf_msg_limits_get()
569 ph->xops->xfer_put(ph, t); in scmi_perf_msg_limits_get()
627 struct scmi_xfer *t; in scmi_perf_msg_level_set() local
630 ret = ph->xops->xfer_get_init(ph, PERF_LEVEL_SET, sizeof(*lvl), 0, &t); in scmi_perf_msg_level_set()
634 t->hdr.poll_completion = poll; in scmi_perf_msg_level_set()
635 lvl = t->tx.buf; in scmi_perf_msg_level_set()
639 ret = ph->xops->do_xfer(ph, t); in scmi_perf_msg_level_set()
641 ph->xops->xfer_put(ph, t); in scmi_perf_msg_level_set()
688 struct scmi_xfer *t; in scmi_perf_msg_level_get() local
691 sizeof(u32), sizeof(u32), &t); in scmi_perf_msg_level_get()
695 t->hdr.poll_completion = poll; in scmi_perf_msg_level_get()
696 put_unaligned_le32(domain, t->tx.buf); in scmi_perf_msg_level_get()
698 ret = ph->xops->do_xfer(ph, t); in scmi_perf_msg_level_get()
700 *level = get_unaligned_le32(t->rx.buf); in scmi_perf_msg_level_get()
702 ph->xops->xfer_put(ph, t); in scmi_perf_msg_level_get()
752 struct scmi_xfer *t; in scmi_perf_level_limits_notify() local
755 ret = ph->xops->xfer_get_init(ph, message_id, sizeof(*notify), 0, &t); in scmi_perf_level_limits_notify()
759 notify = t->tx.buf; in scmi_perf_level_limits_notify()
763 ret = ph->xops->do_xfer(ph, t); in scmi_perf_level_limits_notify()
765 ph->xops->xfer_put(ph, t); in scmi_perf_level_limits_notify()