Lines Matching defs:command

699 	u32 command;
703 command = MLXBF_I2C_MASTER_ENABLE_READ;
704 command |= rol32(len, MLXBF_I2C_MASTER_READ_SHIFT);
706 command = MLXBF_I2C_MASTER_ENABLE_WRITE;
707 command |= rol32(len, MLXBF_I2C_MASTER_WRITE_SHIFT);
709 command |= rol32(slave, MLXBF_I2C_MASTER_SLV_ADDR_SHIFT);
710 command |= rol32(block_en, MLXBF_I2C_MASTER_PARSE_EXP_SHIFT);
711 command |= rol32(pec_en, MLXBF_I2C_MASTER_SEND_PEC_SHIFT);
723 writel(command, priv->mst->io + MLXBF_I2C_SMBUS_MASTER_GW);
781 * single command. If the MLXBF_I2C_F_SMBUS_OPERATION is set
782 * then write command byte and set the optional SMBus specific
894 u8 *command, u8 *data, bool read, bool pec_check)
902 request->operation[0].buffer = command;
913 u8 *command, u8 *data, bool read, bool pec_check)
921 request->operation[0].buffer = command;
932 u8 *command, u8 *data, u8 *data_len, bool read,
941 request->operation[0].buffer = command;
967 u8 *command, u8 *data, u8 *data_len,
977 request->operation[0].buffer = command;
995 u8 *command, u8 *data, bool pec_check)
1004 request->operation[0].buffer = command;
1017 u8 *command, u8 *data, u8 *data_len,
1029 request->operation[0].buffer = command;
2071 u8 command, int size,
2092 read ? &data->byte : &command, read,
2099 mlxbf_i2c_smbus_data_byte_func(&request, &command, &data->byte,
2102 read ? "read" : "write", command, addr);
2106 mlxbf_i2c_smbus_data_word_func(&request, &command,
2109 read ? "read" : "write", command, addr);
2114 mlxbf_i2c_smbus_i2c_block_func(&request, &command, data->block,
2117 read ? "read" : "write", byte_cnt, command, addr);
2122 mlxbf_i2c_smbus_block_func(&request, &command, data->block,
2125 read ? "read" : "write", byte_cnt, command, addr);
2129 mlxbf_i2c_smbus_process_call_func(&request, &command,
2132 command, addr);
2137 mlxbf_i2c_smbus_blk_process_call_func(&request, &command,
2145 dev_dbg(&adap->dev, "Unsupported I2C/SMBus command %d\n",