File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Documentation/admin-guide/laptops Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -445,8 +445,10 @@ event code Key Notes
445
445
0x1008 0x07 FN+F8 IBM: toggle screen expand
446
446
Lenovo: configure UltraNav,
447
447
or toggle screen expand.
448
- On newer platforms (2024+)
449
- replaced by 0x131f (see below)
448
+ On 2024 platforms replaced by
449
+ 0x131f (see below) and on newer
450
+ platforms (2025 +) keycode is
451
+ replaced by 0x1401 (see below).
450
452
451
453
0x1009 0x08 FN+F9 -
452
454
@@ -506,9 +508,11 @@ event code Key Notes
506
508
507
509
0x1019 0x18 unknown
508
510
509
- 0x131f ... FN+F8 Platform Mode change.
511
+ 0x131f ... FN+F8 Platform Mode change (2024 systems) .
510
512
Implemented in driver.
511
513
514
+ 0x1401 ... FN+F8 Platform Mode change (2025 + systems).
515
+ Implemented in driver.
512
516
... ... ...
513
517
514
518
0x1020 0x1F unknown
Original file line number Diff line number Diff line change @@ -184,7 +184,8 @@ enum tpacpi_hkey_event_t {
184
184
*/
185
185
TP_HKEY_EV_AMT_TOGGLE = 0x131a , /* Toggle AMT on/off */
186
186
TP_HKEY_EV_DOUBLETAP_TOGGLE = 0x131c , /* Toggle trackpoint doubletap on/off */
187
- TP_HKEY_EV_PROFILE_TOGGLE = 0x131f , /* Toggle platform profile */
187
+ TP_HKEY_EV_PROFILE_TOGGLE = 0x131f , /* Toggle platform profile in 2024 systems */
188
+ TP_HKEY_EV_PROFILE_TOGGLE2 = 0x1401 , /* Toggle platform profile in 2025 + systems */
188
189
189
190
/* Reasons for waking up from S3/S4 */
190
191
TP_HKEY_EV_WKUP_S3_UNDOCK = 0x2304 , /* undock requested, S3 */
@@ -11200,6 +11201,7 @@ static bool tpacpi_driver_event(const unsigned int hkey_event)
11200
11201
tp_features .trackpoint_doubletap = !tp_features .trackpoint_doubletap ;
11201
11202
return true;
11202
11203
case TP_HKEY_EV_PROFILE_TOGGLE :
11204
+ case TP_HKEY_EV_PROFILE_TOGGLE2 :
11203
11205
platform_profile_cycle ();
11204
11206
return true;
11205
11207
}
You can’t perform that action at this time.
0 commit comments