No empty .Rs/.Re
[netbsd-mini2440.git] / share / man / man4 / man4.vax / rf.4
blob31edd7e40c1361870f860d06f2ac94168318f856
1 .\"     $NetBSD: rf.4,v 1.3 2003/05/03 18:10:40 wiz Exp $
2 .\" Copyright (c) 2002 Jochen Kunz.
3 .\" All rights reserved.
4 .\"
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
7 .\" are met:
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\"    notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 3. The name of Jochen Kunz may not be used to endorse or promote
14 .\"    products derived from this software without specific prior
15 .\"    written permission.
16 .\"
17 .\" THIS SOFTWARE IS PROVIDED BY JOCHEN KUNZ
18 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL JOCHEN KUNZ
21 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 .\" POSSIBILITY OF SUCH DAMAGE.
28 .Dd March 23, 2003
29 .Dt RF 4 vax
30 .Os
31 .Sh NAME
32 .Nm rf
33 .Nd
34 .Tn DEC RX01 / RX02
35 floppy disk interface
36 .Sh SYNOPSIS
37 .Cd "rfc0 at uba? csr 0177170     # RX01/RX02 controller"
38 .Cd "rf*  at rfc? drive?          # RX01/RX02 floppy disk drive"
39 .Sh DESCRIPTION
40 The
41 .Nm rf
42 device provides access to
43 .Tn DEC
44 .Tn RX01
45 and
46 .Tn RX02
47 floppy disk drives and clones thereof.
48 These drives use preformatted 8" single sided, soft sectored media.
49 The
50 .Tn RX01
51 and
52 .Tn RX02
53 drives use a geometry of 77 cylinders, one head and 26 sectors.
54 Each sector contains 128 bytes in case of single density (
55 .Tn RX01
56 and
57 .Tn RX02
59 .Tn RX01
60 mode) or 256 bytes in double density mode.
62 .Nx
63 is not able to handle non-512 byte media the driver translates this
64 to a geometry of 50 cylinders, one head and 10 sectors in single
65 density and 77 cylinders, one head and 13 sectors in double density
66 mode.
67 While the later matches the total number of sectors, the fake
68 geometry in single density does not cover the last two physical
69 sectors exact, but it is possible to access this sectors at 512
70 byte LBN 501.
71 When a 512 byte block is written to LBN 501 the last 256 bytes are ignored.
72 When this 512 byte block is read the last 256 bytes contain undefined data.
73 .Pp
74 This driver supports three minor devices corresponding to the slices:
75 .Pp
76 .Bl -column Slice -offset indent
77 .It Sy Slice    Description
78 .It a   Single density only mode.
79 .It b   Double density only mode.
80 .It c   Density autodetect.
81 .El
82 .Pp
83 As the
84 .Tn RX01
85 and
86 .Tn RX02
87 hardware is not able to support formatting a blank disk, this driver has
88 no support for according IOCTLs.
89 But there are clones from third party vendors that support formatting.
90 Formatting a blank disk may be initiated
91 by the following commands on the VAX chevron prompt:
92 .Pp
93 .Bl -column Otherx -offset indent
94 .It Single density
95 .It d/p/w 20001E78 9
96 .It d/p/w 20001E7A 92
97 .El
98 .Pp
99 .Bl -column Otherx -offset indent
100 .It Double density
101 .It d/p/w 20001E78 109
102 .It d/p/w 20001E7A 92
104 .Sh FILES
105 .Bl -tag -width /dev/rx?xx -compact
106 .It Pa /dev/rf?[abc]
107 .It Pa /dev/rrf?[abc]
109 .Sh DIAGNOSTICS
110 .Bl -diag
111 .It "rfc_attach: Error creating bus_dma map: %d"
112 .It "did not respond to INIT CMD"
113 Possible errors during
114 .Xr autoconf 4 .
115 %d is the return code of
116 .Xr bus_dmamap_create 9 .
117 .It "%s: did not respond to CMD %x"
118 An error occurred while the driver tried to send command %x to drive %s.
119 .It "rfc_intr: Error while reading sector: %x"
120 .It "rfc_intr: Error while writing sector: %x"
121 .It "rfc_intr: Error while DMA: %x"
122 %x is status code from the controller error and status register.
123 .It "rfc_intr: Error while loading bus_dma map: %d"
124 %d is return code of
125 .Xr bus_dmamap_load 9 .
126 .It "%s: density error."
127 A single density disk was opened in double density only mode or vice
128 versa or the medium in the drive attached as %s was not readable at all.
130 .Sh SEE ALSO
131 .Xr dd 1 ,
132 .Xr tar 1 ,
133 .Xr intro 4 ,
134 .Xr disklabel 5 ,
135 .Xr disklabel 8 ,
136 .Xr mknod 8 ,
137 .Xr mount 8 ,
138 .Xr newfs 8
139 .Sh HISTORY
140 The rf driver appeared in
141 .Nx 2.0 .
142 It is a complete rewrite, not related to the old 4.2BSD
143 .Nm rx
144 driver.
145 .Sh AUTHORS
146 .An Jochen Kunz
147 .Sh BUGS
148 Writing of a
149 .Xr disklabel 5
150 is not supported.
151 The driver return always the internally fake disklabel.