Linux Audio
Check our new training course
Embedded Linux Audio
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * msi-ec: MSI laptops' embedded controller driver. * * Copyright (C) 2023 Jose Angel Pastrana <japp0005@red.ujaen.es> * Copyright (C) 2023 Aakash Singh <mail@singhaakash.dev> * Copyright (C) 2023 Nikita Kravets <teackot@gmail.com> */ #ifndef _MSI_EC_H_ #define _MSI_EC_H_ #include <linux/types.h> #define MSI_EC_DRIVER_NAME "msi-ec" #define MSI_EC_ADDR_UNKNOWN 0xff01 // unknown address #define MSI_EC_ADDR_UNSUPP 0xff01 // unsupported parameter // Firmware info addresses are universal #define MSI_EC_FW_VERSION_ADDRESS 0xa0 #define MSI_EC_FW_DATE_ADDRESS 0xac #define MSI_EC_FW_TIME_ADDRESS 0xb4 #define MSI_EC_FW_VERSION_LENGTH 12 #define MSI_EC_FW_DATE_LENGTH 8 #define MSI_EC_FW_TIME_LENGTH 8 struct msi_ec_charge_control_conf { int address; int offset_start; int offset_end; int range_min; int range_max; }; struct msi_ec_webcam_conf { int address; int block_address; int bit; }; struct msi_ec_fn_win_swap_conf { int address; int bit; }; struct msi_ec_cooler_boost_conf { int address; int bit; }; #define MSI_EC_MODE_NULL { NULL, 0 } struct msi_ec_mode { const char *name; int value; }; struct msi_ec_shift_mode_conf { int address; struct msi_ec_mode modes[5]; // fixed size for easier hard coding }; struct msi_ec_super_battery_conf { int address; int mask; }; struct msi_ec_fan_mode_conf { int address; struct msi_ec_mode modes[5]; // fixed size for easier hard coding }; struct msi_ec_cpu_conf { int rt_temp_address; int rt_fan_speed_address; // realtime int rt_fan_speed_base_min; int rt_fan_speed_base_max; int bs_fan_speed_address; // basic int bs_fan_speed_base_min; int bs_fan_speed_base_max; }; struct msi_ec_gpu_conf { int rt_temp_address; int rt_fan_speed_address; // realtime }; struct msi_ec_led_conf { int micmute_led_address; int mute_led_address; int bit; }; #define MSI_EC_KBD_BL_STATE_MASK 0x3 struct msi_ec_kbd_bl_conf { int bl_mode_address; int bl_modes[2]; int max_mode; int bl_state_address; int state_base_value; int max_state; }; struct msi_ec_conf { const char * const *allowed_fw; struct msi_ec_charge_control_conf charge_control; struct msi_ec_webcam_conf webcam; struct msi_ec_fn_win_swap_conf fn_win_swap; struct msi_ec_cooler_boost_conf cooler_boost; struct msi_ec_shift_mode_conf shift_mode; struct msi_ec_super_battery_conf super_battery; struct msi_ec_fan_mode_conf fan_mode; struct msi_ec_cpu_conf cpu; struct msi_ec_gpu_conf gpu; struct msi_ec_led_conf leds; struct msi_ec_kbd_bl_conf kbd_bl; }; #endif // _MSI_EC_H_