Lines Matching defs:command
123 * @command: Byte interpreted by slave
128 s32 i2c_smbus_read_byte_data(const struct i2c_client *client, u8 command)
134 I2C_SMBUS_READ, command,
143 * @command: Byte interpreted by slave
149 s32 i2c_smbus_write_byte_data(const struct i2c_client *client, u8 command,
155 I2C_SMBUS_WRITE, command,
163 * @command: Byte interpreted by slave
168 s32 i2c_smbus_read_word_data(const struct i2c_client *client, u8 command)
174 I2C_SMBUS_READ, command,
183 * @command: Byte interpreted by slave
189 s32 i2c_smbus_write_word_data(const struct i2c_client *client, u8 command,
195 I2C_SMBUS_WRITE, command,
203 * @command: Byte interpreted by slave
215 s32 i2c_smbus_read_block_data(const struct i2c_client *client, u8 command,
222 I2C_SMBUS_READ, command,
235 * @command: Byte interpreted by slave
242 s32 i2c_smbus_write_block_data(const struct i2c_client *client, u8 command,
252 I2C_SMBUS_WRITE, command,
258 s32 i2c_smbus_read_i2c_block_data(const struct i2c_client *client, u8 command,
268 I2C_SMBUS_READ, command,
278 s32 i2c_smbus_write_i2c_block_data(const struct i2c_client *client, u8 command,
288 I2C_SMBUS_WRITE, command,
310 * Simulate a SMBus command using the I2C protocol.
315 char read_write, u8 command, int size,
344 msgbuf0[0] = command;
400 i2c_smbus_try_get_dmabuf(&msg[0], command);
416 i2c_smbus_try_get_dmabuf(&msg[0], command);
439 i2c_smbus_try_get_dmabuf(&msg[0], command);
525 * @command: Byte interpreted by slave, for protocols which use such bytes
534 u8 command, int protocol, union i2c_smbus_data *data)
543 command, protocol, data);
552 u8 command, int protocol, union i2c_smbus_data *data)
556 u8 command, int size, union i2c_smbus_data *data);
569 command, protocol, data);
571 command, protocol);
588 command, protocol, data);
605 command, protocol, data);
610 command, protocol, data, res);
612 command, protocol, res);
621 * @command: Byte interpreted by slave
638 u8 command, u8 length, u8 *values)
647 return i2c_smbus_read_i2c_block_data(client, command, length, values);
654 status = i2c_smbus_read_word_data(client, command + i);
664 status = i2c_smbus_read_byte_data(client, command + i);