File tree Expand file tree Collapse file tree 4 files changed +904
-0
lines changed Expand file tree Collapse file tree 4 files changed +904
-0
lines changed Original file line number Diff line number Diff line change
1
+ Kernel driver nct7802
2
+ =====================
3
+
4
+ Supported chips:
5
+ * Nuvoton NCT7802Y
6
+ Prefix: 'nct7802'
7
+ Addresses scanned: I2C 0x28..0x2f
8
+ Datasheet: Available from Nuvoton web site
9
+
10
+ Authors:
11
+
12
+
13
+ Description
14
+ -----------
15
+
16
+ This driver implements support for the Nuvoton NCT7802Y hardware monitoring
17
+ chip. NCT7802Y supports 6 temperature sensors, 5 voltage sensors, and 3 fan
18
+ speed sensors.
19
+
20
+ The chip also supports intelligent fan speed control. This functionality is
21
+ not currently supported by the driver.
22
+
23
+ Tested Boards and BIOS Versions
24
+ -------------------------------
25
+
26
+ The driver has been reported to work with the following boards and
27
+ BIOS versions.
28
+
29
+ Board BIOS version
30
+ ---------------------------------------------------------------
31
+ Kontron COMe-bSC2 CHR2E934.001.GGO
32
+ Kontron COMe-bIP2 CCR2E212
Original file line number Diff line number Diff line change @@ -1123,6 +1123,17 @@ config SENSORS_NCT6775
1123
1123
This driver can also be built as a module. If so, the module
1124
1124
will be called nct6775.
1125
1125
1126
+ config SENSORS_NCT7802
1127
+ tristate "Nuvoton NCT7802Y"
1128
+ depends on I2C
1129
+ select REGMAP_I2C
1130
+ help
1131
+ If you say yes here you get support for the Nuvoton NCT7802Y
1132
+ hardware monitoring chip.
1133
+
1134
+ This driver can also be built as a module. If so, the module
1135
+ will be called nct7802.
1136
+
1126
1137
config SENSORS_PCF8591
1127
1138
tristate "Philips PCF8591 ADC/DAC"
1128
1139
depends on I2C
Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ obj-$(CONFIG_SENSORS_MCP3021) += mcp3021.o
118
118
obj-$(CONFIG_SENSORS_MENF21BMC_HWMON) += menf21bmc_hwmon.o
119
119
obj-$(CONFIG_SENSORS_NCT6683) += nct6683.o
120
120
obj-$(CONFIG_SENSORS_NCT6775) += nct6775.o
121
+ obj-$(CONFIG_SENSORS_NCT7802) += nct7802.o
121
122
obj-$(CONFIG_SENSORS_NTC_THERMISTOR) += ntc_thermistor.o
122
123
obj-$(CONFIG_SENSORS_PC87360) += pc87360.o
123
124
obj-$(CONFIG_SENSORS_PC87427) += pc87427.o
You can’t perform that action at this time.
0 commit comments