Lines Matching refs:uint32_t

35 	uint32_t fifo_min, hwversion;  in vmw_fifo_have_3d()
42 uint32_t result; in vmw_fifo_have_3d()
84 uint32_t caps; in vmw_fifo_have_pitchlock()
99 uint32_t max; in vmw_fifo_init()
100 uint32_t min; in vmw_fifo_init()
101 uint32_t dummy; in vmw_fifo_init()
161 void vmw_fifo_ping_host(struct vmw_private *dev_priv, uint32_t reason) in vmw_fifo_ping_host()
209 static bool vmw_fifo_is_full(struct vmw_private *dev_priv, uint32_t bytes) in vmw_fifo_is_full()
212 uint32_t max = ioread32(fifo_mem + SVGA_FIFO_MAX); in vmw_fifo_is_full()
213 uint32_t next_cmd = ioread32(fifo_mem + SVGA_FIFO_NEXT_CMD); in vmw_fifo_is_full()
214 uint32_t min = ioread32(fifo_mem + SVGA_FIFO_MIN); in vmw_fifo_is_full()
215 uint32_t stop = ioread32(fifo_mem + SVGA_FIFO_STOP); in vmw_fifo_is_full()
221 uint32_t bytes, bool interruptible, in vmw_fifo_wait_noirq()
254 uint32_t bytes, bool interruptible, in vmw_fifo_wait()
315 void *vmw_fifo_reserve(struct vmw_private *dev_priv, uint32_t bytes) in vmw_fifo_reserve()
319 uint32_t max; in vmw_fifo_reserve()
320 uint32_t min; in vmw_fifo_reserve()
321 uint32_t next_cmd; in vmw_fifo_reserve()
322 uint32_t reserveable = fifo_state->capabilities & SVGA_FIFO_CAP_RESERVE; in vmw_fifo_reserve()
339 uint32_t stop = ioread32(fifo_mem + SVGA_FIFO_STOP); in vmw_fifo_reserve()
369 if (reserveable || bytes <= sizeof(uint32_t)) { in vmw_fifo_reserve()
399 uint32_t next_cmd, in vmw_fifo_res_copy()
400 uint32_t max, uint32_t min, uint32_t bytes) in vmw_fifo_res_copy()
402 uint32_t chunk_size = max - next_cmd; in vmw_fifo_res_copy()
403 uint32_t rest; in vmw_fifo_res_copy()
404 uint32_t *buffer = (fifo_state->dynamic_buffer != NULL) ? in vmw_fifo_res_copy()
421 uint32_t next_cmd, in vmw_fifo_slow_copy()
422 uint32_t max, uint32_t min, uint32_t bytes) in vmw_fifo_slow_copy()
424 uint32_t *buffer = (fifo_state->dynamic_buffer != NULL) ? in vmw_fifo_slow_copy()
429 next_cmd += sizeof(uint32_t); in vmw_fifo_slow_copy()
435 bytes -= sizeof(uint32_t); in vmw_fifo_slow_copy()
439 void vmw_fifo_commit(struct vmw_private *dev_priv, uint32_t bytes) in vmw_fifo_commit()
443 uint32_t next_cmd = ioread32(fifo_mem + SVGA_FIFO_NEXT_CMD); in vmw_fifo_commit()
444 uint32_t max = ioread32(fifo_mem + SVGA_FIFO_MAX); in vmw_fifo_commit()
445 uint32_t min = ioread32(fifo_mem + SVGA_FIFO_MIN); in vmw_fifo_commit()
485 int vmw_fifo_send_fence(struct vmw_private *dev_priv, uint32_t *seqno) in vmw_fifo_send_fence()
491 uint32_t bytes = sizeof(__le32) + sizeof(*cmd_fence); in vmw_fifo_send_fence()
540 uint32_t cid) in vmw_fifo_emit_dummy_legacy_query()
589 uint32_t cid) in vmw_fifo_emit_dummy_gb_query()
643 uint32_t cid) in vmw_fifo_emit_dummy_query()