Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
Linux
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jan.koester
Linux
Commits
cf620bda
Commit
cf620bda
authored
2 years ago
by
Jiri Kosina
Browse files
Options
Downloads
Plain Diff
Merge branch 'for-5.19/apple' into for-linus
- Support for Keychron keyboards (Bryan Cain)
parents
8959f007
fa33382c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
drivers/hid/hid-apple.c
+18
-4
18 additions, 4 deletions
drivers/hid/hid-apple.c
with
18 additions
and
4 deletions
drivers/hid/hid-apple.c
+
18
−
4
View file @
cf620bda
...
...
@@ -21,6 +21,7 @@
#include
<linux/module.h>
#include
<linux/slab.h>
#include
<linux/timer.h>
#include
<linux/string.h>
#include
"hid-ids.h"
...
...
@@ -35,16 +36,17 @@
#define APPLE_NUMLOCK_EMULATION BIT(8)
#define APPLE_RDESC_BATTERY BIT(9)
#define APPLE_BACKLIGHT_CTL BIT(10)
#define APPLE_IS_KEYCHRON BIT(11)
#define APPLE_FLAG_FKEY 0x01
#define HID_COUNTRY_INTERNATIONAL_ISO 13
#define APPLE_BATTERY_TIMEOUT_MS 60000
static
unsigned
int
fnmode
=
1
;
static
unsigned
int
fnmode
=
3
;
module_param
(
fnmode
,
uint
,
0644
);
MODULE_PARM_DESC
(
fnmode
,
"Mode of fn key on Apple keyboards (0 = disabled, "
"
[1]
= fkeyslast, 2 = fkeysfirst)"
);
"
1
= fkeyslast, 2 = fkeysfirst
, [3] = auto
)"
);
static
int
iso_layout
=
-
1
;
module_param
(
iso_layout
,
int
,
0644
);
...
...
@@ -349,6 +351,7 @@ static int hidinput_apple_event(struct hid_device *hid, struct input_dev *input,
const
struct
apple_key_translation
*
trans
,
*
table
;
bool
do_translate
;
u16
code
=
0
;
unsigned
int
real_fnmode
;
u16
fn_keycode
=
(
swap_fn_leftctrl
)
?
(
KEY_LEFTCTRL
)
:
(
KEY_FN
);
...
...
@@ -359,7 +362,13 @@ static int hidinput_apple_event(struct hid_device *hid, struct input_dev *input,
return
1
;
}
if
(
fnmode
)
{
if
(
fnmode
==
3
)
{
real_fnmode
=
(
asc
->
quirks
&
APPLE_IS_KEYCHRON
)
?
2
:
1
;
}
else
{
real_fnmode
=
fnmode
;
}
if
(
real_fnmode
)
{
if
(
hid
->
product
==
USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI
||
hid
->
product
==
USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO
||
hid
->
product
==
USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS
||
...
...
@@ -406,7 +415,7 @@ static int hidinput_apple_event(struct hid_device *hid, struct input_dev *input,
if
(
!
code
)
{
if
(
trans
->
flags
&
APPLE_FLAG_FKEY
)
{
switch
(
fnmode
)
{
switch
(
real_
fnmode
)
{
case
1
:
do_translate
=
!
asc
->
fn_on
;
break
;
...
...
@@ -660,6 +669,11 @@ static int apple_input_configured(struct hid_device *hdev,
asc
->
quirks
&=
~
APPLE_HAS_FN
;
}
if
(
strncmp
(
hdev
->
name
,
"Keychron"
,
8
)
==
0
)
{
hid_info
(
hdev
,
"Keychron keyboard detected; function keys will default to fnmode=2 behavior
\n
"
);
asc
->
quirks
|=
APPLE_IS_KEYCHRON
;
}
return
0
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment