summaryrefslogtreecommitdiffstats
path: root/drivers/staging/iio/light/tsl2561.c
blob: ea8a5efc19bca41120bd4e5e4d2789b9afb11c36 (plain)
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
/*
 *  tsl2561.c - Linux kernel modules for light to digital convertor
 *
 *  Copyright (C) 2008-2009 Jonathan Cameron <jic23@cam.ac.uk>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *  Some portions based upon the tsl2550 driver.
 *
 *  This driver could probably be adapted easily to talk to the tsl2560 (smbus)
 *
 *  Needs some work to support the events this can generate.
 *  Todo: Implement interrupt handling.  Currently a hardware bug means
 *  this isn't available on my test board.
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/i2c.h>
#include "../iio.h"
#include "../sysfs.h"
#include "light.h"

#define TSL2561_CONTROL_REGISTER 0x00
#define TSL2561_TIMING_REGISTER 0x01
#define TSL2561_THRESHLOW_LOW_REGISTER 0x02
#define TSL2561_THRESHLOW_HIGH_REGISTER 0x03
#define TSL2561_THRESHHIGH_LOW_REGISTER 0x04
#define TSL2561_THRESHHIGH_HIGH_REGISTER 0x05
#define TSL2561_INT_CONTROL_REGISTER 0x06

#define TSL2561_INT_REG_INT_OFF 0x00
#define TSL2561_INT_REG_INT_LEVEL 0x08
#define TSL2561_INT_REG_INT_SMBUS 0x10
#define TSL2561_INT_REG_INT_TEST 0x18

#define TSL2561_ID_REGISTER 0x0A

#define TSL2561_DATA_0_LOW 0x0C
#define TSL2561_DATA_1_LOW 0x0E

/* Control Register Values */
#define TSL2561_CONT_REG_PWR_ON 0x03
#define TSL2561_CONT_REG_PWR_OFF 0x00

/**
 * struct tsl2561_state - device specific state
 * @indio_dev:		the industrialio I/O info structure
 * @client:		i2c client
 * @command_buf:	single command buffer used for all operations
 * @command_buf_lock:	ensure unique access to command_buf
 */
struct tsl2561_state {
	struct iio_dev		*indio_dev;
	struct i2c_client	*client;
	struct tsl2561_command	*command_buf;
	struct mutex		command_buf_lock;
};

/**
 * struct tsl2561_command - command byte for smbus
 * @address:	register address
 * @block:	is this a block r/w
 * @word:	is this a word r/w
 * @clear:	set to 1 to clear pending interrupt
 * @cmd:	select the command register - always 1.
 */
struct tsl2561_command {
	unsigned int address:4;
	unsigned int block:1;
	unsigned int word:1;
	unsigned int clear:1;
	unsigned int cmd:1;
};

static inline void tsl2561_init_command_buf(struct tsl2561_command *buf)
{
	buf->address = 0;
	buf->block = 0;
	buf->word = 0;
	buf->clear = 0;
	buf->cmd = 1;
}

static ssize_t tsl2561_read_val(struct device *dev,
				struct device_attribute *attr,
				char *buf)
{
	int ret = 0, data;
	ssize_t len = 0;
	struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
	struct iio_dev *indio_dev = dev_get_drvdata(dev);
	struct tsl2561_state *st = indio_dev->dev_data;

	mutex_lock(&st->command_buf_lock);
	st->command_buf->cmd = 1;
	st->command_buf->word = 1;
	st->command_buf->address = this_attr->address;

	data = i2c_smbus_read_word_data(st->client, *(char *)(st->command_buf));
	if (data < 0) {
		ret = data;
		goto error_ret;
	}
	len = sprintf(buf, "%u\n", data);

error_ret:
	mutex_unlock(&st->command_buf_lock);

	return ret ? ret : len;
}

static IIO_DEV_ATTR_LIGHT_INFRARED(0, tsl2561_read_val, TSL2561_DATA_0_LOW);
static IIO_DEV_ATTR_LIGHT_BROAD(0, tsl2561_read_val, TSL2561_DATA_1_LOW);

static struct attribute *tsl2561_attributes[] = {
	&iio_dev_attr_light_infrared0.dev_attr.attr,
	&iio_dev_attr_light_broadspectrum0.dev_attr.attr,
	NULL,
};

