Lines Matching refs:cur_state
1098 bool cur_state; in assert_pll() local
1102 cur_state = !!(val & DPLL_VCO_ENABLE); in assert_pll()
1103 I915_STATE_WARN(cur_state != state, in assert_pll()
1105 state_string(state), state_string(cur_state)); in assert_pll()
1112 bool cur_state; in assert_dsi_pll() local
1118 cur_state = val & DSI_PLL_VCO_EN; in assert_dsi_pll()
1119 I915_STATE_WARN(cur_state != state, in assert_dsi_pll()
1121 state_string(state), state_string(cur_state)); in assert_dsi_pll()
1142 bool cur_state; in assert_shared_dpll() local
1149 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state); in assert_shared_dpll()
1150 I915_STATE_WARN(cur_state != state, in assert_shared_dpll()
1152 pll->name, state_string(state), state_string(cur_state)); in assert_shared_dpll()
1160 bool cur_state; in assert_fdi_tx() local
1168 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE); in assert_fdi_tx()
1172 cur_state = !!(val & FDI_TX_ENABLE); in assert_fdi_tx()
1174 I915_STATE_WARN(cur_state != state, in assert_fdi_tx()
1176 state_string(state), state_string(cur_state)); in assert_fdi_tx()
1186 bool cur_state; in assert_fdi_rx() local
1190 cur_state = !!(val & FDI_RX_ENABLE); in assert_fdi_rx()
1191 I915_STATE_WARN(cur_state != state, in assert_fdi_rx()
1193 state_string(state), state_string(cur_state)); in assert_fdi_rx()
1222 bool cur_state; in assert_fdi_rx_pll() local
1226 cur_state = !!(val & FDI_RX_PLL_ENABLE); in assert_fdi_rx_pll()
1227 I915_STATE_WARN(cur_state != state, in assert_fdi_rx_pll()
1229 state_string(state), state_string(cur_state)); in assert_fdi_rx_pll()
1278 bool cur_state; in assert_cursor() local
1281 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE; in assert_cursor()
1283 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE; in assert_cursor()
1285 I915_STATE_WARN(cur_state != state, in assert_cursor()
1287 pipe_name(pipe), state_string(state), state_string(cur_state)); in assert_cursor()
1297 bool cur_state; in assert_pipe() local
1308 cur_state = false; in assert_pipe()
1312 cur_state = !!(val & PIPECONF_ENABLE); in assert_pipe()
1315 I915_STATE_WARN(cur_state != state, in assert_pipe()
1317 pipe_name(pipe), state_string(state), state_string(cur_state)); in assert_pipe()
1325 bool cur_state; in assert_plane() local
1329 cur_state = !!(val & DISPLAY_PLANE_ENABLE); in assert_plane()
1330 I915_STATE_WARN(cur_state != state, in assert_plane()
1332 plane_name(plane), state_string(state), state_string(cur_state)); in assert_plane()