Module: xenomai-2.5
Branch: master
Commit: 1d0b89ad0e11f1fb631fdf2534ea81a42a2098f6
URL:    
http://git.xenomai.org/?p=xenomai-2.5.git;a=commit;h=1d0b89ad0e11f1fb631fdf2534ea81a42a2098f6

Author: Alexis Berlemont <alexis.berlem...@gmail.com>
Date:   Wed May 19 00:15:00 2010 +0200

analogy: update a4l_read and a4l_write (broken)

---

 ksrc/drivers/analogy/buffer.c |   50 +++++++++++++---------------------------
 1 files changed, 16 insertions(+), 34 deletions(-)

diff --git a/ksrc/drivers/analogy/buffer.c b/ksrc/drivers/analogy/buffer.c
index bc162d3..9bd9829 100644
--- a/ksrc/drivers/analogy/buffer.c
+++ b/ksrc/drivers/analogy/buffer.c
@@ -773,28 +773,21 @@ a4l_ioctl_bufinfo_out:
 ssize_t a4l_read(a4l_cxt_t * cxt, void *bufdata, size_t nbytes)
 {
        a4l_dev_t *dev = a4l_get_dev(cxt);
-       int idx_subd = dev->transfer.idx_read_subd;
-       a4l_buf_t *buf = dev->transfer.bufs[idx_subd];
+       a4l_buf_t *buf = &cxt->buffer;
        ssize_t count = 0;
 
        /* Basic checkings */
+
        if (!test_bit(A4L_DEV_ATTACHED, &dev->flags)) {
                __a4l_err("a4l_read: unattached device\n");
                return -EINVAL;
        }
 
-       if (!test_bit(A4L_TSF_BUSY, &(dev->transfer.status[idx_subd]))) {
-               __a4l_err("a4l_read: idle subdevice\n");
+       if (!buf->subd || !test_bit(A4L_SUBD_BUSY, &buf->subd->status)) {
+               __a4l_err("a4l_read: idle subdevice on this context\n");
                return -ENOENT;
        }
 
-       /* TODO: to be removed
-          Check the subdevice capabilities */
-       if ((dev->transfer.subds[idx_subd]->flags & A4L_SUBD_CMD) == 0) {       
       
-               __a4l_err("a4l_read: incoherent state\n");
-               return -EINVAL;
-       }
-
        while (count < nbytes) {
 
                /* Check the events */
@@ -825,10 +818,9 @@ ssize_t a4l_read(a4l_cxt_t * cxt, void *bufdata, size_t 
nbytes)
                if (tmp_cnt > 0) {
 
                        /* Performs the munge if need be */
-                       if (dev->transfer.subds[idx_subd]->munge != NULL) {
-                               __munge(dev->transfer.subds[idx_subd],
-                                       dev->transfer.subds[idx_subd]->munge,
-                                       buf, tmp_cnt);
+                       if (buf->subd->munge != NULL) {
+                               __munge(buf->subd, 
+                                       buf->subd->munge, buf, tmp_cnt);
 
                                /* Updates munge count */
                                buf->mng_count += tmp_cnt;
@@ -850,8 +842,7 @@ ssize_t a4l_read(a4l_cxt_t * cxt, void *bufdata, size_t 
nbytes)
 
                        /* If the driver does not work in bulk mode,
                           we must leave this function */
-                       if (!test_bit(A4L_TSF_BULK,
-                                     &(dev->transfer.status[idx_subd])))
+                       if (!test_bit(A4L_BUF_BULK, &buf->flags))
                                goto out_a4l_read;
                }
                /* If the acquisition is not over, we must not
@@ -876,28 +867,21 @@ ssize_t a4l_write(a4l_cxt_t *cxt,
                  const void *bufdata, size_t nbytes)
 {
        a4l_dev_t *dev = a4l_get_dev(cxt);
-       int idx_subd = dev->transfer.idx_write_subd;
-       a4l_buf_t *buf = dev->transfer.bufs[idx_subd];
+       a4l_buf_t *buf = &cxt->buffer;
        ssize_t count = 0;
 
        /* Basic checkings */
+
        if (!test_bit(A4L_DEV_ATTACHED, &dev->flags)) {
                __a4l_err("a4l_write: unattached device\n");
                return -EINVAL;
        }
 
-       if (!test_bit(A4L_TSF_BUSY, &(dev->transfer.status[idx_subd]))) {
-               __a4l_err("a4l_write: idle subdevice\n");
+       if (!buf->subd || !test_bit(A4L_SUBD_BUSY, &buf->subd->status)) {
+               __a4l_err("a4l_read: idle subdevice on this context\n");
                return -ENOENT;
        }
 
-       /* TODO: to be removed
-          Check the subdevice capabilities */
-       if ((dev->transfer.subds[idx_subd]->flags & A4L_SUBD_CMD) == 0) {       
-               __a4l_err("a4l_write: incoherent state\n");
-               return -EINVAL;
-       }
-
        while (count < nbytes) {
 
                /* Check the events */
@@ -928,10 +912,9 @@ ssize_t a4l_write(a4l_cxt_t *cxt,
                        }
 
                        /* Performs the munge if need be */
-                       if (dev->transfer.subds[idx_subd]->munge != NULL) {
-                               __munge(dev->transfer.subds[idx_subd],
-                                       dev->transfer.subds[idx_subd]->munge,
-                                       buf, tmp_cnt);
+                       if (buf->subd->munge != NULL) {
+                               __munge(buf->subd, 
+                                       buf->subd->munge, buf, tmp_cnt);
 
                                /* Updates munge count */
                                buf->mng_count += tmp_cnt;
@@ -945,8 +928,7 @@ ssize_t a4l_write(a4l_cxt_t *cxt,
 
                        /* If the driver does not work in bulk mode,
                           we must leave this function */
-                       if (!test_bit(A4L_TSF_BULK,
-                                     &(dev->transfer.status[idx_subd])))
+                       if (!test_bit(A4L_BUF_BULK, &buf->flags))
                                goto out_a4l_write;
                } else {
                        /* The buffer is full, we have to wait for a slot to 
free */


_______________________________________________
Xenomai-git mailing list
Xenomai-git@gna.org
https://mail.gna.org/listinfo/xenomai-git

Reply via email to