Lines Matching defs:data
87 * fifo_icap_fifo_write - Write data to the write FIFO.
89 * @data: the 32-bit value to be written to the FIFO.
94 u32 data)
96 dev_dbg(drvdata->dev, "fifo_write: %x\n", data);
97 out_be32(drvdata->base_address + XHI_WF_OFFSET, data);
101 * fifo_icap_fifo_read - Read data from the Read FIFO.
108 u32 data = in_be32(drvdata->base_address + XHI_RF_OFFSET);
109 dev_dbg(drvdata->dev, "fifo_read: %x\n", data);
110 return data;
116 * @data: the size of the following read transaction, in words.
119 u32 data)
121 out_be32(drvdata->base_address + XHI_SZ_OFFSET, data);
190 * fifo_icap_read_fifo_occupancy - Query the read fifo available data.
202 * fifo_icap_set_configuration - Send configuration data to the ICAP.
204 * @frame_buffer: a pointer to the data to be written to the
209 * This function writes the given user data to the Write FIFO in
210 * polled mode and starts the transfer of the data to
236 * Wait until we have some data in the fifo.
247 * Write data into the Write FIFO.
281 * fifo_icap_get_configuration - Read configuration data from the device.
283 * @data: Address of the data representing the partial bitstream
295 u32 *data = frame_buffer;
322 /* Wait until we have some data in the fifo. */
336 /* Read the data from the Read FIFO. */
338 *data++ = fifo_icap_fifo_read(drvdata);