blob: 5aeb128e579e17a39f57ea8bc86ca681d9b91fc1 (
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
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/* This file is part of the coreboot project. */
#ifndef SUPERIO_FINTEK_F71869AD_CHIP_H
#define SUPERIO_FINTEK_F71869AD_CHIP_H
#include <stdint.h>
struct superio_fintek_f71869ad_config {
/* Member variables are defined in devicetree.cb. */
uint8_t multi_function_register_1;
uint8_t multi_function_register_2;
uint8_t multi_function_register_3;
uint8_t multi_function_register_4;
uint8_t multi_function_register_5;
/* HWM configuration registers */
uint8_t hwm_smbus_address;
uint8_t hwm_smbus_control_reg;
uint8_t hwm_fan_type_sel_reg;
uint8_t hwm_fan1_temp_adj_rate_reg;
uint8_t hwm_fan_mode_sel_reg;
uint8_t hwm_fan1_idx_rpm_mode;
uint8_t hwm_fan1_seg1_speed_count;
uint8_t hwm_fan1_seg2_speed_count;
uint8_t hwm_fan1_seg3_speed_count;
uint8_t hwm_fan1_temp_map_sel;
uint8_t hwm_temp_sensor_type;
};
#endif /* SUPERIO_FINTEK_F71869AD_CHIP_H */
|