2016-12-26 22:13:43 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2016 Oleksandr Tymoshenko <gonzo@FreeBSD.org>
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
#include "opt_acpi.h"
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/module.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/rman.h>
|
|
|
|
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <machine/resource.h>
|
|
|
|
|
|
|
|
#include <contrib/dev/acpica/include/acpi.h>
|
|
|
|
#include <contrib/dev/acpica/include/accommon.h>
|
|
|
|
|
|
|
|
#include <dev/acpica/acpivar.h>
|
|
|
|
#include <dev/iicbus/iiconf.h>
|
|
|
|
|
|
|
|
#include <dev/ichiic/ig4_reg.h>
|
|
|
|
#include <dev/ichiic/ig4_var.h>
|
|
|
|
|
|
|
|
static int ig4iic_acpi_probe(device_t dev);
|
|
|
|
static int ig4iic_acpi_attach(device_t dev);
|
|
|
|
static int ig4iic_acpi_detach(device_t dev);
|
|
|
|
|
|
|
|
static char *ig4iic_ids[] = {
|
|
|
|
"INT33C2",
|
|
|
|
"INT33C3",
|
|
|
|
"INT3432",
|
|
|
|
"INT3433",
|
|
|
|
"80860F41",
|
|
|
|
"808622C1",
|
|
|
|
"AMDI0510",
|
2018-08-20 18:50:56 +00:00
|
|
|
"AMDI0010",
|
2016-12-26 22:13:43 +00:00
|
|
|
"APMC0D0F",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
ig4iic_acpi_probe(device_t dev)
|
|
|
|
{
|
2018-10-26 00:05:46 +00:00
|
|
|
int rv;
|
2018-08-22 22:56:01 +00:00
|
|
|
|
|
|
|
if (acpi_disabled("ig4iic"))
|
|
|
|
return (ENXIO);
|
2019-11-03 20:42:04 +00:00
|
|
|
rv = ACPI_ID_PROBE(device_get_parent(dev), dev, ig4iic_ids, NULL);
|
2018-12-17 21:33:25 +00:00
|
|
|
if (rv > 0)
|
2018-10-26 00:05:46 +00:00
|
|
|
return (rv);
|
|
|
|
|
2018-12-17 21:33:25 +00:00
|
|
|
device_set_desc(dev, "Designware I2C Controller");
|
2018-10-26 00:05:46 +00:00
|
|
|
return (rv);
|
2016-12-26 22:13:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ig4iic_acpi_attach(device_t dev)
|
|
|
|
{
|
|
|
|
ig4iic_softc_t *sc;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
sc = device_get_softc(dev);
|
|
|
|
|
|
|
|
sc->dev = dev;
|
2018-03-06 23:39:43 +00:00
|
|
|
/* All the HIDs matched are Atom SOCs. */
|
|
|
|
sc->version = IG4_ATOM;
|
2016-12-26 22:13:43 +00:00
|
|
|
sc->regs_rid = 0;
|
|
|
|
sc->regs_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
|
|
|
|
&sc->regs_rid, RF_ACTIVE);
|
|
|
|
if (sc->regs_res == NULL) {
|
|
|
|
device_printf(dev, "unable to map registers\n");
|
|
|
|
ig4iic_acpi_detach(dev);
|
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
sc->intr_rid = 0;
|
|
|
|
sc->intr_res = bus_alloc_resource_any(dev, SYS_RES_IRQ,
|
|
|
|
&sc->intr_rid, RF_SHAREABLE | RF_ACTIVE);
|
|
|
|
if (sc->intr_res == NULL) {
|
|
|
|
device_printf(dev, "unable to map interrupt\n");
|
|
|
|
ig4iic_acpi_detach(dev);
|
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
sc->platform_attached = 1;
|
|
|
|
|
|
|
|
error = ig4iic_attach(sc);
|
|
|
|
if (error)
|
|
|
|
ig4iic_acpi_detach(dev);
|
|
|
|
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ig4iic_acpi_detach(device_t dev)
|
|
|
|
{
|
|
|
|
ig4iic_softc_t *sc = device_get_softc(dev);
|
|
|
|
int error;
|
|
|
|
|
|
|
|
if (sc->platform_attached) {
|
|
|
|
error = ig4iic_detach(sc);
|
|
|
|
if (error)
|
|
|
|
return (error);
|
|
|
|
sc->platform_attached = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc->intr_res) {
|
|
|
|
bus_release_resource(dev, SYS_RES_IRQ,
|
|
|
|
sc->intr_rid, sc->intr_res);
|
|
|
|
sc->intr_res = NULL;
|
|
|
|
}
|
|
|
|
if (sc->regs_res) {
|
|
|
|
bus_release_resource(dev, SYS_RES_MEMORY,
|
|
|
|
sc->regs_rid, sc->regs_res);
|
|
|
|
sc->regs_res = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2019-11-03 21:00:55 +00:00
|
|
|
static int
|
|
|
|
ig4iic_acpi_suspend(device_t dev)
|
|
|
|
{
|
|
|
|
ig4iic_softc_t *sc = device_get_softc(dev);
|
|
|
|
|
|
|
|
return (ig4iic_suspend(sc));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ig4iic_acpi_resume(device_t dev)
|
|
|
|
{
|
|
|
|
ig4iic_softc_t *sc = device_get_softc(dev);
|
|
|
|
|
|
|
|
return (ig4iic_resume(sc));
|
|
|
|
}
|
|
|
|
|
2016-12-26 22:13:43 +00:00
|
|
|
static device_method_t ig4iic_acpi_methods[] = {
|
|
|
|
/* Device interface */
|
|
|
|
DEVMETHOD(device_probe, ig4iic_acpi_probe),
|
|
|
|
DEVMETHOD(device_attach, ig4iic_acpi_attach),
|
|
|
|
DEVMETHOD(device_detach, ig4iic_acpi_detach),
|
2019-11-03 21:00:55 +00:00
|
|
|
DEVMETHOD(device_suspend, ig4iic_acpi_suspend),
|
|
|
|
DEVMETHOD(device_resume, ig4iic_acpi_resume),
|
2016-12-26 22:13:43 +00:00
|
|
|
|
2019-11-03 21:15:01 +00:00
|
|
|
/* Bus interface */
|
|
|
|
DEVMETHOD(bus_setup_intr, bus_generic_setup_intr),
|
|
|
|
DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr),
|
|
|
|
DEVMETHOD(bus_alloc_resource, bus_generic_alloc_resource),
|
|
|
|
DEVMETHOD(bus_release_resource, bus_generic_release_resource),
|
|
|
|
DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
|
|
|
|
DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource),
|
|
|
|
DEVMETHOD(bus_adjust_resource, bus_generic_adjust_resource),
|
|
|
|
|
2016-12-26 22:13:43 +00:00
|
|
|
/* iicbus interface */
|
|
|
|
DEVMETHOD(iicbus_transfer, ig4iic_transfer),
|
|
|
|
DEVMETHOD(iicbus_reset, ig4iic_reset),
|
2019-11-03 20:53:13 +00:00
|
|
|
DEVMETHOD(iicbus_callback, ig4iic_callback),
|
2016-12-26 22:13:43 +00:00
|
|
|
|
|
|
|
DEVMETHOD_END
|
|
|
|
};
|
|
|
|
|
|
|
|
static driver_t ig4iic_acpi_driver = {
|
2019-11-03 20:39:46 +00:00
|
|
|
"ig4iic",
|
2016-12-26 22:13:43 +00:00
|
|
|
ig4iic_acpi_methods,
|
|
|
|
sizeof(struct ig4iic_softc),
|
|
|
|
};
|
|
|
|
|
2020-04-24 07:49:21 +00:00
|
|
|
DRIVER_MODULE_ORDERED(ig4iic, acpi, ig4iic_acpi_driver, ig4iic_devclass, 0, 0,
|
|
|
|
SI_ORDER_ANY);
|
2019-11-03 20:39:46 +00:00
|
|
|
MODULE_DEPEND(ig4iic, acpi, 1, 1, 1);
|