summaryrefslogtreecommitdiffstats
path: root/src/drivers/i2c/lm63/lm63.c
blob: 5ef70cb9c83451372342b4f8c51b1808df9621ae (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
32
33
34
#include <device/device.h>
#include <device/smbus.h>

static void lm63_init(struct device *dev)
{
	int result;
	if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) {
		if (ops_smbus_bus(get_pbus_smbus(dev))) {
			if (dev->bus->dev->path.type == DEVICE_PATH_I2C)
				smbus_set_link(dev);	// it is under mux
			result = smbus_read_byte(dev, 0x03);
//                      result &= ~0x04;
			result |= 0x04;
			smbus_write_byte(dev, 0x03, result & 0xff);	// config lm63
		}
	}
}

static struct device_operations lm63_operations = {
	.read_resources = DEVICE_NOOP,
	.set_resources = DEVICE_NOOP,
	.enable_resources = DEVICE_NOOP,
	.init = lm63_init,
};

static void enable_dev(struct device *dev)
{
	dev->ops = &lm63_operations;
}

struct chip_operations drivers_i2c_lm63_ops = {
	CHIP_NAME("National Semiconductor LM63")
	.enable_dev = enable_dev,
};