Lines Matching +full:current +full:- +full:speed
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
193 * struct dw_i2c_dev - private i2c-designware data
204 * @get_clk_rate_khz: callback to retrieve IP specific bus speed
208 * @msg_write_idx: the element index of the current tx message in the msgs array
209 * @tx_buf_len: the length of the current tx buffer
210 * @tx_buf: the current tx buffer
211 * @msg_read_idx: the element index of the current rx message in the msgs array
212 * @rx_buf_len: the length of the current rx buffer
213 * @rx_buf: the current rx buffer
214 * @msg_err: error status of the current transfer
225 * @rx_outstanding: current master-rx elements in tx fifo
228 * @ss_hcnt: standard speed HCNT value
229 * @ss_lcnt: standard speed LCNT value
230 * @fs_hcnt: fast speed HCNT value
231 * @fs_lcnt: fast speed LCNT value
234 * @hs_hcnt: high speed HCNT value
235 * @hs_lcnt: high speed LCNT value
239 * -1 if there is no semaphore.
244 * @mode: operation mode - DW_IC_MASTER or DW_IC_SLAVE
346 dev->status |= STATUS_ACTIVE; in __i2c_dw_enable()
347 regmap_write(dev->map, DW_IC_ENABLE, 1); in __i2c_dw_enable()
352 regmap_write(dev->map, DW_IC_ENABLE, 0); in __i2c_dw_disable_nowait()
353 dev->status &= ~STATUS_ACTIVE; in __i2c_dw_disable_nowait()
366 static inline int i2c_dw_probe_slave(struct dw_i2c_dev *dev) { return -EINVAL; } in i2c_dw_probe_slave()
371 switch (dev->mode) { in i2c_dw_probe()
377 dev_err(dev->dev, "Wrong operation mode: %d\n", dev->mode); in i2c_dw_probe()
378 return -EINVAL; in i2c_dw_probe()
384 if (i2c_detect_slave_mode(dev->dev)) in i2c_dw_configure()
404 static inline int i2c_dw_acpi_configure(struct device *device) { return -ENODEV; } in i2c_dw_acpi_configure()