]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/ntb_hw_plx.4
Remove deprecated GEOM classes
[FreeBSD/FreeBSD.git] / share / man / man4 / ntb_hw_plx.4
1 .\"
2 .\" Copyright (c) 2017 Alexander Motin <mav@FreeBSD.org>
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 .\"
14 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 .\" SUCH DAMAGE.
25 .\"
26 .\" $FreeBSD$
27 .\"
28 .Dd August 30, 2017
29 .Dt NTB_HW_PLX 4
30 .Os
31 .Sh NAME
32 .Nm ntb_hw_plx
33 .Nd PLX/Avago/Broadcom Non-Transparent Bridge driver
34 .Sh SYNOPSIS
35 To compile this driver into your kernel,
36 place the following lines in your kernel configuration file:
37 .Bd -ragged -offset indent
38 .Cd "device ntb"
39 .Cd "device ntb_hw_plx"
40 .Ed
41 .Pp
42 Or, to load the driver as a module at boot, place the following line in
43 .Xr loader.conf 5 :
44 .Bd -literal -offset indent
45 ntb_hw_plx_load="YES"
46 .Ed
47 .Pp
48 The following tunables are settable from the
49 .Xr loader 8 :
50 .Bl -ohang
51 .It Va hint.ntb_hw. Ns Ar X Ns Va .b2b
52 Being set to 1 (default) tells the driver attached to Virtual Interface of the
53 NTB that it works in NTB-to-NTB (back-to-back) mode, 0 -- NTB-to-Root Port.
54 Driver attached to Link Interface (visible from Root Port side) switches to
55 NTB-to-Root Port mode automatically, but one attached to Virtual Interface
56 can't detect what is on the other side and require external knowledge.
57 .El
58 .Sh DESCRIPTION
59 The
60 .Nm
61 driver provides support for the Non-Transparent Bridge (NTB) hardware in
62 PLX PCIe bridge chips, which allow up to two of their PCIe ports to be
63 switched from transparent to non-transparent bridge mode.
64 In this mode bridge looks not as a PCI bridge, but as PCI endpoint device.
65 The driver hides hardware details, exposing memory windows, scratchpads
66 and doorbells of the other side via hardware independent KPI to
67 .Xr ntb 4
68 subsystem.
69 .Pp
70 Each PLX NTB provides up to 2 64-bit or 4 32-bit memory windows to the
71 other system's memory, 6 or 12 scratchpad registers and 16 doorbells to
72 interrupt the other system.
73 In NTB-to-NTB mode one of memory windows (or half of it, if bigger then 1MB)
74 is consumed by the driver itself to access scratchpad and doorbell registers
75 of the other side.
76 .Sh HARDWARE
77 The following PLX/Avago/Broadcom chips are supported by the
78 .Nm
79 driver:
80 .Pp
81 .Bl -bullet -compact
82 .It
83 PEX 8713
84 .It
85 PEX 8717
86 .It
87 PEX 8725
88 .It
89 PEX 8733
90 .It
91 PEX 8749
92 .El
93 .Pp
94 , but it may also work with other compatible ones.
95 .Sh CONFIGURATION
96 The basic chip configuration should be done by serial EEPROM or via i2c.
97 It includes enabling NTB on one or both sides (choosing between NTB-to-NTB
98 (back-to-back) and NTB-to-Root Port modes) and configuring BARs sizes.
99 .Pp
100 The recommended mode is NTB-to-NTB mode, since while NTB-to-Root Port is
101 generally supported by the driver, it require PCI hotplug handling on the
102 Root Port, that may be difficult or cause different kinds of problems.
103 .Sh SEE ALSO
104 .Xr if_ntb 4 ,
105 .Xr ntb_transport 4 ,
106 .Xr ntb 4 ,
107 .Sh AUTHORS
108 .An -nosplit
109 The
110 .Nm
111 driver was written by
112 .An Alexander Motin Aq Mt mav@FreeBSD.org .
113 .Sh BUGS
114 There is no way to protect your system from malicious behavior on the other
115 system once the link is brought up.
116 Anyone with root or kernel access on the other system can read or write to
117 any location on your system.
118 In other words, only connect two systems that completely trust each other.