-
-
Save je-miralles/b7d8be097db8fe2b8cb07cb9e4a479d3 to your computer and use it in GitHub Desktop.
158NIMS1 draft config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static const char *ALLOWED_FW_14[] __initconst = { | |
"158NIMS1.109", // MSI Bravo 15 C7VF (Board: MS-158N) | |
NULL | |
}; | |
static struct msi_ec_conf CONF14 __initdata = { | |
.allowed_fw = ALLOWED_FW_14, | |
.charge_control = { | |
.address = 0xd7, | |
.offset_start = 0x8a, | |
.offset_end = 0x80, | |
.range_min = 0x8a, | |
.range_max = 0xe4, | |
}, | |
.webcam = { | |
.address = 0x2e, | |
.block_address = 0x2f, | |
.bit = 1, | |
}, | |
.fn_win_swap = { | |
.address = MSI_EC_ADDR_UNSUPP, | |
.bit = 4, | |
}, | |
.cooler_boost = { | |
.address = 0x98, | |
.bit = 7, | |
}, | |
.shift_mode = { | |
.address = 0xd2, | |
.modes = { | |
{ SM_ECO_NAME, 0xc2 }, | |
{ SM_COMFORT_NAME, 0xc1 }, | |
{ SM_SPORT_NAME, 0xc0 }, | |
{ SM_TURBO_NAME, 0xc4 }, | |
MSI_EC_MODE_NULL | |
}, | |
}, | |
.super_battery = { | |
.address = 0xe5, | |
.mask = 0x0f, | |
}, | |
.fan_mode = { | |
.address = 0xd4, | |
.modes = { | |
{ FM_AUTO_NAME, 0x0d }, | |
{ FM_SILENT_NAME, 0x1d }, | |
{ FM_ADVANCED_NAME, 0x8d }, | |
MSI_EC_MODE_NULL | |
}, | |
}, | |
.cpu = { | |
.rt_temp_address = 0x68, | |
.rt_fan_speed_address = 0x71, // ? | |
.rt_fan_speed_base_min = 0x19, | |
.rt_fan_speed_base_max = 0x37, | |
.bs_fan_speed_address = MSI_EC_ADDR_UNKNOWN, // ? | |
.bs_fan_speed_base_min = 0x00, | |
.bs_fan_speed_base_max = 0x0f, | |
}, | |
.gpu = { | |
.rt_temp_address = 0x80, | |
.rt_fan_speed_address = 0x89, | |
}, | |
.leds = { | |
.micmute_led_address = 0x2c, | |
.mute_led_address = 0x2d, | |
.bit = 1, | |
}, | |
.kbd_bl = { | |
.bl_mode_address = 0x2c, | |
.bl_modes = { 0x00, 0x08 }, | |
.max_mode = 1, | |
.bl_state_address = 0xd3, | |
.state_base_value = 0x80, | |
.max_state = 3, | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment