xref: /freebsd/sys/dev/ichiic/ig4_pci.c (revision 780fb4a2fa9a9aee5ac48a60b790f567c0dc13e9)
1 /*
2  * Copyright (c) 2014 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com> and was subsequently ported
6  * to FreeBSD by Michael Gmelin <freebsd@grem.de>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  * 3. Neither the name of The DragonFly Project nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific, prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
26  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35 
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
38 
39 /*
40  * Intel fourth generation mobile cpus integrated I2C device.
41  *
42  * See ig4_reg.h for datasheet reference and notes.
43  */
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/kernel.h>
48 #include <sys/module.h>
49 #include <sys/errno.h>
50 #include <sys/lock.h>
51 #include <sys/mutex.h>
52 #include <sys/sx.h>
53 #include <sys/syslog.h>
54 #include <sys/bus.h>
55 
56 #include <machine/bus.h>
57 #include <sys/rman.h>
58 #include <machine/resource.h>
59 
60 #include <dev/pci/pcivar.h>
61 #include <dev/pci/pcireg.h>
62 #include <dev/iicbus/iiconf.h>
63 
64 #include <dev/ichiic/ig4_reg.h>
65 #include <dev/ichiic/ig4_var.h>
66 
67 static int ig4iic_pci_detach(device_t dev);
68 
69 #define PCI_CHIP_LYNXPT_LP_I2C_1	0x9c618086
70 #define PCI_CHIP_LYNXPT_LP_I2C_2	0x9c628086
71 #define PCI_CHIP_BRASWELL_I2C_1 	0x22c18086
72 #define PCI_CHIP_BRASWELL_I2C_2 	0x22c28086
73 #define PCI_CHIP_BRASWELL_I2C_3 	0x22c38086
74 #define PCI_CHIP_BRASWELL_I2C_5 	0x22c58086
75 #define PCI_CHIP_BRASWELL_I2C_6 	0x22c68086
76 #define PCI_CHIP_BRASWELL_I2C_7 	0x22c78086
77 #define PCI_CHIP_SKYLAKE_I2C_0		0x9d608086
78 #define PCI_CHIP_SKYLAKE_I2C_1		0x9d618086
79 #define PCI_CHIP_SKYLAKE_I2C_2		0x9d628086
80 #define PCI_CHIP_SKYLAKE_I2C_3		0x9d638086
81 #define PCI_CHIP_SKYLAKE_I2C_4		0x9d648086
82 #define PCI_CHIP_SKYLAKE_I2C_5		0x9d658086
83 #define PCI_CHIP_APL_I2C_0		0x5aac8086
84 #define PCI_CHIP_APL_I2C_1		0x5aae8086
85 #define PCI_CHIP_APL_I2C_2		0x5ab08086
86 #define PCI_CHIP_APL_I2C_3		0x5ab28086
87 #define PCI_CHIP_APL_I2C_4		0x5ab48086
88 #define PCI_CHIP_APL_I2C_5		0x5ab68086
89 #define PCI_CHIP_APL_I2C_6		0x5ab88086
90 #define PCI_CHIP_APL_I2C_7		0x5aba8086
91 
92 struct ig4iic_pci_device {
93 	uint32_t	devid;
94 	const char	*desc;
95 	enum ig4_vers	version;
96 };
97 
98 static struct ig4iic_pci_device ig4iic_pci_devices[] = {
99 	{ PCI_CHIP_LYNXPT_LP_I2C_1, "Intel Lynx Point-LP I2C Controller-1", IG4_HASWELL},
100 	{ PCI_CHIP_LYNXPT_LP_I2C_2, "Intel Lynx Point-LP I2C Controller-2", IG4_HASWELL},
101 	{ PCI_CHIP_BRASWELL_I2C_1, "Intel Braswell Serial I/O I2C Port 1", IG4_ATOM},
102 	{ PCI_CHIP_BRASWELL_I2C_2, "Intel Braswell Serial I/O I2C Port 2", IG4_ATOM},
103 	{ PCI_CHIP_BRASWELL_I2C_3, "Intel Braswell Serial I/O I2C Port 3", IG4_ATOM},
104 	{ PCI_CHIP_BRASWELL_I2C_5, "Intel Braswell Serial I/O I2C Port 5", IG4_ATOM},
105 	{ PCI_CHIP_BRASWELL_I2C_6, "Intel Braswell Serial I/O I2C Port 6", IG4_ATOM},
106 	{ PCI_CHIP_BRASWELL_I2C_7, "Intel Braswell Serial I/O I2C Port 7", IG4_ATOM},
107 	{ PCI_CHIP_SKYLAKE_I2C_0, "Intel Sunrise Point-LP I2C Controller-0", IG4_SKYLAKE},
108 	{ PCI_CHIP_SKYLAKE_I2C_1, "Intel Sunrise Point-LP I2C Controller-1", IG4_SKYLAKE},
109 	{ PCI_CHIP_SKYLAKE_I2C_2, "Intel Sunrise Point-LP I2C Controller-2", IG4_SKYLAKE},
110 	{ PCI_CHIP_SKYLAKE_I2C_3, "Intel Sunrise Point-LP I2C Controller-3", IG4_SKYLAKE},
111 	{ PCI_CHIP_SKYLAKE_I2C_4, "Intel Sunrise Point-LP I2C Controller-4", IG4_SKYLAKE},
112 	{ PCI_CHIP_SKYLAKE_I2C_5, "Intel Sunrise Point-LP I2C Controller-5", IG4_SKYLAKE},
113 	{ PCI_CHIP_APL_I2C_0, "Intel Apollo Lake I2C Controller-0", IG4_APL},
114 	{ PCI_CHIP_APL_I2C_1, "Intel Apollo Lake I2C Controller-1", IG4_APL},
115 	{ PCI_CHIP_APL_I2C_2, "Intel Apollo Lake I2C Controller-2", IG4_APL},
116 	{ PCI_CHIP_APL_I2C_3, "Intel Apollo Lake I2C Controller-3", IG4_APL},
117 	{ PCI_CHIP_APL_I2C_4, "Intel Apollo Lake I2C Controller-4", IG4_APL},
118 	{ PCI_CHIP_APL_I2C_5, "Intel Apollo Lake I2C Controller-5", IG4_APL},
119 	{ PCI_CHIP_APL_I2C_6, "Intel Apollo Lake I2C Controller-6", IG4_APL},
120 	{ PCI_CHIP_APL_I2C_7, "Intel Apollo Lake I2C Controller-7", IG4_APL}
121 };
122 
123 static int
124 ig4iic_pci_probe(device_t dev)
125 {
126 	ig4iic_softc_t *sc = device_get_softc(dev);
127 	uint32_t devid;
128 	int i;
129 
130 	devid = pci_get_devid(dev);
131 	for (i = 0; i < nitems(ig4iic_pci_devices); i++) {
132 		if (ig4iic_pci_devices[i].devid == devid) {
133 			device_set_desc(dev, ig4iic_pci_devices[i].desc);
134 			sc->version = ig4iic_pci_devices[i].version;
135 			return (BUS_PROBE_DEFAULT);
136 		}
137 	}
138 	return (ENXIO);
139 }
140 
141 static int
142 ig4iic_pci_attach(device_t dev)
143 {
144 	ig4iic_softc_t *sc = device_get_softc(dev);
145 	int error;
146 
147 	sc->dev = dev;
148 	sc->regs_rid = PCIR_BAR(0);
149 	sc->regs_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY,
150 					  &sc->regs_rid, RF_ACTIVE);
151 	if (sc->regs_res == NULL) {
152 		device_printf(dev, "unable to map registers\n");
153 		ig4iic_pci_detach(dev);
154 		return (ENXIO);
155 	}
156 	sc->intr_rid = 0;
157 	if (pci_alloc_msi(dev, &sc->intr_rid)) {
158 		device_printf(dev, "Using MSI\n");
159 	}
160 	sc->intr_res = bus_alloc_resource_any(dev, SYS_RES_IRQ,
161 					  &sc->intr_rid, RF_SHAREABLE | RF_ACTIVE);
162 	if (sc->intr_res == NULL) {
163 		device_printf(dev, "unable to map interrupt\n");
164 		ig4iic_pci_detach(dev);
165 		return (ENXIO);
166 	}
167 	sc->platform_attached = 1;
168 
169 	error = ig4iic_attach(sc);
170 	if (error)
171 		ig4iic_pci_detach(dev);
172 
173 	return (error);
174 }
175 
176 static int
177 ig4iic_pci_detach(device_t dev)
178 {
179 	ig4iic_softc_t *sc = device_get_softc(dev);
180 	int error;
181 
182 	if (sc->platform_attached) {
183 		error = ig4iic_detach(sc);
184 		if (error)
185 			return (error);
186 		sc->platform_attached = 0;
187 	}
188 
189 	if (sc->intr_res) {
190 		bus_release_resource(dev, SYS_RES_IRQ,
191 				     sc->intr_rid, sc->intr_res);
192 		sc->intr_res = NULL;
193 	}
194 	if (sc->intr_rid != 0)
195 		pci_release_msi(dev);
196 	if (sc->regs_res) {
197 		bus_release_resource(dev, SYS_RES_MEMORY,
198 				     sc->regs_rid, sc->regs_res);
199 		sc->regs_res = NULL;
200 	}
201 
202 	return (0);
203 }
204 
205 static device_method_t ig4iic_pci_methods[] = {
206 	/* Device interface */
207 	DEVMETHOD(device_probe, ig4iic_pci_probe),
208 	DEVMETHOD(device_attach, ig4iic_pci_attach),
209 	DEVMETHOD(device_detach, ig4iic_pci_detach),
210 
211 	DEVMETHOD(iicbus_transfer, ig4iic_transfer),
212 	DEVMETHOD(iicbus_reset, ig4iic_reset),
213 	DEVMETHOD(iicbus_callback, iicbus_null_callback),
214 
215 	DEVMETHOD_END
216 };
217 
218 static driver_t ig4iic_pci_driver = {
219 	"ig4iic_pci",
220 	ig4iic_pci_methods,
221 	sizeof(struct ig4iic_softc)
222 };
223 
224 static devclass_t ig4iic_pci_devclass;
225 
226 DRIVER_MODULE_ORDERED(ig4iic_pci, pci, ig4iic_pci_driver, ig4iic_pci_devclass, 0, 0,
227     SI_ORDER_ANY);
228 MODULE_DEPEND(ig4iic_pci, pci, 1, 1, 1);
229 MODULE_DEPEND(ig4iic_pci, iicbus, IICBUS_MINVER, IICBUS_PREFVER, IICBUS_MAXVER);
230 MODULE_VERSION(ig4iic_pci, 1);
231 MODULE_PNP_INFO("W32:vendor/device", pci, ig4iic_pci, ig4iic_pci_devices,
232     sizeof(ig4iic_pci_devices[0]), nitems(ig4iic_pci_devices));
233