aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/i2c/nct7802y/nct7802y.c
blob: bb52a3fd0bdf45405249351b76d571a2986f2bbc (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* SPDX-License-Identifier: GPL-2.0-only */

#include <console/console.h>
#include <device/device.h>
#include <types.h>

#include "nct7802y.h"
#include "chip.h"

static void nct7802y_init_sensors(struct device *const dev)
{
	const struct drivers_i2c_nct7802y_config *const config = dev->chip_info;
	unsigned int i;
	u8 value = 0;

	for (i = 0; i < NCT7802Y_RTD_CNT; ++i)
		value |= MODE_SELECTION_RTDx(i, config->sensors.rtd[i]);
	if (config->sensors.local_enable)
		value |= MODE_SELECTION_LTD_EN;
	nct7802y_write(dev, MODE_SELECTION, value);
}

static void nct7802y_init(struct device *const dev)
{
	if (!dev->chip_info) {
		printk(BIOS_WARNING,
		       "NCT7802Y driver selected but not configured.");
		return;
	}

	nct7802y_init_peci(dev);
	nct7802y_init_sensors(dev);
	nct7802y_init_fan(dev);
}

static struct device_operations nct7802y_ops = {
	.read_resources		= noop_read_resources,
	.set_resources		= noop_set_resources,
	.init			= nct7802y_init,
};

static void nct7802y_enable(struct device *const dev)
{
	dev->ops = &nct7802y_ops;
}

struct chip_operations drivers_i2c_nct7802y_ops = {
	CHIP_NAME("NCT7802Y")
	.enable_dev = nct7802y_enable
};