static const struct attribute_group tsl2561_attribute_group = {
	.attrs = tsl2561_attributes,
};

static int tsl2561_initialize(struct tsl2561_state *st)
{
	int err;

	mutex_lock(&st->command_buf_lock);
	st->command_buf->word = 0;
	st->command_buf->block = 0;
	st->command_buf->address = TSL2561_CONTROL_REGISTER;
	err = i2c_smbus_write_byte_data(st->client, *(char *)(st->command_buf),
					TSL2561_CONT_REG_PWR_ON);
	if (err)
		goto error_ret;

	st->command_buf->address = TSL2561_INT_CONTROL_REGISTER;
	err = i2c_smbus_write_byte_data(st->client, *(char *)(st->command_buf),
					TSL2561_INT_REG_INT_TEST);

error_ret:
	mutex_unlock(&st->command_buf_lock);

	return err;
}

static int tsl2561_powerdown(struct i2c_client *client)
{
	int err;
	struct tsl2561_command Command = {
		.cmd =  1,
		.clear = 0,
		.word = 0,
		.block = 0,
		.address = TSL2561_CONTROL_REGISTER,
	};

	err = i2c_smbus_write_byte_data(client, *(char *)(&Command),
					TSL2561_CONT_REG_PWR_OFF);
	return (err < 0) ? err : 0;
}
static int __devinit tsl2561_probe(struct i2c_client *client,
				   const struct i2c_device_id *id)
{
	int ret = 0, regdone = 0;
	struct tsl2561_state *st = kzalloc(sizeof(*st), GFP_KERNEL);

	if (st == NULL) {
		ret = -ENOMEM;
		goto error_ret;
	}
	i2c_set_clientdata(client, st);
	st->client = client;
	mutex_init(&st->command_buf_lock);

	st->command_buf = kmalloc(sizeof(*st->command_buf), GFP_KERNEL);
	if (st->command_buf == NULL) {
		ret = -ENOMEM;
		goto error_free_state;
	}
	tsl2561_init_command_buf(st->command_buf);

	st->indio_dev = iio_allocate_device();
	if (st->indio_dev == NULL) {
		ret = -ENOMEM;
		goto error_free_command_buf;
	}
	st->indio_dev->attrs = &tsl2561_attribute_group;
	st->indio_dev->dev.parent = &client->dev;
	st->indio_dev->dev_data = (void *)(st);
	st->indio_dev->driver_module = THIS_MODULE;
	st->indio_dev->modes = INDIO_DIRECT_MODE;
	ret = iio_device_register(st->indio_dev);
	if (ret)
		goto error_free_iiodev;
	regdone = 1;
	/* Intialize the chip */
	ret = tsl2561_initialize(st);
	if (ret)
		goto error_unregister_iiodev;

	return 0;
error_unregister_iiodev:
error_free_iiodev:
	if (regdone)
		iio_device_unregister(st->indio_dev);
	else
		iio_free_device(st->indio_dev);
error_free_command_buf:
	kfree(st->command_buf);
error_free_state:
	kfree(st);
error_ret:
	return ret;

}

static int __devexit tsl2561_remove(struct i2c_client *client)
{
	struct tsl2561_state *st =  i2c_get_clientdata(client);

	iio_device_unregister(st->indio_dev);
	kfree(st);

	return tsl2561_powerdown(client);
}

static unsigned short normal_i2c[] = { 0x29, 0x39, 0x49, I2C_CLIENT_END };

I2C_CLIENT_INSMOD;

static const struct i2c_device_id tsl2561_id[] = {
	{ "tsl2561", 0 },
	{ }
};
MODULE_DEVICE_TABLE(i2c, tsl2561_id);


static struct i2c_driver tsl2561_driver = {
	.driver = {
		.name = "tsl2561",
	},
	.probe = tsl2561_probe,
	.remove = __devexit_p(tsl2561_remove),
	.id_table  = tsl2561_id,
};

static __init int tsl2561_init(void)
{
	return i2c_add_driver(&tsl2561_driver);
}
module_init(tsl2561_init);

static __exit void tsl2561_exit(void)
{
	i2c_del_driver(&tsl2561_driver);
}
module_exit(tsl2561_exit);

MODULE_AUTHOR("Jonathan Cameron <jic23@cam.ac.uk>");
MODULE_DESCRIPTION("TSL2561 light sensor driver");
MODULE_LICENSE("GPL");