Lines Matching refs:u32
98 void lx_plx_reg_write(struct lx6464es *chip, int port, u32 data);
106 u32 cmd[REG_CRM_NUMBER];
107 u32 stat[REG_CRM_NUMBER];
112 int lx_dsp_get_version(struct lx6464es *chip, u32 *rdsp_version);
113 int lx_dsp_get_clock_frequency(struct lx6464es *chip, u32 *rfreq);
114 int lx_dsp_set_granularity(struct lx6464es *chip, u32 gran);
115 int lx_dsp_read_async_events(struct lx6464es *chip, u32 *data);
120 int lx_pipe_allocate(struct lx6464es *chip, u32 pipe, int is_capture,
122 int lx_pipe_release(struct lx6464es *chip, u32 pipe, int is_capture);
123 int lx_pipe_sample_count(struct lx6464es *chip, u32 pipe, int is_capture,
125 int lx_pipe_state(struct lx6464es *chip, u32 pipe, int is_capture, u16 *rstate);
126 int lx_pipe_stop(struct lx6464es *chip, u32 pipe, int is_capture);
127 int lx_pipe_start(struct lx6464es *chip, u32 pipe, int is_capture);
128 int lx_pipe_pause(struct lx6464es *chip, u32 pipe, int is_capture);
130 int lx_pipe_wait_for_start(struct lx6464es *chip, u32 pipe, int is_capture);
131 int lx_pipe_wait_for_idle(struct lx6464es *chip, u32 pipe, int is_capture);
135 u32 pipe, int is_capture);
136 int lx_stream_state(struct lx6464es *chip, u32 pipe, int is_capture,
138 int lx_stream_sample_position(struct lx6464es *chip, u32 pipe, int is_capture,
141 int lx_stream_set_state(struct lx6464es *chip, u32 pipe,
144 static inline int lx_stream_start(struct lx6464es *chip, u32 pipe, in lx_stream_start()
151 static inline int lx_stream_pause(struct lx6464es *chip, u32 pipe, in lx_stream_pause()
158 static inline int lx_stream_stop(struct lx6464es *chip, u32 pipe, in lx_stream_stop()
166 int lx_buffer_ask(struct lx6464es *chip, u32 pipe, int is_capture,
167 u32 *r_needed, u32 *r_freed, u32 *size_array);
168 int lx_buffer_give(struct lx6464es *chip, u32 pipe, int is_capture,
169 u32 buffer_size, u32 buf_address_lo, u32 buf_address_hi,
170 u32 *r_buffer_index);
171 int lx_buffer_free(struct lx6464es *chip, u32 pipe, int is_capture,
172 u32 *r_buffer_size);
173 int lx_buffer_cancel(struct lx6464es *chip, u32 pipe, int is_capture,
174 u32 buffer_index);
179 u32 *r_levels);
227 static inline void unpack_pointer(dma_addr_t ptr, u32 *r_low, u32 *r_high) in unpack_pointer()
229 *r_low = (u32)(ptr & 0xffffffff); in unpack_pointer()
233 *r_high = (u32)((u64)ptr>>32); in unpack_pointer()