1 /* Helper functions for Thinkpad LED control;
2 * to be included from codec driver
5 #if IS_ENABLED(CONFIG_THINKPAD_ACPI)
7 #include <linux/acpi.h>
8 #include <linux/thinkpad_acpi.h>
10 static int (*led_set_func
)(int, bool);
11 static void (*old_vmaster_hook
)(void *, int);
13 static bool is_thinkpad(struct hda_codec
*codec
)
15 return (codec
->core
.subsystem_id
>> 16 == 0x17aa) &&
16 (acpi_dev_found("LEN0068") || acpi_dev_found("IBM0068"));
19 static void update_tpacpi_mute_led(void *private_data
, int enabled
)
22 old_vmaster_hook(private_data
, enabled
);
25 led_set_func(TPACPI_LED_MUTE
, !enabled
);
28 static void update_tpacpi_micmute_led(struct hda_codec
*codec
,
29 struct snd_kcontrol
*kcontrol
,
30 struct snd_ctl_elem_value
*ucontrol
)
32 if (!ucontrol
|| !led_set_func
)
34 if (strcmp("Capture Switch", ucontrol
->id
.name
) == 0 && ucontrol
->id
.index
== 0) {
35 /* TODO: How do I verify if it's a mono or stereo here? */
36 bool val
= ucontrol
->value
.integer
.value
[0] || ucontrol
->value
.integer
.value
[1];
37 led_set_func(TPACPI_LED_MICMUTE
, !val
);
41 static void hda_fixup_thinkpad_acpi(struct hda_codec
*codec
,
42 const struct hda_fixup
*fix
, int action
)
44 struct hda_gen_spec
*spec
= codec
->spec
;
45 bool removefunc
= false;
47 if (action
== HDA_FIXUP_ACT_PROBE
) {
48 if (!is_thinkpad(codec
))
51 led_set_func
= symbol_request(tpacpi_led_set
);
54 "Failed to find thinkpad-acpi symbol tpacpi_led_set\n");
59 if (led_set_func(TPACPI_LED_MUTE
, false) >= 0) {
60 old_vmaster_hook
= spec
->vmaster_mute
.hook
;
61 spec
->vmaster_mute
.hook
= update_tpacpi_mute_led
;
64 if (led_set_func(TPACPI_LED_MICMUTE
, false) >= 0) {
65 if (spec
->num_adc_nids
> 1)
67 "Skipping micmute LED control due to several ADCs");
69 spec
->cap_sync_hook
= update_tpacpi_micmute_led
;
75 if (led_set_func
&& (action
== HDA_FIXUP_ACT_FREE
|| removefunc
)) {
76 symbol_put(tpacpi_led_set
);
78 old_vmaster_hook
= NULL
;
82 #else /* CONFIG_THINKPAD_ACPI */
84 static void hda_fixup_thinkpad_acpi(struct hda_codec
*codec
,
85 const struct hda_fixup
*fix
, int action
)
89 #endif /* CONFIG_THINKPAD_ACPI */