summaryrefslogtreecommitdiffstats
path: root/share/man/man4/utopia.4
blob: d1659214e5c33410db22f63586028f4497f10b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
.\" Copyright (c) 2003
.\"	Fraunhofer Institute for Open Communication Systems (FhG Fokus).
.\" 	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 AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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.
.\"
.\" Author: Hartmut Brandt <harti@freebsd.org>
.\"
.\" $FreeBSD$
.Dd May 8, 2003
.Dt UTOPIA 4
.Os FreeBSD
.Sh NAME
.Nm utopia
.Nd Driver module for ATM PHY chips
.Sh SYNOPSIS
.Cd device utopia
.Sh DESCRIPTION
This module is used by all ATM drivers for cards that use
PMC-Sierra S/Uni and IDT77105/IDT77155
chips to provide uniform functionality.
The module implements status monitoring
in either interrupt or polling mode, media option handling and application
access to chip registers.
.Pp
The driver implements several sysctls that are accessible under the
.Cm hw.atm.XXX
tree, where
.Cm XXX
is the name of the ATM interface:
.Bl -tag -width XXX
.It Cm phy_regs
When reading this sysctl an array of 8-bit unsigned integers is returned
containing all accessible chip registers starting at register 0.
A register can be written by writing three 8-bit unsigned integers to the
sysctl: the register number, the new value and a bit mask.
This changes all bits in the register for which the corresponding bit in the
mask is one to the bit values from value.
Note, that not all registers may
be writeable.
.It Cm phy_loopback
allows to put the interface in one of several loopback modes.
Not all modes and all combinations of modes are supported on all chips.
The possible modes are:
.Bl -tag -width XXX
.It Dv UTP_LOOP_NONE (0x00)
No loopback, normal operation.
.It Dv UTP_LOOP_TIME (0x01)
Timing source loopback. When this is set the transmitter's clock is
derived from the receiver's clock.
.It Dv UTP_LOOP_DIAG (0x02)
Diagnostic loopback. In this mode the receiver's input is connected to the
transmitter's output. The receiver gets back everything that is sent. The
transmitter operates normally.
.It Dv UTP_LOOP_LINE (0x04)
Serial line loopback. This connects the line receiver to the line transmitter.
The chip transmits all cells back that it receives. The receiver operates
normally.
.It Dv UTP_LOOP_PARAL (0x08)
Parallel diagnostic loopback. This feeds back all transmitted cells into the
receiver between the parallel/serial converters. The transmitter
operates normally.
.It Dv UTP_LOOP_TWIST (0x10)
Twisted pair diagnostic loopback. Connects the high speed receive data to the
high speed transmit data. All received data is sent back. The receiver
operates normally.
.It Dv UTP_LOOP_PATH (0x20)
Diagnostic path loopback. This connects the receiver input to the transmitter
output just between the path overhead processor and the byte mux. The
transmitter operates normally.
.El
.It Cm phy_type
This is the detected type of the phy chip. Currently the following chips are
supported:
.Bl -tag -width XXX
.It Dv UTP_TYPE_UNKNOWN (0)
The module could not determine the type of the PHY chip.
.It Dv UTP_TYPE_SUNI_LITE (1)
PMC-5346 (S/Uni-Lite)
.It Dv UTP_TYPE_SUNI_ULTRA (2)
PMC-5350 (S/Uni-Ultra)
.It Dv UTP_TYPE_SUNI_622 (3)
PMC-5355 (S/Uni-622)
.It Dv UTP_TYPE_IDT77105 (4)
IDT77105 (25.6MBit UTP interface)
.It Dv UTP_TYPE_IDT77155 (5)
IDT77155 (155MBit interface)
.El
.It Cm phy_name
This is a string describing the type of the PHY chip.
.It Cm phy_stats
Physical and some ATM layer statistics. These are the statistics usually
provided by the chip. The data is a returned in the following structure:
.Bd -literal
struct utopia_stats1 {
	uint32_t version;	/* version of this struct */
	uint32_t fill;
	uint64_t rx_sbip;	/* rx section BIP errors */
	uint64_t rx_lbip;	/* rx line BIP errors */
	uint64_t rx_lfebe;	/* rx line far end block errors */
	uint64_t rx_pbip;	/* rx path BIP errors */
	uint64_t rx_pfebe;	/* rx path far end block errors */
	uint64_t rx_cells;	/* received cells */
	uint64_t rx_corr;	/* correctable cell errors */
	uint64_t rx_uncorr;	/* uncorrectable cell errors */
	uint64_t rx_symerr;	/* symbol errors */
	uint64_t tx_cells;	/* transmitted cells */
};
.Ed
.Pp
The current version is 1. The statistics are updated from the chip once
a second. On overflow the counters wrap to zero. Note that not all counters
are meaningful for all PHY chips. The statistics are cleared by writing an
arbitrary new value (the value is ignored).
.El
.Pp
The
.Nm
module also interfaces with the ifmedia system.
The module reports the current state of the carrier and will issue a
warning message when the carrier state changes.
While the physical media itself cannot be changed, several media options can:
.Bl -tag -width XXX
.It Cm SDH
If the PHY is a Sonet/SDH chip this flag switches the interface into SDH mode.
If this option is not set (the default) the interface is in Sonet mode.
.It Cm noscramb
If the PHY is a Sonet/SDH chip disable scrambling.
This may be useful for debugging purposes.
.It Cm unassigned
Normally the interface emits idle cells when there are no other cells to
transmit. This changes the default cell type to unassigned cells. This
may be needed for interworking with public networks.
.El
.Sh SEE ALSO
.Xr en 4 ,
.Xr fatm 4 ,
.Xr hatm 4 ,
.Xr patm 4 ,
.Xr utopia 9
.Sh AUTHOR
.An Harti Brandt Aq harti@freebsd.org .
OpenPOWER on IntegriCloud