xref: /freebsd/share/man/man4/spigen.4 (revision fa9896e082a1046ff4fbc75fcba4d18d1f2efc19)
11fa996adSIan Lepore.\"
21fa996adSIan Lepore.\" Copyright (c) 2018 Ian Lepore <ian@freebsd.org>
31fa996adSIan Lepore.\" All rights reserved.
41fa996adSIan Lepore.\"
51fa996adSIan Lepore.\" Redistribution and use in source and binary forms, with or without
61fa996adSIan Lepore.\" modification, are permitted provided that the following conditions
71fa996adSIan Lepore.\" are met:
81fa996adSIan Lepore.\"
91fa996adSIan Lepore.\" 1. Redistributions of source code must retain the above copyright
101fa996adSIan Lepore.\"    notice, this list of conditions and the following disclaimer.
111fa996adSIan Lepore.\" 2. Redistributions in binary form must reproduce the above copyright
121fa996adSIan Lepore.\"    notice, this list of conditions and the following disclaimer in the
131fa996adSIan Lepore.\"    documentation and/or other materials provided with the distribution.
141fa996adSIan Lepore.\"
151fa996adSIan Lepore.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
161fa996adSIan Lepore.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
171fa996adSIan Lepore.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
181fa996adSIan Lepore.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
191fa996adSIan Lepore.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
201fa996adSIan Lepore.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
211fa996adSIan Lepore.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
221fa996adSIan Lepore.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
231fa996adSIan Lepore.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
241fa996adSIan Lepore.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
251fa996adSIan Lepore.\"
26e378129eSMateusz Piotrowski.Dd August 21, 2020
271fa996adSIan Lepore.Dt SPIGEN 4
281fa996adSIan Lepore.Os
291fa996adSIan Lepore.Sh NAME
301fa996adSIan Lepore.Nm spigen
311fa996adSIan Lepore.Nd SPI generic I/O device driver
321fa996adSIan Lepore.Sh SYNOPSIS
331fa996adSIan LeporeTo compile this driver into the kernel,
341fa996adSIan Leporeplace the following lines in your
351fa996adSIan Leporekernel configuration file:
361fa996adSIan Lepore.Bd -ragged -offset indent
371fa996adSIan Lepore.Cd "device spi"
381fa996adSIan Lepore.Cd "device spibus"
391fa996adSIan Lepore.Cd "device spigen"
401fa996adSIan Lepore.Ed
411fa996adSIan Lepore.Pp
421fa996adSIan LeporeAlternatively, to load the driver as a
431fa996adSIan Leporemodule at boot time, place the following line in
441fa996adSIan Lepore.Xr loader.conf 5 :
451fa996adSIan Lepore.Bd -literal -offset indent
461fa996adSIan Leporespigen_load="YES"
471fa996adSIan Lepore.Ed
481fa996adSIan Lepore.Sh DESCRIPTION
491fa996adSIan LeporeThe
501fa996adSIan Lepore.Nm
511fa996adSIan Leporedriver provides direct access to a slave device on the SPI bus.
521fa996adSIan LeporeEach instance of a
531fa996adSIan Lepore.Nm
541fa996adSIan Leporedevice is associated with a single chip-select
551fa996adSIan Leporeline on the bus, and all I/O performed through that instance is done
561fa996adSIan Leporewith that chip-select line asserted.
571fa996adSIan Lepore.Pp
58*40277af7SMateusz PiotrowskiSPI data transfers are inherently bi-directional; there are no separate
591fa996adSIan Leporeread and write operations.
601fa996adSIan LeporeWhen commands and data are sent to a device, data also comes back from
611fa996adSIan Leporethe device, although in some cases the data may not be useful (or even
621fa996adSIan Leporedocumented or predictable for some devices).
631fa996adSIan LeporeLikewise on a read operation, whatever data is in the buffer at the start
641fa996adSIan Leporeof the operation is sent to (and typically ignored by) the device, with each
651fa996adSIan Leporeoutgoing byte then replaced in the buffer by the corresponding incoming byte.
661fa996adSIan LeporeThus, all buffers passed to the transfer functions are both input and
671fa996adSIan Leporeoutput buffers.
681fa996adSIan Lepore.Pp
691fa996adSIan LeporeThe
701fa996adSIan Lepore.Nm
711fa996adSIan Leporedriver provides access to the SPI slave device with the following
721fa996adSIan Lepore.Xr ioctl 2
731fa996adSIan Leporecalls, defined in
741fa996adSIan Lepore.In sys/spigenio.h :
751fa996adSIan Lepore.Bl -tag -width indent
761fa996adSIan Lepore.It Dv SPIGENIOC_TRANSFER Pq Vt "struct spigen_transfer"
771fa996adSIan LeporeTransfer a command and optional associated data to/from the device,
781fa996adSIan Leporeusing the buffers described by the st_command and st_data fields in the
791fa996adSIan Lepore.Vt spigen_transfer .
801fa996adSIan LeporeSet
811fa996adSIan Lepore.Vt st_data.iov_len
821fa996adSIan Leporeto zero if there is no data associated with the command.
831fa996adSIan Lepore.Bd -literal
841fa996adSIan Leporestruct spigen_transfer {
851fa996adSIan Lepore	struct iovec st_command;
861fa996adSIan Lepore	struct iovec st_data;
871fa996adSIan Lepore};
881fa996adSIan Lepore.Ed
891fa996adSIan Lepore.It Dv SPIGENIOC_TRANSFER_MMAPPED Pq Vt "spigen_transfer_mmapped"
901fa996adSIan LeporeTransfer a command and optional associated data to/from the device.
911fa996adSIan LeporeThe buffers for the transfer are a previously-mmap'd region.
921fa996adSIan LeporeThe length of the command and data within that region are described by the
931fa996adSIan Lepore.Vt stm_command_length
941fa996adSIan Leporeand
951fa996adSIan Lepore.Vt stm_data_length
961fa996adSIan Leporefields of
971fa996adSIan Lepore.Vt spigen_transfer_mmapped .
981fa996adSIan LeporeIf
991fa996adSIan Lepore.Vt stm_data_length
1001fa996adSIan Leporeis non-zero, the data appears in the memory region immediately
1011fa996adSIan Leporefollowing the command (that is, at offset
1021fa996adSIan Lepore.Vt stm_command_length
1031fa996adSIan Leporefrom the start of the mapped region).
1041fa996adSIan Lepore.Bd -literal
1051fa996adSIan Leporestruct spigen_transfer_mmapped {
1061fa996adSIan Lepore	size_t stm_command_length;
1071fa996adSIan Lepore	size_t stm_data_length;
1081fa996adSIan Lepore};
1091fa996adSIan Lepore.Ed
1101fa996adSIan Lepore.It Dv SPIGENIOC_GET_CLOCK_SPEED Pq Vt uint32_t
1111fa996adSIan LeporeGet the maximum clock speed (bus frequency in Hertz) to be used
1121fa996adSIan Leporewhen communicating with this slave device.
1131fa996adSIan Lepore.It Dv SPIGENIOC_SET_CLOCK_SPEED Pq Vt uint32_t
1141fa996adSIan LeporeSet the maximum clock speed (bus frequency in Hertz) to be used
1151fa996adSIan Leporewhen communicating with this slave device.
1161fa996adSIan LeporeThe setting remains in effect for subsequent transfers; it
1171fa996adSIan Leporeis not necessary to reset this before each transfer.
118*40277af7SMateusz PiotrowskiThe actual bus frequency may be lower due to hardware limitations
1191fa996adSIan Leporeof the SPI bus controller device.
1201fa996adSIan Lepore.It Dv SPIGENIOC_GET_SPI_MODE Pq Vt uint32_t
1211fa996adSIan LeporeGet the SPI mode (clock polarity and phase) to be used
1221fa996adSIan Leporewhen communicating with this device.
1231fa996adSIan Lepore.It Dv SPIGENIOC_SET_SPI_MODE Pq Vt uint32_t
1241fa996adSIan LeporeSet the SPI mode (clock polarity and phase) to be used
1251fa996adSIan Leporewhen communicating with this device.
1261fa996adSIan LeporeThe setting remains in effect for subsequent transfers; it
1271fa996adSIan Leporeis not necessary to reset this before each transfer.
1281fa996adSIan Lepore.El
1291fa996adSIan Lepore.Sh HINTS CONFIGURATION
1301fa996adSIan LeporeOn a
1311fa996adSIan Lepore.Xr device.hints 5
1321fa996adSIan Leporebased system, such as
1331fa996adSIan Lepore.Li MIPS ,
1341fa996adSIan Leporethese values are configurable for
1351fa996adSIan Lepore.Nm :
1361fa996adSIan Lepore.Bl -tag -width indent
1371fa996adSIan Lepore.It Va hint.spigen.%d.at
1381fa996adSIan LeporeThe spibus the
1391fa996adSIan Lepore.Nm
1401fa996adSIan Leporeinstance is attached to.
1411fa996adSIan Lepore.It Va hint.spigen.%d.clock
1421fa996adSIan LeporeThe maximum bus frequency to use when communicating with this device.
1431fa996adSIan LeporeActual bus speed may be lower, depending on the capabilities of the SPI
1441fa996adSIan Leporebus controller hardware.
1451fa996adSIan Lepore.It Va hint.spigen.%d.cs
1461fa996adSIan LeporeThe chip-select number to assert when performing I/O for this device.
1471fa996adSIan LeporeSet the high bit (1 << 31) to invert the logic level of the chip select line.
1481fa996adSIan Lepore.It Va hint.spigen.%d.mode
1491fa996adSIan LeporeThe SPI mode (0-3) to use when communicating with this device.
1501fa996adSIan Lepore.El
1511fa996adSIan Lepore.Sh FDT CONFIGURATION
1521fa996adSIan LeporeOn an
1531fa996adSIan Lepore.Xr fdt 4
1541fa996adSIan Leporebased system, the spigen device is defined as a slave device subnode
1551fa996adSIan Leporeof the SPI bus controller node.
1561fa996adSIan LeporeAll properties documented in the
1571fa996adSIan Lepore.Va spibus.txt
1581fa996adSIan Leporebindings document can be used with the
1591fa996adSIan Lepore.Nm
1601fa996adSIan Leporedevice.
1611fa996adSIan LeporeThe most commonly-used ones are documented below.
1621fa996adSIan Lepore.Pp
1631fa996adSIan LeporeThe following properties are required in the
1641fa996adSIan Lepore.Nm
1651fa996adSIan Leporedevice subnode:
1661fa996adSIan Lepore.Bl -tag -width indent
1671fa996adSIan Lepore.It Va compatible
1681fa996adSIan LeporeMust be the string "freebsd,spigen".
1691fa996adSIan Lepore.It Va reg
1701fa996adSIan LeporeChip select address of device.
1711fa996adSIan Lepore.It Va spi-max-frequency
1721fa996adSIan LeporeThe maximum bus frequency to use when communicating with this slave device.
1731fa996adSIan LeporeActual bus speed may be lower, depending on the capabilities of the SPI
1741fa996adSIan Leporebus controller hardware.
1751fa996adSIan Lepore.El
1761fa996adSIan Lepore.Pp
1771fa996adSIan LeporeThe following properties are optional for the
1781fa996adSIan Lepore.Nm
1791fa996adSIan Leporedevice subnode:
1801fa996adSIan Lepore.Bl -tag -width indent
1811fa996adSIan Lepore.It Va spi-cpha
1821fa996adSIan LeporeEmpty property indicating the slave device requires shifted clock
1831fa996adSIan Leporephase (CPHA) mode.
1841fa996adSIan Lepore.It Va spi-cpol
1851fa996adSIan LeporeEmpty property indicating the slave device requires inverse clock
1861fa996adSIan Leporepolarity (CPOL) mode.
1871fa996adSIan Lepore.It Va spi-cs-high
1881fa996adSIan LeporeEmpty property indicating the slave device requires chip select active high.
1891fa996adSIan Lepore.El
1901fa996adSIan Lepore.Sh FILES
1911fa996adSIan Lepore.Bl -tag -width -compact
1921fa996adSIan Lepore.It Pa /dev/spigen*
1931fa996adSIan Lepore.El
1941fa996adSIan Lepore.Sh SEE ALSO
1951fa996adSIan Lepore.Xr fdt 4 ,
196e378129eSMateusz Piotrowski.Xr device.hints 5 ,
197e378129eSMateusz Piotrowski.Xr spi 8
1981fa996adSIan Lepore.Sh HISTORY
1991fa996adSIan LeporeThe
2001fa996adSIan Lepore.Nm
2011fa996adSIan Leporedriver
2021fa996adSIan Leporeappeared in
2031fa996adSIan Lepore.Fx 11.0 .
2041fa996adSIan LeporeFDT support appeared in
2051fa996adSIan Lepore.Fx 11.2 .
206