freebsd_amp_hwpstate/usr.sbin/fwcontrol/fwcontrol.8

147 lines
3.8 KiB
Groff
Raw Normal View History

2002-12-30 10:13:16 +00:00
.\" Copyright (c) 2002 Hidetoshi Shimokawa
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
.\" DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
.\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.\" $FreeBSD$
.\"
.Dd December 30, 2002
.Dt FWCONTROL 8
.Os
.Sh NAME
.Nm fwcontrol
.Nd FireWire control utility
.Sh SYNOPSIS
.Nm
.Op Fl u Ar bus_num
2003-09-25 09:33:16 +00:00
.Op Fl prt
2002-12-30 10:13:16 +00:00
.Op Fl c Ar node
.Op Fl d Ar node
2003-05-01 06:33:13 +00:00
.Op Fl o Ar node
.Op Fl s Ar node
2002-12-30 10:13:16 +00:00
.Op Fl l Ar file
.Op Fl g Ar gap_count
.Op Fl b Ar pri_req
2003-01-23 16:10:12 +00:00
.Op Fl R Ar filename
.Op Fl S Ar filename
2002-12-30 10:13:16 +00:00
.Sh DESCRIPTION
The
.Nm
utility is designed to provide a way for users to access and control the
.Fx
FireWire subsystem.
2003-02-09 07:26:48 +00:00
Without options,
.Nm
2003-06-02 11:19:24 +00:00
will output a list of devices that are/were connected to the bus.
2002-12-30 10:13:16 +00:00
.Pp
2003-06-02 11:19:24 +00:00
The following options are available:
.Bl -tag -width indent
.It Fl u Ar bus_num
Specify the FireWire bus number to be operated.
2002-12-30 10:13:16 +00:00
.It Fl r
Initiate bus reset.
.It Fl t
Show the topology map.
2003-09-25 09:33:16 +00:00
.It Fl p
Dump phy registers.
2002-12-30 10:13:16 +00:00
.It Fl c Ar node
Show the configuration ROM on the node.
.It Fl d Ar node
Hex dump of the configuration ROM.
2003-05-01 06:33:13 +00:00
.It Fl o Ar node
2003-05-22 11:54:53 +00:00
Send a link-on PHY packet to the node.
2003-05-01 06:33:13 +00:00
.It Fl s Ar node
2003-06-02 11:19:24 +00:00
Write to
.Dv RESET_START
register on the node.
2002-12-30 10:13:16 +00:00
.It Fl l Ar file
Load hex dump file of the configuration ROM and parse it.
.It Fl g Ar gap_count
2003-06-02 11:19:24 +00:00
Broadcast
.Ar gap_count
by phy_config packet.
2002-12-30 10:13:16 +00:00
.It Fl i Ar pri_req
2003-06-02 11:19:24 +00:00
Set
.Dv PRIORITY_BUDGET
register on all supported nodes.
2003-01-23 16:10:12 +00:00
.It Fl R Ar filename
2003-06-02 11:19:24 +00:00
Receive DV stream and dump it to a file.
Use Ctrl-C to stop the receiving.
2003-01-23 16:10:12 +00:00
Some DV cameras seem not to send the stream if a bus manager exits.
2003-06-02 11:19:24 +00:00
If you cannot get the stream, try the following commands:
2003-01-23 16:10:12 +00:00
.Bd -literal -offset indent
2003-06-02 11:19:24 +00:00
sysctl hw.firewire.try_bmr=0
fwcontrol -r
2003-01-23 16:10:12 +00:00
.Ed
.Pp
The resulting file contains raw DV data excluding isochronus header
2003-06-02 11:19:24 +00:00
and CIP header.
It can be handled by
.Nm libdv
in the
.Fx
Ports Collection.
2003-01-23 16:10:12 +00:00
.It Fl S Ar filename
Send a DV file as isochronus stream.
2002-12-30 10:13:16 +00:00
.El
2003-01-23 16:10:12 +00:00
.Sh EXAMPLES
Each DV frame has fixed size and it is easy to edit those frame order.
2003-06-02 11:19:24 +00:00
.Pp
.Dl "fwcontrol -R original.dv"
2003-01-23 16:10:12 +00:00
.Pp
Receive stream.
2003-06-02 11:19:24 +00:00
.Pp
.Dl "dd if=original.dv of=first.dv bs=120000 count=30"
2003-01-23 16:10:12 +00:00
.Pp
Get first 30 frames(NTSC).
2003-06-02 11:19:24 +00:00
.Pp
.Dl "dd if=original.dv of=second.dv bs=120000 skip=30 count=30"
2003-01-23 16:10:12 +00:00
.Pp
Get second 30 frames(NTSC).
.Pp
2003-06-02 11:19:24 +00:00
.Dl "cat second.dv first.dv | fwcontrol -S /dev/stdin"
.Pp
2003-06-02 11:19:24 +00:00
Swap first and second 30 frames and send them to DV recorder.
.Pp
2003-06-02 11:19:24 +00:00
For PAL, replace
.Dq Li bs=120000
with
.Dq Li bs=144000 .
2002-12-30 10:13:16 +00:00
.Sh FILES
2003-06-02 11:19:24 +00:00
.Bl -tag
.It Pa /dev/fw0.0
2002-12-30 10:13:16 +00:00
.El
.Sh SEE ALSO
.Xr firewire 4 ,
2003-06-02 11:19:24 +00:00
.Xr fwe 4 ,
2002-12-30 10:13:16 +00:00
.Xr fwohci 4 ,
2003-06-02 11:19:24 +00:00
.Xr sbp 4
2002-12-30 10:13:16 +00:00
.Sh HISTORY
The
.Nm
utility first appeared in
.Fx 5.0 .
.Sh AUTHORS
.An Hidetoshi Shimokawa Aq simokawa@FreeBSD.org
.Sh BUGS
This utility is still under development and provided for debug purpose.