2 * ACPI Ambient Light Sensor Driver
5 * Copyright (C) 2009 Zhang Rui <rui.zhang@intel.com>
7 * Rework for IIO subsystem:
8 * Copyright (C) 2012-2013 Martin Liska <marxin.liska@gmail.com>
10 * Final cleanup and debugging:
11 * Copyright (C) 2013-2014 Marek Vasut <marex@denx.de>
12 * Copyright (C) 2015 Gabriele Mazzotta <gabriele.mzt@gmail.com>
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * General Public License for more details.
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 #include <linux/module.h>
30 #include <linux/acpi.h>
31 #include <linux/err.h>
32 #include <linux/mutex.h>
34 #include <linux/iio/iio.h>
35 #include <linux/iio/buffer.h>
36 #include <linux/iio/kfifo_buf.h>
38 #define ACPI_ALS_CLASS "als"
39 #define ACPI_ALS_DEVICE_NAME "acpi-als"
40 #define ACPI_ALS_NOTIFY_ILLUMINANCE 0x80
42 ACPI_MODULE_NAME("acpi-als");
45 * So far, there's only one channel in here, but the specification for
46 * ACPI0008 says there can be more to what the block can report. Like
47 * chromaticity and such. We are ready for incoming additions!
49 static const struct iio_chan_spec acpi_als_channels
[] = {
57 /* _RAW is here for backward ABI compatibility */
58 .info_mask_separate
= BIT(IIO_CHAN_INFO_RAW
) |
59 BIT(IIO_CHAN_INFO_PROCESSED
),
64 * The event buffer contains timestamp and all the data from
65 * the ACPI0008 block. There are multiple, but so far we only
66 * support _ALI (illuminance). Once someone adds new channels
67 * to acpi_als_channels[], the evt_buffer below will grow
70 #define ACPI_ALS_EVT_NR_SOURCES ARRAY_SIZE(acpi_als_channels)
71 #define ACPI_ALS_EVT_BUFFER_SIZE \
72 (sizeof(s64) + (ACPI_ALS_EVT_NR_SOURCES * sizeof(s32)))
75 struct acpi_device
*device
;
78 s32 evt_buffer
[ACPI_ALS_EVT_BUFFER_SIZE
];
82 * All types of properties the ACPI0008 block can report. The ALI, ALC, ALT
83 * and ALP can all be handled by acpi_als_read_value() below, while the ALR is
86 * The _ALR property returns tables that can be used to fine-tune the values
87 * reported by the other props based on the particular hardware type and it's
88 * location (it contains tables for "rainy", "bright inhouse lighting" etc.).
90 * So far, we support only ALI (illuminance).
92 #define ACPI_ALS_ILLUMINANCE "_ALI"
93 #define ACPI_ALS_CHROMATICITY "_ALC"
94 #define ACPI_ALS_COLOR_TEMP "_ALT"
95 #define ACPI_ALS_POLLING "_ALP"
96 #define ACPI_ALS_TABLES "_ALR"
98 static int acpi_als_read_value(struct acpi_als
*als
, char *prop
, s32
*val
)
100 unsigned long long temp_val
;
103 status
= acpi_evaluate_integer(als
->device
->handle
, prop
, NULL
,
106 if (ACPI_FAILURE(status
)) {
107 ACPI_EXCEPTION((AE_INFO
, status
, "Error reading ALS %s", prop
));
116 static void acpi_als_notify(struct acpi_device
*device
, u32 event
)
118 struct iio_dev
*indio_dev
= acpi_driver_data(device
);
119 struct acpi_als
*als
= iio_priv(indio_dev
);
120 s32
*buffer
= als
->evt_buffer
;
121 s64 time_ns
= iio_get_time_ns(indio_dev
);
125 mutex_lock(&als
->lock
);
127 memset(buffer
, 0, ACPI_ALS_EVT_BUFFER_SIZE
);
130 case ACPI_ALS_NOTIFY_ILLUMINANCE
:
131 ret
= acpi_als_read_value(als
, ACPI_ALS_ILLUMINANCE
, &val
);
137 /* Unhandled event */
138 dev_dbg(&device
->dev
, "Unhandled ACPI ALS event (%08x)!\n",
143 iio_push_to_buffers_with_timestamp(indio_dev
, als
->evt_buffer
, time_ns
);
146 mutex_unlock(&als
->lock
);
149 static int acpi_als_read_raw(struct iio_dev
*indio_dev
,
150 struct iio_chan_spec
const *chan
, int *val
,
151 int *val2
, long mask
)
153 struct acpi_als
*als
= iio_priv(indio_dev
);
157 if ((mask
!= IIO_CHAN_INFO_PROCESSED
) && (mask
!= IIO_CHAN_INFO_RAW
))
160 /* we support only illumination (_ALI) so far. */
161 if (chan
->type
!= IIO_LIGHT
)
164 ret
= acpi_als_read_value(als
, ACPI_ALS_ILLUMINANCE
, &temp_val
);
173 static const struct iio_info acpi_als_info
= {
174 .driver_module
= THIS_MODULE
,
175 .read_raw
= acpi_als_read_raw
,
178 static int acpi_als_add(struct acpi_device
*device
)
180 struct acpi_als
*als
;
181 struct iio_dev
*indio_dev
;
182 struct iio_buffer
*buffer
;
184 indio_dev
= devm_iio_device_alloc(&device
->dev
, sizeof(*als
));
188 als
= iio_priv(indio_dev
);
190 device
->driver_data
= indio_dev
;
191 als
->device
= device
;
192 mutex_init(&als
->lock
);
194 indio_dev
->name
= ACPI_ALS_DEVICE_NAME
;
195 indio_dev
->dev
.parent
= &device
->dev
;
196 indio_dev
->info
= &acpi_als_info
;
197 indio_dev
->modes
= INDIO_BUFFER_SOFTWARE
;
198 indio_dev
->channels
= acpi_als_channels
;
199 indio_dev
->num_channels
= ARRAY_SIZE(acpi_als_channels
);
201 buffer
= devm_iio_kfifo_allocate(&device
->dev
);
205 iio_device_attach_buffer(indio_dev
, buffer
);
207 return devm_iio_device_register(&device
->dev
, indio_dev
);
210 static const struct acpi_device_id acpi_als_device_ids
[] = {
215 MODULE_DEVICE_TABLE(acpi
, acpi_als_device_ids
);
217 static struct acpi_driver acpi_als_driver
= {
219 .class = ACPI_ALS_CLASS
,
220 .ids
= acpi_als_device_ids
,
223 .notify
= acpi_als_notify
,
227 module_acpi_driver(acpi_als_driver
);
229 MODULE_AUTHOR("Zhang Rui <rui.zhang@intel.com>");
230 MODULE_AUTHOR("Martin Liska <marxin.liska@gmail.com>");
231 MODULE_AUTHOR("Marek Vasut <marex@denx.de>");
232 MODULE_DESCRIPTION("ACPI Ambient Light Sensor Driver");
233 MODULE_LICENSE("GPL");