Felix Held | 3f3eca9 | 2020-01-23 17:12:32 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Fabian Kunkel | f75c3b4 | 2015-05-25 17:04:28 +0200 | [diff] [blame] | 2 | |
| 3 | #ifndef SUPERIO_FINTEK_F81866D_CHIP_H |
| 4 | #define SUPERIO_FINTEK_F81866D_CHIP_H |
| 5 | |
| 6 | #include <stdint.h> |
| 7 | |
| 8 | struct superio_fintek_f81866d_config { |
| 9 | |
| 10 | /* AMD TSI */ |
| 11 | uint8_t hwm_amd_tsi_addr; |
| 12 | uint8_t hwm_amd_tsi_control; |
| 13 | |
| 14 | /* Fan control */ |
| 15 | uint8_t hwm_fan_select; |
| 16 | uint8_t hwm_fan_mode; |
| 17 | uint8_t hwm_fan3_control; |
| 18 | uint8_t hwm_fan2_temp_map_select; |
| 19 | |
| 20 | uint8_t hwm_fan2_bound1; |
| 21 | uint8_t hwm_fan2_bound2; |
| 22 | uint8_t hwm_fan2_bound3; |
| 23 | uint8_t hwm_fan2_bound4; |
| 24 | uint8_t hwm_fan2_seg1_speed; |
| 25 | uint8_t hwm_fan2_seg2_speed; |
| 26 | uint8_t hwm_fan2_seg3_speed; |
| 27 | uint8_t hwm_fan2_seg4_speed; |
| 28 | uint8_t hwm_fan2_seg5_speed; |
| 29 | |
| 30 | /* Temp sensor type */ |
| 31 | uint8_t hwm_temp_sens_type; |
| 32 | }; |
| 33 | |
| 34 | #endif /* SUPERIO_FINTEK_F81866D_CHIP_H */ |