2 * apds9802als.c - apds9802 ALS Driver
4 * Copyright (C) 2009 Intel Corp
6 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
24 #include <linux/module.h>
25 #include <linux/slab.h>
26 #include <linux/i2c.h>
27 #include <linux/err.h>
28 #include <linux/delay.h>
29 #include <linux/mutex.h>
30 #include <linux/sysfs.h>
31 #include <linux/pm_runtime.h>
33 #define ALS_MIN_RANGE_VAL 1
34 #define ALS_MAX_RANGE_VAL 2
35 #define POWER_STA_ENABLE 1
36 #define POWER_STA_DISABLE 0
38 #define DRIVER_NAME "apds9802als"
44 static ssize_t als_sensing_range_show(struct device *dev,
45 struct device_attribute *attr, char *buf)
47 struct i2c_client *client = to_i2c_client(dev);
50 val = i2c_smbus_read_byte_data(client, 0x81);
54 return sprintf(buf, "4095\n");
56 return sprintf(buf, "65535\n");
59 static int als_wait_for_data_ready(struct device *dev)
61 struct i2c_client *client = to_i2c_client(dev);
67 ret = i2c_smbus_read_byte_data(client, 0x86);
68 } while (!(ret & 0x80) && retry--);
71 dev_warn(dev, "timeout waiting for data ready\n");
78 static ssize_t als_lux0_input_data_show(struct device *dev,
79 struct device_attribute *attr, char *buf)
81 struct i2c_client *client = to_i2c_client(dev);
82 struct als_data *data = i2c_get_clientdata(client);
86 /* Protect against parallel reads */
87 pm_runtime_get_sync(dev);
88 mutex_lock(&data->mutex);
90 /* clear EOC interrupt status */
91 i2c_smbus_write_byte(client, 0x40);
92 /* start measurement */
93 temp = i2c_smbus_read_byte_data(client, 0x81);
94 i2c_smbus_write_byte_data(client, 0x81, temp | 0x08);
96 ret_val = als_wait_for_data_ready(dev);
100 temp = i2c_smbus_read_byte_data(client, 0x8C); /* LSB data */
105 ret_val = i2c_smbus_read_byte_data(client, 0x8D); /* MSB data */
109 mutex_unlock(&data->mutex);
110 pm_runtime_put_sync(dev);
112 temp = (ret_val << 8) | temp;
113 return sprintf(buf, "%d\n", temp);
115 mutex_unlock(&data->mutex);
116 pm_runtime_put_sync(dev);
120 static ssize_t als_sensing_range_store(struct device *dev,
121 struct device_attribute *attr, const char *buf, size_t count)
123 struct i2c_client *client = to_i2c_client(dev);
124 struct als_data *data = i2c_get_clientdata(client);
128 ret_val = kstrtoul(buf, 10, &val);
134 else if (val < 65536)
139 pm_runtime_get_sync(dev);
141 /* Make sure nobody else reads/modifies/writes 0x81 while we
143 mutex_lock(&data->mutex);
145 ret_val = i2c_smbus_read_byte_data(client, 0x81);
149 /* Reset the bits before setting them */
150 ret_val = ret_val & 0xFA;
152 if (val == 1) /* Setting detection range up to 4k LUX */
153 ret_val = (ret_val | 0x01);
154 else /* Setting detection range up to 64k LUX*/
155 ret_val = (ret_val | 0x00);
157 ret_val = i2c_smbus_write_byte_data(client, 0x81, ret_val);
161 mutex_unlock(&data->mutex);
162 pm_runtime_put_sync(dev);
166 mutex_unlock(&data->mutex);
167 pm_runtime_put_sync(dev);
171 static int als_set_power_state(struct i2c_client *client, bool on_off)
174 struct als_data *data = i2c_get_clientdata(client);
176 mutex_lock(&data->mutex);
177 ret_val = i2c_smbus_read_byte_data(client, 0x80);
181 ret_val = ret_val | 0x01;
183 ret_val = ret_val & 0xFE;
184 ret_val = i2c_smbus_write_byte_data(client, 0x80, ret_val);
186 mutex_unlock(&data->mutex);
190 static DEVICE_ATTR(lux0_sensor_range, S_IRUGO | S_IWUSR,
191 als_sensing_range_show, als_sensing_range_store);
192 static DEVICE_ATTR(lux0_input, S_IRUGO, als_lux0_input_data_show, NULL);
194 static struct attribute *mid_att_als[] = {
195 &dev_attr_lux0_sensor_range.attr,
196 &dev_attr_lux0_input.attr,
200 static struct attribute_group m_als_gr = {
201 .name = "apds9802als",
205 static int als_set_default_config(struct i2c_client *client)
208 /* Write the command and then switch on */
209 ret_val = i2c_smbus_write_byte_data(client, 0x80, 0x01);
211 dev_err(&client->dev, "failed default switch on write\n");
214 /* detection range: 1~64K Lux, maunal measurement */
215 ret_val = i2c_smbus_write_byte_data(client, 0x81, 0x08);
217 dev_err(&client->dev, "failed default LUX on write\n");
219 /* We always get 0 for the 1st measurement after system power on,
220 * so make sure it is finished before user asks for data.
222 als_wait_for_data_ready(&client->dev);
227 static int apds9802als_probe(struct i2c_client *client,
228 const struct i2c_device_id *id)
231 struct als_data *data;
233 data = kzalloc(sizeof(struct als_data), GFP_KERNEL);
235 dev_err(&client->dev, "Memory allocation failed\n");
238 i2c_set_clientdata(client, data);
239 res = sysfs_create_group(&client->dev.kobj, &m_als_gr);
241 dev_err(&client->dev, "device create file failed\n");
244 dev_info(&client->dev, "ALS chip found\n");
245 als_set_default_config(client);
246 mutex_init(&data->mutex);
248 pm_runtime_set_active(&client->dev);
249 pm_runtime_enable(&client->dev);
257 static int apds9802als_remove(struct i2c_client *client)
259 struct als_data *data = i2c_get_clientdata(client);
261 pm_runtime_get_sync(&client->dev);
263 als_set_power_state(client, false);
264 sysfs_remove_group(&client->dev.kobj, &m_als_gr);
266 pm_runtime_disable(&client->dev);
267 pm_runtime_set_suspended(&client->dev);
268 pm_runtime_put_noidle(&client->dev);
276 static int apds9802als_suspend(struct device *dev)
278 struct i2c_client *client = to_i2c_client(dev);
280 als_set_power_state(client, false);
284 static int apds9802als_resume(struct device *dev)
286 struct i2c_client *client = to_i2c_client(dev);
288 als_set_power_state(client, true);
292 static UNIVERSAL_DEV_PM_OPS(apds9802als_pm_ops, apds9802als_suspend,
293 apds9802als_resume, NULL);
295 #define APDS9802ALS_PM_OPS (&apds9802als_pm_ops)
297 #else /* CONFIG_PM */
298 #define APDS9802ALS_PM_OPS NULL
299 #endif /* CONFIG_PM */
301 static struct i2c_device_id apds9802als_id[] = {
306 MODULE_DEVICE_TABLE(i2c, apds9802als_id);
308 static struct i2c_driver apds9802als_driver = {
311 .pm = APDS9802ALS_PM_OPS,
313 .probe = apds9802als_probe,
314 .remove = apds9802als_remove,
315 .id_table = apds9802als_id,
318 module_i2c_driver(apds9802als_driver);
320 MODULE_AUTHOR("Anantha Narayanan <Anantha.Narayanan@intel.com");
321 MODULE_DESCRIPTION("Avago apds9802als ALS Driver");
322 MODULE_LICENSE("GPL v2");