forked from roadrunner2/macbook12-spi-driver
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathapple-ibridge.c
628 lines (519 loc) · 15.9 KB
/
apple-ibridge.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
// SPDX-License-Identifier: GPL-2.0
/*
* Apple iBridge Driver
*
* Copyright (c) 2018 Ronald Tschalär
*/
/**
* DOC: Overview
*
* 2016 and 2017 MacBookPro models with a Touch Bar (MacBookPro13,[23] and
* MacBookPro14,[23]) have an Apple iBridge chip (also known as T1 chip) which
* exposes the touch bar, built-in webcam (iSight), ambient light sensor, and
* Secure Enclave Processor (SEP) for TouchID. It shows up in the system as a
* USB device with 3 configurations: 'Default iBridge Interfaces', 'Default
* iBridge Interfaces(OS X)', and 'Default iBridge Interfaces(Recovery)'.
*
* In the first (default after boot) configuration, 4 usb interfaces are
* exposed: 2 related to the webcam, and 2 USB HID interfaces representing
* the touch bar and the ambient light sensor. The webcam interfaces are
* already handled by the uvcvideo driver. However, there is a problem with
* the other two interfaces: one of them contains functionality (HID reports)
* used by both the touch bar and the ALS, which is an issue because the kernel
* allows only one driver to be attached to a given device. This driver exists
* to solve this issue.
*
* This driver is implemented as a HID driver that attaches to both HID
* interfaces and in turn creates several virtual child HID devices, one for
* each top-level collection found in each interfaces report descriptor. The
* touch bar and ALS drivers then attach to these virtual HID devices, and this
* driver forwards the operations between the real and virtual devices.
*
* One important aspect of this approach is that resulting (virtual) HID
* devices look much like the HID devices found on the later MacBookPro models
* which have a T2 chip, where there are separate USB interfaces for the touch
* bar and ALS functionality, which means that the touch bar and ALS drivers
* work (mostly) the same on both types of models.
*
* Lastly, this driver also takes care of the power-management for the
* iBridge when suspending and resuming.
*/
#include <linux/platform_device.h>
#include <linux/acpi.h>
#include <linux/device.h>
#include <linux/hid.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/usb.h>
#include <linux/version.h>
#include "hid-ids.h"
#ifdef UPSTREAM
#include "../hid/usbhid/usbhid.h"
#else
#define hid_to_usb_dev(hid_dev) \
to_usb_device((hid_dev)->dev.parent->parent)
#endif
#include "apple-ibridge.h"
#define APPLEIB_BASIC_CONFIG 1
static struct hid_device_id appleib_sub_hid_ids[] = {
{ HID_USB_DEVICE(USB_VENDOR_ID_LINUX_FOUNDATION,
USB_DEVICE_ID_IBRIDGE_TB) },
{ HID_USB_DEVICE(USB_VENDOR_ID_LINUX_FOUNDATION,
USB_DEVICE_ID_IBRIDGE_ALS) },
};
static struct {
unsigned int usage;
struct hid_device_id *dev_id;
} appleib_usage_map[] = {
/* Default iBridge configuration, key inputs and mode settings */
{ 0x00010006, &appleib_sub_hid_ids[0] },
/* OS X iBridge configuration, digitizer inputs */
{ 0x000D0005, &appleib_sub_hid_ids[0] },
/* All iBridge configurations, display/DFR settings */
{ 0xFF120001, &appleib_sub_hid_ids[0] },
/* All iBridge configurations, ALS */
{ 0x00200041, &appleib_sub_hid_ids[1] },
};
struct appleib_device {
acpi_handle asoc_socw;
};
struct appleib_hid_dev_info {
struct hid_device *hdev;
struct hid_device *sub_hdevs[ARRAY_SIZE(appleib_sub_hid_ids)];
bool sub_open[ARRAY_SIZE(appleib_sub_hid_ids)];
};
static int appleib_hid_raw_event(struct hid_device *hdev,
struct hid_report *report, u8 *data, int size)
{
struct appleib_hid_dev_info *hdev_info = hid_get_drvdata(hdev);
int i;
for (i = 0; i < ARRAY_SIZE(hdev_info->sub_hdevs); i++) {
if (READ_ONCE(hdev_info->sub_open[i]))
hid_input_report(hdev_info->sub_hdevs[i], report->type,
data, size, 0);
}
return 0;
}
#if LINUX_VERSION_CODE < KERNEL_VERSION(6,12,0)
static __u8 *appleib_report_fixup(struct hid_device *hdev, __u8 *rdesc,
unsigned int *rsize)
#else
static const __u8 *appleib_report_fixup(struct hid_device *hdev, __u8 *rdesc,
unsigned int *rsize)
#endif
{
/* Some fields have a size of 64 bits, which according to HID 1.11
* Section 8.4 is not valid ("An item field cannot span more than 4
* bytes in a report"). Furthermore, hid_field_extract() complains
* when encountering such a field. So turn them into two 32-bit fields
* instead.
*/
if (*rsize == 634 &&
/* Usage Page 0xff12 (vendor defined) */
rdesc[212] == 0x06 && rdesc[213] == 0x12 && rdesc[214] == 0xff &&
/* Usage 0x51 */
rdesc[416] == 0x09 && rdesc[417] == 0x51 &&
/* report size 64 */
rdesc[432] == 0x75 && rdesc[433] == 64 &&
/* report count 1 */
rdesc[434] == 0x95 && rdesc[435] == 1) {
rdesc[433] = 32;
rdesc[435] = 2;
hid_dbg(hdev, "Fixed up first 64-bit field\n");
}
if (*rsize == 634 &&
/* Usage Page 0xff12 (vendor defined) */
rdesc[212] == 0x06 && rdesc[213] == 0x12 && rdesc[214] == 0xff &&
/* Usage 0x51 */
rdesc[611] == 0x09 && rdesc[612] == 0x51 &&
/* report size 64 */
rdesc[627] == 0x75 && rdesc[628] == 64 &&
/* report count 1 */
rdesc[629] == 0x95 && rdesc[630] == 1) {
rdesc[628] = 32;
rdesc[630] = 2;
hid_dbg(hdev, "Fixed up second 64-bit field\n");
}
return rdesc;
}
#ifdef CONFIG_PM
/**
* appleib_forward_int_op() - Forward a hid-driver callback to all drivers on
* all virtual HID devices attached to the given real HID device.
* @hdev the real hid-device
* @forward a function that calls the callback on the given driver
* @args arguments for the forward function
*
* This is for callbacks that return a status as an int.
*
* Returns: 0 on success, or the first error returned by the @forward function.
*/
static int appleib_forward_int_op(struct hid_device *hdev,
int (*forward)(struct hid_driver *,
struct hid_device *, void *),
void *args)
{
struct appleib_hid_dev_info *hdev_info = hid_get_drvdata(hdev);
struct hid_device *sub_hdev;
int rc;
int i;
for (i = 0; i < ARRAY_SIZE(hdev_info->sub_hdevs); i++) {
sub_hdev = hdev_info->sub_hdevs[i];
if (sub_hdev->driver) {
rc = forward(sub_hdev->driver, sub_hdev, args);
if (rc)
return rc;
}
}
return 0;
}
static int appleib_hid_suspend_fwd(struct hid_driver *drv,
struct hid_device *hdev, void *args)
{
int rc = 0;
if (drv->suspend)
rc = drv->suspend(hdev, *(pm_message_t *)args);
return rc;
}
static int appleib_hid_suspend(struct hid_device *hdev, pm_message_t message)
{
return appleib_forward_int_op(hdev, appleib_hid_suspend_fwd, &message);
}
static int appleib_hid_resume_fwd(struct hid_driver *drv,
struct hid_device *hdev, void *args)
{
int rc = 0;
if (drv->resume)
rc = drv->resume(hdev);
return rc;
}
static int appleib_hid_resume(struct hid_device *hdev)
{
return appleib_forward_int_op(hdev, appleib_hid_resume_fwd, NULL);
}
static int appleib_hid_reset_resume_fwd(struct hid_driver *drv,
struct hid_device *hdev, void *args)
{
int rc = 0;
if (drv->reset_resume)
rc = drv->reset_resume(hdev);
return rc;
}
static int appleib_hid_reset_resume(struct hid_device *hdev)
{
return appleib_forward_int_op(hdev, appleib_hid_reset_resume_fwd, NULL);
}
#endif /* CONFIG_PM */
static int appleib_ll_start(struct hid_device *hdev)
{
return 0;
}
static void appleib_ll_stop(struct hid_device *hdev)
{
}
static int appleib_set_open(struct hid_device *hdev, bool open)
{
struct appleib_hid_dev_info *hdev_info = hdev->driver_data;
int i;
for (i = 0; i < ARRAY_SIZE(hdev_info->sub_hdevs); i++) {
/*
* hid_hw_open(), and hence appleib_ll_open(), is called
* from the driver's probe function, which in turn is called
* while adding the sub-hdev; but at this point we haven't yet
* added the sub-hdev to our list. So if we don't find the
* sub-hdev in our list assume it's in the process of being
* added and set the flag on the first unset sub-hdev.
*/
if (hdev_info->sub_hdevs[i] == hdev ||
!hdev_info->sub_hdevs[i]) {
WRITE_ONCE(hdev_info->sub_open[i], open);
return 0;
}
}
return -ENODEV;
}
static int appleib_ll_open(struct hid_device *hdev)
{
return appleib_set_open(hdev, true);
}
static void appleib_ll_close(struct hid_device *hdev)
{
appleib_set_open(hdev, false);
}
static int appleib_ll_power(struct hid_device *hdev, int level)
{
struct appleib_hid_dev_info *hdev_info = hdev->driver_data;
return hid_hw_power(hdev_info->hdev, level);
}
static int appleib_ll_parse(struct hid_device *hdev)
{
/* we've already called hid_parse_report() */
return 0;
}
static void appleib_ll_request(struct hid_device *hdev,
struct hid_report *report, int reqtype)
{
struct appleib_hid_dev_info *hdev_info = hdev->driver_data;
hid_hw_request(hdev_info->hdev, report, reqtype);
}
static int appleib_ll_wait(struct hid_device *hdev)
{
struct appleib_hid_dev_info *hdev_info = hdev->driver_data;
hid_hw_wait(hdev_info->hdev);
return 0;
}
static int appleib_ll_raw_request(struct hid_device *hdev,
unsigned char reportnum, __u8 *buf,
size_t len, unsigned char rtype, int reqtype)
{
struct appleib_hid_dev_info *hdev_info = hdev->driver_data;
return hid_hw_raw_request(hdev_info->hdev, reportnum, buf, len, rtype,
reqtype);
}
static int appleib_ll_output_report(struct hid_device *hdev, __u8 *buf,
size_t len)
{
struct appleib_hid_dev_info *hdev_info = hdev->driver_data;
return hid_hw_output_report(hdev_info->hdev, buf, len);
}
static struct hid_ll_driver appleib_ll_driver = {
.start = appleib_ll_start,
.stop = appleib_ll_stop,
.open = appleib_ll_open,
.close = appleib_ll_close,
.power = appleib_ll_power,
.parse = appleib_ll_parse,
.request = appleib_ll_request,
.wait = appleib_ll_wait,
.raw_request = appleib_ll_raw_request,
.output_report = appleib_ll_output_report,
};
static struct hid_device_id *appleib_find_dev_id_for_usage(unsigned int usage)
{
int i;
for (i = 0; i < ARRAY_SIZE(appleib_usage_map); i++) {
if (appleib_usage_map[i].usage == usage)
return appleib_usage_map[i].dev_id;
}
return NULL;
}
static struct hid_device *
appleib_add_sub_dev(struct appleib_hid_dev_info *hdev_info,
struct hid_device_id *dev_id)
{
struct hid_device *sub_hdev;
int rc;
sub_hdev = hid_allocate_device();
if (IS_ERR(sub_hdev))
return sub_hdev;
sub_hdev->dev.parent = &hdev_info->hdev->dev;
sub_hdev->bus = dev_id->bus;
sub_hdev->group = dev_id->group;
sub_hdev->vendor = dev_id->vendor;
sub_hdev->product = dev_id->product;
sub_hdev->ll_driver = &appleib_ll_driver;
snprintf(sub_hdev->name, sizeof(sub_hdev->name),
"iBridge Virtual HID %s/%04x:%04x",
dev_name(sub_hdev->dev.parent), sub_hdev->vendor,
sub_hdev->product);
sub_hdev->driver_data = hdev_info;
rc = hid_add_device(sub_hdev);
if (rc) {
hid_destroy_device(sub_hdev);
return ERR_PTR(rc);
}
return sub_hdev;
}
static struct appleib_hid_dev_info *appleib_add_device(struct hid_device *hdev)
{
struct appleib_hid_dev_info *hdev_info;
struct hid_device_id *dev_id;
unsigned int usage;
int i;
hdev_info = devm_kzalloc(&hdev->dev, sizeof(*hdev_info), GFP_KERNEL);
if (!hdev_info)
return ERR_PTR(-ENOMEM);
hdev_info->hdev = hdev;
for (i = 0; i < hdev->maxcollection; i++) {
usage = hdev->collection[i].usage;
dev_id = appleib_find_dev_id_for_usage(usage);
if (!dev_id) {
hid_warn(hdev, "Unknown collection encountered with usage %x\n",
usage);
} else {
hdev_info->sub_hdevs[i] = appleib_add_sub_dev(hdev_info, dev_id);
if (IS_ERR(hdev_info->sub_hdevs[i])) {
while (i-- > 0)
hid_destroy_device(hdev_info->sub_hdevs[i]);
return (void *)hdev_info->sub_hdevs[i];
}
}
}
return hdev_info;
}
static void appleib_remove_device(struct hid_device *hdev)
{
struct appleib_hid_dev_info *hdev_info = hid_get_drvdata(hdev);
int i;
for (i = 0; i < ARRAY_SIZE(hdev_info->sub_hdevs); i++) {
if (hdev_info->sub_hdevs[i])
hid_destroy_device(hdev_info->sub_hdevs[i]);
}
hid_set_drvdata(hdev, NULL);
}
static int appleib_hid_probe(struct hid_device *hdev,
const struct hid_device_id *id)
{
struct appleib_hid_dev_info *hdev_info;
struct usb_device *udev;
int rc;
/* check and set usb config first */
udev = hid_to_usb_dev(hdev);
if (udev->actconfig->desc.bConfigurationValue != APPLEIB_BASIC_CONFIG) {
rc = usb_driver_set_configuration(udev, APPLEIB_BASIC_CONFIG);
return rc ? rc : -ENODEV;
}
rc = hid_parse(hdev);
if (rc) {
hid_err(hdev, "ib: hid parse failed (%d)\n", rc);
goto error;
}
rc = hid_hw_start(hdev, HID_CONNECT_DRIVER);
if (rc) {
hid_err(hdev, "ib: hw start failed (%d)\n", rc);
goto error;
}
hdev_info = appleib_add_device(hdev);
if (IS_ERR(hdev_info)) {
rc = PTR_ERR(hdev_info);
goto stop_hw;
}
hid_set_drvdata(hdev, hdev_info);
rc = hid_hw_open(hdev);
if (rc) {
hid_err(hdev, "ib: failed to open hid: %d\n", rc);
goto remove_dev;
}
return 0;
remove_dev:
appleib_remove_device(hdev);
stop_hw:
hid_hw_stop(hdev);
error:
return rc;
}
static void appleib_hid_remove(struct hid_device *hdev)
{
hid_hw_close(hdev);
appleib_remove_device(hdev);
hid_hw_stop(hdev);
}
static const struct hid_device_id appleib_hid_ids[] = {
{ HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IBRIDGE) },
{ },
};
static struct hid_driver appleib_hid_driver = {
.name = "apple-ibridge-hid",
.id_table = appleib_hid_ids,
.probe = appleib_hid_probe,
.remove = appleib_hid_remove,
.raw_event = appleib_hid_raw_event,
.report_fixup = appleib_report_fixup,
#ifdef CONFIG_PM
.suspend = appleib_hid_suspend,
.resume = appleib_hid_resume,
.reset_resume = appleib_hid_reset_resume,
#endif
};
static struct appleib_device *appleib_alloc_device(struct platform_device *pdev)
{
struct appleib_device *ib_dev;
acpi_status sts;
ib_dev = devm_kzalloc(&pdev->dev, sizeof(*ib_dev), GFP_KERNEL);
if (!ib_dev)
return ERR_PTR(-ENOMEM);
/* get iBridge acpi power control method for suspend/resume */
sts = acpi_get_handle(ACPI_HANDLE(&pdev->dev), "SOCW", &ib_dev->asoc_socw);
if (ACPI_FAILURE(sts)) {
dev_err(&pdev->dev,
"Error getting handle for ASOC.SOCW method: %s\n",
acpi_format_exception(sts));
return ERR_PTR(-ENXIO);
}
/* ensure iBridge is powered on */
sts = acpi_execute_simple_method(ib_dev->asoc_socw, NULL, 1);
if (ACPI_FAILURE(sts))
dev_warn(&pdev->dev, "SOCW(1) failed: %s\n",
acpi_format_exception(sts));
return ib_dev;
}
static int appleib_probe(struct platform_device *pdev)
{
struct appleib_device *ib_dev;
int ret;
ib_dev = appleib_alloc_device(pdev);
if (IS_ERR(ib_dev))
return PTR_ERR(ib_dev);
ret = hid_register_driver(&appleib_hid_driver);
if (ret) {
dev_err(&pdev->dev, "Error registering hid driver: %d\n",
ret);
return ret;
}
platform_set_drvdata(pdev, ib_dev);
return 0;
}
#if LINUX_VERSION_CODE < KERNEL_VERSION(6,11,0)
static int appleib_remove(struct platform_device *pdev)
{
hid_unregister_driver(&appleib_hid_driver);
return 0;
}
#else
static void appleib_remove(struct platform_device *pdev)
{
hid_unregister_driver(&appleib_hid_driver);
}
#endif
static int appleib_suspend(struct platform_device *pdev, pm_message_t message)
{
struct appleib_device *ib_dev;
int rc;
ib_dev = platform_get_drvdata(pdev);
rc = acpi_execute_simple_method(ib_dev->asoc_socw, NULL, 0);
if (ACPI_FAILURE(rc))
dev_warn(&pdev->dev, "SOCW(0) failed: %s\n",
acpi_format_exception(rc));
return 0;
}
static int appleib_resume(struct platform_device *pdev)
{
struct appleib_device *ib_dev;
int rc;
ib_dev = platform_get_drvdata(pdev);
rc = acpi_execute_simple_method(ib_dev->asoc_socw, NULL, 1);
if (ACPI_FAILURE(rc))
dev_warn(&pdev->dev, "SOCW(1) failed: %s\n",
acpi_format_exception(rc));
return 0;
}
static const struct acpi_device_id appleib_acpi_match[] = {
{ "APP7777", 0 },
{ },
};
MODULE_DEVICE_TABLE(acpi, appleib_acpi_match);
static struct platform_driver appleib_driver = {
.probe = appleib_probe,
.remove = appleib_remove,
.suspend = appleib_suspend,
.resume = appleib_resume,
.driver = {
.name = "apple-ibridge",
.acpi_match_table = appleib_acpi_match,
},
};
module_platform_driver(appleib_driver);
MODULE_AUTHOR("Ronald Tschalär");
MODULE_DESCRIPTION("Apple iBridge driver");
MODULE_LICENSE("GPL");