Staging: VME: Introduce IOCTL to generate VME interrupts.
authorVincent Bossier <vincent.bossier@gmail.com>
Thu, 9 Jun 2011 13:49:30 +0000 (15:49 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 28 Jun 2011 21:13:05 +0000 (14:13 -0700)
The vme_irq_set is oblviously not needed (a remnant from old tests) and the
IOCTL exchange types have been updated following Greg's comments.

Allow the IOCTL call to generate VME interrupts when called on the vme/ctl
device with the right arguments.

Signed-off-by: Vincent Bossier <vincent.bossier@gmail.com>
Acked-by: Martyn Welch <martyn.welch@ge.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/vme/devices/vme_user.c
drivers/staging/vme/devices/vme_user.h

index db128790e578c12c394a01e1898636a14216e145..91d2cc7bb4c33fd41db43fc4553bde4d99b85853 100644 (file)
@@ -461,6 +461,7 @@ static int vme_user_ioctl(struct inode *inode, struct file *file,
 {
        struct vme_master master;
        struct vme_slave slave;
+       struct vme_irq_id irq_req;
        unsigned long copied;
        unsigned int minor = MINOR(inode->i_rdev);
        int retval;
@@ -471,6 +472,21 @@ static int vme_user_ioctl(struct inode *inode, struct file *file,
 
        switch (type[minor]) {
        case CONTROL_MINOR:
+               switch (cmd) {
+               case VME_IRQ_GEN:
+                       copied = copy_from_user(&irq_req, (char *)arg,
+                                               sizeof(struct vme_irq_id));
+                       if (copied != 0) {
+                               printk(KERN_WARNING "Partial copy from userspace\n");
+                               return -EFAULT;
+                       }
+
+                       retval = vme_irq_generate(vme_user_bridge,
+                                                 irq_req.level,
+                                                 irq_req.statid);
+
+                       return retval;
+               }
                break;
        case MASTER_MINOR:
                switch (cmd) {
index ede77d7e766b54bc02a9bc0a84344b46019f3556..24bf4e54013de0bbbe9d3c36076caa6f3e8ff595 100644 (file)
@@ -43,10 +43,16 @@ struct vme_slave {
 #endif
 };
 
+struct vme_irq_id {
+       __u8 level;
+       __u8 statid;
+};
+
 #define VME_GET_SLAVE _IOR(VME_IOC_MAGIC, 1, struct vme_slave)
 #define VME_SET_SLAVE _IOW(VME_IOC_MAGIC, 2, struct vme_slave)
 #define VME_GET_MASTER _IOR(VME_IOC_MAGIC, 3, struct vme_master)
 #define VME_SET_MASTER _IOW(VME_IOC_MAGIC, 4, struct vme_master)
+#define VME_IRQ_GEN _IOW(VME_IOC_MAGIC, 5, struct vme_irq_id)
 
 #endif /* _VME_USER_H_ */