1998-09-03 20:51:50 +00:00
|
|
|
/*-
|
2017-11-27 14:52:40 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2002-03-23 15:49:15 +00:00
|
|
|
* Copyright (c) 1998, 2001 Nicolas Souchu
|
1998-09-03 20:51:50 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-08-24 17:55:58 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1998-09-03 20:51:50 +00:00
|
|
|
/*
|
|
|
|
* Autoconfiguration and support routines for the Philips serial I2C bus
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
2008-08-04 21:03:06 +00:00
|
|
|
#include <sys/lock.h>
|
2007-03-23 23:08:28 +00:00
|
|
|
#include <sys/malloc.h>
|
1998-09-03 20:51:50 +00:00
|
|
|
#include <sys/module.h>
|
2008-08-04 21:03:06 +00:00
|
|
|
#include <sys/mutex.h>
|
2015-05-09 03:05:44 +00:00
|
|
|
#include <sys/rman.h>
|
Allow i2c bus speed to be configured via hints, FDT data, and sysctl.
The current support for controlling i2c bus speed is an inconsistant mess.
There are 4 symbolic speed values defined, UNKNOWN, SLOW, FAST, FASTEST.
It seems to be universally assumed that SLOW means the standard 100KHz
rate from the original spec. Nothing ever calls iicbus_reset() with a
speed of FAST, although some drivers would treat it as the 400KHz standard
speed. Mostly iicbus_reset() is called with the speed set to UNKNOWN or
FASTEST, and there's really no telling what any individual driver will do
with those.
The speed of an i2c bus is limited by the speed of the slowest device on
the bus. This means that generally the bus speed needs to be configured
based on the board/system and the components within it. Historically for
i2c we've configured with device hints. Newer systems use FDT data and it
documents a clock-frequency property for i2c busses. Hobbyists and
developers are likely to want on the fly changes. These changes provide
all 3 methods, but do not require any existing drivers to change to use
the new facilities.
This adds an iicbus method, iicbus_get_frequency(dev, speed) that gets the
frequency for the requested symbolic speed. If the symbolic speed is SLOW
or if there is no speed configured for the bus, the returned value is
100KHz, always. Otherwise, if bus speed is configured by hints, fdt,
tunable, or sysctl, that speed is returned. It also adds a helper
function, iicbus_init_frequency() that any bus driver subclassed from
iicbus can initialize the frequency from some other source of info.
Initial driver implementations are provided for Freescale and TI.
Differential Revision: https://reviews.freebsd.org/D1174
PR: 195009
2014-11-18 01:54:31 +00:00
|
|
|
#include <sys/sysctl.h>
|
2015-10-20 19:47:08 +00:00
|
|
|
#include <sys/bus.h>
|
1998-09-03 20:51:50 +00:00
|
|
|
|
|
|
|
#include <dev/iicbus/iiconf.h>
|
|
|
|
#include <dev/iicbus/iicbus.h>
|
|
|
|
|
|
|
|
#include "iicbus_if.h"
|
|
|
|
|
2004-05-12 13:43:41 +00:00
|
|
|
/* See comments below for why auto-scanning is a bad idea. */
|
|
|
|
#define SCAN_IICBUS 0
|
|
|
|
|
1998-10-31 11:31:07 +00:00
|
|
|
static int
|
|
|
|
iicbus_probe(device_t dev)
|
|
|
|
{
|
1999-01-09 18:08:24 +00:00
|
|
|
|
2006-07-14 23:15:06 +00:00
|
|
|
device_set_desc(dev, "Philips I2C bus");
|
2009-01-06 17:23:37 +00:00
|
|
|
|
|
|
|
/* Allow other subclasses to override this driver. */
|
2009-01-20 00:05:43 +00:00
|
|
|
return (BUS_PROBE_GENERIC);
|
1998-10-31 11:31:07 +00:00
|
|
|
}
|
|
|
|
|
2004-05-12 13:43:41 +00:00
|
|
|
#if SCAN_IICBUS
|
2015-10-20 19:47:08 +00:00
|
|
|
static int
|
1998-10-31 11:31:07 +00:00
|
|
|
iic_probe_device(device_t dev, u_char addr)
|
|
|
|
{
|
|
|
|
int count;
|
|
|
|
char byte;
|
|
|
|
|
|
|
|
if ((addr & 1) == 0) {
|
|
|
|
/* is device writable? */
|
|
|
|
if (!iicbus_start(dev, (u_char)addr, 0)) {
|
|
|
|
iicbus_stop(dev);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* is device readable? */
|
|
|
|
if (!iicbus_block_read(dev, (u_char)addr, &byte, 1, &count))
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
1999-01-09 18:08:24 +00:00
|
|
|
#endif
|
1998-10-31 11:31:07 +00:00
|
|
|
|
1998-09-03 20:51:50 +00:00
|
|
|
/*
|
1998-10-31 11:31:07 +00:00
|
|
|
* We add all the devices which we know about.
|
|
|
|
* The generic attach routine will attach them if they are alive.
|
1998-09-03 20:51:50 +00:00
|
|
|
*/
|
2020-03-09 20:31:38 +00:00
|
|
|
int
|
|
|
|
iicbus_attach_common(device_t dev, u_int bus_freq)
|
1998-09-03 20:51:50 +00:00
|
|
|
{
|
2004-05-12 13:43:41 +00:00
|
|
|
#if SCAN_IICBUS
|
|
|
|
unsigned char addr;
|
|
|
|
#endif
|
2007-03-23 23:08:28 +00:00
|
|
|
struct iicbus_softc *sc = IICBUS_SOFTC(dev);
|
2011-12-04 11:55:33 +00:00
|
|
|
int strict;
|
2004-05-12 13:43:41 +00:00
|
|
|
|
2007-03-23 23:08:28 +00:00
|
|
|
sc->dev = dev;
|
2008-08-04 21:03:06 +00:00
|
|
|
mtx_init(&sc->lock, "iicbus", NULL, MTX_DEF);
|
2020-03-09 20:31:38 +00:00
|
|
|
iicbus_init_frequency(dev, bus_freq);
|
1998-10-31 11:31:07 +00:00
|
|
|
iicbus_reset(dev, IIC_FASTEST, 0, NULL);
|
2011-12-04 11:55:33 +00:00
|
|
|
if (resource_int_value(device_get_name(dev),
|
|
|
|
device_get_unit(dev), "strict", &strict) == 0)
|
|
|
|
sc->strict = strict;
|
|
|
|
else
|
|
|
|
sc->strict = 1;
|
1998-09-03 20:51:50 +00:00
|
|
|
|
1999-01-09 18:08:24 +00:00
|
|
|
/* device probing is meaningless since the bus is supposed to be
|
|
|
|
* hot-plug. Moreover, some I2C chips do not appreciate random
|
|
|
|
* accesses like stop after start to fast, reads for less than
|
|
|
|
* x bytes...
|
|
|
|
*/
|
2004-05-12 13:43:41 +00:00
|
|
|
#if SCAN_IICBUS
|
1998-10-31 11:31:07 +00:00
|
|
|
printf("Probing for devices on iicbus%d:", device_get_unit(dev));
|
1998-09-03 20:51:50 +00:00
|
|
|
|
1998-10-31 11:31:07 +00:00
|
|
|
/* probe any devices */
|
2004-05-12 13:43:41 +00:00
|
|
|
for (addr = 16; addr < 240; addr++) {
|
1998-10-31 11:31:07 +00:00
|
|
|
if (iic_probe_device(dev, (u_char)addr)) {
|
|
|
|
printf(" <%x>", addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("\n");
|
1999-01-09 18:08:24 +00:00
|
|
|
#endif
|
2008-08-04 21:03:06 +00:00
|
|
|
bus_generic_probe(dev);
|
2007-03-23 23:08:28 +00:00
|
|
|
bus_enumerate_hinted_children(dev);
|
1998-09-03 20:51:50 +00:00
|
|
|
bus_generic_attach(dev);
|
|
|
|
return (0);
|
|
|
|
}
|
2015-10-20 19:47:08 +00:00
|
|
|
|
2002-03-23 15:49:15 +00:00
|
|
|
static int
|
2020-03-09 20:31:38 +00:00
|
|
|
iicbus_attach(device_t dev)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (iicbus_attach_common(dev, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2002-03-23 15:49:15 +00:00
|
|
|
iicbus_detach(device_t dev)
|
|
|
|
{
|
2008-08-04 21:03:06 +00:00
|
|
|
struct iicbus_softc *sc = IICBUS_SOFTC(dev);
|
2019-12-13 02:20:26 +00:00
|
|
|
int err;
|
2006-07-14 23:15:06 +00:00
|
|
|
|
2019-12-13 02:20:26 +00:00
|
|
|
if ((err = device_delete_children(dev)) != 0)
|
|
|
|
return (err);
|
2002-03-23 15:49:15 +00:00
|
|
|
iicbus_reset(dev, IIC_FASTEST, 0, NULL);
|
2008-08-04 21:03:06 +00:00
|
|
|
mtx_destroy(&sc->lock);
|
2002-03-23 15:49:15 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2015-10-20 19:47:08 +00:00
|
|
|
|
2002-03-23 15:49:15 +00:00
|
|
|
static int
|
2007-03-23 23:08:28 +00:00
|
|
|
iicbus_print_child(device_t dev, device_t child)
|
2002-03-23 15:49:15 +00:00
|
|
|
{
|
2007-03-23 23:08:28 +00:00
|
|
|
struct iicbus_ivar *devi = IICBUS_IVAR(child);
|
|
|
|
int retval = 0;
|
2002-03-23 15:49:15 +00:00
|
|
|
|
2007-03-23 23:08:28 +00:00
|
|
|
retval += bus_print_child_header(dev, child);
|
|
|
|
if (devi->addr != 0)
|
|
|
|
retval += printf(" at addr %#x", devi->addr);
|
2016-03-22 22:25:08 +00:00
|
|
|
resource_list_print_type(&devi->rl, "irq", SYS_RES_IRQ, "%jd");
|
2007-03-23 23:08:28 +00:00
|
|
|
retval += bus_print_child_footer(dev, child);
|
|
|
|
|
|
|
|
return (retval);
|
|
|
|
}
|
|
|
|
|
2020-03-09 20:31:38 +00:00
|
|
|
void
|
2007-03-23 23:08:28 +00:00
|
|
|
iicbus_probe_nomatch(device_t bus, device_t child)
|
|
|
|
{
|
|
|
|
struct iicbus_ivar *devi = IICBUS_IVAR(child);
|
|
|
|
|
2015-05-10 02:19:27 +00:00
|
|
|
device_printf(bus, "<unknown card> at addr %#x\n", devi->addr);
|
2007-03-23 23:08:28 +00:00
|
|
|
}
|
|
|
|
|
2020-03-09 20:31:38 +00:00
|
|
|
int
|
2007-03-23 23:08:28 +00:00
|
|
|
iicbus_child_location_str(device_t bus, device_t child, char *buf,
|
|
|
|
size_t buflen)
|
|
|
|
{
|
|
|
|
struct iicbus_ivar *devi = IICBUS_IVAR(child);
|
|
|
|
|
|
|
|
snprintf(buf, buflen, "addr=%#x", devi->addr);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2020-03-09 20:31:38 +00:00
|
|
|
int
|
2007-03-23 23:08:28 +00:00
|
|
|
iicbus_child_pnpinfo_str(device_t bus, device_t child, char *buf,
|
|
|
|
size_t buflen)
|
|
|
|
{
|
|
|
|
*buf = '\0';
|
2002-03-23 15:49:15 +00:00
|
|
|
return (0);
|
|
|
|
}
|
1998-09-03 20:51:50 +00:00
|
|
|
|
2020-03-09 20:31:38 +00:00
|
|
|
int
|
2009-02-10 22:50:23 +00:00
|
|
|
iicbus_read_ivar(device_t bus, device_t child, int which, uintptr_t *result)
|
2007-03-23 23:08:28 +00:00
|
|
|
{
|
|
|
|
struct iicbus_ivar *devi = IICBUS_IVAR(child);
|
|
|
|
|
|
|
|
switch (which) {
|
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
case IICBUS_IVAR_ADDR:
|
2010-07-08 14:19:52 +00:00
|
|
|
*result = devi->addr;
|
2007-03-23 23:08:28 +00:00
|
|
|
break;
|
2016-10-02 17:36:55 +00:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2020-03-09 20:31:38 +00:00
|
|
|
int
|
2016-10-02 17:36:55 +00:00
|
|
|
iicbus_write_ivar(device_t bus, device_t child, int which, uintptr_t value)
|
|
|
|
{
|
|
|
|
struct iicbus_ivar *devi = IICBUS_IVAR(child);
|
|
|
|
|
|
|
|
switch (which) {
|
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
case IICBUS_IVAR_ADDR:
|
add iic interface to ig4 driver, move isl and cyapa to iicbus
Summary:
The hardware does not expose a classic SMBus interface.
Instead it has a lower level interface that can express a far richer
I2C protocol than what smbus offers. However, the interface does not
provide a way to explicitly generate the I2C stop and start conditions.
It's only possible to request that the stop condition is generated
after transferring the next byte in either direction. So, at least
one data byte must always be transferred.
Thus, some I2C sequences are impossible to generate, e.g., an equivalent
of smbus quick command (<start>-<slave addr>-<r/w bit>-<stop>).
At the same time isl(4) and cyapa(4) are moved to iicbus and now they use
iicbus_transfer for communication. Previously they used smbus_trans()
interface that is not defined by the SMBus protocol and was implemented
only by ig4(4). In fact, that interface was impossible to implement
for the typical SMBus controllers like intpm(4) or ichsmb(4) where
a type of the SMBus command must be programmed.
The plan is to remove smbus_trans() and all its uses.
As an aside, the smbus_trans() method deviates from the standard,
but perhaps backwards, FreeBSD convention of using 8-bit slave
addresses (shifted by 1 bit to the left). The method expects
7-bit addresses.
There is a user facing consequence of this change.
A user must now provide device hints for isl and cyapa that specify an iicbus to use
and a slave address on it.
On Chromebook hardware where isl and cyapa devices are commonly found
it is also possible to use a new chromebook_platform(4) driver that
automatically configures isl and cyapa devices. There is no need to
provide the device hints in that case,
Right now smbus(4) driver tries to discover all slaves on the bus.
That is very dangerous. Fortunately, the probing code uses smbus_trans()
to do its job, so it is really enabled for ig4 only.
The plan is to remove that auto-probing code and smbus_trans().
Tested by: grembo, Matthias Apitz <guru@unixarea.de> (w/o
chromebook_platform)
Discussed with: grembo, imp
Reviewed by: wblock (docs)
MFC after: 1 month
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D8172
2016-10-30 12:15:33 +00:00
|
|
|
if (devi->addr != 0)
|
|
|
|
return (EINVAL);
|
|
|
|
devi->addr = value;
|
2007-03-23 23:08:28 +00:00
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2020-03-09 20:31:38 +00:00
|
|
|
device_t
|
|
|
|
iicbus_add_child_common(device_t dev, u_int order, const char *name, int unit,
|
|
|
|
size_t ivars_size)
|
2007-03-23 23:08:28 +00:00
|
|
|
{
|
|
|
|
device_t child;
|
|
|
|
struct iicbus_ivar *devi;
|
|
|
|
|
|
|
|
child = device_add_child_ordered(dev, order, name, unit);
|
|
|
|
if (child == NULL)
|
|
|
|
return (child);
|
2020-03-09 20:31:38 +00:00
|
|
|
devi = malloc(ivars_size, M_DEVBUF, M_NOWAIT | M_ZERO);
|
2007-03-23 23:08:28 +00:00
|
|
|
if (devi == NULL) {
|
|
|
|
device_delete_child(dev, child);
|
|
|
|
return (0);
|
|
|
|
}
|
2015-05-09 03:05:44 +00:00
|
|
|
resource_list_init(&devi->rl);
|
2007-03-23 23:08:28 +00:00
|
|
|
device_set_ivars(child, devi);
|
|
|
|
return (child);
|
|
|
|
}
|
|
|
|
|
2020-03-09 20:31:38 +00:00
|
|
|
static device_t
|
|
|
|
iicbus_add_child(device_t dev, u_int order, const char *name, int unit)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (iicbus_add_child_common(
|
|
|
|
dev, order, name, unit, sizeof(struct iicbus_ivar)));
|
|
|
|
}
|
|
|
|
|
2007-03-23 23:08:28 +00:00
|
|
|
static void
|
|
|
|
iicbus_hinted_child(device_t bus, const char *dname, int dunit)
|
|
|
|
{
|
|
|
|
device_t child;
|
2015-05-09 03:05:44 +00:00
|
|
|
int irq;
|
2007-03-23 23:08:28 +00:00
|
|
|
struct iicbus_ivar *devi;
|
|
|
|
|
|
|
|
child = BUS_ADD_CHILD(bus, 0, dname, dunit);
|
|
|
|
devi = IICBUS_IVAR(child);
|
|
|
|
resource_int_value(dname, dunit, "addr", &devi->addr);
|
2015-05-09 03:05:44 +00:00
|
|
|
if (resource_int_value(dname, dunit, "irq", &irq) == 0) {
|
|
|
|
if (bus_set_resource(child, SYS_RES_IRQ, 0, irq, 1) != 0)
|
|
|
|
device_printf(bus,
|
|
|
|
"warning: bus_set_resource() failed\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct resource_list *
|
|
|
|
iicbus_get_resource_list(device_t bus __unused, device_t child)
|
|
|
|
{
|
|
|
|
struct iicbus_ivar *devi;
|
|
|
|
|
|
|
|
devi = IICBUS_IVAR(child);
|
|
|
|
return (&devi->rl);
|
2007-03-23 23:08:28 +00:00
|
|
|
}
|
|
|
|
|
1998-09-03 20:51:50 +00:00
|
|
|
int
|
|
|
|
iicbus_generic_intr(device_t dev, int event, char *buf)
|
|
|
|
{
|
2006-07-14 23:15:06 +00:00
|
|
|
|
1998-09-03 20:51:50 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1998-10-31 11:31:07 +00:00
|
|
|
int
|
|
|
|
iicbus_null_callback(device_t dev, int index, caddr_t data)
|
|
|
|
{
|
2006-07-14 23:15:06 +00:00
|
|
|
|
1998-10-31 11:31:07 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
iicbus_null_repeated_start(device_t dev, u_char addr)
|
|
|
|
{
|
2006-07-14 23:15:06 +00:00
|
|
|
|
1998-10-31 11:31:07 +00:00
|
|
|
return (IIC_ENOTSUPP);
|
|
|
|
}
|
|
|
|
|
Allow i2c bus speed to be configured via hints, FDT data, and sysctl.
The current support for controlling i2c bus speed is an inconsistant mess.
There are 4 symbolic speed values defined, UNKNOWN, SLOW, FAST, FASTEST.
It seems to be universally assumed that SLOW means the standard 100KHz
rate from the original spec. Nothing ever calls iicbus_reset() with a
speed of FAST, although some drivers would treat it as the 400KHz standard
speed. Mostly iicbus_reset() is called with the speed set to UNKNOWN or
FASTEST, and there's really no telling what any individual driver will do
with those.
The speed of an i2c bus is limited by the speed of the slowest device on
the bus. This means that generally the bus speed needs to be configured
based on the board/system and the components within it. Historically for
i2c we've configured with device hints. Newer systems use FDT data and it
documents a clock-frequency property for i2c busses. Hobbyists and
developers are likely to want on the fly changes. These changes provide
all 3 methods, but do not require any existing drivers to change to use
the new facilities.
This adds an iicbus method, iicbus_get_frequency(dev, speed) that gets the
frequency for the requested symbolic speed. If the symbolic speed is SLOW
or if there is no speed configured for the bus, the returned value is
100KHz, always. Otherwise, if bus speed is configured by hints, fdt,
tunable, or sysctl, that speed is returned. It also adds a helper
function, iicbus_init_frequency() that any bus driver subclassed from
iicbus can initialize the frequency from some other source of info.
Initial driver implementations are provided for Freescale and TI.
Differential Revision: https://reviews.freebsd.org/D1174
PR: 195009
2014-11-18 01:54:31 +00:00
|
|
|
void
|
|
|
|
iicbus_init_frequency(device_t dev, u_int bus_freq)
|
|
|
|
{
|
|
|
|
struct iicbus_softc *sc = IICBUS_SOFTC(dev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If a bus frequency value was passed in, use it. Otherwise initialize
|
|
|
|
* it first to the standard i2c 100KHz frequency, then override that
|
|
|
|
* from a hint if one exists.
|
|
|
|
*/
|
|
|
|
if (bus_freq > 0)
|
|
|
|
sc->bus_freq = bus_freq;
|
|
|
|
else {
|
|
|
|
sc->bus_freq = 100000;
|
|
|
|
resource_int_value(device_get_name(dev), device_get_unit(dev),
|
|
|
|
"frequency", (int *)&sc->bus_freq);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Set up the sysctl that allows the bus frequency to be changed.
|
|
|
|
* It is flagged as a tunable so that the user can set the value in
|
|
|
|
* loader(8), and that will override any other setting from any source.
|
|
|
|
* The sysctl tunable/value is the one most directly controlled by the
|
|
|
|
* user and thus the one that always takes precedence.
|
|
|
|
*/
|
|
|
|
SYSCTL_ADD_UINT(device_get_sysctl_ctx(dev),
|
|
|
|
SYSCTL_CHILDREN(device_get_sysctl_tree(dev)),
|
|
|
|
OID_AUTO, "frequency", CTLFLAG_RW | CTLFLAG_TUN, &sc->bus_freq,
|
|
|
|
sc->bus_freq, "Bus frequency in Hz");
|
|
|
|
}
|
|
|
|
|
|
|
|
static u_int
|
|
|
|
iicbus_get_frequency(device_t dev, u_char speed)
|
|
|
|
{
|
|
|
|
struct iicbus_softc *sc = IICBUS_SOFTC(dev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the frequency has not been configured for the bus, or the request
|
|
|
|
* is specifically for SLOW speed, use the standard 100KHz rate, else
|
|
|
|
* use the configured bus speed.
|
|
|
|
*/
|
|
|
|
if (sc->bus_freq == 0 || speed == IIC_SLOW)
|
|
|
|
return (100000);
|
|
|
|
return (sc->bus_freq);
|
|
|
|
}
|
|
|
|
|
2007-03-23 23:08:28 +00:00
|
|
|
static device_method_t iicbus_methods[] = {
|
2015-05-08 21:51:37 +00:00
|
|
|
/* device interface */
|
|
|
|
DEVMETHOD(device_probe, iicbus_probe),
|
|
|
|
DEVMETHOD(device_attach, iicbus_attach),
|
|
|
|
DEVMETHOD(device_detach, iicbus_detach),
|
2019-11-03 21:00:55 +00:00
|
|
|
DEVMETHOD(device_suspend, bus_generic_suspend),
|
|
|
|
DEVMETHOD(device_resume, bus_generic_resume),
|
2015-05-08 21:51:37 +00:00
|
|
|
|
|
|
|
/* bus interface */
|
2015-05-09 03:05:44 +00:00
|
|
|
DEVMETHOD(bus_setup_intr, bus_generic_setup_intr),
|
|
|
|
DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr),
|
|
|
|
DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
|
|
|
|
DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource),
|
|
|
|
DEVMETHOD(bus_adjust_resource, bus_generic_adjust_resource),
|
2015-05-10 02:19:27 +00:00
|
|
|
DEVMETHOD(bus_alloc_resource, bus_generic_rl_alloc_resource),
|
2015-05-09 03:05:44 +00:00
|
|
|
DEVMETHOD(bus_get_resource, bus_generic_rl_get_resource),
|
2015-05-10 02:19:27 +00:00
|
|
|
DEVMETHOD(bus_release_resource, bus_generic_rl_release_resource),
|
|
|
|
DEVMETHOD(bus_set_resource, bus_generic_rl_set_resource),
|
2015-05-09 03:05:44 +00:00
|
|
|
DEVMETHOD(bus_get_resource_list, iicbus_get_resource_list),
|
2015-05-08 21:51:37 +00:00
|
|
|
DEVMETHOD(bus_add_child, iicbus_add_child),
|
|
|
|
DEVMETHOD(bus_print_child, iicbus_print_child),
|
2007-03-23 23:08:28 +00:00
|
|
|
DEVMETHOD(bus_probe_nomatch, iicbus_probe_nomatch),
|
|
|
|
DEVMETHOD(bus_read_ivar, iicbus_read_ivar),
|
2016-10-02 17:36:55 +00:00
|
|
|
DEVMETHOD(bus_write_ivar, iicbus_write_ivar),
|
2007-03-23 23:08:28 +00:00
|
|
|
DEVMETHOD(bus_child_pnpinfo_str, iicbus_child_pnpinfo_str),
|
|
|
|
DEVMETHOD(bus_child_location_str, iicbus_child_location_str),
|
|
|
|
DEVMETHOD(bus_hinted_child, iicbus_hinted_child),
|
|
|
|
|
|
|
|
/* iicbus interface */
|
|
|
|
DEVMETHOD(iicbus_transfer, iicbus_transfer),
|
Allow i2c bus speed to be configured via hints, FDT data, and sysctl.
The current support for controlling i2c bus speed is an inconsistant mess.
There are 4 symbolic speed values defined, UNKNOWN, SLOW, FAST, FASTEST.
It seems to be universally assumed that SLOW means the standard 100KHz
rate from the original spec. Nothing ever calls iicbus_reset() with a
speed of FAST, although some drivers would treat it as the 400KHz standard
speed. Mostly iicbus_reset() is called with the speed set to UNKNOWN or
FASTEST, and there's really no telling what any individual driver will do
with those.
The speed of an i2c bus is limited by the speed of the slowest device on
the bus. This means that generally the bus speed needs to be configured
based on the board/system and the components within it. Historically for
i2c we've configured with device hints. Newer systems use FDT data and it
documents a clock-frequency property for i2c busses. Hobbyists and
developers are likely to want on the fly changes. These changes provide
all 3 methods, but do not require any existing drivers to change to use
the new facilities.
This adds an iicbus method, iicbus_get_frequency(dev, speed) that gets the
frequency for the requested symbolic speed. If the symbolic speed is SLOW
or if there is no speed configured for the bus, the returned value is
100KHz, always. Otherwise, if bus speed is configured by hints, fdt,
tunable, or sysctl, that speed is returned. It also adds a helper
function, iicbus_init_frequency() that any bus driver subclassed from
iicbus can initialize the frequency from some other source of info.
Initial driver implementations are provided for Freescale and TI.
Differential Revision: https://reviews.freebsd.org/D1174
PR: 195009
2014-11-18 01:54:31 +00:00
|
|
|
DEVMETHOD(iicbus_get_frequency, iicbus_get_frequency),
|
2007-03-23 23:08:28 +00:00
|
|
|
|
2011-11-22 21:28:20 +00:00
|
|
|
DEVMETHOD_END
|
2007-03-23 23:08:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
driver_t iicbus_driver = {
|
|
|
|
"iicbus",
|
|
|
|
iicbus_methods,
|
|
|
|
sizeof(struct iicbus_softc),
|
|
|
|
};
|
|
|
|
|
|
|
|
devclass_t iicbus_devclass;
|
|
|
|
|
2002-03-23 15:49:15 +00:00
|
|
|
MODULE_VERSION(iicbus, IICBUS_MODVER);
|
2009-01-15 02:46:43 +00:00
|
|
|
DRIVER_MODULE(iicbus, iichb, iicbus_driver, iicbus_devclass, 0, 0);
|