]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/fwcontrol/fwcontrol.8
This commit was generated by cvs2svn to compensate for changes in r136632,
[FreeBSD/FreeBSD.git] / usr.sbin / fwcontrol / fwcontrol.8
1 .\" Copyright (c) 2002 Hidetoshi Shimokawa
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 .\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 .\" DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
17 .\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 .\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19 .\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21 .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
22 .\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23 .\" POSSIBILITY OF SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd December 30, 2002
28 .Dt FWCONTROL 8
29 .Os
30 .Sh NAME
31 .Nm fwcontrol
32 .Nd FireWire control utility
33 .Sh SYNOPSIS
34 .Nm
35 .Op Fl u Ar bus_num
36 .Op Fl prt
37 .Op Fl c Ar node
38 .Op Fl d Ar node
39 .Op Fl o Ar node
40 .Op Fl s Ar node
41 .Op Fl l Ar file
42 .Op Fl g Ar gap_count
43 .Op Fl b Ar pri_req
44 .Op Fl R Ar filename
45 .Op Fl S Ar filename
46 .Sh DESCRIPTION
47 The
48 .Nm
49 utility is designed to provide a way for users to access and control the
50 .Fx
51 FireWire subsystem.
52 Without options,
53 .Nm
54 will output a list of devices that are/were connected to the bus.
55 .Pp
56 The following options are available:
57 .Bl -tag -width indent
58 .It Fl u Ar bus_num
59 Specify the FireWire bus number to be operated on.
60 .It Fl r
61 Initiate bus reset.
62 .It Fl t
63 Show the topology map.
64 .It Fl p
65 Dump PHY registers.
66 .It Fl c Ar node
67 Show the configuration ROM on the node.
68 .It Fl d Ar node
69 Hex dump of the configuration ROM.
70 .It Fl o Ar node
71 Send a link-on PHY packet to the node.
72 .It Fl s Ar node
73 Write to the
74 .Dv RESET_START
75 register on the node.
76 .It Fl l Ar file
77 Load hex dump file of the configuration ROM and parse it.
78 .It Fl g Ar gap_count
79 Broadcast
80 .Ar gap_count
81 by phy_config packet.
82 .It Fl i Ar pri_req
83 Set the
84 .Dv PRIORITY_BUDGET
85 register on all supported nodes.
86 .It Fl R Ar filename
87 Receive DV stream and dump it to a file.
88 Use Ctrl-C to stop the receiving.
89 Some DV cameras seem not to send the stream if a bus manager exits.
90 If you cannot get the stream, try the following commands:
91 .Bd -literal -offset indent
92 sysctl hw.firewire.try_bmr=0
93 fwcontrol -r
94 .Ed
95 .Pp
96 The resulting file contains raw DV data excluding isochronous header
97 and CIP header.
98 It can be handled by
99 .Nm libdv
100 in the
101 .Fx
102 Ports Collection.
103 .It Fl S Ar filename
104 Send a DV file as isochronous stream.
105 .El
106 .Sh EXAMPLES
107 Each DV frame has a fixed size and it is easy to edit the frame order.
108 .Pp
109 .Dl "fwcontrol -R original.dv"
110 .Pp
111 Receive stream.
112 .Pp
113 .Dl "dd if=original.dv of=first.dv bs=120000 count=30"
114 .Pp
115 Get first 30 frames(NTSC).
116 .Pp
117 .Dl "dd if=original.dv of=second.dv bs=120000 skip=30 count=30"
118 .Pp
119 Get second 30 frames(NTSC).
120 .Pp
121 .Dl "cat second.dv first.dv | fwcontrol -S /dev/stdin"
122 .Pp
123 Swap first and second 30 frames and send them to DV recorder.
124 .Pp
125 For PAL, replace
126 .Dq Li bs=120000
127 with
128 .Dq Li bs=144000 .
129 .Sh FILES
130 .Bl -tag
131 .It Pa /dev/fw0.0
132 .El
133 .Sh SEE ALSO
134 .Xr firewire 4 ,
135 .Xr fwe 4 ,
136 .Xr fwohci 4 ,
137 .Xr sbp 4
138 .Sh HISTORY
139 The
140 .Nm
141 utility first appeared in
142 .Fx 5.0 .
143 .Sh AUTHORS
144 .An Hidetoshi Shimokawa Aq simokawa@FreeBSD.org
145 .Sh BUGS
146 This utility is still under development and provided for debugging purposes.