#include "dmub/dmub_srv_stat.h"
#include "dmub/inc/dmub_cmd.h"
enum dmub_status dmub_srv_stat_get_notification(struct dmub_srv *dmub,
struct dmub_notification *notify)
{
union dmub_rb_out_cmd cmd = {0};
if (!dmub->hw_init) {
notify->type = DMUB_NOTIFICATION_NO_DATA;
notify->pending_notification = false;
return DMUB_STATUS_INVALID;
}
dmub->outbox1_rb.wrpt = dmub->hw_funcs.get_outbox1_wptr(dmub);
if (!dmub_rb_out_front(&dmub->outbox1_rb, &cmd)) {
notify->type = DMUB_NOTIFICATION_NO_DATA;
notify->pending_notification = false;
return DMUB_STATUS_OK;
}
switch (cmd.cmd_common.header.type) {
case DMUB_OUT_CMD__DP_AUX_REPLY:
notify->type = DMUB_NOTIFICATION_AUX_REPLY;
notify->instance = cmd.dp_aux_reply.control.instance;
notify->result = cmd.dp_aux_reply.control.result;
dmub_memcpy((void *)¬ify->aux_reply,
(void *)&cmd.dp_aux_reply.reply_data, sizeof(struct aux_reply_data));
break;
case DMUB_OUT_CMD__DP_HPD_NOTIFY:
if (cmd.dp_hpd_notify.hpd_data.hpd_type == DP_HPD) {
notify->type = DMUB_NOTIFICATION_HPD;
notify->hpd_status = cmd.dp_hpd_notify.hpd_data.hpd_status;
} else {
notify->type = DMUB_NOTIFICATION_HPD_IRQ;
}
notify->instance = cmd.dp_hpd_notify.hpd_data.instance;
notify->result = AUX_RET_SUCCESS;
break;
case DMUB_OUT_CMD__SET_CONFIG_REPLY:
notify->type = DMUB_NOTIFICATION_SET_CONFIG_REPLY;
notify->instance = cmd.set_config_reply.set_config_reply_control.instance;
notify->sc_status = cmd.set_config_reply.set_config_reply_control.status;
break;
case DMUB_OUT_CMD__DPIA_NOTIFICATION:
notify->type = DMUB_NOTIFICATION_DPIA_NOTIFICATION;
notify->instance = cmd.dpia_notification.payload.header.instance;
break;
case DMUB_OUT_CMD__HPD_SENSE_NOTIFY:
notify->type = DMUB_NOTIFICATION_HPD_SENSE_NOTIFY;
dmub_memcpy(¬ify->hpd_sense_notify,
&cmd.hpd_sense_notify.data,
sizeof(cmd.hpd_sense_notify.data));
break;
case DMUB_OUT_CMD__FUSED_IO:
notify->type = DMUB_NOTIFICATION_FUSED_IO;
dmub_memcpy(¬ify->fused_request, &cmd.fused_io.request, sizeof(cmd.fused_io.request));
break;
default:
notify->type = DMUB_NOTIFICATION_NO_DATA;
break;
}
dmub_rb_pop_front(&dmub->outbox1_rb);
dmub->hw_funcs.set_outbox1_rptr(dmub, dmub->outbox1_rb.rptr);
if (dmub_rb_empty(&dmub->outbox1_rb))
notify->pending_notification = false;
else
notify->pending_notification = true;
return DMUB_STATUS_OK;
}