blob: 4d1241acb9d9a77ca848417b40c5d05632fc4e72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#include <device/device.h>
#include <device/smbus.h>
static void i2cmux2_set_link(struct device *dev, unsigned int link)
{
if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) {
if (ops_smbus_bus(get_pbus_smbus(dev))) {
smbus_send_byte(dev, link); // output value
}
}
}
static struct device_operations i2cmux2_operations = {
.read_resources = DEVICE_NOOP,
.set_resources = DEVICE_NOOP,
.enable_resources = DEVICE_NOOP,
.init = DEVICE_NOOP,
.scan_bus = scan_smbus,
.set_link = i2cmux2_set_link,
};
static void enable_dev(struct device *dev)
{
if (dev->link_list != NULL)
dev->ops = &i2cmux2_operations;
}
struct chip_operations drivers_i2c_i2cmux2_ops = {
CHIP_NAME("i2cmux2")
.enable_dev = enable_dev,
};
|