1.\" Copyright (c) 2015 Michael Gmelin <freebsd@grem.de> 2.\" All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23.\" SUCH DAMAGE. 24.\" 25.Dd September 13, 2018 26.Dt IG4 4 27.Os 28.Sh NAME 29.Nm ig4 30.Nd Synopsys DesignWare I2C Controller 31.Sh SYNOPSIS 32To compile this driver into the kernel, place the following lines into 33the kernel configuration file: 34.Bd -ragged -offset indent 35.Cd "device ig4" 36.Cd "device iicbus" 37.Ed 38.Pp 39Alternatively, to load the driver as a module at boot time, place the following line in 40.Xr loader.conf 5 : 41.Bd -literal -offset indent 42ig4_load="YES" 43.Ed 44.Sh DESCRIPTION 45The 46.Nm 47driver provides access to peripherals attached to an I2C controller. 48.Sh HARDWARE 49.Nm 50supports the I2C controllers based on Synopsys DesignWare IP that can be found 51in Intel(R) Core(TM) processors starting from the fourth generation, Intel(R) 52Bay Trail, Apollo Lake SoC families, and some AMD systems. 53.Sh SYSCTL VARIABLES 54These 55.Xr sysctl 8 56variables are available: 57.Bl -tag -width "debug.ig4_dump" 58.It Va debug.ig4_dump 59This sysctl is a zero-based bit mask. 60When any of the bits are set, a register dump is printed for 61every I2C transfer on an 62.Nm 63device with the same unit number. 64.El 65.Sh SEE ALSO 66.Xr iic 4 , 67.Xr iicbus 4 68.Sh AUTHORS 69.An -nosplit 70The 71.Nm 72driver was written for 73.Dx 74by 75.An Matthew Dillon 76and subsequently ported to 77.Fx 78by 79.An Michael Gmelin Aq Mt freebsd@grem.de . 80.Pp 81This manual page was written by 82.An Michael Gmelin Aq Mt freebsd@grem.de . 83