Lines Matching refs:resp
123 u_register_t resp; in spmc_send_pm_msg() local
169 resp = read_ctx_reg(gpregs_ctx, CTX_GPREG_X0); in spmc_send_pm_msg()
170 if (resp != FFA_MSG_SEND_DIRECT_RESP_SMC32) { in spmc_send_pm_msg()
171 ERROR("%s invalid SP response (%lx).\n", __func__, resp); in spmc_send_pm_msg()
177 resp = read_ctx_reg(gpregs_ctx, CTX_GPREG_X1); in spmc_send_pm_msg()
178 if (!(ffa_endpoint_source(resp) == sp->sp_id && in spmc_send_pm_msg()
179 ffa_endpoint_destination(resp) == FFA_SPMC_ID)) { in spmc_send_pm_msg()
180 ERROR("%s invalid src/dst response (%lx).\n", __func__, resp); in spmc_send_pm_msg()
186 resp = read_ctx_reg(gpregs_ctx, CTX_GPREG_X2); in spmc_send_pm_msg()
187 if ((resp & FFA_FWK_MSG_BIT) == 0U || in spmc_send_pm_msg()
188 ((resp & FFA_FWK_MSG_MASK) != FFA_PM_MSG_PM_RESP)) { in spmc_send_pm_msg()
189 ERROR("%s invalid PM response (%lx).\n", __func__, resp); in spmc_send_pm_msg()