Skip to content

Commit 05c2e0f

Browse files
committed
Merge branch 'bits/090-spi-hid' into asahi-wip
2 parents 56a17dd + 2a97472 commit 05c2e0f

20 files changed

Lines changed: 3872 additions & 78 deletions

drivers/hid/Kconfig

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ config HID_APPLE
129129
tristate "Apple {i,Power,Mac}Books"
130130
depends on LEDS_CLASS
131131
depends on NEW_LEDS
132-
default !EXPERT
132+
default !EXPERT || SPI_HID_APPLE
133133
help
134134
Support for some Apple devices which less or more break
135135
HID specification.
@@ -689,11 +689,13 @@ config LOGIWHEELS_FF
689689

690690
config HID_MAGICMOUSE
691691
tristate "Apple Magic Mouse/Trackpad multi-touch support"
692+
default SPI_HID_APPLE
692693
help
693694
Support for the Apple Magic Mouse/Trackpad multi-touch.
694695

695696
Say Y here if you want support for the multi-touch features of the
696-
Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
697+
Apple Wireless "Magic" Mouse, the Apple Wireless "Magic" Trackpad and
698+
force touch Trackpads in Macbooks starting from 2015.
697699

698700
config HID_MALTRON
699701
tristate "Maltron L90 keyboard"
@@ -1407,4 +1409,8 @@ endif # HID
14071409

14081410
source "drivers/hid/usbhid/Kconfig"
14091411

1412+
source "drivers/hid/spi-hid/Kconfig"
1413+
1414+
source "drivers/hid/dockchannel-hid/Kconfig"
1415+
14101416
endif # HID_SUPPORT

drivers/hid/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,12 @@ obj-$(CONFIG_INTEL_ISH_HID) += intel-ish-hid/
170170

171171
obj-$(CONFIG_AMD_SFH_HID) += amd-sfh-hid/
172172

173+
obj-$(CONFIG_HID_DOCKCHANNEL) += dockchannel-hid/
174+
175+
obj-$(CONFIG_SPI_HID_APPLE_CORE) += spi-hid/
176+
177+
obj-$(CONFIG_HID_DOCKCHANNEL) += dockchannel-hid/
178+
173179
obj-$(CONFIG_SURFACE_HID_CORE) += surface-hid/
174180

175181
obj-$(CONFIG_INTEL_THC_HID) += intel-thc-hid/
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# SPDX-License-Identifier: GPL-2.0-only OR MIT
2+
menu "DockChannel HID support"
3+
depends on APPLE_DOCKCHANNEL
4+
5+
config HID_DOCKCHANNEL
6+
tristate "HID over DockChannel transport layer for Apple Silicon SoCs"
7+
default ARCH_APPLE
8+
depends on APPLE_DOCKCHANNEL && INPUT && OF && HID
9+
help
10+
Say Y here if you use an M2 or later Apple Silicon based laptop.
11+
The keyboard and touchpad are HID based devices connected via the
12+
proprietary DockChannel interface.
13+
14+
endmenu
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# SPDX-License-Identifier: GPL-2.0-only OR MIT
2+
#
3+
# Makefile for DockChannel HID transport drivers
4+
#
5+
6+
obj-$(CONFIG_HID_DOCKCHANNEL) += dockchannel-hid.o

0 commit comments

Comments
 (0)