Lines Matching defs:temp
204 u32 temp;
223 temp = REG_READ(map->dpll);
224 if ((temp & DPLL_VCO_ENABLE) == 0) {
225 REG_WRITE(map->dpll, temp);
229 REG_WRITE(map->dpll, temp | DPLL_VCO_ENABLE);
233 REG_WRITE(map->dpll, temp | DPLL_VCO_ENABLE);
240 temp = REG_READ(map->cntr);
241 if ((temp & DISPLAY_PLANE_ENABLE) == 0) {
243 temp | DISPLAY_PLANE_ENABLE);
251 temp = REG_READ(map->conf);
252 if ((temp & PIPEACONF_ENABLE) == 0)
253 REG_WRITE(map->conf, temp | PIPEACONF_ENABLE);
255 temp = REG_READ(map->status);
256 temp &= ~(0xFFFF);
257 temp |= PIPE_FIFO_UNDERRUN;
258 REG_WRITE(map->status, temp);
289 temp = REG_READ(map->cntr);
290 if ((temp & DISPLAY_PLANE_ENABLE) != 0) {
292 temp & ~DISPLAY_PLANE_ENABLE);
299 temp = REG_READ(map->conf);
300 if ((temp & PIPEACONF_ENABLE) != 0) {
301 REG_WRITE(map->conf, temp & ~PIPEACONF_ENABLE);
311 temp = REG_READ(map->dpll);
312 if ((temp & DPLL_VCO_ENABLE) != 0) {
313 REG_WRITE(map->dpll, temp & ~DPLL_VCO_ENABLE);
339 uint32_t temp;
349 temp = CURSOR_MODE_DISABLE;
351 REG_WRITE(control, temp);
417 temp = 0;
419 temp |= (pipe << 28);
420 temp |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
423 REG_WRITE(control, temp);
449 uint32_t temp = 0;
453 temp |= (CURSOR_POS_SIGN << CURSOR_X_SHIFT);
457 temp |= (CURSOR_POS_SIGN << CURSOR_Y_SHIFT);
461 temp |= ((x & CURSOR_POS_MASK) << CURSOR_X_SHIFT);
462 temp |= ((y & CURSOR_POS_MASK) << CURSOR_Y_SHIFT);
467 REG_WRITE((pipe == 0) ? CURAPOS : CURBPOS, temp);