firewire: Implement ioctl to initiate bus reset.
authorKristian Høgsberg <krh@redhat.com>
Wed, 7 Mar 2007 17:12:42 +0000 (12:12 -0500)
committerStefan Richter <stefanr@s5r6.in-berlin.de>
Fri, 9 Mar 2007 21:03:08 +0000 (22:03 +0100)
Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
drivers/firewire/fw-device-cdev.c
drivers/firewire/fw-device-cdev.h

index 9f3c96c7af29d0b144b8e0cccc8b195d27d35fae..79e095ea552d0092b0776dc92b8f852abbe3a304 100644 (file)
@@ -433,6 +433,19 @@ static int ioctl_send_response(struct client *client, void __user *arg)
        return 0;
 }
 
+static int ioctl_initiate_bus_reset(struct client *client, void __user *arg)
+{
+       struct fw_cdev_initiate_bus_reset request;
+       int short_reset;
+
+       if (copy_from_user(&request, arg, sizeof request))
+               return -EFAULT;
+
+       short_reset = (request.type == FW_CDEV_SHORT_RESET);
+
+       return fw_core_initiate_bus_reset(client->device->card, short_reset);
+}
+
 static void
 iso_callback(struct fw_iso_context *context, u32 cycle,
             size_t header_length, void *header, void *data)
@@ -606,6 +619,8 @@ dispatch_ioctl(struct client *client, unsigned int cmd, void __user *arg)
                return ioctl_allocate(client, arg);
        case FW_CDEV_IOC_SEND_RESPONSE:
                return ioctl_send_response(client, arg);
+       case FW_CDEV_IOC_INITIATE_BUS_RESET:
+               return ioctl_initiate_bus_reset(client, arg);
        case FW_CDEV_IOC_CREATE_ISO_CONTEXT:
                return ioctl_create_iso_context(client, arg);
        case FW_CDEV_IOC_QUEUE_ISO:
index 4f94471b80789d0529b5b6f0c77c514c28dd03d7..8a8b390d599609f90e8dc5d53b8dc9c2c277f98a 100644 (file)
@@ -108,10 +108,11 @@ struct fw_cdev_event_iso_interrupt {
 #define FW_CDEV_IOC_SEND_REQUEST       _IO('#', 0x01)
 #define FW_CDEV_IOC_ALLOCATE           _IO('#', 0x02)
 #define FW_CDEV_IOC_SEND_RESPONSE      _IO('#', 0x03)
-#define FW_CDEV_IOC_CREATE_ISO_CONTEXT _IO('#', 0x04)
-#define FW_CDEV_IOC_QUEUE_ISO          _IO('#', 0x05)
-#define FW_CDEV_IOC_START_ISO          _IO('#', 0x06)
-#define FW_CDEV_IOC_STOP_ISO           _IO('#', 0x07)
+#define FW_CDEV_IOC_INITIATE_BUS_RESET _IO('#', 0x04)
+#define FW_CDEV_IOC_CREATE_ISO_CONTEXT _IO('#', 0x05)
+#define FW_CDEV_IOC_QUEUE_ISO          _IO('#', 0x06)
+#define FW_CDEV_IOC_START_ISO          _IO('#', 0x07)
+#define FW_CDEV_IOC_STOP_ISO           _IO('#', 0x08)
 
 struct fw_cdev_get_config_rom {
        __u32 length;
@@ -139,6 +140,13 @@ struct fw_cdev_allocate {
        __u32 length;
 };
 
+#define FW_CDEV_LONG_RESET     0
+#define FW_CDEV_SHORT_RESET    1
+
+struct fw_cdev_initiate_bus_reset {
+       __u32 type;
+};
+
 #define FW_CDEV_ISO_CONTEXT_TRANSMIT   0
 #define FW_CDEV_ISO_CONTEXT_RECEIVE    1
 
This page took 0.026453 seconds and 5 git commands to generate.