2011-02-11 13:09:10 +00:00
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/device.h>
|
|
|
|
#include <linux/workqueue.h>
|
|
|
|
#include <linux/kfifo.h>
|
|
|
|
#include <linux/mutex.h>
|
2012-04-25 14:54:58 +00:00
|
|
|
#include <linux/iio/kfifo_buf.h>
|
2012-06-30 12:52:00 +00:00
|
|
|
#include <linux/sched.h>
|
2013-09-15 15:31:00 +00:00
|
|
|
#include <linux/poll.h>
|
2011-02-11 13:09:10 +00:00
|
|
|
|
2011-08-30 11:32:43 +00:00
|
|
|
struct iio_kfifo {
|
2011-09-21 10:15:57 +00:00
|
|
|
struct iio_buffer buffer;
|
2011-08-30 11:32:43 +00:00
|
|
|
struct kfifo kf;
|
2013-10-15 08:30:00 +00:00
|
|
|
struct mutex user_lock;
|
2011-08-30 11:32:43 +00:00
|
|
|
int update_needed;
|
|
|
|
};
|
|
|
|
|
2011-09-21 10:15:57 +00:00
|
|
|
#define iio_to_kfifo(r) container_of(r, struct iio_kfifo, buffer)
|
2011-05-18 13:42:24 +00:00
|
|
|
|
2011-02-11 13:09:10 +00:00
|
|
|
static inline int __iio_allocate_kfifo(struct iio_kfifo *buf,
|
|
|
|
int bytes_per_datum, int length)
|
|
|
|
{
|
|
|
|
if ((length == 0) || (bytes_per_datum == 0))
|
|
|
|
return -EINVAL;
|
|
|
|
|
2012-06-30 12:52:00 +00:00
|
|
|
return __kfifo_alloc((struct __kfifo *)&buf->kf, length,
|
|
|
|
bytes_per_datum, GFP_KERNEL);
|
2011-02-11 13:09:10 +00:00
|
|
|
}
|
|
|
|
|
2011-09-21 10:15:57 +00:00
|
|
|
static int iio_request_update_kfifo(struct iio_buffer *r)
|
2011-02-11 13:09:10 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
struct iio_kfifo *buf = iio_to_kfifo(r);
|
|
|
|
|
2013-10-15 08:30:00 +00:00
|
|
|
mutex_lock(&buf->user_lock);
|
2013-10-15 08:30:00 +00:00
|
|
|
if (buf->update_needed) {
|
|
|
|
kfifo_free(&buf->kf);
|
|
|
|
ret = __iio_allocate_kfifo(buf, buf->buffer.bytes_per_datum,
|
2011-09-21 10:15:57 +00:00
|
|
|
buf->buffer.length);
|
2013-10-15 08:30:00 +00:00
|
|
|
buf->update_needed = false;
|
2013-10-15 08:30:00 +00:00
|
|
|
} else {
|
|
|
|
kfifo_reset_out(&buf->kf);
|
|
|
|
}
|
2013-10-15 08:30:00 +00:00
|
|
|
mutex_unlock(&buf->user_lock);
|
2013-10-15 08:30:00 +00:00
|
|
|
|
2011-02-11 13:09:10 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-09-21 10:15:57 +00:00
|
|
|
static int iio_get_length_kfifo(struct iio_buffer *r)
|
2011-02-11 13:09:10 +00:00
|
|
|
{
|
|
|
|
return r->length;
|
|
|
|
}
|
|
|
|
|
2011-09-21 10:15:57 +00:00
|
|
|
static IIO_BUFFER_ENABLE_ATTR;
|
|
|
|
static IIO_BUFFER_LENGTH_ATTR;
|
2011-02-11 13:09:10 +00:00
|
|
|
|
|
|
|
static struct attribute *iio_kfifo_attributes[] = {
|
|
|
|
&dev_attr_length.attr,
|
|
|
|
&dev_attr_enable.attr,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct attribute_group iio_kfifo_attribute_group = {
|
|
|
|
.attrs = iio_kfifo_attributes,
|
2011-08-30 11:32:47 +00:00
|
|
|
.name = "buffer",
|
2011-02-11 13:09:10 +00:00
|
|
|
};
|
|
|
|
|
2011-09-21 10:15:57 +00:00
|
|
|
static int iio_get_bytes_per_datum_kfifo(struct iio_buffer *r)
|
2011-02-11 13:09:10 +00:00
|
|
|
{
|
|
|
|
return r->bytes_per_datum;
|
|
|
|
}
|
|
|
|
|
2011-12-19 14:23:48 +00:00
|
|
|
static int iio_mark_update_needed_kfifo(struct iio_buffer *r)
|
2011-02-11 13:09:10 +00:00
|
|
|
{
|
2011-12-19 14:23:48 +00:00
|
|
|
struct iio_kfifo *kf = iio_to_kfifo(r);
|
|
|
|
kf->update_needed = true;
|
2011-02-11 13:09:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-12-19 14:23:48 +00:00
|
|
|
static int iio_set_bytes_per_datum_kfifo(struct iio_buffer *r, size_t bpd)
|
2011-02-11 13:09:10 +00:00
|
|
|
{
|
2011-12-19 14:23:48 +00:00
|
|
|
if (r->bytes_per_datum != bpd) {
|
|
|
|
r->bytes_per_datum = bpd;
|
|
|
|
iio_mark_update_needed_kfifo(r);
|
|
|
|
}
|
2011-02-11 13:09:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-21 10:15:57 +00:00
|
|
|
static int iio_set_length_kfifo(struct iio_buffer *r, int length)
|
2011-02-11 13:09:10 +00:00
|
|
|
{
|
2012-06-30 12:52:00 +00:00
|
|
|
/* Avoid an invalid state */
|
|
|
|
if (length < 2)
|
|
|
|
length = 2;
|
2011-02-11 13:09:10 +00:00
|
|
|
if (r->length != length) {
|
|
|
|
r->length = length;
|
2011-12-19 14:23:48 +00:00
|
|
|
iio_mark_update_needed_kfifo(r);
|
2011-02-11 13:09:10 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-21 10:15:57 +00:00
|
|
|
static int iio_store_to_kfifo(struct iio_buffer *r,
|
2013-09-15 16:50:00 +00:00
|
|
|
const void *data)
|
2011-02-11 13:09:10 +00:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct iio_kfifo *kf = iio_to_kfifo(r);
|
2012-06-30 12:52:00 +00:00
|
|
|
ret = kfifo_in(&kf->kf, data, 1);
|
|
|
|
if (ret != 1)
|
2011-02-11 13:09:10 +00:00
|
|
|
return -EBUSY;
|
2013-11-25 14:56:00 +00:00
|
|
|
|
2013-09-15 15:31:00 +00:00
|
|
|
wake_up_interruptible_poll(&r->pollq, POLLIN | POLLRDNORM);
|
2012-06-30 12:52:00 +00:00
|
|
|
|
2011-02-11 13:09:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-09-21 10:15:57 +00:00
|
|
|
static int iio_read_first_n_kfifo(struct iio_buffer *r,
|
2011-05-18 13:41:02 +00:00
|
|
|
size_t n, char __user *buf)
|
2011-02-11 13:09:10 +00:00
|
|
|
{
|
|
|
|
int ret, copied;
|
|
|
|
struct iio_kfifo *kf = iio_to_kfifo(r);
|
|
|
|
|
2013-10-15 08:30:00 +00:00
|
|
|
if (mutex_lock_interruptible(&kf->user_lock))
|
|
|
|
return -ERESTARTSYS;
|
2011-12-12 08:33:14 +00:00
|
|
|
|
2013-10-15 08:30:00 +00:00
|
|
|
if (!kfifo_initialized(&kf->kf) || n < kfifo_esize(&kf->kf))
|
|
|
|
ret = -EINVAL;
|
|
|
|
else
|
|
|
|
ret = kfifo_to_user(&kf->kf, buf, n, &copied);
|
|
|
|
mutex_unlock(&kf->user_lock);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
2011-02-11 13:09:10 +00:00
|
|
|
return copied;
|
|
|
|
}
|
2011-05-18 13:42:24 +00:00
|
|
|
|
2013-11-25 14:56:00 +00:00
|
|
|
static bool iio_kfifo_buf_data_available(struct iio_buffer *r)
|
|
|
|
{
|
|
|
|
struct iio_kfifo *kf = iio_to_kfifo(r);
|
|
|
|
bool empty;
|
|
|
|
|
|
|
|
mutex_lock(&kf->user_lock);
|
|
|
|
empty = kfifo_is_empty(&kf->kf);
|
|
|
|
mutex_unlock(&kf->user_lock);
|
|
|
|
|
|
|
|
return !empty;
|
|
|
|
}
|
|
|
|
|
2013-10-04 11:06:00 +00:00
|
|
|
static void iio_kfifo_buffer_release(struct iio_buffer *buffer)
|
|
|
|
{
|
2013-10-15 08:30:00 +00:00
|
|
|
struct iio_kfifo *kf = iio_to_kfifo(buffer);
|
|
|
|
|
2013-10-15 08:30:00 +00:00
|
|
|
mutex_destroy(&kf->user_lock);
|
2013-10-15 08:30:00 +00:00
|
|
|
kfifo_free(&kf->kf);
|
|
|
|
kfree(kf);
|
2013-10-04 11:06:00 +00:00
|
|
|
}
|
|
|
|
|
2012-01-03 10:02:51 +00:00
|
|
|
static const struct iio_buffer_access_funcs kfifo_access_funcs = {
|
2011-05-18 13:42:24 +00:00
|
|
|
.store_to = &iio_store_to_kfifo,
|
|
|
|
.read_first_n = &iio_read_first_n_kfifo,
|
2013-11-25 14:56:00 +00:00
|
|
|
.data_available = iio_kfifo_buf_data_available,
|
2011-05-18 13:42:24 +00:00
|
|
|
.request_update = &iio_request_update_kfifo,
|
|
|
|
.get_bytes_per_datum = &iio_get_bytes_per_datum_kfifo,
|
|
|
|
.set_bytes_per_datum = &iio_set_bytes_per_datum_kfifo,
|
|
|
|
.get_length = &iio_get_length_kfifo,
|
|
|
|
.set_length = &iio_set_length_kfifo,
|
2013-10-04 11:06:00 +00:00
|
|
|
.release = &iio_kfifo_buffer_release,
|
2011-05-18 13:42:24 +00:00
|
|
|
};
|
2012-01-03 10:02:51 +00:00
|
|
|
|
|
|
|
struct iio_buffer *iio_kfifo_allocate(struct iio_dev *indio_dev)
|
|
|
|
{
|
|
|
|
struct iio_kfifo *kf;
|
|
|
|
|
|
|
|
kf = kzalloc(sizeof *kf, GFP_KERNEL);
|
|
|
|
if (!kf)
|
|
|
|
return NULL;
|
|
|
|
kf->update_needed = true;
|
|
|
|
iio_buffer_init(&kf->buffer);
|
|
|
|
kf->buffer.attrs = &iio_kfifo_attribute_group;
|
|
|
|
kf->buffer.access = &kfifo_access_funcs;
|
2012-06-30 12:52:00 +00:00
|
|
|
kf->buffer.length = 2;
|
2013-10-15 08:30:00 +00:00
|
|
|
mutex_init(&kf->user_lock);
|
2012-01-03 10:02:51 +00:00
|
|
|
return &kf->buffer;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(iio_kfifo_allocate);
|
|
|
|
|
|
|
|
void iio_kfifo_free(struct iio_buffer *r)
|
|
|
|
{
|
2013-10-04 11:06:00 +00:00
|
|
|
iio_buffer_put(r);
|
2012-01-03 10:02:51 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(iio_kfifo_free);
|
2011-05-18 13:42:24 +00:00
|
|
|
|
2011-02-11 13:09:10 +00:00
|
|
|
MODULE_LICENSE("GPL");
|