Lines Matching refs:status
181 /* PHY configuration and status registers */
290 * @status: connection status
312 enum drm_connector_status status;
364 bool status = !!reset_control_status(dp->reset);
366 if (assert == status)
602 * @link_status: link status from sink which contains requested training values
892 if (dp->status == connector_status_disconnected ||
1013 if (dp->status == connector_status_disconnected) {
1451 if (dp->status == connector_status_connected) {
1554 dp->status = connector_status_connected;
1559 dp->status = connector_status_disconnected;
1615 enum drm_connector_status status;
1617 status = zynqmp_dp_bridge_detect(&dp->bridge);
1618 drm_bridge_hpd_notify(&dp->bridge, status);
1624 u32 status, mask;
1626 status = zynqmp_dp_read(dp, ZYNQMP_DP_INT_STATUS);
1628 if (!(status & ~mask))
1632 if (status & ZYNQMP_DP_INT_CHBUF_UNDERFLW_MASK)
1634 if (status & ZYNQMP_DP_INT_CHBUF_OVERFLW_MASK)
1637 zynqmp_dp_write(dp, ZYNQMP_DP_INT_STATUS, status);
1639 if (status & ZYNQMP_DP_INT_VBLANK_START)
1642 if (status & ZYNQMP_DP_INT_HPD_EVENT)
1645 if (status & ZYNQMP_DP_INT_HPD_IRQ) {
1647 u8 status[DP_LINK_STATUS_SIZE + 2];
1649 ret = drm_dp_dpcd_read(&dp->aux, DP_SINK_COUNT, status,
1654 if (status[4] & DP_LINK_STATUS_UPDATED ||
1655 !drm_dp_clock_recovery_ok(&status[2], dp->mode.lane_cnt) ||
1656 !drm_dp_channel_eq_ok(&status[2], dp->mode.lane_cnt)) {
1683 dp->status = connector_status_disconnected;