Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
cf620bda
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
cf620bda
编写于
5月 24, 2022
作者:
J
Jiri Kosina
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-5.19/apple' into for-linus
- Support for Keychron keyboards (Bryan Cain)
上级
8959f007
fa33382c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
18 addition
and
4 deletion
+18
-4
drivers/hid/hid-apple.c
drivers/hid/hid-apple.c
+18
-4
未找到文件。
drivers/hid/hid-apple.c
浏览文件 @
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
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录