forked from roadrunner2/macbook12-spi-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apple-ib-als.c
672 lines (552 loc) · 17.2 KB
/
apple-ib-als.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
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
// SPDX-License-Identifier: GPL-2.0
/*
* Apple Ambient Light Sensor Driver
*
* Copyright (c) 2017-2018 Ronald Tschalär
*/
/*
* MacBookPro models with an iBridge chip (13,[23] and 14,[23]) have an
* ambient light sensor that is exposed via one of the USB interfaces on
* the iBridge as a standard HID light sensor. However, we cannot use the
* existing hid-sensor-als driver, for two reasons:
*
* 1. The hid-sensor-als driver is part of the hid-sensor-hub which in turn
* is a hid driver, but you can't have more than one hid driver per hid
* device, which is a problem because the touch bar also needs to
* register as a driver for this hid device.
*
* 2. While the hid-sensors-als driver stores sensor readings received via
* interrupt in an iio buffer, reads on the sysfs
* .../iio:deviceX/in_illuminance_YYY attribute result in a get of the
* feature report; however, in the case of this sensor here the
* illuminance field of that report is always 0. Instead, the input
* report needs to be requested.
*/
#define dev_fmt(fmt) "als: " fmt
#include <linux/device.h>
#include <linux/hid.h>
#include <linux/hid-sensor-ids.h>
#include <linux/iio/buffer.h>
#include <linux/iio/iio.h>
#include <linux/iio/trigger_consumer.h>
#include <linux/iio/triggered_buffer.h>
#include <linux/iio/trigger.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#include "apple-ibridge.h"
#define APPLEALS_DYN_SENS 0 /* our dynamic sensitivity */
#define APPLEALS_DEF_CHANGE_SENS APPLEALS_DYN_SENS
struct appleals_device {
struct appleib_device *ib_dev;
struct device *log_dev;
struct hid_device *hid_dev;
struct hid_report *cfg_report;
struct hid_field *illum_field;
struct iio_dev *iio_dev;
struct iio_trigger *iio_trig;
int cur_sensitivity;
int cur_hysteresis;
bool events_enabled;
};
static struct hid_driver appleals_hid_driver;
/*
* This is a primitive way to get a relative sensitivity, one where we get
* notified when the value changes by a certain percentage rather than some
* absolute value. MacOS somehow manages to configure the sensor to work this
* way (with a 15% relative sensitivity), but I haven't been able to figure
* out how so far. So until we do, this provides a less-than-perfect
* simulation.
*
* When the brightness value is within one of the ranges, the sensitivity is
* set to that range's sensitivity. But in order to reduce flapping when the
* brightness is right on the border between two ranges, the ranges overlap
* somewhat (by at least one sensitivity), and sensitivity is only changed if
* the value leaves the current sensitivity's range.
*
* The values chosen for the map are somewhat arbitrary: a compromise of not
* too many ranges (and hence changing the sensitivity) but not too small or
* large of a percentage of the min and max values in the range (currently
* from 7.5% to 30%, i.e. within a factor of 2 of 15%), as well as just plain
* "this feels reasonable to me".
*/
struct appleals_sensitivity_map {
int sensitivity;
int illum_low;
int illum_high;
};
static const struct appleals_sensitivity_map appleals_sensitivity_map[] = {
{ 1, 0, 14 },
{ 3, 10, 40 },
{ 9, 30, 120 },
{ 27, 90, 360 },
{ 81, 270, 1080 },
{ 243, 810, 3240 },
{ 729, 2430, 9720 },
};
static int appleals_compute_sensitivity(int cur_illum, int cur_sens)
{
const struct appleals_sensitivity_map *entry;
int i;
/* see if we're still in current range */
for (i = 0; i < ARRAY_SIZE(appleals_sensitivity_map); i++) {
entry = &appleals_sensitivity_map[i];
if (entry->sensitivity == cur_sens &&
entry->illum_low <= cur_illum &&
entry->illum_high >= cur_illum)
return cur_sens;
else if (entry->sensitivity > cur_sens)
break;
}
/* not in current range, so find new sensitivity */
for (i = 0; i < ARRAY_SIZE(appleals_sensitivity_map); i++) {
entry = &appleals_sensitivity_map[i];
if (entry->illum_low <= cur_illum &&
entry->illum_high >= cur_illum)
return entry->sensitivity;
}
/* hmm, not in table, so assume we are above highest range */
i = ARRAY_SIZE(appleals_sensitivity_map) - 1;
return appleals_sensitivity_map[i].sensitivity;
}
static int appleals_get_field_value_for_usage(struct hid_field *field,
unsigned int usage)
{
int u;
if (!field)
return -1;
for (u = 0; u < field->maxusage; u++) {
if (field->usage[u].hid == usage)
return u + field->logical_minimum;
}
return -1;
}
static __s32 appleals_get_field_value(struct appleals_device *als_dev,
struct hid_field *field)
{
hid_hw_request(als_dev->hid_dev, field->report, HID_REQ_GET_REPORT);
hid_hw_wait(als_dev->hid_dev);
return field->value[0];
}
static void appleals_set_field_value(struct appleals_device *als_dev,
struct hid_field *field, __s32 value)
{
hid_set_field(field, 0, value);
hid_hw_request(als_dev->hid_dev, field->report, HID_REQ_SET_REPORT);
}
static int appleals_get_config(struct appleals_device *als_dev,
unsigned int field_usage, __s32 *value)
{
struct hid_field *field;
field = appleib_find_report_field(als_dev->cfg_report, field_usage);
if (!field)
return -EINVAL;
*value = appleals_get_field_value(als_dev, field);
return 0;
}
static int appleals_set_config(struct appleals_device *als_dev,
unsigned int field_usage, __s32 value)
{
struct hid_field *field;
field = appleib_find_report_field(als_dev->cfg_report, field_usage);
if (!field)
return -EINVAL;
appleals_set_field_value(als_dev, field, value);
return 0;
}
static int appleals_set_enum_config(struct appleals_device *als_dev,
unsigned int field_usage,
unsigned int value_usage)
{
struct hid_field *field;
int value;
field = appleib_find_report_field(als_dev->cfg_report, field_usage);
if (!field)
return -EINVAL;
value = appleals_get_field_value_for_usage(field, value_usage);
if (value >= 0)
appleals_set_field_value(als_dev, field, value);
return 0;
}
static void appleals_update_dyn_sensitivity(struct appleals_device *als_dev,
__s32 value)
{
int new_sens;
int rc;
new_sens = appleals_compute_sensitivity(value,
als_dev->cur_sensitivity);
if (new_sens != als_dev->cur_sensitivity) {
rc = appleals_set_config(als_dev,
HID_USAGE_SENSOR_LIGHT_ILLUM |
HID_USAGE_SENSOR_DATA_MOD_CHANGE_SENSITIVITY_ABS,
new_sens);
if (!rc)
als_dev->cur_sensitivity = new_sens;
}
}
static void appleals_push_new_value(struct appleals_device *als_dev,
__s32 value)
{
__s32 buf[2] = { value, value };
iio_push_to_buffers(als_dev->iio_dev, buf);
if (als_dev->cur_hysteresis == APPLEALS_DYN_SENS)
appleals_update_dyn_sensitivity(als_dev, value);
}
static int appleals_hid_event(struct hid_device *hdev, struct hid_field *field,
struct hid_usage *usage, __s32 value)
{
struct appleals_device *als_dev =
appleib_get_drvdata(hid_get_drvdata(hdev),
&appleals_hid_driver);
int rc = 0;
if ((usage->hid & HID_USAGE_PAGE) != HID_UP_SENSOR)
return 0;
if (usage->hid == HID_USAGE_SENSOR_LIGHT_ILLUM) {
appleals_push_new_value(als_dev, value);
rc = 1;
}
return rc;
}
static int appleals_enable_events(struct iio_trigger *trig, bool enable)
{
struct appleals_device *als_dev = iio_trigger_get_drvdata(trig);
int value;
appleals_set_enum_config(als_dev, HID_USAGE_SENSOR_PROP_REPORT_STATE,
enable ? HID_USAGE_SENSOR_PROP_REPORTING_STATE_ALL_EVENTS_ENUM :
HID_USAGE_SENSOR_PROP_REPORTING_STATE_NO_EVENTS_ENUM);
als_dev->events_enabled = enable;
/* if the sensor was enabled, push an initial value */
if (enable) {
value = appleals_get_field_value(als_dev, als_dev->illum_field);
appleals_push_new_value(als_dev, value);
}
return 0;
}
static int appleals_read_raw(struct iio_dev *iio_dev,
struct iio_chan_spec const *chan,
int *val, int *val2, long mask)
{
struct appleals_device **priv = iio_priv(iio_dev);
struct appleals_device *als_dev = *priv;
__s32 value;
int rc;
switch (mask) {
case IIO_CHAN_INFO_PROCESSED:
*val = appleals_get_field_value(als_dev, als_dev->illum_field);
return IIO_VAL_INT;
case IIO_CHAN_INFO_SAMP_FREQ:
rc = appleals_get_config(als_dev,
HID_USAGE_SENSOR_PROP_REPORT_INTERVAL,
&value);
if (rc)
return rc;
/* interval is in ms; val is in HZ, val2 in µHZ */
value = 1000000000 / value;
*val = value / 1000000;
*val2 = value - (*val * 1000000);
return IIO_VAL_INT_PLUS_MICRO;
case IIO_CHAN_INFO_HYSTERESIS:
if (als_dev->cur_hysteresis == APPLEALS_DYN_SENS) {
*val = als_dev->cur_hysteresis;
return IIO_VAL_INT;
}
rc = appleals_get_config(als_dev,
HID_USAGE_SENSOR_LIGHT_ILLUM |
HID_USAGE_SENSOR_DATA_MOD_CHANGE_SENSITIVITY_ABS,
val);
if (!rc) {
als_dev->cur_sensitivity = *val;
als_dev->cur_hysteresis = *val;
}
return rc ? rc : IIO_VAL_INT;
default:
return -EINVAL;
}
}
static int appleals_write_raw(struct iio_dev *iio_dev,
struct iio_chan_spec const *chan,
int val, int val2, long mask)
{
struct appleals_device **priv = iio_priv(iio_dev);
struct appleals_device *als_dev = *priv;
__s32 illum;
int rc;
switch (mask) {
case IIO_CHAN_INFO_SAMP_FREQ:
rc = appleals_set_config(als_dev,
HID_USAGE_SENSOR_PROP_REPORT_INTERVAL,
1000000000 / (val * 1000000 + val2));
return rc;
case IIO_CHAN_INFO_HYSTERESIS:
if (val == APPLEALS_DYN_SENS) {
if (als_dev->cur_hysteresis != APPLEALS_DYN_SENS) {
als_dev->cur_hysteresis = val;
illum = appleals_get_field_value(als_dev,
als_dev->illum_field);
appleals_update_dyn_sensitivity(als_dev, illum);
}
return 0;
}
rc = appleals_set_config(als_dev,
HID_USAGE_SENSOR_LIGHT_ILLUM |
HID_USAGE_SENSOR_DATA_MOD_CHANGE_SENSITIVITY_ABS,
val);
if (!rc) {
als_dev->cur_sensitivity = val;
als_dev->cur_hysteresis = val;
}
return rc;
default:
return -EINVAL;
}
}
static const struct iio_chan_spec appleals_channels[] = {
{
.type = IIO_INTENSITY,
.modified = 1,
.channel2 = IIO_MOD_LIGHT_BOTH,
.info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED),
.info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SAMP_FREQ) |
BIT(IIO_CHAN_INFO_HYSTERESIS),
.scan_type = {
.sign = 'u',
.realbits = 32,
.storagebits = 32,
},
.scan_index = 0,
},
{
.type = IIO_LIGHT,
.info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED),
.info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SAMP_FREQ) |
BIT(IIO_CHAN_INFO_HYSTERESIS),
.scan_type = {
.sign = 'u',
.realbits = 32,
.storagebits = 32,
},
.scan_index = 1,
}
};
static const struct iio_trigger_ops appleals_trigger_ops = {
.set_trigger_state = &appleals_enable_events,
};
static const struct iio_info appleals_info = {
.read_raw = &appleals_read_raw,
.write_raw = &appleals_write_raw,
};
static void appleals_config_sensor(struct appleals_device *als_dev,
bool events_enabled, int sensitivity)
{
struct hid_field *field;
__s32 val;
/*
* We're (often) in a probe here, so need to enable input processing
* in that case, but only in that case.
*/
if (appleib_needs_io_start(als_dev->ib_dev, als_dev->hid_dev))
hid_device_io_start(als_dev->hid_dev);
field = appleib_find_report_field(als_dev->cfg_report,
HID_USAGE_SENSOR_PROY_POWER_STATE);
val = appleals_get_field_value_for_usage(field,
HID_USAGE_SENSOR_PROP_POWER_STATE_D0_FULL_POWER_ENUM);
if (val >= 0)
hid_set_field(field, 0, val);
field = appleib_find_report_field(als_dev->cfg_report,
HID_USAGE_SENSOR_PROP_REPORT_STATE);
val = appleals_get_field_value_for_usage(field,
events_enabled ?
HID_USAGE_SENSOR_PROP_REPORTING_STATE_ALL_EVENTS_ENUM :
HID_USAGE_SENSOR_PROP_REPORTING_STATE_NO_EVENTS_ENUM);
if (val >= 0)
hid_set_field(field, 0, val);
field = appleib_find_report_field(als_dev->cfg_report,
HID_USAGE_SENSOR_PROP_REPORT_INTERVAL);
hid_set_field(field, 0, field->logical_minimum);
/*
* Set initial change sensitivity; if dynamic, enabling trigger will set
* it instead.
*/
if (sensitivity != APPLEALS_DYN_SENS) {
field = appleib_find_report_field(als_dev->cfg_report,
HID_USAGE_SENSOR_LIGHT_ILLUM |
HID_USAGE_SENSOR_DATA_MOD_CHANGE_SENSITIVITY_ABS);
hid_set_field(field, 0, sensitivity);
}
hid_hw_request(als_dev->hid_dev, als_dev->cfg_report,
HID_REQ_SET_REPORT);
if (appleib_needs_io_start(als_dev->ib_dev, als_dev->hid_dev))
hid_device_io_stop(als_dev->hid_dev);
}
static int appleals_config_iio(struct appleals_device *als_dev)
{
struct iio_dev *iio_dev;
struct iio_trigger *iio_trig;
struct appleals_device **priv;
int rc;
iio_dev = iio_device_alloc(sizeof(als_dev));
if (!iio_dev)
return -ENOMEM;
priv = iio_priv(iio_dev);
*priv = als_dev;
iio_dev->channels = appleals_channels;
iio_dev->num_channels = ARRAY_SIZE(appleals_channels);
iio_dev->dev.parent = &als_dev->hid_dev->dev;
iio_dev->info = &appleals_info;
iio_dev->name = "als";
iio_dev->modes = INDIO_DIRECT_MODE;
rc = iio_triggered_buffer_setup(iio_dev, &iio_pollfunc_store_time, NULL,
NULL);
if (rc) {
dev_err(als_dev->log_dev,
"Failed to set up iio triggered buffer: %d\n", rc);
goto free_iio_dev;
}
iio_trig = iio_trigger_alloc("%s-dev%d", iio_dev->name, iio_dev->id);
if (!iio_trig) {
rc = -ENOMEM;
goto clean_trig_buf;
}
iio_trig->dev.parent = &als_dev->hid_dev->dev;
iio_trig->ops = &appleals_trigger_ops;
iio_trigger_set_drvdata(iio_trig, als_dev);
rc = iio_trigger_register(iio_trig);
if (rc) {
dev_err(als_dev->log_dev,
"Failed to register iio trigger: %d\n",
rc);
goto free_iio_trig;
}
als_dev->iio_trig = iio_trig;
rc = iio_device_register(iio_dev);
if (rc) {
dev_err(als_dev->log_dev, "Failed to register iio device: %d\n",
rc);
goto unreg_iio_trig;
}
als_dev->iio_dev = iio_dev;
return 0;
unreg_iio_trig:
iio_trigger_unregister(iio_trig);
free_iio_trig:
iio_trigger_free(iio_trig);
als_dev->iio_trig = NULL;
clean_trig_buf:
iio_triggered_buffer_cleanup(iio_dev);
free_iio_dev:
iio_device_free(iio_dev);
return rc;
}
static int appleals_probe(struct hid_device *hdev,
const struct hid_device_id *id)
{
struct appleals_device *als_dev =
appleib_get_drvdata(hid_get_drvdata(hdev),
&appleals_hid_driver);
struct hid_field *state_field;
struct hid_field *illum_field;
/* find als fields and reports */
state_field = appleib_find_hid_field(hdev, HID_USAGE_SENSOR_ALS,
HID_USAGE_SENSOR_PROP_REPORT_STATE);
illum_field = appleib_find_hid_field(hdev, HID_USAGE_SENSOR_ALS,
HID_USAGE_SENSOR_LIGHT_ILLUM);
if (!state_field || !illum_field)
return -ENODEV;
if (als_dev->hid_dev) {
dev_warn(als_dev->log_dev,
"Found duplicate ambient light sensor - ignoring\n");
return -EBUSY;
}
dev_dbg(als_dev->log_dev, "Found ambient light sensor\n");
/* initialize device */
als_dev->hid_dev = hdev;
als_dev->cfg_report = state_field->report;
als_dev->illum_field = illum_field;
als_dev->cur_hysteresis = APPLEALS_DEF_CHANGE_SENS;
als_dev->cur_sensitivity = APPLEALS_DEF_CHANGE_SENS;
appleals_config_sensor(als_dev, false, als_dev->cur_sensitivity);
return appleals_config_iio(als_dev);
}
static void appleals_remove(struct hid_device *hdev)
{
struct appleals_device *als_dev =
appleib_get_drvdata(hid_get_drvdata(hdev),
&appleals_hid_driver);
iio_device_unregister(als_dev->iio_dev);
iio_trigger_unregister(als_dev->iio_trig);
iio_trigger_free(als_dev->iio_trig);
iio_triggered_buffer_cleanup(als_dev->iio_dev);
iio_device_free(als_dev->iio_dev);
als_dev->hid_dev = NULL;
}
#ifdef CONFIG_PM
static int appleals_reset_resume(struct hid_device *hdev)
{
struct appleals_device *als_dev =
appleib_get_drvdata(hid_get_drvdata(hdev),
&appleals_hid_driver);
appleals_config_sensor(als_dev, als_dev->events_enabled,
als_dev->cur_sensitivity);
return 0;
}
#endif
static struct hid_driver appleals_hid_driver = {
.name = "apple-ib-als",
.probe = appleals_probe,
.remove = appleals_remove,
.event = appleals_hid_event,
#ifdef CONFIG_PM
.reset_resume = appleals_reset_resume,
#endif
};
static int appleals_platform_probe(struct platform_device *pdev)
{
struct appleib_device_data *ddata = pdev->dev.platform_data;
struct appleib_device *ib_dev = ddata->ib_dev;
struct appleals_device *als_dev;
int rc;
als_dev = kzalloc(sizeof(*als_dev), GFP_KERNEL);
if (!als_dev)
return -ENOMEM;
als_dev->ib_dev = ib_dev;
als_dev->log_dev = ddata->log_dev;
rc = appleib_register_hid_driver(ib_dev, &appleals_hid_driver, als_dev);
if (rc)
goto error;
platform_set_drvdata(pdev, als_dev);
return 0;
error:
kfree(als_dev);
return rc;
}
static int appleals_platform_remove(struct platform_device *pdev)
{
struct appleib_device_data *ddata = pdev->dev.platform_data;
struct appleib_device *ib_dev = ddata->ib_dev;
struct appleals_device *als_dev = platform_get_drvdata(pdev);
int rc;
rc = appleib_unregister_hid_driver(ib_dev, &appleals_hid_driver);
if (rc)
goto error;
kfree(als_dev);
return 0;
error:
return rc;
}
static const struct platform_device_id appleals_platform_ids[] = {
{ .name = PLAT_NAME_IB_ALS },
{ }
};
MODULE_DEVICE_TABLE(platform, appleals_platform_ids);
static struct platform_driver appleals_platform_driver = {
.id_table = appleals_platform_ids,
.driver = {
.name = "apple-ib-als",
},
.probe = appleals_platform_probe,
.remove = appleals_platform_remove,
};
module_platform_driver(appleals_platform_driver);
MODULE_AUTHOR("Ronald Tschalär");
MODULE_DESCRIPTION("Apple iBridge ALS driver");
MODULE_LICENSE("GPL v2");