xref: /freebsd/sys/x86/cpufreq/smist.c (revision 315ee00f)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2005 Bruno Ducrot
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 /*
28  * This driver is based upon information found by examining speedstep-0.5
29  * from Marc Lehman, which includes all the reverse engineering effort of
30  * Malik Martin (function 1 and 2 of the GSI).
31  *
32  * The correct way for the OS to take ownership from the BIOS was found by
33  * Hiroshi Miura (function 0 of the GSI).
34  *
35  * Finally, the int 15h call interface was (partially) documented by Intel.
36  *
37  * Many thanks to Jon Noack for testing and debugging this driver.
38  */
39 
40 #include <sys/cdefs.h>
41 #include <sys/param.h>
42 #include <sys/bus.h>
43 #include <sys/cpu.h>
44 #include <sys/kernel.h>
45 #include <sys/module.h>
46 #include <sys/mutex.h>
47 #include <sys/systm.h>
48 
49 #include <machine/bus.h>
50 #include <machine/cputypes.h>
51 #include <machine/md_var.h>
52 #include <machine/vm86.h>
53 
54 #include <dev/pci/pcivar.h>
55 #include <dev/pci/pcireg.h>
56 
57 #include <vm/vm.h>
58 #include <vm/pmap.h>
59 
60 #include "cpufreq_if.h"
61 
62 #if 0
63 #define DPRINT(dev, x...)	device_printf(dev, x)
64 #else
65 #define DPRINT(dev, x...)
66 #endif
67 
68 struct smist_softc {
69 	device_t		 dev;
70 	int			 smi_cmd;
71 	int			 smi_data;
72 	int			 command;
73 	int			 flags;
74 	struct cf_setting	 sets[2];	/* Only two settings. */
75 };
76 
77 static char smist_magic[] = "Copyright (c) 1999 Intel Corporation";
78 
79 static void	smist_identify(driver_t *driver, device_t parent);
80 static int	smist_probe(device_t dev);
81 static int	smist_attach(device_t dev);
82 static int	smist_detach(device_t dev);
83 static int	smist_settings(device_t dev, struct cf_setting *sets,
84 		    int *count);
85 static int	smist_set(device_t dev, const struct cf_setting *set);
86 static int	smist_get(device_t dev, struct cf_setting *set);
87 static int	smist_type(device_t dev, int *type);
88 
89 static device_method_t smist_methods[] = {
90 	/* Device interface */
91 	DEVMETHOD(device_identify,	smist_identify),
92 	DEVMETHOD(device_probe,		smist_probe),
93 	DEVMETHOD(device_attach,	smist_attach),
94 	DEVMETHOD(device_detach,	smist_detach),
95 
96 	/* cpufreq interface */
97 	DEVMETHOD(cpufreq_drv_set,	smist_set),
98 	DEVMETHOD(cpufreq_drv_get,	smist_get),
99 	DEVMETHOD(cpufreq_drv_type,	smist_type),
100 	DEVMETHOD(cpufreq_drv_settings,	smist_settings),
101 	{0, 0}
102 };
103 
104 static driver_t smist_driver = {
105 	"smist", smist_methods, sizeof(struct smist_softc)
106 };
107 
108 DRIVER_MODULE(smist, cpu, smist_driver, 0, 0);
109 
110 struct piix4_pci_device {
111 	uint16_t		 vendor;
112 	uint16_t		 device;
113 	char			*desc;
114 };
115 
116 static struct piix4_pci_device piix4_pci_devices[] = {
117 	{0x8086, 0x7113, "Intel PIIX4 ISA bridge"},
118 	{0x8086, 0x719b, "Intel PIIX4 ISA bridge (embedded in MX440 chipset)"},
119 
120 	{0, 0, NULL},
121 };
122 
123 #define SET_OWNERSHIP		0
124 #define GET_STATE		1
125 #define SET_STATE		2
126 
127 static int
128 int15_gsic_call(int *sig, int *smi_cmd, int *command, int *smi_data, int *flags)
129 {
130 	struct vm86frame vmf;
131 
132 	bzero(&vmf, sizeof(vmf));
133 	vmf.vmf_eax = 0x0000E980;	/* IST support */
134 	vmf.vmf_edx = 0x47534943;	/* 'GSIC' in ASCII */
135 	vm86_intcall(0x15, &vmf);
136 
137 	if (vmf.vmf_eax == 0x47534943) {
138 		*sig = vmf.vmf_eax;
139 		*smi_cmd = vmf.vmf_ebx & 0xff;
140 		*command = (vmf.vmf_ebx >> 16) & 0xff;
141 		*smi_data = vmf.vmf_ecx;
142 		*flags = vmf.vmf_edx;
143 	} else {
144 		*sig = -1;
145 		*smi_cmd = -1;
146 		*command = -1;
147 		*smi_data = -1;
148 		*flags = -1;
149 	}
150 
151 	return (0);
152 }
153 
154 /* Temporary structure to hold mapped page and status. */
155 struct set_ownership_data {
156 	int	smi_cmd;
157 	int	command;
158 	int	result;
159 	void	*buf;
160 };
161 
162 /* Perform actual SMI call to enable SpeedStep. */
163 static void
164 set_ownership_cb(void *arg, bus_dma_segment_t *segs, int nsegs, int error)
165 {
166 	struct set_ownership_data *data;
167 
168 	data = arg;
169 	if (error) {
170 		data->result = error;
171 		return;
172 	}
173 
174 	/* Copy in the magic string and send it by writing to the SMI port. */
175 	strlcpy(data->buf, smist_magic, PAGE_SIZE);
176 	__asm __volatile(
177 	    "movl $-1, %%edi\n\t"
178 	    "out %%al, (%%dx)\n"
179 	    : "=D" (data->result)
180 	    : "a" (data->command),
181 	      "b" (0),
182 	      "c" (0),
183 	      "d" (data->smi_cmd),
184 	      "S" ((uint32_t)segs[0].ds_addr)
185 	);
186 }
187 
188 static int
189 set_ownership(device_t dev)
190 {
191 	struct smist_softc *sc;
192 	struct set_ownership_data cb_data;
193 	bus_dma_tag_t tag;
194 	bus_dmamap_t map;
195 
196 	/*
197 	 * Specify the region to store the magic string.  Since its address is
198 	 * passed to the BIOS in a 32-bit register, we have to make sure it is
199 	 * located in a physical page below 4 GB (i.e., for PAE.)
200 	 */
201 	sc = device_get_softc(dev);
202 	if (bus_dma_tag_create(/*parent*/ NULL,
203 	    /*alignment*/ PAGE_SIZE, /*no boundary*/ 0,
204 	    /*lowaddr*/ BUS_SPACE_MAXADDR_32BIT, /*highaddr*/ BUS_SPACE_MAXADDR,
205 	    NULL, NULL, /*maxsize*/ PAGE_SIZE, /*segments*/ 1,
206 	    /*maxsegsize*/ PAGE_SIZE, 0, NULL, NULL, &tag) != 0) {
207 		device_printf(dev, "can't create mem tag\n");
208 		return (ENXIO);
209 	}
210 	if (bus_dmamem_alloc(tag, &cb_data.buf, BUS_DMA_NOWAIT, &map) != 0) {
211 		bus_dma_tag_destroy(tag);
212 		device_printf(dev, "can't alloc mapped mem\n");
213 		return (ENXIO);
214 	}
215 
216 	/* Load the physical page map and take ownership in the callback. */
217 	cb_data.smi_cmd = sc->smi_cmd;
218 	cb_data.command = sc->command;
219 	if (bus_dmamap_load(tag, map, cb_data.buf, PAGE_SIZE, set_ownership_cb,
220 	    &cb_data, BUS_DMA_NOWAIT) != 0) {
221 		bus_dmamem_free(tag, cb_data.buf, map);
222 		bus_dma_tag_destroy(tag);
223 		device_printf(dev, "can't load mem\n");
224 		return (ENXIO);
225 	}
226 	DPRINT(dev, "taking ownership over BIOS return %d\n", cb_data.result);
227 	bus_dmamap_unload(tag, map);
228 	bus_dmamem_free(tag, cb_data.buf, map);
229 	bus_dma_tag_destroy(tag);
230 	return (cb_data.result ? ENXIO : 0);
231 }
232 
233 static int
234 getset_state(struct smist_softc *sc, int *state, int function)
235 {
236 	int new_state;
237 	int result;
238 	int eax;
239 
240 	if (!sc)
241 		return (ENXIO);
242 
243 	if (function != GET_STATE && function != SET_STATE)
244 		return (EINVAL);
245 
246 	DPRINT(sc->dev, "calling GSI\n");
247 
248 	__asm __volatile(
249 	     "movl $-1, %%edi\n\t"
250 	     "out %%al, (%%dx)\n"
251 	   : "=a" (eax),
252 	     "=b" (new_state),
253 	     "=D" (result)
254 	   : "a" (sc->command),
255 	     "b" (function),
256 	     "c" (*state),
257 	     "d" (sc->smi_cmd)
258 	);
259 
260 	DPRINT(sc->dev, "GSI returned: eax %.8x ebx %.8x edi %.8x\n",
261 	    eax, new_state, result);
262 
263 	*state = new_state & 1;
264 
265 	switch (function) {
266 	case GET_STATE:
267 		if (eax)
268 			return (ENXIO);
269 		break;
270 	case SET_STATE:
271 		if (result)
272 			return (ENXIO);
273 		break;
274 	}
275 	return (0);
276 }
277 
278 static void
279 smist_identify(driver_t *driver, device_t parent)
280 {
281 	struct piix4_pci_device *id;
282 	device_t piix4 = NULL;
283 
284 	if (resource_disabled("ichst", 0))
285 		return;
286 
287 	/* Check for a supported processor */
288 	if (cpu_vendor_id != CPU_VENDOR_INTEL)
289 		return;
290 	switch (cpu_id & 0xff0) {
291 	case 0x680:	/* Pentium III [coppermine] */
292 	case 0x6a0:	/* Pentium III [Tualatin] */
293 		break;
294 	default:
295 		return;
296 	}
297 
298 	/* Check for a supported PCI-ISA bridge */
299 	for (id = piix4_pci_devices; id->desc != NULL; ++id) {
300 		if ((piix4 = pci_find_device(id->vendor, id->device)) != NULL)
301 			break;
302 	}
303 	if (!piix4)
304 		return;
305 
306 	if (bootverbose)
307 		printf("smist: found supported isa bridge %s\n", id->desc);
308 
309 	if (device_find_child(parent, "smist", -1) != NULL)
310 		return;
311 	if (BUS_ADD_CHILD(parent, 30, "smist", device_get_unit(parent))
312 	    == NULL)
313 		device_printf(parent, "smist: add child failed\n");
314 }
315 
316 static int
317 smist_probe(device_t dev)
318 {
319 	struct smist_softc *sc;
320 	device_t ichss_dev, perf_dev;
321 	int sig, smi_cmd, command, smi_data, flags;
322 	int type;
323 	int rv;
324 
325 	if (resource_disabled("smist", 0))
326 		return (ENXIO);
327 
328 	sc = device_get_softc(dev);
329 
330 	/*
331 	 * If the ACPI perf or ICH SpeedStep drivers have attached and not
332 	 * just offering info, let them manage things.
333 	 */
334 	perf_dev = device_find_child(device_get_parent(dev), "acpi_perf", -1);
335 	if (perf_dev && device_is_attached(perf_dev)) {
336 		rv = CPUFREQ_DRV_TYPE(perf_dev, &type);
337 		if (rv == 0 && (type & CPUFREQ_FLAG_INFO_ONLY) == 0)
338 			return (ENXIO);
339 	}
340 	ichss_dev = device_find_child(device_get_parent(dev), "ichss", -1);
341 	if (ichss_dev && device_is_attached(ichss_dev))
342 		return (ENXIO);
343 
344 	int15_gsic_call(&sig, &smi_cmd, &command, &smi_data, &flags);
345 	if (bootverbose)
346 		device_printf(dev, "sig %.8x smi_cmd %.4x command %.2x "
347 		    "smi_data %.4x flags %.8x\n",
348 		    sig, smi_cmd, command, smi_data, flags);
349 
350 	if (sig != -1) {
351 		sc->smi_cmd = smi_cmd;
352 		sc->smi_data = smi_data;
353 
354 		/*
355 		 * Sometimes int 15h 'GSIC' returns 0x80 for command, when
356 		 * it is actually 0x82.  The Windows driver will overwrite
357 		 * this value given by the registry.
358 		 */
359 		if (command == 0x80) {
360 			device_printf(dev,
361 			    "GSIC returned cmd 0x80, should be 0x82\n");
362 			command = 0x82;
363 		}
364 		sc->command = (sig & 0xffffff00) | (command & 0xff);
365 		sc->flags = flags;
366 	} else {
367 		/* Give some default values */
368 		sc->smi_cmd = 0xb2;
369 		sc->smi_data = 0xb3;
370 		sc->command = 0x47534982;
371 		sc->flags = 0;
372 	}
373 
374 	device_set_desc(dev, "SpeedStep SMI");
375 
376 	return (-1500);
377 }
378 
379 static int
380 smist_attach(device_t dev)
381 {
382 	struct smist_softc *sc;
383 
384 	sc = device_get_softc(dev);
385 	sc->dev = dev;
386 
387 	/* If we can't take ownership over BIOS, then bail out */
388 	if (set_ownership(dev) != 0)
389 		return (ENXIO);
390 
391 	/* Setup some defaults for our exported settings. */
392 	sc->sets[0].freq = CPUFREQ_VAL_UNKNOWN;
393 	sc->sets[0].volts = CPUFREQ_VAL_UNKNOWN;
394 	sc->sets[0].power = CPUFREQ_VAL_UNKNOWN;
395 	sc->sets[0].lat = 1000;
396 	sc->sets[0].dev = dev;
397 	sc->sets[1] = sc->sets[0];
398 
399 	cpufreq_register(dev);
400 
401 	return (0);
402 }
403 
404 static int
405 smist_detach(device_t dev)
406 {
407 
408 	return (cpufreq_unregister(dev));
409 }
410 
411 static int
412 smist_settings(device_t dev, struct cf_setting *sets, int *count)
413 {
414 	struct smist_softc *sc;
415 	struct cf_setting set;
416 	int first, i;
417 
418 	if (sets == NULL || count == NULL)
419 		return (EINVAL);
420 	if (*count < 2) {
421 		*count = 2;
422 		return (E2BIG);
423 	}
424 	sc = device_get_softc(dev);
425 
426 	/*
427 	 * Estimate frequencies for both levels, temporarily switching to
428 	 * the other one if we haven't calibrated it yet.
429 	 */
430 	for (i = 0; i < 2; i++) {
431 		if (sc->sets[i].freq == CPUFREQ_VAL_UNKNOWN) {
432 			first = (i == 0) ? 1 : 0;
433 			smist_set(dev, &sc->sets[i]);
434 			smist_get(dev, &set);
435 			smist_set(dev, &sc->sets[first]);
436 		}
437 	}
438 
439 	bcopy(sc->sets, sets, sizeof(sc->sets));
440 	*count = 2;
441 
442 	return (0);
443 }
444 
445 static int
446 smist_set(device_t dev, const struct cf_setting *set)
447 {
448 	struct smist_softc *sc;
449 	int rv, state, req_state, try;
450 
451 	/* Look up appropriate bit value based on frequency. */
452 	sc = device_get_softc(dev);
453 	if (CPUFREQ_CMP(set->freq, sc->sets[0].freq))
454 		req_state = 0;
455 	else if (CPUFREQ_CMP(set->freq, sc->sets[1].freq))
456 		req_state = 1;
457 	else
458 		return (EINVAL);
459 
460 	DPRINT(dev, "requested setting %d\n", req_state);
461 
462 	rv = getset_state(sc, &state, GET_STATE);
463 	if (state == req_state)
464 		return (0);
465 
466 	try = 3;
467 	do {
468 		rv = getset_state(sc, &req_state, SET_STATE);
469 
470 		/* Sleep for 200 microseconds.  This value is just a guess. */
471 		if (rv)
472 			DELAY(200);
473 	} while (rv && --try);
474 	DPRINT(dev, "set_state return %d, tried %d times\n",
475 	    rv, 4 - try);
476 
477 	return (rv);
478 }
479 
480 static int
481 smist_get(device_t dev, struct cf_setting *set)
482 {
483 	struct smist_softc *sc;
484 	uint64_t rate;
485 	int state;
486 	int rv;
487 
488 	sc = device_get_softc(dev);
489 	rv = getset_state(sc, &state, GET_STATE);
490 	if (rv != 0)
491 		return (rv);
492 
493 	/* If we haven't changed settings yet, estimate the current value. */
494 	if (sc->sets[state].freq == CPUFREQ_VAL_UNKNOWN) {
495 		cpu_est_clockrate(0, &rate);
496 		sc->sets[state].freq = rate / 1000000;
497 		DPRINT(dev, "get calibrated new rate of %d\n",
498 		    sc->sets[state].freq);
499 	}
500 	*set = sc->sets[state];
501 
502 	return (0);
503 }
504 
505 static int
506 smist_type(device_t dev, int *type)
507 {
508 
509 	if (type == NULL)
510 		return (EINVAL);
511 
512 	*type = CPUFREQ_TYPE_ABSOLUTE;
513 	return (0);
514 }
515