-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathhwmon_pwm.c
124 lines (101 loc) · 2.65 KB
/
hwmon_pwm.c
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// SPDX-License-Identifier: GPL-2.0
#include "pr.h"
#include <linux/device.h>
#include <linux/hwmon.h>
#include <linux/hwmon-sysfs.h>
#include <linux/init.h>
#include <linux/lockdep.h>
#include <linux/mutex.h>
#include <linux/sysfs.h>
#include <linux/types.h>
#include "fan.h"
#include "features.h"
#include "hwmon_pwm.h"
#include "pdev.h"
/* ========================================================================== */
static struct device *qc71_hwmon_pwm_dev;
/* ========================================================================== */
static umode_t qc71_hwmon_pwm_is_visible(const void *data, enum hwmon_sensor_types type,
u32 attr, int channel)
{
if (type != hwmon_pwm && attr != hwmon_pwm_enable)
return -EOPNOTSUPP;
return 0644;
}
static int qc71_hwmon_pwm_read(struct device *device, enum hwmon_sensor_types type,
u32 attr, int channel, long *value)
{
int err;
switch (type) {
case hwmon_pwm:
switch (attr) {
case hwmon_pwm_enable:
err = qc71_fan_get_mode();
if (err < 0)
return err;
*value = err;
break;
case hwmon_pwm_input:
err = qc71_fan_get_pwm(channel);
if (err < 0)
return err;
*value = err;
break;
default:
return -EOPNOTSUPP;
}
break;
default:
return -EOPNOTSUPP;
}
return 0;
}
static int qc71_hwmon_pwm_write(struct device *device, enum hwmon_sensor_types type,
u32 attr, int channel, long value)
{
switch (type) {
case hwmon_pwm:
switch (attr) {
case hwmon_pwm_enable:
return qc71_fan_set_mode(value);
case hwmon_pwm_input:
return qc71_fan_set_pwm(channel, value);
default:
return -EOPNOTSUPP;
}
default:
return -EOPNOTSUPP;
}
return 0;
}
static const struct hwmon_channel_info *qc71_hwmon_pwm_ch_info[] = {
HWMON_CHANNEL_INFO(pwm, HWMON_PWM_ENABLE),
HWMON_CHANNEL_INFO(pwm, HWMON_PWM_INPUT, HWMON_PWM_INPUT),
NULL
};
static const struct hwmon_ops qc71_hwmon_pwm_ops = {
.is_visible = qc71_hwmon_pwm_is_visible,
.read = qc71_hwmon_pwm_read,
.write = qc71_hwmon_pwm_write,
};
static const struct hwmon_chip_info qc71_hwmon_pwm_chip_info = {
.ops = &qc71_hwmon_pwm_ops,
.info = qc71_hwmon_pwm_ch_info,
};
/* ========================================================================== */
int __init qc71_hwmon_pwm_setup(void)
{
if (!qc71_features.fan_boost)
return -ENODEV;
qc71_hwmon_pwm_dev = hwmon_device_register_with_info(
&qc71_platform_dev->dev, KBUILD_MODNAME ".hwmon.pwm", NULL,
&qc71_hwmon_pwm_chip_info, NULL);
if (IS_ERR(qc71_hwmon_pwm_dev))
return PTR_ERR(qc71_hwmon_pwm_dev);
return 0;
}
void qc71_hwmon_pwm_cleanup(void)
{
if (!IS_ERR_OR_NULL(qc71_hwmon_pwm_dev))
hwmon_device_unregister(qc71_hwmon_pwm_dev);
}