xref: /freebsd/share/man/man4/smb.4 (revision 8ccdf86ee57575b04983bc7be68c357fb83668f8)
1bd2d71b1SAlexander Ziaee.\"-
2bd2d71b1SAlexander Ziaee.\" SPDX-License-Identifer: BSD-2-Clause
3bd2d71b1SAlexander Ziaee.\"
4eb8752d5SNicolas Souchu.\" Copyright (c) 1998, Nicolas Souchu
57d2d5f80SJoerg Wunsch.\" Copyright (c) 2004, Joerg Wunsch
6202379afSMichael Gmelin.\" Copyright (c) 2015, Michael Gmelin <freebsd@grem.de>
7eb8752d5SNicolas Souchu.\" All rights reserved.
8eb8752d5SNicolas Souchu.\"
9eb8752d5SNicolas Souchu.\" Redistribution and use in source and binary forms, with or without
10eb8752d5SNicolas Souchu.\" modification, are permitted provided that the following conditions
11eb8752d5SNicolas Souchu.\" are met:
12eb8752d5SNicolas Souchu.\" 1. Redistributions of source code must retain the above copyright
13eb8752d5SNicolas Souchu.\"    notice, this list of conditions and the following disclaimer.
14eb8752d5SNicolas Souchu.\" 2. Redistributions in binary form must reproduce the above copyright
15eb8752d5SNicolas Souchu.\"    notice, this list of conditions and the following disclaimer in the
16eb8752d5SNicolas Souchu.\"    documentation and/or other materials provided with the distribution.
17eb8752d5SNicolas Souchu.\"
18eb8752d5SNicolas Souchu.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19eb8752d5SNicolas Souchu.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20eb8752d5SNicolas Souchu.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21eb8752d5SNicolas Souchu.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22eb8752d5SNicolas Souchu.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23eb8752d5SNicolas Souchu.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24eb8752d5SNicolas Souchu.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25eb8752d5SNicolas Souchu.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26eb8752d5SNicolas Souchu.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27eb8752d5SNicolas Souchu.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28eb8752d5SNicolas Souchu.\" SUCH DAMAGE.
29eb8752d5SNicolas Souchu.\"
30202379afSMichael Gmelin.Dd April 25, 2015
31eb8752d5SNicolas Souchu.Dt SMB 4
323d45e180SRuslan Ermilov.Os
33eb8752d5SNicolas Souchu.Sh NAME
34eb8752d5SNicolas Souchu.Nm smb
35*8ccdf86eSAlexander Ziaee.Nd System Management Bus (SMBus) generic I/O device driver
36eb8752d5SNicolas Souchu.Sh SYNOPSIS
37b9781e20SJeroen Ruigrok van der Werven.Cd "device smb"
38eb8752d5SNicolas Souchu.Sh DESCRIPTION
39eb8752d5SNicolas SouchuThe
40eb8752d5SNicolas Souchu.Em smb
4117d52d23SMichael Gmelincharacter device driver provides generic I/O to any
42eb8752d5SNicolas Souchu.Xr smbus 4
436d249eeeSSheldon Hearninstance.
4417d52d23SMichael GmelinTo control SMB devices, use
45bf7f20c2SRuslan Ermilov.Pa /dev/smb?
467d2d5f80SJoerg Wunschwith the ioctls described below.
477d2d5f80SJoerg WunschAny of these ioctl commands takes a pointer to
487d2d5f80SJoerg Wunsch.Vt struct smbcmd
497d2d5f80SJoerg Wunschas its argument.
507d2d5f80SJoerg Wunsch.Bd -literal
517d2d5f80SJoerg Wunsch#include <sys/types.h>
527d2d5f80SJoerg Wunsch
537d2d5f80SJoerg Wunschstruct smbcmd {
54202379afSMichael Gmelin	u_char cmd;
55202379afSMichael Gmelin	u_char reserved;
56202379afSMichael Gmelin	u_short op;
577d2d5f80SJoerg Wunsch	union {
587d2d5f80SJoerg Wunsch		char    byte;
59202379afSMichael Gmelin		char    buf[2];
607d2d5f80SJoerg Wunsch		short   word;
61202379afSMichael Gmelin	} wdata;
62202379afSMichael Gmelin	union {
63202379afSMichael Gmelin		char    byte;
64202379afSMichael Gmelin		char    buf[2];
65202379afSMichael Gmelin		short   word;
66202379afSMichael Gmelin	} rdata;
67202379afSMichael Gmelin	int  slave;
68202379afSMichael Gmelin	char *wbuf;     /* use wdata if NULL */
69202379afSMichael Gmelin	int  wcount;
70202379afSMichael Gmelin	char *rbuf;     /* use rdata if NULL */
71202379afSMichael Gmelin	int  rcount;
727d2d5f80SJoerg Wunsch};
737d2d5f80SJoerg Wunsch.Ed
747d2d5f80SJoerg Wunsch.Pp
757d2d5f80SJoerg WunschThe
767d2d5f80SJoerg Wunsch.Fa slave
777d2d5f80SJoerg Wunschfield is always used, and provides the address of the
7817d52d23SMichael GmelinSMBus slave device.
793d33d453SJohn BaldwinThe slave address is specified in the seven most significant bits
8017d52d23SMichael Gmelin.Pq i.e., Dq "left-justified" .
813d33d453SJohn BaldwinThe least significant bit of the slave address must be zero.
827d2d5f80SJoerg Wunsch.Pp
83bf7f20c2SRuslan Ermilov.Bl -column ".Dv SMB_QUICK_WRITE" -compact
84eb8752d5SNicolas Souchu.It Em Ioctl Ta Em Description
857d2d5f80SJoerg Wunsch.Pp
86bf7f20c2SRuslan Ermilov.It Dv SMB_QUICK_WRITE Ta
877d2d5f80SJoerg Wunsch.Em QuickWrite
8817d52d23SMichael Gmelindoes not transfer any data.
8917d52d23SMichael GmelinIt just issues the device address with write intent to the bus.
90bf7f20c2SRuslan Ermilov.It Dv SMB_QUICK_READ Ta
917d2d5f80SJoerg Wunsch.Em QuickRead
9217d52d23SMichael Gmelindoes not transfer any data.
9317d52d23SMichael GmelinIt just issues the device address with read intent to the bus.
94bf7f20c2SRuslan Ermilov.It Dv SMB_SENDB Ta
957d2d5f80SJoerg Wunsch.Em SendByte
9617d52d23SMichael Gmelinsends the byte provided in
977d2d5f80SJoerg Wunsch.Fa cmd
9817d52d23SMichael Gmelinto the device.
99bf7f20c2SRuslan Ermilov.It Dv SMB_RECVB Ta
1007d2d5f80SJoerg Wunsch.Em ReceiveByte
10117d52d23SMichael Gmelinreads a single byte from the device which is returned in
10217d52d23SMichael Gmelin.Fa cmd .
103bf7f20c2SRuslan Ermilov.It Dv SMB_WRITEB Ta
1047d2d5f80SJoerg Wunsch.Em WriteByte
10517d52d23SMichael Gmelinfirst sends the byte from
1067d2d5f80SJoerg Wunsch.Fa cmd
10717d52d23SMichael Gmelinto the device, followed by the byte given in
108202379afSMichael Gmelin.Fa wdata.byte .
109bf7f20c2SRuslan Ermilov.It Dv SMB_WRITEW Ta
1107d2d5f80SJoerg Wunsch.Em WriteWord
11117d52d23SMichael Gmelinfirst sends the byte from
1127d2d5f80SJoerg Wunsch.Fa cmd
11317d52d23SMichael Gmelinto the device, followed by the word given in
114202379afSMichael Gmelin.Fa wdata.word .
1157d2d5f80SJoerg WunschNote that the SMBus byte-order is little-endian by definition.
116bf7f20c2SRuslan Ermilov.It Dv SMB_READB Ta
1177d2d5f80SJoerg Wunsch.Em ReadByte
11817d52d23SMichael Gmelinfirst sends the byte from
1197d2d5f80SJoerg Wunsch.Fa cmd
12017d52d23SMichael Gmelinto the device, then reads one byte of data from
1217d2d5f80SJoerg Wunschthe device.
12217d52d23SMichael GmelinReturned data is stored in
123202379afSMichael Gmelin.Fa rdata.byte .
124bf7f20c2SRuslan Ermilov.It Dv SMB_READW Ta
1257d2d5f80SJoerg Wunsch.Em ReadWord
12617d52d23SMichael Gmelinfirst sends the byte from
1277d2d5f80SJoerg Wunsch.Fa cmd
12817d52d23SMichael Gmelinto the device, then reads one word of data from
1297d2d5f80SJoerg Wunschthe device.
13017d52d23SMichael GmelinReturned data is stored in
131202379afSMichael Gmelin.Fa rdata.word .
132bf7f20c2SRuslan Ermilov.It Dv SMB_PCALL Ta
1337d2d5f80SJoerg Wunsch.Em ProcedureCall
13417d52d23SMichael Gmelinfirst sends the byte from
1357d2d5f80SJoerg Wunsch.Fa cmd
13617d52d23SMichael Gmelinto the device, followed by the word provided in
137202379afSMichael Gmelin.Fa wdata.word .
13817d52d23SMichael GmelinIt then reads one word of data from the device and returns it
139202379afSMichael Gmelinin
140202379afSMichael Gmelin.Fa rdata.word .
141bf7f20c2SRuslan Ermilov.It Dv SMB_BWRITE Ta
1427d2d5f80SJoerg Wunsch.Em BlockWrite
14317d52d23SMichael Gmelinfirst sends the byte from
1447d2d5f80SJoerg Wunsch.Fa cmd
145f1cd40a1SAndriy Gaponto the device, then the byte from
146f1cd40a1SAndriy Gapon.Fa wcount
147f1cd40a1SAndriy Gaponfollowed by
148202379afSMichael Gmelin.Fa wcount
1497d2d5f80SJoerg Wunschbytes of data that are taken from the buffer pointed to by
150202379afSMichael Gmelin.Fa wbuf .
1517d2d5f80SJoerg WunschThe SMBus specification mandates that no more than 32 bytes of
152f1cd40a1SAndriy Gapondata can be transferred in a single block read or write command.
15317d52d23SMichael GmelinThis value can be read from the constant
1547d2d5f80SJoerg Wunsch.Dv SMB_MAXBLOCKSIZE .
155bf7f20c2SRuslan Ermilov.It Dv SMB_BREAD Ta
1567d2d5f80SJoerg Wunsch.Em BlockRead
15717d52d23SMichael Gmelinfirst sends the byte from
1587d2d5f80SJoerg Wunsch.Fa cmd
159f1cd40a1SAndriy Gaponto the device, then reads a count of data bytes that the device
160f1cd40a1SAndriy Gaponis going to provide and then reads that many bytes.
161f1cd40a1SAndriy GaponThe count is returned in
162f1cd40a1SAndriy Gapon.Fa rcount .
163f1cd40a1SAndriy GaponThe data is returned in the buffer pointed to by
164202379afSMichael Gmelin.Fa rbuf .
165eb8752d5SNicolas Souchu.El
166eb8752d5SNicolas Souchu.Pp
1677d2d5f80SJoerg WunschThe
1687d2d5f80SJoerg Wunsch.Xr read 2
1697d2d5f80SJoerg Wunschand
1707d2d5f80SJoerg Wunsch.Xr write 2
1717d2d5f80SJoerg Wunschsystem calls are not implemented by this driver.
1727d2d5f80SJoerg Wunsch.Sh ERRORS
1737d2d5f80SJoerg WunschThe
17449aa339eSRuslan Ermilov.Xr ioctl 2
1757d2d5f80SJoerg Wunschcommands can cause the following driver-specific errors:
1767d2d5f80SJoerg Wunsch.Bl -tag -width Er
1777d2d5f80SJoerg Wunsch.It Bq Er ENXIO
1787d2d5f80SJoerg WunschDevice did not respond to selection.
1797d2d5f80SJoerg Wunsch.It Bq Er EBUSY
1807d2d5f80SJoerg WunschDevice still in use.
1817d2d5f80SJoerg Wunsch.It Bq Er ENODEV
1827d2d5f80SJoerg WunschOperation not supported by device (not supposed to happen).
1837d2d5f80SJoerg Wunsch.It Bq Er EINVAL
1847d2d5f80SJoerg WunschGeneral argument error.
1857d2d5f80SJoerg Wunsch.It Bq Er EWOULDBLOCK
1867d2d5f80SJoerg WunschSMBus transaction timed out.
1877d2d5f80SJoerg Wunsch.El
188eb8752d5SNicolas Souchu.Sh SEE ALSO
1897d2d5f80SJoerg Wunsch.Xr ioctl 2 ,
190eb8752d5SNicolas Souchu.Xr smbus 4
191eb8752d5SNicolas Souchu.Sh HISTORY
192eb8752d5SNicolas SouchuThe
193eb8752d5SNicolas Souchu.Nm
194eb8752d5SNicolas Souchumanual page first appeared in
195eb8752d5SNicolas Souchu.Fx 3.0 .
196def37e7cSMike Pritchard.Sh AUTHORS
197eb8752d5SNicolas SouchuThis
198eb8752d5SNicolas Souchumanual page was written by
199202379afSMichael Gmelin.An Nicolas Souchu
200202379afSMichael Gmelinand extended by
20117d52d23SMichael Gmelin.An Michael Gmelin Aq freebsd@grem.de .
202