2000-06-14 11:01:42 -04:00
|
|
|
/*
|
|
|
|
* libraw1394 - library for raw access to the 1394 bus with the Linux subsystem.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999,2000 Andreas Bombe
|
|
|
|
*
|
|
|
|
* This library is licensed under the GNU Lesser General Public License (LGPL),
|
|
|
|
* version 2.1 or later. See the file COPYING.LIB in the distribution for
|
|
|
|
* details.
|
|
|
|
*/
|
1999-12-02 18:07:38 -05:00
|
|
|
|
2000-05-28 17:00:56 -04:00
|
|
|
#include <config.h>
|
1999-12-02 18:07:38 -05:00
|
|
|
#include <unistd.h>
|
2001-02-27 18:44:08 -05:00
|
|
|
#include <byteswap.h>
|
1999-12-02 18:07:38 -05:00
|
|
|
|
|
|
|
#include "raw1394.h"
|
|
|
|
#include "kernel-raw1394.h"
|
|
|
|
#include "raw1394_private.h"
|
|
|
|
|
|
|
|
|
|
|
|
int raw1394_loop_iterate(struct raw1394_handle *handle)
|
|
|
|
{
|
|
|
|
struct raw1394_request *req = &handle->req;
|
2000-02-04 18:20:17 -05:00
|
|
|
int retval = 0, channel;
|
1999-12-02 18:07:38 -05:00
|
|
|
|
|
|
|
if (read(handle->fd, req, sizeof(*req)) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (req->type) {
|
|
|
|
case RAW1394_REQ_BUS_RESET:
|
2000-08-07 20:29:08 -04:00
|
|
|
if (handle->protocol_version == 3) {
|
|
|
|
handle->num_of_nodes = req->misc & 0xffff;
|
|
|
|
handle->local_id = req->misc >> 16;
|
|
|
|
} else {
|
|
|
|
handle->num_of_nodes = req->misc & 0xff;
|
|
|
|
handle->irm_id = ((req->misc >> 8) & 0xff) | 0xffc0;
|
|
|
|
handle->local_id = req->misc >> 16;
|
|
|
|
}
|
1999-12-02 18:07:38 -05:00
|
|
|
|
|
|
|
if (handle->bus_reset_handler) {
|
2001-05-13 21:05:58 -04:00
|
|
|
retval = handle->bus_reset_handler(handle,
|
|
|
|
req->generation);
|
1999-12-02 18:07:38 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RAW1394_REQ_ISO_RECEIVE:
|
2000-02-04 18:20:17 -05:00
|
|
|
channel = (handle->buffer[0] >> 8) & 0x3f;
|
2001-01-18 20:11:48 -05:00
|
|
|
#ifndef WORDS_BIGENDIAN
|
2001-02-27 18:44:08 -05:00
|
|
|
handle->buffer[0] = bswap_32(handle->buffer[0]);
|
2001-01-18 20:11:48 -05:00
|
|
|
#endif
|
2000-02-04 18:20:17 -05:00
|
|
|
|
|
|
|
if (handle->iso_handler[channel]) {
|
|
|
|
retval = handle->iso_handler[channel](handle, channel,
|
|
|
|
req->length,
|
|
|
|
handle->buffer);
|
1999-12-02 18:07:38 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2000-03-15 22:40:52 -05:00
|
|
|
case RAW1394_REQ_FCP_REQUEST:
|
|
|
|
if (handle->fcp_handler) {
|
|
|
|
retval = handle->fcp_handler(handle, req->misc & 0xffff,
|
|
|
|
req->misc >> 16,
|
|
|
|
req->length,
|
|
|
|
(char *)handle->buffer);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1999-12-02 18:07:38 -05:00
|
|
|
default:
|
|
|
|
if (handle->tag_handler) {
|
|
|
|
retval = handle->tag_handler(handle, req->tag,
|
|
|
|
req->error);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bus_reset_handler_t raw1394_set_bus_reset_handler(struct raw1394_handle *handle,
|
|
|
|
bus_reset_handler_t new)
|
|
|
|
{
|
|
|
|
bus_reset_handler_t old;
|
|
|
|
|
|
|
|
old = handle->bus_reset_handler;
|
|
|
|
handle->bus_reset_handler = new;
|
|
|
|
|
|
|
|
return old;
|
|
|
|
}
|
|
|
|
|
|
|
|
tag_handler_t raw1394_set_tag_handler(struct raw1394_handle *handle,
|
|
|
|
tag_handler_t new)
|
|
|
|
{
|
|
|
|
tag_handler_t old;
|
|
|
|
|
|
|
|
old = handle->tag_handler;
|
|
|
|
handle->tag_handler = new;
|
|
|
|
|
|
|
|
return old;
|
|
|
|
}
|
|
|
|
|
|
|
|
iso_handler_t raw1394_set_iso_handler(struct raw1394_handle *handle,
|
2000-02-04 18:20:17 -05:00
|
|
|
unsigned int channel, iso_handler_t new)
|
1999-12-02 18:07:38 -05:00
|
|
|
{
|
2000-02-04 18:20:17 -05:00
|
|
|
if (channel >= 64) {
|
|
|
|
return (iso_handler_t)-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new == NULL) {
|
|
|
|
iso_handler_t old = handle->iso_handler[channel];
|
|
|
|
handle->iso_handler[channel] = NULL;
|
|
|
|
return old;
|
|
|
|
}
|
1999-12-02 18:07:38 -05:00
|
|
|
|
2000-02-04 18:20:17 -05:00
|
|
|
if (handle->iso_handler[channel] != NULL) {
|
|
|
|
return (iso_handler_t)-1;
|
|
|
|
}
|
1999-12-02 18:07:38 -05:00
|
|
|
|
2000-02-04 18:20:17 -05:00
|
|
|
handle->iso_handler[channel] = new;
|
|
|
|
return NULL;
|
1999-12-02 18:07:38 -05:00
|
|
|
}
|
2000-03-15 22:40:52 -05:00
|
|
|
|
|
|
|
fcp_handler_t raw1394_set_fcp_handler(struct raw1394_handle *handle,
|
|
|
|
fcp_handler_t new)
|
|
|
|
{
|
|
|
|
fcp_handler_t old;
|
|
|
|
|
|
|
|
old = handle->fcp_handler;
|
|
|
|
handle->fcp_handler = new;
|
|
|
|
|
|
|
|
return old;
|
|
|
|
}
|