1 /*- 2 * Copyright (c) 2016 Oleksandr Tymoshenko <gonzo@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 */ 26 27 #include <sys/cdefs.h> 28 #include "opt_acpi.h" 29 30 #include <sys/param.h> 31 #include <sys/bus.h> 32 #include <sys/kernel.h> 33 #include <sys/module.h> 34 #include <sys/proc.h> 35 #include <sys/rman.h> 36 37 #include <machine/bus.h> 38 #include <machine/resource.h> 39 40 #include <contrib/dev/acpica/include/acpi.h> 41 #include <contrib/dev/acpica/include/accommon.h> 42 43 #include <dev/acpica/acpivar.h> 44 #include <dev/iicbus/iiconf.h> 45 46 #include <dev/ichiic/ig4_reg.h> 47 #include <dev/ichiic/ig4_var.h> 48 49 static int ig4iic_acpi_probe(device_t dev); 50 static int ig4iic_acpi_attach(device_t dev); 51 static int ig4iic_acpi_detach(device_t dev); 52 53 static char *ig4iic_ids[] = { 54 "INT33C2", 55 "INT33C3", 56 "INT3432", 57 "INT3433", 58 "80860F41", 59 "808622C1", 60 "AMDI0510", 61 "AMDI0010", 62 "AMD0010", 63 "APMC0D0F", 64 NULL 65 }; 66 67 static int 68 ig4iic_acpi_probe(device_t dev) 69 { 70 int rv; 71 72 if (acpi_disabled("ig4iic")) 73 return (ENXIO); 74 rv = ACPI_ID_PROBE(device_get_parent(dev), dev, ig4iic_ids, NULL); 75 if (rv > 0) 76 return (rv); 77 78 device_set_desc(dev, "Designware I2C Controller"); 79 return (rv); 80 } 81 82 static int 83 ig4iic_acpi_attach(device_t dev) 84 { 85 ig4iic_softc_t *sc; 86 int error; 87 88 sc = device_get_softc(dev); 89 90 sc->dev = dev; 91 /* All the HIDs matched are Atom SOCs. */ 92 sc->version = IG4_ATOM; 93 sc->regs_rid = 0; 94 sc->regs_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, 95 &sc->regs_rid, RF_ACTIVE); 96 if (sc->regs_res == NULL) { 97 device_printf(dev, "unable to map registers\n"); 98 ig4iic_acpi_detach(dev); 99 return (ENXIO); 100 } 101 sc->intr_rid = 0; 102 sc->intr_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, 103 &sc->intr_rid, RF_SHAREABLE | RF_ACTIVE); 104 if (sc->intr_res == NULL) { 105 device_printf(dev, "unable to map interrupt\n"); 106 ig4iic_acpi_detach(dev); 107 return (ENXIO); 108 } 109 sc->platform_attached = true; 110 111 error = ig4iic_attach(sc); 112 if (error) 113 ig4iic_acpi_detach(dev); 114 115 return (error); 116 } 117 118 static int 119 ig4iic_acpi_detach(device_t dev) 120 { 121 ig4iic_softc_t *sc = device_get_softc(dev); 122 int error; 123 124 if (sc->platform_attached) { 125 error = ig4iic_detach(sc); 126 if (error) 127 return (error); 128 sc->platform_attached = false; 129 } 130 131 if (sc->intr_res) { 132 bus_release_resource(dev, SYS_RES_IRQ, 133 sc->intr_rid, sc->intr_res); 134 sc->intr_res = NULL; 135 } 136 if (sc->regs_res) { 137 bus_release_resource(dev, SYS_RES_MEMORY, 138 sc->regs_rid, sc->regs_res); 139 sc->regs_res = NULL; 140 } 141 142 return (0); 143 } 144 145 static int 146 ig4iic_acpi_suspend(device_t dev) 147 { 148 ig4iic_softc_t *sc = device_get_softc(dev); 149 150 return (ig4iic_suspend(sc)); 151 } 152 153 static int 154 ig4iic_acpi_resume(device_t dev) 155 { 156 ig4iic_softc_t *sc = device_get_softc(dev); 157 158 return (ig4iic_resume(sc)); 159 } 160 161 static device_method_t ig4iic_acpi_methods[] = { 162 /* Device interface */ 163 DEVMETHOD(device_probe, ig4iic_acpi_probe), 164 DEVMETHOD(device_attach, ig4iic_acpi_attach), 165 DEVMETHOD(device_detach, ig4iic_acpi_detach), 166 DEVMETHOD(device_suspend, ig4iic_acpi_suspend), 167 DEVMETHOD(device_resume, ig4iic_acpi_resume), 168 169 /* Bus interface */ 170 DEVMETHOD(bus_setup_intr, bus_generic_setup_intr), 171 DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), 172 DEVMETHOD(bus_alloc_resource, bus_generic_alloc_resource), 173 DEVMETHOD(bus_release_resource, bus_generic_release_resource), 174 DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), 175 DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), 176 DEVMETHOD(bus_adjust_resource, bus_generic_adjust_resource), 177 178 /* iicbus interface */ 179 DEVMETHOD(iicbus_transfer, ig4iic_transfer), 180 DEVMETHOD(iicbus_reset, ig4iic_reset), 181 DEVMETHOD(iicbus_callback, ig4iic_callback), 182 183 DEVMETHOD_END 184 }; 185 186 static driver_t ig4iic_acpi_driver = { 187 "ig4iic", 188 ig4iic_acpi_methods, 189 sizeof(struct ig4iic_softc), 190 }; 191 192 DRIVER_MODULE_ORDERED(ig4iic, acpi, ig4iic_acpi_driver, 0, 0, SI_ORDER_ANY); 193 MODULE_DEPEND(ig4iic, acpi, 1, 1, 1); 194 ACPI_PNP_INFO(ig4iic_ids); 195