2004-10-14 23:10:23 +02:00
|
|
|
#ifndef DEVICE_SMBUS_H
|
|
|
|
#define DEVICE_SMBUS_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <device/device.h>
|
2017-08-02 16:57:17 +02:00
|
|
|
#include <device/i2c_bus.h>
|
2004-10-14 23:10:23 +02:00
|
|
|
#include <device/smbus_def.h>
|
|
|
|
|
2010-10-18 02:00:57 +02:00
|
|
|
/* Common SMBus bus operations */
|
2004-10-14 23:10:23 +02:00
|
|
|
struct smbus_bus_operations {
|
2018-11-29 08:25:49 +01:00
|
|
|
int (*recv_byte)(struct device *dev);
|
|
|
|
int (*send_byte)(struct device *dev, u8 value);
|
|
|
|
int (*read_byte)(struct device *dev, u8 addr);
|
|
|
|
int (*write_byte)(struct device *dev, u8 addr, u8 value);
|
|
|
|
int (*block_read)(struct device *dev, u8 cmd, u8 bytes, u8 *buffer);
|
|
|
|
int (*block_write)(struct device *dev, u8 cmd, u8 bytes,
|
|
|
|
const u8 *buffer);
|
2004-10-14 23:10:23 +02:00
|
|
|
};
|
|
|
|
|
2004-12-03 04:39:04 +01:00
|
|
|
static inline const struct smbus_bus_operations *ops_smbus_bus(struct bus *bus)
|
2004-10-14 23:10:23 +02:00
|
|
|
{
|
2010-10-18 02:00:57 +02:00
|
|
|
const struct smbus_bus_operations *bops;
|
|
|
|
|
|
|
|
bops = 0;
|
|
|
|
if (bus && bus->dev && bus->dev->ops)
|
|
|
|
bops = bus->dev->ops->ops_smbus_bus;
|
|
|
|
|
|
|
|
return bops;
|
2004-10-14 23:10:23 +02:00
|
|
|
}
|
2010-10-18 02:00:57 +02:00
|
|
|
|
2018-11-29 08:25:49 +01:00
|
|
|
struct bus *get_pbus_smbus(struct device *dev);
|
|
|
|
int smbus_set_link(struct device *dev);
|
2004-12-03 04:39:04 +01:00
|
|
|
|
2017-08-02 16:57:17 +02:00
|
|
|
static inline int smbus_recv_byte(struct device *const dev)
|
|
|
|
{
|
2018-01-23 05:24:35 +01:00
|
|
|
return i2c_dev_readb(dev);
|
2017-08-02 16:57:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int smbus_send_byte(struct device *const dev, u8 byte)
|
|
|
|
{
|
2018-01-23 05:24:35 +01:00
|
|
|
return i2c_dev_writeb(dev, byte);
|
2017-08-02 16:57:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int smbus_read_byte(struct device *const dev, u8 addr)
|
|
|
|
{
|
2018-01-23 05:24:35 +01:00
|
|
|
return i2c_dev_readb_at(dev, addr);
|
2017-08-02 16:57:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int smbus_write_byte(struct device *const dev, u8 addr, u8 val)
|
|
|
|
{
|
2018-01-23 05:24:35 +01:00
|
|
|
return i2c_dev_writeb_at(dev, addr, val);
|
2017-08-02 16:57:17 +02:00
|
|
|
}
|
|
|
|
|
2018-12-05 11:03:36 +01:00
|
|
|
int smbus_block_read(struct device *dev, u8 cmd, u8 bytes, u8 *buffer);
|
|
|
|
int smbus_block_write(struct device *dev, u8 cmd, u8 bytes, const u8 *buffer);
|
2004-10-14 23:10:23 +02:00
|
|
|
|
2015-10-17 11:36:47 +02:00
|
|
|
#if IS_ENABLED(CONFIG_SMBUS_HAS_AUX_CHANNELS)
|
|
|
|
void smbus_switch_to_channel(uint8_t channel_number);
|
|
|
|
uint8_t smbus_get_current_channel(void);
|
|
|
|
#endif
|
|
|
|
|
2004-10-14 23:10:23 +02:00
|
|
|
#endif /* DEVICE_SMBUS_H */
|