1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright (c) 2007 by Silicon Motion, Inc. (SMI)
5 * swi2c.h --- SM750/SM718 DDK
6 * This file contains the definitions for i2c using software
14 /* Default i2c CLK and Data GPIO. These are the default i2c pins */
15 #define DEFAULT_I2C_SCL 30
16 #define DEFAULT_I2C_SDA 31
19 * This function initializes the i2c attributes and bus
22 * i2cClkGPIO - The GPIO pin to be used as i2c SCL
23 * i2cDataGPIO - The GPIO pin to be used as i2c SDA
26 * -1 - Fail to initialize the i2c
29 long sm750_sw_i2c_init(unsigned char clk_gpio
, unsigned char data_gpio
);
32 * This function reads the slave device's register
35 * addr - i2c Slave device address which register
37 * reg - Slave device's register to be read
42 unsigned char sm750_sw_i2c_read_reg(unsigned char addr
, unsigned char reg
);
45 * This function writes a value to the slave device's register
48 * addr - i2c Slave device address which register
50 * reg - Slave device's register to be written
51 * data - Data to be written to the register
57 long sm750_sw_i2c_write_reg(unsigned char addr
,
61 #endif /* _SWI2C_H_ */