blob: 0c6e037153d2231a3ff3859babcd5b8958e3ce7f [file] [log] [blame]
anantha22d96aa2010-10-26 14:22:41 -07001/*
2 * apds9802als.c - apds9802 ALS Driver
3 *
4 * Copyright (C) 2009 Intel Corp
5 *
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
20 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21 *
22 */
23
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/slab.h>
27#include <linux/i2c.h>
28#include <linux/err.h>
29#include <linux/delay.h>
30#include <linux/mutex.h>
31#include <linux/sysfs.h>
Hong Liuf0cfec12010-10-26 14:22:42 -070032#include <linux/pm_runtime.h>
anantha22d96aa2010-10-26 14:22:41 -070033
34#define ALS_MIN_RANGE_VAL 1
35#define ALS_MAX_RANGE_VAL 2
36#define POWER_STA_ENABLE 1
37#define POWER_STA_DISABLE 0
anantha22d96aa2010-10-26 14:22:41 -070038
39#define DRIVER_NAME "apds9802als"
40
41struct als_data {
anantha22d96aa2010-10-26 14:22:41 -070042 struct mutex mutex;
43};
44
45static ssize_t als_sensing_range_show(struct device *dev,
46 struct device_attribute *attr, char *buf)
47{
48 struct i2c_client *client = to_i2c_client(dev);
49 int val;
50
51 val = i2c_smbus_read_byte_data(client, 0x81);
52 if (val < 0)
53 return val;
54 if (val & 1)
55 return sprintf(buf, "4095\n");
56 else
57 return sprintf(buf, "65535\n");
58}
59
Hong Liuf0cfec12010-10-26 14:22:42 -070060static int als_wait_for_data_ready(struct device *dev)
61{
62 struct i2c_client *client = to_i2c_client(dev);
63 int ret;
64 int retry = 10;
65
66 do {
67 msleep(30);
68 ret = i2c_smbus_read_byte_data(client, 0x86);
69 } while (!(ret & 0x80) && retry--);
70
Axel Lin644a9d32012-11-16 17:17:50 +080071 if (retry < 0) {
Hong Liuf0cfec12010-10-26 14:22:42 -070072 dev_warn(dev, "timeout waiting for data ready\n");
73 return -ETIMEDOUT;
74 }
75
76 return 0;
77}
78
anantha22d96aa2010-10-26 14:22:41 -070079static ssize_t als_lux0_input_data_show(struct device *dev,
80 struct device_attribute *attr, char *buf)
81{
82 struct i2c_client *client = to_i2c_client(dev);
83 struct als_data *data = i2c_get_clientdata(client);
Hong Liuf0cfec12010-10-26 14:22:42 -070084 int ret_val;
anantha22d96aa2010-10-26 14:22:41 -070085 int temp;
86
87 /* Protect against parallel reads */
Hong Liuf0cfec12010-10-26 14:22:42 -070088 pm_runtime_get_sync(dev);
anantha22d96aa2010-10-26 14:22:41 -070089 mutex_lock(&data->mutex);
Hong Liuf0cfec12010-10-26 14:22:42 -070090
91 /* clear EOC interrupt status */
92 i2c_smbus_write_byte(client, 0x40);
93 /* start measurement */
94 temp = i2c_smbus_read_byte_data(client, 0x81);
95 i2c_smbus_write_byte_data(client, 0x81, temp | 0x08);
96
97 ret_val = als_wait_for_data_ready(dev);
98 if (ret_val < 0)
99 goto failed;
100
101 temp = i2c_smbus_read_byte_data(client, 0x8C); /* LSB data */
anantha22d96aa2010-10-26 14:22:41 -0700102 if (temp < 0) {
103 ret_val = temp;
104 goto failed;
105 }
Hong Liuf0cfec12010-10-26 14:22:42 -0700106 ret_val = i2c_smbus_read_byte_data(client, 0x8D); /* MSB data */
anantha22d96aa2010-10-26 14:22:41 -0700107 if (ret_val < 0)
108 goto failed;
Hong Liuf0cfec12010-10-26 14:22:42 -0700109
anantha22d96aa2010-10-26 14:22:41 -0700110 mutex_unlock(&data->mutex);
Hong Liuf0cfec12010-10-26 14:22:42 -0700111 pm_runtime_put_sync(dev);
112
113 temp = (ret_val << 8) | temp;
114 return sprintf(buf, "%d\n", temp);
anantha22d96aa2010-10-26 14:22:41 -0700115failed:
116 mutex_unlock(&data->mutex);
Hong Liuf0cfec12010-10-26 14:22:42 -0700117 pm_runtime_put_sync(dev);
anantha22d96aa2010-10-26 14:22:41 -0700118 return ret_val;
119}
120
121static ssize_t als_sensing_range_store(struct device *dev,
122 struct device_attribute *attr, const char *buf, size_t count)
123{
124 struct i2c_client *client = to_i2c_client(dev);
125 struct als_data *data = i2c_get_clientdata(client);
Vasiliy Kulikov10937362010-11-11 14:05:11 -0800126 int ret_val;
anantha22d96aa2010-10-26 14:22:41 -0700127 unsigned long val;
128
Jingoo Hanf7b41272013-06-04 13:15:16 +0900129 ret_val = kstrtoul(buf, 10, &val);
130 if (ret_val)
131 return ret_val;
anantha22d96aa2010-10-26 14:22:41 -0700132
133 if (val < 4096)
134 val = 1;
135 else if (val < 65536)
136 val = 2;
137 else
138 return -ERANGE;
139
Hong Liuf0cfec12010-10-26 14:22:42 -0700140 pm_runtime_get_sync(dev);
141
anantha22d96aa2010-10-26 14:22:41 -0700142 /* Make sure nobody else reads/modifies/writes 0x81 while we
143 are active */
anantha22d96aa2010-10-26 14:22:41 -0700144 mutex_lock(&data->mutex);
145
146 ret_val = i2c_smbus_read_byte_data(client, 0x81);
147 if (ret_val < 0)
148 goto fail;
149
150 /* Reset the bits before setting them */
151 ret_val = ret_val & 0xFA;
152
Hong Liuf0cfec12010-10-26 14:22:42 -0700153 if (val == 1) /* Setting detection range up to 4k LUX */
154 ret_val = (ret_val | 0x01);
155 else /* Setting detection range up to 64k LUX*/
156 ret_val = (ret_val | 0x00);
anantha22d96aa2010-10-26 14:22:41 -0700157
158 ret_val = i2c_smbus_write_byte_data(client, 0x81, ret_val);
Hong Liuf0cfec12010-10-26 14:22:42 -0700159
anantha22d96aa2010-10-26 14:22:41 -0700160 if (ret_val >= 0) {
161 /* All OK */
162 mutex_unlock(&data->mutex);
Hong Liuf0cfec12010-10-26 14:22:42 -0700163 pm_runtime_put_sync(dev);
anantha22d96aa2010-10-26 14:22:41 -0700164 return count;
165 }
166fail:
167 mutex_unlock(&data->mutex);
Hong Liuf0cfec12010-10-26 14:22:42 -0700168 pm_runtime_put_sync(dev);
anantha22d96aa2010-10-26 14:22:41 -0700169 return ret_val;
170}
171
anantha22d96aa2010-10-26 14:22:41 -0700172static int als_set_power_state(struct i2c_client *client, bool on_off)
173{
174 int ret_val;
175 struct als_data *data = i2c_get_clientdata(client);
176
177 mutex_lock(&data->mutex);
178 ret_val = i2c_smbus_read_byte_data(client, 0x80);
179 if (ret_val < 0)
180 goto fail;
181 if (on_off)
182 ret_val = ret_val | 0x01;
183 else
184 ret_val = ret_val & 0xFE;
185 ret_val = i2c_smbus_write_byte_data(client, 0x80, ret_val);
186fail:
187 mutex_unlock(&data->mutex);
188 return ret_val;
189}
190
anantha22d96aa2010-10-26 14:22:41 -0700191static DEVICE_ATTR(lux0_sensor_range, S_IRUGO | S_IWUSR,
192 als_sensing_range_show, als_sensing_range_store);
193static DEVICE_ATTR(lux0_input, S_IRUGO, als_lux0_input_data_show, NULL);
anantha22d96aa2010-10-26 14:22:41 -0700194
195static struct attribute *mid_att_als[] = {
196 &dev_attr_lux0_sensor_range.attr,
197 &dev_attr_lux0_input.attr,
anantha22d96aa2010-10-26 14:22:41 -0700198 NULL
199};
200
201static struct attribute_group m_als_gr = {
202 .name = "apds9802als",
203 .attrs = mid_att_als
204};
205
206static int als_set_default_config(struct i2c_client *client)
207{
208 int ret_val;
209 /* Write the command and then switch on */
210 ret_val = i2c_smbus_write_byte_data(client, 0x80, 0x01);
211 if (ret_val < 0) {
212 dev_err(&client->dev, "failed default switch on write\n");
213 return ret_val;
214 }
Hong Liuf0cfec12010-10-26 14:22:42 -0700215 /* detection range: 1~64K Lux, maunal measurement */
216 ret_val = i2c_smbus_write_byte_data(client, 0x81, 0x08);
anantha22d96aa2010-10-26 14:22:41 -0700217 if (ret_val < 0)
218 dev_err(&client->dev, "failed default LUX on write\n");
Hong Liuf0cfec12010-10-26 14:22:42 -0700219
220 /* We always get 0 for the 1st measurement after system power on,
221 * so make sure it is finished before user asks for data.
222 */
223 als_wait_for_data_ready(&client->dev);
224
anantha22d96aa2010-10-26 14:22:41 -0700225 return ret_val;
226}
227
Hong Liuf0cfec12010-10-26 14:22:42 -0700228static int apds9802als_probe(struct i2c_client *client,
229 const struct i2c_device_id *id)
anantha22d96aa2010-10-26 14:22:41 -0700230{
231 int res;
232 struct als_data *data;
233
234 data = kzalloc(sizeof(struct als_data), GFP_KERNEL);
235 if (data == NULL) {
236 dev_err(&client->dev, "Memory allocation failed\n");
237 return -ENOMEM;
238 }
239 i2c_set_clientdata(client, data);
240 res = sysfs_create_group(&client->dev.kobj, &m_als_gr);
241 if (res) {
242 dev_err(&client->dev, "device create file failed\n");
243 goto als_error1;
244 }
Hong Liuf0cfec12010-10-26 14:22:42 -0700245 dev_info(&client->dev, "ALS chip found\n");
anantha22d96aa2010-10-26 14:22:41 -0700246 als_set_default_config(client);
anantha22d96aa2010-10-26 14:22:41 -0700247 mutex_init(&data->mutex);
Hong Liuf0cfec12010-10-26 14:22:42 -0700248
Hong Liu4e673592011-03-22 16:33:59 -0700249 pm_runtime_set_active(&client->dev);
Hong Liuf0cfec12010-10-26 14:22:42 -0700250 pm_runtime_enable(&client->dev);
Hong Liuf0cfec12010-10-26 14:22:42 -0700251
anantha22d96aa2010-10-26 14:22:41 -0700252 return res;
253als_error1:
anantha22d96aa2010-10-26 14:22:41 -0700254 kfree(data);
255 return res;
256}
257
Bill Pemberton486a5c22012-11-19 13:26:02 -0500258static int apds9802als_remove(struct i2c_client *client)
anantha22d96aa2010-10-26 14:22:41 -0700259{
260 struct als_data *data = i2c_get_clientdata(client);
Hong Liuf0cfec12010-10-26 14:22:42 -0700261
Hong Liu4e673592011-03-22 16:33:59 -0700262 pm_runtime_get_sync(&client->dev);
263
Hong Liuf0cfec12010-10-26 14:22:42 -0700264 als_set_power_state(client, false);
anantha22d96aa2010-10-26 14:22:41 -0700265 sysfs_remove_group(&client->dev.kobj, &m_als_gr);
Hong Liu4e673592011-03-22 16:33:59 -0700266
267 pm_runtime_disable(&client->dev);
268 pm_runtime_set_suspended(&client->dev);
269 pm_runtime_put_noidle(&client->dev);
270
anantha22d96aa2010-10-26 14:22:41 -0700271 kfree(data);
272 return 0;
273}
274
Hong Liuf0cfec12010-10-26 14:22:42 -0700275#ifdef CONFIG_PM
anantha22d96aa2010-10-26 14:22:41 -0700276
Lars-Peter Clausen1c9354b2013-04-11 11:24:39 +0200277static int apds9802als_suspend(struct device *dev)
Hong Liuf0cfec12010-10-26 14:22:42 -0700278{
279 struct i2c_client *client = to_i2c_client(dev);
280
281 als_set_power_state(client, false);
282 return 0;
283}
284
Lars-Peter Clausen1c9354b2013-04-11 11:24:39 +0200285static int apds9802als_resume(struct device *dev)
Hong Liuf0cfec12010-10-26 14:22:42 -0700286{
287 struct i2c_client *client = to_i2c_client(dev);
288
289 als_set_power_state(client, true);
290 return 0;
291}
292
Lars-Peter Clausen1c9354b2013-04-11 11:24:39 +0200293static UNIVERSAL_DEV_PM_OPS(apds9802als_pm_ops, apds9802als_suspend,
294 apds9802als_resume, NULL);
Hong Liuf0cfec12010-10-26 14:22:42 -0700295
296#define APDS9802ALS_PM_OPS (&apds9802als_pm_ops)
297
298#else /* CONFIG_PM */
Hong Liuf0cfec12010-10-26 14:22:42 -0700299#define APDS9802ALS_PM_OPS NULL
300#endif /* CONFIG_PM */
301
anantha22d96aa2010-10-26 14:22:41 -0700302static struct i2c_device_id apds9802als_id[] = {
303 { DRIVER_NAME, 0 },
304 { }
305};
306
307MODULE_DEVICE_TABLE(i2c, apds9802als_id);
308
309static struct i2c_driver apds9802als_driver = {
310 .driver = {
Hong Liuf0cfec12010-10-26 14:22:42 -0700311 .name = DRIVER_NAME,
312 .pm = APDS9802ALS_PM_OPS,
anantha22d96aa2010-10-26 14:22:41 -0700313 },
314 .probe = apds9802als_probe,
Bill Pemberton2d6bed92012-11-19 13:21:23 -0500315 .remove = apds9802als_remove,
anantha22d96aa2010-10-26 14:22:41 -0700316 .id_table = apds9802als_id,
317};
318
Axel Lina64fe2e2012-01-22 15:36:45 +0800319module_i2c_driver(apds9802als_driver);
anantha22d96aa2010-10-26 14:22:41 -0700320
321MODULE_AUTHOR("Anantha Narayanan <Anantha.Narayanan@intel.com");
322MODULE_DESCRIPTION("Avago apds9802als ALS Driver");
323MODULE_LICENSE("GPL v2");