Blame view

drivers/misc/isl29020.c 4.93 KB
873e65bc0   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-only
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
2
3
4
5
6
7
8
  /*
   * isl29020.c - Intersil  ALS Driver
   *
   * Copyright (C) 2008 Intel Corp
   *
   *  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   *
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
9
10
11
12
13
14
   * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
   *
   * Data sheet at: http://www.intersil.com/data/fn/fn6505.pdf
   */
  
  #include <linux/module.h>
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
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
  #include <linux/slab.h>
  #include <linux/i2c.h>
  #include <linux/err.h>
  #include <linux/delay.h>
  #include <linux/sysfs.h>
  #include <linux/pm_runtime.h>
  
  static DEFINE_MUTEX(mutex);
  
  static ssize_t als_sensing_range_show(struct device *dev,
  			struct device_attribute *attr,  char *buf)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	int  val;
  
  	val = i2c_smbus_read_byte_data(client, 0x00);
  
  	if (val < 0)
  		return val;
  	return sprintf(buf, "%d000
  ", 1 << (2 * (val & 3)));
  
  }
  
  static ssize_t als_lux_input_data_show(struct device *dev,
  			struct device_attribute *attr, char *buf)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	int ret_val, val;
  	unsigned long int lux;
  	int temp;
  
  	pm_runtime_get_sync(dev);
  	msleep(100);
  
  	mutex_lock(&mutex);
  	temp = i2c_smbus_read_byte_data(client, 0x02); /* MSB data */
  	if (temp < 0) {
  		pm_runtime_put_sync(dev);
  		mutex_unlock(&mutex);
  		return temp;
  	}
  
  	ret_val = i2c_smbus_read_byte_data(client, 0x01); /* LSB data */
  	mutex_unlock(&mutex);
  
  	if (ret_val < 0) {
  		pm_runtime_put_sync(dev);
  		return ret_val;
  	}
  
  	ret_val |= temp << 8;
  	val = i2c_smbus_read_byte_data(client, 0x00);
  	pm_runtime_put_sync(dev);
  	if (val < 0)
  		return val;
  	lux = ((((1 << (2 * (val & 3))))*1000) * ret_val) / 65536;
  	return sprintf(buf, "%ld
  ", lux);
  }
  
  static ssize_t als_sensing_range_store(struct device *dev,
  		struct device_attribute *attr, const  char *buf, size_t count)
  {
  	struct i2c_client *client = to_i2c_client(dev);
90482e45e   Dan Carpenter   misc/isl29020: si...
80
  	int ret_val;
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
81
  	unsigned long val;
f7b41276b   Jingoo Han   misc: replace str...
82
83
84
  	ret_val = kstrtoul(buf, 10, &val);
  	if (ret_val)
  		return ret_val;
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
85
86
87
88
89
90
91
92
93
94
95
96
97
98
  	if (val < 1 || val > 64000)
  		return -EINVAL;
  
  	/* Pick the smallest sensor range that will meet our requirements */
  	if (val <= 1000)
  		val = 1;
  	else if (val <= 4000)
  		val = 2;
  	else if (val <= 16000)
  		val = 3;
  	else
  		val = 4;
  
  	ret_val = i2c_smbus_read_byte_data(client, 0x00);
90482e45e   Dan Carpenter   misc/isl29020: si...
99
100
  	if (ret_val < 0)
  		return ret_val;
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
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
  
  	ret_val &= 0xFC; /*reset the bit before setting them */
  	ret_val |= val - 1;
  	ret_val = i2c_smbus_write_byte_data(client, 0x00, ret_val);
  
  	if (ret_val < 0)
  		return ret_val;
  	return count;
  }
  
  static void als_set_power_state(struct i2c_client *client, int enable)
  {
  	int ret_val;
  
  	ret_val = i2c_smbus_read_byte_data(client, 0x00);
  	if (ret_val < 0)
  		return;
  
  	if (enable)
  		ret_val |= 0x80;
  	else
  		ret_val &= 0x7F;
  
  	i2c_smbus_write_byte_data(client, 0x00, ret_val);
  }
  
  static DEVICE_ATTR(lux0_sensor_range, S_IRUGO | S_IWUSR,
  	als_sensing_range_show, als_sensing_range_store);
  static DEVICE_ATTR(lux0_input, S_IRUGO, als_lux_input_data_show, NULL);
  
  static struct attribute *mid_att_als[] = {
  	&dev_attr_lux0_sensor_range.attr,
  	&dev_attr_lux0_input.attr,
  	NULL
  };
