u32 request_serial;
struct list_head event_list;
wait_queue_head_t wait;
+ u64 bus_reset_closure;
struct fw_iso_context *iso_context;
struct fw_iso_buffer buffer;
static void
fill_bus_reset_event(struct fw_cdev_event_bus_reset *event,
- struct fw_device *device)
+ struct client *client)
{
- struct fw_card *card = device->card;
+ struct fw_card *card = client->device->card;
+ event->closure = client->bus_reset_closure;
event->type = FW_CDEV_EVENT_BUS_RESET;
- event->node_id = device->node_id;
+ event->node_id = client->device->node_id;
event->local_node_id = card->local_node->node_id;
event->bm_node_id = 0; /* FIXME: We don't track the BM. */
event->irm_node_id = card->irm_node->node_id;
queue_bus_reset_event(struct client *client)
{
struct bus_reset *bus_reset;
- struct fw_device *device = client->device;
bus_reset = kzalloc(sizeof *bus_reset, GFP_ATOMIC);
if (bus_reset == NULL) {
return;
}
- fill_bus_reset_event(&bus_reset->reset, device);
+ fill_bus_reset_event(&bus_reset->reset, client);
queue_event(client, &bus_reset->event,
&bus_reset->reset, sizeof bus_reset->reset, NULL, 0);
}
get_info.rom_length = client->device->config_rom_length * 4;
+ client->bus_reset_closure = get_info.bus_reset_closure;
if (get_info.bus_reset != 0) {
void __user *uptr = u64_to_uptr(get_info.bus_reset);
- fill_bus_reset_event(&bus_reset, client->device);
+ fill_bus_reset_event(&bus_reset, client);
if (copy_to_user(uptr, &bus_reset, sizeof bus_reset))
return -EFAULT;
}
* event. It's a 64-bit type so that it's a fixed size type big
* enough to hold a pointer on all platforms. */
+struct fw_cdev_event_common {
+ __u64 closure;
+ __u32 type;
+};
+
struct fw_cdev_event_bus_reset {
+ __u64 closure;
__u32 type;
__u32 node_id;
__u32 local_node_id;
};
struct fw_cdev_event_response {
+ __u64 closure;
__u32 type;
__u32 rcode;
- __u64 closure;
__u32 length;
__u32 data[0];
};
struct fw_cdev_event_request {
+ __u64 closure;
__u32 type;
__u32 tcode;
__u64 offset;
- __u64 closure;
__u32 serial;
__u32 length;
__u32 data[0];
};
struct fw_cdev_event_iso_interrupt {
+ __u64 closure;
__u32 type;
__u32 cycle;
- __u64 closure;
__u32 header_length; /* Length in bytes of following headers. */
__u32 header[0];
};
+union fw_cdev_event {
+ struct fw_cdev_event_common common;
+ struct fw_cdev_event_bus_reset bus_reset;
+ struct fw_cdev_event_response response;
+ struct fw_cdev_event_request request;
+ struct fw_cdev_event_iso_interrupt iso_interrupt;
+};
+
#define FW_CDEV_IOC_GET_INFO _IO('#', 0x00)
#define FW_CDEV_IOC_SEND_REQUEST _IO('#', 0x01)
#define FW_CDEV_IOC_ALLOCATE _IO('#', 0x02)
__u64 rom;
/* If non-zero, a fw_cdev_event_bus_reset struct will be
- * copied here with the current state of the bus. */
+ * copied here with the current state of the bus. This does
+ * not cause a bus reset to happen. The value of closure in
+ * this and sub-sequent bus reset events is set to
+ * bus_reset_closure. */
__u64 bus_reset;
+ __u64 bus_reset_closure;
/* The index of the card this devices belongs to. */
__u32 card;
};
struct fw_cdev_queue_iso {
- __u32 size;
__u64 packets;
__u64 data;
+ __u32 size;
};
struct fw_cdev_start_iso {