xref: /freebsd/share/man/man4/ltc430x.4 (revision 2f513db7)
1.\"-
2.\" SPDX-License-Identifier: BSD-2-Clause
3.\"
4.\" Copyright (c) 2019 Ian Lepore <ian@freebsd.org>
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:
9.\" 1. Redistributions of source code must retain the above copyright
10.\"    notice, this list of conditions and the following disclaimer.
11.\" 2. Redistributions in binary form must reproduce the above copyright
12.\"    notice, this list of conditions and the following disclaimer in the
13.\"    documentation and/or other materials provided with the distribution.
14.\"
15.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25.\" SUCH DAMAGE.
26.\"
27.\" $FreeBSD$
28.\"
29.Dd January 1, 2020
30.Dt LTC430X 4
31.Os
32.Sh NAME
33.Nm ltc430x
34.Nd driver for LTC4305 and LTC4306 I2C mux chips
35.Sh SYNOPSIS
36To compile this driver into the kernel,
37place the following line in your
38kernel configuration file:
39.Bd -ragged -offset indent
40.Cd "device ltc430x"
41.Ed
42.Pp
43Alternatively, to load the driver as a
44module at boot time, place the following line in
45.Xr loader.conf 5 :
46.Bd -literal -offset indent
47ltc430x_load="YES"
48.Ed
49.Sh DESCRIPTION
50The
51.Nm
52driver supports the LTC4305 and LTC4306 I2C bus multiplexer (mux) chips.
53It automatically connects an upstream I2C bus to one of several downstream
54buses as needed when slave devices on the downstream buses initiate I/O.
55More information on the automatic switching behavior is available in
56.Xr iicmux 4 .
57.Sh FDT CONFIGURATION
58On an
59.Xr fdt 4
60based system, an
61.Nm
62device node is defined as a child node of its upstream i2c bus.
63The children of the
64.Nm
65node are additional i2c buses, which will have their own i2c slave
66devices described in their child nodes.
67.Pp
68The
69.Nm
70driver conforms to the standard
71.Bk -words
72.Li i2c/i2c-mux-ltc4306.txt
73.Ek
74bindings document, except that the following optional properties
75are not currently supported and will be ignored if present:
76.Bl -bullet -compact -inset -offset indent
77.It
78enable-gpios
79.It
80gpio-controller
81.It
82#gpio-cells
83.It
84ltc,downstream-accelerators-enable
85.It
86ltc,upstream-accelerators-enable
87.El
88.Sh HINTS CONFIGURATION
89On a
90.Xr device.hints 5
91based system, these values are configurable for
92.Nm :
93.Bl -tag -width indent
94.It Va hint.ltc430x.<unit>.at
95The upstream
96.Xr iicbus 4
97the
98.Nm
99instance is attached to.
100.El
101.Pp
102When configured via hints, the driver automatically adds an iicbus
103instance for every downstream bus supported by the chip.
104There is currently no way to indicate used versus unused channels.
105.Sh SEE ALSO
106.Xr iicbus 4 ,
107.Xr iicmux 4 ,
108.Sh HISTORY
109The
110.Nm
111driver first appeared in
112.Fx 13.0 .
113