diff options
author | Pieter Palmers <pieterp@joow.be> | 2007-02-03 11:44:39 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-02-17 08:39:33 -0500 |
commit | 3dc5ea9b31a8c83cffa338aba91adbc9bd387002 (patch) | |
tree | 5a9d9682d77fb3a1cfd3dc27654301f69ababf12 /drivers/ieee1394/ieee1394_core.h | |
parent | 91efa462054d44ae52b0c6c8325ed5e899f2cd17 (diff) |
ieee1394: cycle timer read extension for raw1394
This implements the simultaneous read of the isochronous cycle timer and
the system clock (in usecs). This allows to express the exact receive
time of an ISO packet as a system time with microsecond accuracy.
http://bugzilla.kernel.org/show_bug.cgi?id=7773
The counterpart patch for libraw1394 can be found at
http://thread.gmane.org/gmane.linux.kernel.firewire.devel/8934
Patch update (Stefan R.): Disable preemption and local interrupts.
Prevent integer overflow. Add paranoid error checks and kerneldoc to
hpsb_read_cycle_timer. Move it to other ieee1394_core high-level API
functions. Change comments. Adjust whitespace. Rename struct
_raw1394_cycle_timer.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Acked-by: Pieter Palmers <pieterp@joow.be>
Acked-by: Dan Dennedy <dan@dennedy.org>
Diffstat (limited to 'drivers/ieee1394/ieee1394_core.h')
-rw-r--r-- | drivers/ieee1394/ieee1394_core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/ieee1394/ieee1394_core.h b/drivers/ieee1394/ieee1394_core.h index 536ba3f580fd..bd29d8ef5bbd 100644 --- a/drivers/ieee1394/ieee1394_core.h +++ b/drivers/ieee1394/ieee1394_core.h | |||
@@ -127,6 +127,9 @@ int hpsb_send_packet_and_wait(struct hpsb_packet *packet); | |||
127 | * progress, 0 otherwise. */ | 127 | * progress, 0 otherwise. */ |
128 | int hpsb_reset_bus(struct hpsb_host *host, int type); | 128 | int hpsb_reset_bus(struct hpsb_host *host, int type); |
129 | 129 | ||
130 | int hpsb_read_cycle_timer(struct hpsb_host *host, u32 *cycle_timer, | ||
131 | u64 *local_time); | ||
132 | |||
130 | /* | 133 | /* |
131 | * The following functions are exported for host driver module usage. All of | 134 | * The following functions are exported for host driver module usage. All of |
132 | * them are safe to use in interrupt contexts, although some are quite | 135 | * them are safe to use in interrupt contexts, although some are quite |