drivers/mipi: Add support for KD_KD110N11_51IE panel
[coreboot2.git] / src / ec / clevo / it5570e / chip.h
bloba9ff3b1644cbda4ac788d1216e7d73316210c91f
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef EC_CLEVO_IT5570E_CHIP_H
4 #define EC_CLEVO_IT5570E_CHIP_H
6 #define IT5570E_FAN_CURVE_LEN 4 /* Number of fan curve points */
7 #define IT5570E_MAX_FAN_CNT 4 /* Maximum number of configurable fans */
9 enum ec_clevo_it5570e_fan_mode {
10 FAN_MODE_AUTO = 0,
11 FAN_MODE_CUSTOM,
14 struct ec_clevo_it5570e_fan_curve {
15 uint8_t temperature[IT5570E_FAN_CURVE_LEN];
16 uint8_t speed[IT5570E_FAN_CURVE_LEN];
19 struct ec_clevo_it5570e_config {
20 uint8_t pl2_on_battery;
21 enum ec_clevo_it5570e_fan_mode fan_mode;
22 struct ec_clevo_it5570e_fan_curve fan_curves[IT5570E_MAX_FAN_CNT];
25 typedef struct ec_clevo_it5570e_config ec_config_t;
27 #endif /* EC_CLEVO_IT5570E_CHIP_H */