Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3434f37

Browse files
committed
hwmon: Driver for Nuvoton NCT7802Y
NCT7802Y is an I2C based hardware monitoring chip from Nuvoton. Signed-off-by: Guenter Roeck <[email protected]>
1 parent 3bdec67 commit 3434f37

File tree

4 files changed

+904
-0
lines changed

4 files changed

+904
-0
lines changed

Documentation/hwmon/nct7802

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+
Guenter Roeck <[email protected]>
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

drivers/hwmon/Kconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1123,6 +1123,17 @@ config SENSORS_NCT6775
11231123
This driver can also be built as a module. If so, the module
11241124
will be called nct6775.
11251125

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+
11261137
config SENSORS_PCF8591
11271138
tristate "Philips PCF8591 ADC/DAC"
11281139
depends on I2C

drivers/hwmon/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ obj-$(CONFIG_SENSORS_MCP3021) += mcp3021.o
118118
obj-$(CONFIG_SENSORS_MENF21BMC_HWMON) += menf21bmc_hwmon.o
119119
obj-$(CONFIG_SENSORS_NCT6683) += nct6683.o
120120
obj-$(CONFIG_SENSORS_NCT6775) += nct6775.o
121+
obj-$(CONFIG_SENSORS_NCT7802) += nct7802.o
121122
obj-$(CONFIG_SENSORS_NTC_THERMISTOR) += ntc_thermistor.o
122123
obj-$(CONFIG_SENSORS_PC87360) += pc87360.o
123124
obj-$(CONFIG_SENSORS_PC87427) += pc87427.o

0 commit comments

Comments
 (0)