xref: /illumos-gate/usr/src/uts/common/io/cpuid_drv.c (revision 193974072f41a843678abf5f61979c748687e66b)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*19397407SSherry Moore  * Common Development and Distribution License (the "License").
6*19397407SSherry Moore  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
22*19397407SSherry Moore  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #include <sys/types.h>
287c478bd9Sstevel@tonic-gate #include <sys/file.h>
297c478bd9Sstevel@tonic-gate #include <sys/errno.h>
307c478bd9Sstevel@tonic-gate #include <sys/open.h>
317c478bd9Sstevel@tonic-gate #include <sys/cred.h>
327c478bd9Sstevel@tonic-gate #include <sys/conf.h>
337c478bd9Sstevel@tonic-gate #include <sys/stat.h>
347c478bd9Sstevel@tonic-gate #include <sys/processor.h>
357c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
367c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
377c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
387c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
397c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate #include <sys/auxv.h>
427c478bd9Sstevel@tonic-gate #include <sys/cpuid_drv.h>
437c478bd9Sstevel@tonic-gate #include <sys/systeminfo.h>
447c478bd9Sstevel@tonic-gate 
457c478bd9Sstevel@tonic-gate #if defined(__x86)
467c478bd9Sstevel@tonic-gate #include <sys/x86_archext.h>
477c478bd9Sstevel@tonic-gate #endif
487c478bd9Sstevel@tonic-gate 
497c478bd9Sstevel@tonic-gate static dev_info_t *cpuid_devi;
507c478bd9Sstevel@tonic-gate 
517c478bd9Sstevel@tonic-gate /*ARGSUSED*/
527c478bd9Sstevel@tonic-gate static int
537c478bd9Sstevel@tonic-gate cpuid_getinfo(dev_info_t *devi, ddi_info_cmd_t cmd, void *arg, void **result)
547c478bd9Sstevel@tonic-gate {
557c478bd9Sstevel@tonic-gate 	switch (cmd) {
567c478bd9Sstevel@tonic-gate 	case DDI_INFO_DEVT2DEVINFO:
577c478bd9Sstevel@tonic-gate 	case DDI_INFO_DEVT2INSTANCE:
587c478bd9Sstevel@tonic-gate 		break;
597c478bd9Sstevel@tonic-gate 	default:
607c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
617c478bd9Sstevel@tonic-gate 	}
627c478bd9Sstevel@tonic-gate 
637c478bd9Sstevel@tonic-gate 	switch (getminor((dev_t)arg)) {
647c478bd9Sstevel@tonic-gate 	case CPUID_SELF_CPUID_MINOR:
657c478bd9Sstevel@tonic-gate 		break;
667c478bd9Sstevel@tonic-gate 	default:
677c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
687c478bd9Sstevel@tonic-gate 	}
697c478bd9Sstevel@tonic-gate 
707c478bd9Sstevel@tonic-gate 	if (cmd == DDI_INFO_DEVT2INSTANCE)
717c478bd9Sstevel@tonic-gate 		*result = 0;
727c478bd9Sstevel@tonic-gate 	else
737c478bd9Sstevel@tonic-gate 		*result = cpuid_devi;
747c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
757c478bd9Sstevel@tonic-gate }
767c478bd9Sstevel@tonic-gate 
777c478bd9Sstevel@tonic-gate static int
787c478bd9Sstevel@tonic-gate cpuid_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
797c478bd9Sstevel@tonic-gate {
807c478bd9Sstevel@tonic-gate 	if (cmd != DDI_ATTACH)
817c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
827c478bd9Sstevel@tonic-gate 	cpuid_devi = devi;
837c478bd9Sstevel@tonic-gate 
847c478bd9Sstevel@tonic-gate 	return (ddi_create_minor_node(devi, CPUID_DRIVER_SELF_NODE, S_IFCHR,
857c478bd9Sstevel@tonic-gate 	    CPUID_SELF_CPUID_MINOR, DDI_PSEUDO, 0));
867c478bd9Sstevel@tonic-gate }
877c478bd9Sstevel@tonic-gate 
887c478bd9Sstevel@tonic-gate static int
897c478bd9Sstevel@tonic-gate cpuid_detach(dev_info_t *devi, ddi_detach_cmd_t cmd)
907c478bd9Sstevel@tonic-gate {
917c478bd9Sstevel@tonic-gate 	if (cmd != DDI_DETACH)
927c478bd9Sstevel@tonic-gate 		return (DDI_FAILURE);
937c478bd9Sstevel@tonic-gate 	ddi_remove_minor_node(devi, NULL);
947c478bd9Sstevel@tonic-gate 	cpuid_devi = NULL;
957c478bd9Sstevel@tonic-gate 	return (DDI_SUCCESS);
967c478bd9Sstevel@tonic-gate }
977c478bd9Sstevel@tonic-gate 
987c478bd9Sstevel@tonic-gate /*ARGSUSED1*/
997c478bd9Sstevel@tonic-gate static int
1007c478bd9Sstevel@tonic-gate cpuid_open(dev_t *dev, int flag, int otyp, cred_t *cr)
1017c478bd9Sstevel@tonic-gate {
1027c478bd9Sstevel@tonic-gate 	return (getminor(*dev) == CPUID_SELF_CPUID_MINOR ? 0 : ENXIO);
1037c478bd9Sstevel@tonic-gate }
1047c478bd9Sstevel@tonic-gate 
1057c478bd9Sstevel@tonic-gate #if defined(_HAVE_CPUID_INSN)
1067c478bd9Sstevel@tonic-gate 
1077c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1087c478bd9Sstevel@tonic-gate static int
1097c478bd9Sstevel@tonic-gate cpuid_read(dev_t dev, uio_t *uio, cred_t *cr)
1107c478bd9Sstevel@tonic-gate {
1118949bcd6Sandrei 	struct cpuid_regs crs;
1127c478bd9Sstevel@tonic-gate 	int error = 0;
1137c478bd9Sstevel@tonic-gate 
1147c478bd9Sstevel@tonic-gate 	if ((x86_feature & X86_CPUID) == 0)
1157c478bd9Sstevel@tonic-gate 		return (ENXIO);
1167c478bd9Sstevel@tonic-gate 
1177c478bd9Sstevel@tonic-gate 	if (uio->uio_resid & (sizeof (crs) - 1))
1187c478bd9Sstevel@tonic-gate 		return (EINVAL);
1197c478bd9Sstevel@tonic-gate 
1207c478bd9Sstevel@tonic-gate 	while (uio->uio_resid > 0) {
1217c478bd9Sstevel@tonic-gate 		u_offset_t uoff;
1227c478bd9Sstevel@tonic-gate 
1237c478bd9Sstevel@tonic-gate 		if ((uoff = (u_offset_t)uio->uio_loffset) > UINT_MAX) {
1247c478bd9Sstevel@tonic-gate 			error = EINVAL;
1257c478bd9Sstevel@tonic-gate 			break;
1267c478bd9Sstevel@tonic-gate 		}
1277c478bd9Sstevel@tonic-gate 
1288949bcd6Sandrei 		crs.cp_eax = (uint32_t)uoff;
1298949bcd6Sandrei 		crs.cp_ebx = crs.cp_ecx = crs.cp_edx = 0;
1308949bcd6Sandrei 		(void) cpuid_insn(NULL, &crs);
1317c478bd9Sstevel@tonic-gate 
1328949bcd6Sandrei 		if ((error = uiomove(&crs, sizeof (crs), UIO_READ, uio)) != 0)
1337c478bd9Sstevel@tonic-gate 			break;
1347c478bd9Sstevel@tonic-gate 		uio->uio_loffset = uoff + 1;
1357c478bd9Sstevel@tonic-gate 	}
1367c478bd9Sstevel@tonic-gate 
1377c478bd9Sstevel@tonic-gate 	return (error);
1387c478bd9Sstevel@tonic-gate }
1397c478bd9Sstevel@tonic-gate 
1407c478bd9Sstevel@tonic-gate #else
1417c478bd9Sstevel@tonic-gate 
1427c478bd9Sstevel@tonic-gate #define	cpuid_read	nodev
1437c478bd9Sstevel@tonic-gate 
1447c478bd9Sstevel@tonic-gate #endif	/* _HAVE_CPUID_INSN */
1457c478bd9Sstevel@tonic-gate 
1467c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1477c478bd9Sstevel@tonic-gate static int
1487c478bd9Sstevel@tonic-gate cpuid_ioctl(dev_t dev, int cmd, intptr_t arg, int mode, cred_t *cr, int *rval)
1497c478bd9Sstevel@tonic-gate {
1507c478bd9Sstevel@tonic-gate 	char areq[16];
1517c478bd9Sstevel@tonic-gate 	void *ustr;
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate 	switch (cmd) {
1547c478bd9Sstevel@tonic-gate 	case CPUID_GET_HWCAP: {
1557c478bd9Sstevel@tonic-gate 		STRUCT_DECL(cpuid_get_hwcap, h);
1567c478bd9Sstevel@tonic-gate 
1577c478bd9Sstevel@tonic-gate 		STRUCT_INIT(h, mode);
1587c478bd9Sstevel@tonic-gate 		if (ddi_copyin((void *)arg,
1597c478bd9Sstevel@tonic-gate 		    STRUCT_BUF(h), STRUCT_SIZE(h), mode))
1607c478bd9Sstevel@tonic-gate 			return (EFAULT);
1617c478bd9Sstevel@tonic-gate 		if ((ustr = STRUCT_FGETP(h, cgh_archname)) != NULL &&
1627c478bd9Sstevel@tonic-gate 		    copyinstr(ustr, areq, sizeof (areq), NULL) != 0)
1637c478bd9Sstevel@tonic-gate 			return (EFAULT);
1647c478bd9Sstevel@tonic-gate 		areq[sizeof (areq) - 1] = '\0';
1657c478bd9Sstevel@tonic-gate 
1667c478bd9Sstevel@tonic-gate 		if (strcmp(areq, architecture) == 0)
1677c478bd9Sstevel@tonic-gate 			STRUCT_FSET(h, cgh_hwcap, auxv_hwcap);
1687c478bd9Sstevel@tonic-gate #if defined(_SYSCALL32_IMPL)
1697c478bd9Sstevel@tonic-gate 		else if (strcmp(areq, architecture_32) == 0)
1707c478bd9Sstevel@tonic-gate 			STRUCT_FSET(h, cgh_hwcap, auxv_hwcap32);
1717c478bd9Sstevel@tonic-gate #endif
1727c478bd9Sstevel@tonic-gate 		else
1737c478bd9Sstevel@tonic-gate 			STRUCT_FSET(h, cgh_hwcap, 0);
1747c478bd9Sstevel@tonic-gate 		if (ddi_copyout(STRUCT_BUF(h),
1757c478bd9Sstevel@tonic-gate 		    (void *)arg, STRUCT_SIZE(h), mode))
1767c478bd9Sstevel@tonic-gate 			return (EFAULT);
1777c478bd9Sstevel@tonic-gate 		return (0);
1787c478bd9Sstevel@tonic-gate 	}
1797c478bd9Sstevel@tonic-gate 
1807c478bd9Sstevel@tonic-gate 	default:
1817c478bd9Sstevel@tonic-gate 		return (ENOTTY);
1827c478bd9Sstevel@tonic-gate 	}
1837c478bd9Sstevel@tonic-gate }
1847c478bd9Sstevel@tonic-gate 
1857c478bd9Sstevel@tonic-gate static struct cb_ops cpuid_cb_ops = {
1867c478bd9Sstevel@tonic-gate 	cpuid_open,
1877c478bd9Sstevel@tonic-gate 	nulldev,	/* close */
1887c478bd9Sstevel@tonic-gate 	nodev,		/* strategy */
1897c478bd9Sstevel@tonic-gate 	nodev,		/* print */
1907c478bd9Sstevel@tonic-gate 	nodev,		/* dump */
1917c478bd9Sstevel@tonic-gate 	cpuid_read,
1927c478bd9Sstevel@tonic-gate 	nodev,		/* write */
1937c478bd9Sstevel@tonic-gate 	cpuid_ioctl,
1947c478bd9Sstevel@tonic-gate 	nodev,		/* devmap */
1957c478bd9Sstevel@tonic-gate 	nodev,		/* mmap */
1967c478bd9Sstevel@tonic-gate 	nodev,		/* segmap */
1977c478bd9Sstevel@tonic-gate 	nochpoll,	/* poll */
1987c478bd9Sstevel@tonic-gate 	ddi_prop_op,
1997c478bd9Sstevel@tonic-gate 	NULL,
2007c478bd9Sstevel@tonic-gate 	D_64BIT | D_NEW | D_MP
2017c478bd9Sstevel@tonic-gate };
2027c478bd9Sstevel@tonic-gate 
2037c478bd9Sstevel@tonic-gate static struct dev_ops cpuid_dv_ops = {
2047c478bd9Sstevel@tonic-gate 	DEVO_REV,
2057c478bd9Sstevel@tonic-gate 	0,
2067c478bd9Sstevel@tonic-gate 	cpuid_getinfo,
2077c478bd9Sstevel@tonic-gate 	nulldev,	/* identify */
2087c478bd9Sstevel@tonic-gate 	nulldev,	/* probe */
2097c478bd9Sstevel@tonic-gate 	cpuid_attach,
2107c478bd9Sstevel@tonic-gate 	cpuid_detach,
2117c478bd9Sstevel@tonic-gate 	nodev,		/* reset */
2127c478bd9Sstevel@tonic-gate 	&cpuid_cb_ops,
213*19397407SSherry Moore 	(struct bus_ops *)0,
214*19397407SSherry Moore 	NULL,
215*19397407SSherry Moore 	ddi_quiesce_not_needed,		/* quiesce */
2167c478bd9Sstevel@tonic-gate };
2177c478bd9Sstevel@tonic-gate 
2187c478bd9Sstevel@tonic-gate static struct modldrv modldrv = {
2197c478bd9Sstevel@tonic-gate 	&mod_driverops,
220*19397407SSherry Moore 	"cpuid driver",
2217c478bd9Sstevel@tonic-gate 	&cpuid_dv_ops
2227c478bd9Sstevel@tonic-gate };
2237c478bd9Sstevel@tonic-gate 
2247c478bd9Sstevel@tonic-gate static struct modlinkage modl = {
2257c478bd9Sstevel@tonic-gate 	MODREV_1,
2267c478bd9Sstevel@tonic-gate 	&modldrv
2277c478bd9Sstevel@tonic-gate };
2287c478bd9Sstevel@tonic-gate 
2297c478bd9Sstevel@tonic-gate int
2307c478bd9Sstevel@tonic-gate _init(void)
2317c478bd9Sstevel@tonic-gate {
2327c478bd9Sstevel@tonic-gate 	return (mod_install(&modl));
2337c478bd9Sstevel@tonic-gate }
2347c478bd9Sstevel@tonic-gate 
2357c478bd9Sstevel@tonic-gate int
2367c478bd9Sstevel@tonic-gate _fini(void)
2377c478bd9Sstevel@tonic-gate {
2387c478bd9Sstevel@tonic-gate 	return (mod_remove(&modl));
2397c478bd9Sstevel@tonic-gate }
2407c478bd9Sstevel@tonic-gate 
2417c478bd9Sstevel@tonic-gate int
2427c478bd9Sstevel@tonic-gate _info(struct modinfo *modinfo)
2437c478bd9Sstevel@tonic-gate {
2447c478bd9Sstevel@tonic-gate 	return (mod_info(&modl, modinfo));
2457c478bd9Sstevel@tonic-gate }
246