64e6d2c18   Arvind Yadav   misc: isl29020: c...
136
  static const struct attribute_group m_als_gr = {
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
137
138
139
140
141
142
143
144
145
146
147
148
149
  	.name = "isl29020",
  	.attrs = mid_att_als
  };
  
  static int als_set_default_config(struct i2c_client *client)
  {
  	int retval;
  
  	retval = i2c_smbus_write_byte_data(client, 0x00, 0xc0);
  	if (retval < 0) {
  		dev_err(&client->dev, "default write failed.");
  		return retval;
  	}
2a5ac6f7a   Jesper Juhl   isl29020: Remove ...
150
  	return 0;
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
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
  }
  
  static int  isl29020_probe(struct i2c_client *client,
  					const struct i2c_device_id *id)
  {
  	int res;
  
  	res = als_set_default_config(client);
  	if (res <  0)
  		return res;
  
  	res = sysfs_create_group(&client->dev.kobj, &m_als_gr);
  	if (res) {
  		dev_err(&client->dev, "isl29020: device create file failed
  ");
  		return res;
  	}
  	dev_info(&client->dev, "%s isl29020: ALS chip found
  ", client->name);
  	als_set_power_state(client, 0);
  	pm_runtime_enable(&client->dev);
  	return res;
  }
  
  static int isl29020_remove(struct i2c_client *client)
  {
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
177
  	sysfs_remove_group(&client->dev.kobj, &m_als_gr);
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
178
179
  	return 0;
  }
07e4049ae   Arvind Yadav   misc: isl29020: c...
180
  static const struct i2c_device_id isl29020_id[] = {
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
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
  	{ "isl29020", 0 },
  	{ }
  };
  
  MODULE_DEVICE_TABLE(i2c, isl29020_id);
  
  #ifdef CONFIG_PM
  
  static int isl29020_runtime_suspend(struct device *dev)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	als_set_power_state(client, 0);
  	return 0;
  }
  
  static int isl29020_runtime_resume(struct device *dev)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	als_set_power_state(client, 1);
  	return 0;
  }
  
  static const struct dev_pm_ops isl29020_pm_ops = {
  	.runtime_suspend = isl29020_runtime_suspend,
  	.runtime_resume = isl29020_runtime_resume,
  };
  
  #define ISL29020_PM_OPS (&isl29020_pm_ops)
  #else	/* CONFIG_PM */
  #define ISL29020_PM_OPS NULL
  #endif	/* CONFIG_PM */
  
  static struct i2c_driver isl29020_driver = {
  	.driver = {
  		.name = "isl29020",
  		.pm = ISL29020_PM_OPS,
  	},
  	.probe = isl29020_probe,
  	.remove = isl29020_remove,
  	.id_table = isl29020_id,
  };
a64fe2ed7   Axel Lin   MISC: convert dri...
222
  module_i2c_driver(isl29020_driver);
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
223

b38eeaae2   Axel Lin   drivers/misc/isl2...
224
  MODULE_AUTHOR("Kalhan Trisal <kalhan.trisal@intel.com>");
2e85c4ddd   Kalhan Trisal   drivers/misc/isl2...
225
226
  MODULE_DESCRIPTION("Intersil isl29020 ALS Driver");
  MODULE_LICENSE("GPL v2");