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
519397407SSherry Moore * Common Development and Distribution License (the "License").
619397407SSherry 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 /*
227417cfdeSKuriakose Kuruvilla * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
237c478bd9Sstevel@tonic-gate */
24*ebb8ac07SRobert Mustacchi /*
25*ebb8ac07SRobert Mustacchi * Copyright (c) 2012, Joyent, Inc. All rights reserved.
26*ebb8ac07SRobert Mustacchi */
277c478bd9Sstevel@tonic-gate
287c478bd9Sstevel@tonic-gate
297c478bd9Sstevel@tonic-gate #include <sys/types.h>
307c478bd9Sstevel@tonic-gate #include <sys/file.h>
317c478bd9Sstevel@tonic-gate #include <sys/errno.h>
327c478bd9Sstevel@tonic-gate #include <sys/open.h>
337c478bd9Sstevel@tonic-gate #include <sys/cred.h>
347c478bd9Sstevel@tonic-gate #include <sys/conf.h>
357c478bd9Sstevel@tonic-gate #include <sys/stat.h>
367c478bd9Sstevel@tonic-gate #include <sys/processor.h>
377c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
387c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
397c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
407c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
417c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
427c478bd9Sstevel@tonic-gate
437c478bd9Sstevel@tonic-gate #include <sys/auxv.h>
447c478bd9Sstevel@tonic-gate #include <sys/cpuid_drv.h>
457c478bd9Sstevel@tonic-gate #include <sys/systeminfo.h>
467c478bd9Sstevel@tonic-gate
477c478bd9Sstevel@tonic-gate #if defined(__x86)
487c478bd9Sstevel@tonic-gate #include <sys/x86_archext.h>
497c478bd9Sstevel@tonic-gate #endif
507c478bd9Sstevel@tonic-gate
517c478bd9Sstevel@tonic-gate static dev_info_t *cpuid_devi;
527c478bd9Sstevel@tonic-gate
537c478bd9Sstevel@tonic-gate /*ARGSUSED*/
547c478bd9Sstevel@tonic-gate static int
cpuid_getinfo(dev_info_t * devi,ddi_info_cmd_t cmd,void * arg,void ** result)557c478bd9Sstevel@tonic-gate cpuid_getinfo(dev_info_t *devi, ddi_info_cmd_t cmd, void *arg, void **result)
567c478bd9Sstevel@tonic-gate {
577c478bd9Sstevel@tonic-gate switch (cmd) {
587c478bd9Sstevel@tonic-gate case DDI_INFO_DEVT2DEVINFO:
597c478bd9Sstevel@tonic-gate case DDI_INFO_DEVT2INSTANCE:
607c478bd9Sstevel@tonic-gate break;
617c478bd9Sstevel@tonic-gate default:
627c478bd9Sstevel@tonic-gate return (DDI_FAILURE);
637c478bd9Sstevel@tonic-gate }
647c478bd9Sstevel@tonic-gate
657c478bd9Sstevel@tonic-gate switch (getminor((dev_t)arg)) {
667c478bd9Sstevel@tonic-gate case CPUID_SELF_CPUID_MINOR:
677c478bd9Sstevel@tonic-gate break;
687c478bd9Sstevel@tonic-gate default:
697c478bd9Sstevel@tonic-gate return (DDI_FAILURE);
707c478bd9Sstevel@tonic-gate }
717c478bd9Sstevel@tonic-gate
727c478bd9Sstevel@tonic-gate if (cmd == DDI_INFO_DEVT2INSTANCE)
737c478bd9Sstevel@tonic-gate *result = 0;
747c478bd9Sstevel@tonic-gate else
757c478bd9Sstevel@tonic-gate *result = cpuid_devi;
767c478bd9Sstevel@tonic-gate return (DDI_SUCCESS);
777c478bd9Sstevel@tonic-gate }
787c478bd9Sstevel@tonic-gate
797c478bd9Sstevel@tonic-gate static int
cpuid_attach(dev_info_t * devi,ddi_attach_cmd_t cmd)807c478bd9Sstevel@tonic-gate cpuid_attach(dev_info_t *devi, ddi_attach_cmd_t cmd)
817c478bd9Sstevel@tonic-gate {
827c478bd9Sstevel@tonic-gate if (cmd != DDI_ATTACH)
837c478bd9Sstevel@tonic-gate return (DDI_FAILURE);
847c478bd9Sstevel@tonic-gate cpuid_devi = devi;
857c478bd9Sstevel@tonic-gate
867c478bd9Sstevel@tonic-gate return (ddi_create_minor_node(devi, CPUID_DRIVER_SELF_NODE, S_IFCHR,
877c478bd9Sstevel@tonic-gate CPUID_SELF_CPUID_MINOR, DDI_PSEUDO, 0));
887c478bd9Sstevel@tonic-gate }
897c478bd9Sstevel@tonic-gate
907c478bd9Sstevel@tonic-gate static int
cpuid_detach(dev_info_t * devi,ddi_detach_cmd_t cmd)917c478bd9Sstevel@tonic-gate cpuid_detach(dev_info_t *devi, ddi_detach_cmd_t cmd)
927c478bd9Sstevel@tonic-gate {
937c478bd9Sstevel@tonic-gate if (cmd != DDI_DETACH)
947c478bd9Sstevel@tonic-gate return (DDI_FAILURE);
957c478bd9Sstevel@tonic-gate ddi_remove_minor_node(devi, NULL);
967c478bd9Sstevel@tonic-gate cpuid_devi = NULL;
977c478bd9Sstevel@tonic-gate return (DDI_SUCCESS);
987c478bd9Sstevel@tonic-gate }
997c478bd9Sstevel@tonic-gate
1007c478bd9Sstevel@tonic-gate /*ARGSUSED1*/
1017c478bd9Sstevel@tonic-gate static int
cpuid_open(dev_t * dev,int flag,int otyp,cred_t * cr)1027c478bd9Sstevel@tonic-gate cpuid_open(dev_t *dev, int flag, int otyp, cred_t *cr)
1037c478bd9Sstevel@tonic-gate {
1047c478bd9Sstevel@tonic-gate return (getminor(*dev) == CPUID_SELF_CPUID_MINOR ? 0 : ENXIO);
1057c478bd9Sstevel@tonic-gate }
1067c478bd9Sstevel@tonic-gate
1077c478bd9Sstevel@tonic-gate #if defined(_HAVE_CPUID_INSN)
1087c478bd9Sstevel@tonic-gate
1097c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1107c478bd9Sstevel@tonic-gate static int
cpuid_read(dev_t dev,uio_t * uio,cred_t * cr)1117c478bd9Sstevel@tonic-gate cpuid_read(dev_t dev, uio_t *uio, cred_t *cr)
1127c478bd9Sstevel@tonic-gate {
1138949bcd6Sandrei struct cpuid_regs crs;
1147c478bd9Sstevel@tonic-gate int error = 0;
1157c478bd9Sstevel@tonic-gate
1167417cfdeSKuriakose Kuruvilla if (!is_x86_feature(x86_featureset, X86FSET_CPUID))
1177c478bd9Sstevel@tonic-gate return (ENXIO);
1187c478bd9Sstevel@tonic-gate
1197c478bd9Sstevel@tonic-gate if (uio->uio_resid & (sizeof (crs) - 1))
1207c478bd9Sstevel@tonic-gate return (EINVAL);
1217c478bd9Sstevel@tonic-gate
1227c478bd9Sstevel@tonic-gate while (uio->uio_resid > 0) {
1237c478bd9Sstevel@tonic-gate u_offset_t uoff;
1247c478bd9Sstevel@tonic-gate
1257c478bd9Sstevel@tonic-gate if ((uoff = (u_offset_t)uio->uio_loffset) > UINT_MAX) {
1267c478bd9Sstevel@tonic-gate error = EINVAL;
1277c478bd9Sstevel@tonic-gate break;
1287c478bd9Sstevel@tonic-gate }
1297c478bd9Sstevel@tonic-gate
1308949bcd6Sandrei crs.cp_eax = (uint32_t)uoff;
1318949bcd6Sandrei crs.cp_ebx = crs.cp_ecx = crs.cp_edx = 0;
1328949bcd6Sandrei (void) cpuid_insn(NULL, &crs);
1337c478bd9Sstevel@tonic-gate
1348949bcd6Sandrei if ((error = uiomove(&crs, sizeof (crs), UIO_READ, uio)) != 0)
1357c478bd9Sstevel@tonic-gate break;
1367c478bd9Sstevel@tonic-gate uio->uio_loffset = uoff + 1;
1377c478bd9Sstevel@tonic-gate }
1387c478bd9Sstevel@tonic-gate
1397c478bd9Sstevel@tonic-gate return (error);
1407c478bd9Sstevel@tonic-gate }
1417c478bd9Sstevel@tonic-gate
1427c478bd9Sstevel@tonic-gate #else
1437c478bd9Sstevel@tonic-gate
1447c478bd9Sstevel@tonic-gate #define cpuid_read nodev
1457c478bd9Sstevel@tonic-gate
1467c478bd9Sstevel@tonic-gate #endif /* _HAVE_CPUID_INSN */
1477c478bd9Sstevel@tonic-gate
1487c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1497c478bd9Sstevel@tonic-gate static int
cpuid_ioctl(dev_t dev,int cmd,intptr_t arg,int mode,cred_t * cr,int * rval)1507c478bd9Sstevel@tonic-gate cpuid_ioctl(dev_t dev, int cmd, intptr_t arg, int mode, cred_t *cr, int *rval)
1517c478bd9Sstevel@tonic-gate {
1527c478bd9Sstevel@tonic-gate char areq[16];
1537c478bd9Sstevel@tonic-gate void *ustr;
1547c478bd9Sstevel@tonic-gate
1557c478bd9Sstevel@tonic-gate switch (cmd) {
1567c478bd9Sstevel@tonic-gate case CPUID_GET_HWCAP: {
1577c478bd9Sstevel@tonic-gate STRUCT_DECL(cpuid_get_hwcap, h);
1587c478bd9Sstevel@tonic-gate
1597c478bd9Sstevel@tonic-gate STRUCT_INIT(h, mode);
1607c478bd9Sstevel@tonic-gate if (ddi_copyin((void *)arg,
1617c478bd9Sstevel@tonic-gate STRUCT_BUF(h), STRUCT_SIZE(h), mode))
1627c478bd9Sstevel@tonic-gate return (EFAULT);
1637c478bd9Sstevel@tonic-gate if ((ustr = STRUCT_FGETP(h, cgh_archname)) != NULL &&
1647c478bd9Sstevel@tonic-gate copyinstr(ustr, areq, sizeof (areq), NULL) != 0)
1657c478bd9Sstevel@tonic-gate return (EFAULT);
1667c478bd9Sstevel@tonic-gate areq[sizeof (areq) - 1] = '\0';
1677c478bd9Sstevel@tonic-gate
168*ebb8ac07SRobert Mustacchi if (strcmp(areq, architecture) == 0) {
169*ebb8ac07SRobert Mustacchi STRUCT_FSET(h, cgh_hwcap[0], auxv_hwcap);
170*ebb8ac07SRobert Mustacchi STRUCT_FSET(h, cgh_hwcap[1], auxv_hwcap_2);
1717c478bd9Sstevel@tonic-gate #if defined(_SYSCALL32_IMPL)
172*ebb8ac07SRobert Mustacchi } else if (strcmp(areq, architecture_32) == 0) {
173*ebb8ac07SRobert Mustacchi STRUCT_FSET(h, cgh_hwcap[0], auxv_hwcap32);
174*ebb8ac07SRobert Mustacchi STRUCT_FSET(h, cgh_hwcap[1], auxv_hwcap32_2);
1757c478bd9Sstevel@tonic-gate #endif
176*ebb8ac07SRobert Mustacchi } else {
177*ebb8ac07SRobert Mustacchi STRUCT_FSET(h, cgh_hwcap[0], 0);
178*ebb8ac07SRobert Mustacchi STRUCT_FSET(h, cgh_hwcap[1], 0);
179*ebb8ac07SRobert Mustacchi }
1807c478bd9Sstevel@tonic-gate if (ddi_copyout(STRUCT_BUF(h),
1817c478bd9Sstevel@tonic-gate (void *)arg, STRUCT_SIZE(h), mode))
1827c478bd9Sstevel@tonic-gate return (EFAULT);
1837c478bd9Sstevel@tonic-gate return (0);
1847c478bd9Sstevel@tonic-gate }
1857c478bd9Sstevel@tonic-gate
1867c478bd9Sstevel@tonic-gate default:
1877c478bd9Sstevel@tonic-gate return (ENOTTY);
1887c478bd9Sstevel@tonic-gate }
1897c478bd9Sstevel@tonic-gate }
1907c478bd9Sstevel@tonic-gate
1917c478bd9Sstevel@tonic-gate static struct cb_ops cpuid_cb_ops = {
1927c478bd9Sstevel@tonic-gate cpuid_open,
1937c478bd9Sstevel@tonic-gate nulldev, /* close */
1947c478bd9Sstevel@tonic-gate nodev, /* strategy */
1957c478bd9Sstevel@tonic-gate nodev, /* print */
1967c478bd9Sstevel@tonic-gate nodev, /* dump */
1977c478bd9Sstevel@tonic-gate cpuid_read,
1987c478bd9Sstevel@tonic-gate nodev, /* write */
1997c478bd9Sstevel@tonic-gate cpuid_ioctl,
2007c478bd9Sstevel@tonic-gate nodev, /* devmap */
2017c478bd9Sstevel@tonic-gate nodev, /* mmap */
2027c478bd9Sstevel@tonic-gate nodev, /* segmap */
2037c478bd9Sstevel@tonic-gate nochpoll, /* poll */
2047c478bd9Sstevel@tonic-gate ddi_prop_op,
2057c478bd9Sstevel@tonic-gate NULL,
2067c478bd9Sstevel@tonic-gate D_64BIT | D_NEW | D_MP
2077c478bd9Sstevel@tonic-gate };
2087c478bd9Sstevel@tonic-gate
2097c478bd9Sstevel@tonic-gate static struct dev_ops cpuid_dv_ops = {
2107c478bd9Sstevel@tonic-gate DEVO_REV,
2117c478bd9Sstevel@tonic-gate 0,
2127c478bd9Sstevel@tonic-gate cpuid_getinfo,
2137c478bd9Sstevel@tonic-gate nulldev, /* identify */
2147c478bd9Sstevel@tonic-gate nulldev, /* probe */
2157c478bd9Sstevel@tonic-gate cpuid_attach,
2167c478bd9Sstevel@tonic-gate cpuid_detach,
2177c478bd9Sstevel@tonic-gate nodev, /* reset */
2187c478bd9Sstevel@tonic-gate &cpuid_cb_ops,
21919397407SSherry Moore (struct bus_ops *)0,
22019397407SSherry Moore NULL,
22119397407SSherry Moore ddi_quiesce_not_needed, /* quiesce */
2227c478bd9Sstevel@tonic-gate };
2237c478bd9Sstevel@tonic-gate
2247c478bd9Sstevel@tonic-gate static struct modldrv modldrv = {
2257c478bd9Sstevel@tonic-gate &mod_driverops,
22619397407SSherry Moore "cpuid driver",
2277c478bd9Sstevel@tonic-gate &cpuid_dv_ops
2287c478bd9Sstevel@tonic-gate };
2297c478bd9Sstevel@tonic-gate
2307c478bd9Sstevel@tonic-gate static struct modlinkage modl = {
2317c478bd9Sstevel@tonic-gate MODREV_1,
2327c478bd9Sstevel@tonic-gate &modldrv
2337c478bd9Sstevel@tonic-gate };
2347c478bd9Sstevel@tonic-gate
2357c478bd9Sstevel@tonic-gate int
_init(void)2367c478bd9Sstevel@tonic-gate _init(void)
2377c478bd9Sstevel@tonic-gate {
2387c478bd9Sstevel@tonic-gate return (mod_install(&modl));
2397c478bd9Sstevel@tonic-gate }
2407c478bd9Sstevel@tonic-gate
2417c478bd9Sstevel@tonic-gate int
_fini(void)2427c478bd9Sstevel@tonic-gate _fini(void)
2437c478bd9Sstevel@tonic-gate {
2447c478bd9Sstevel@tonic-gate return (mod_remove(&modl));
2457c478bd9Sstevel@tonic-gate }
2467c478bd9Sstevel@tonic-gate
2477c478bd9Sstevel@tonic-gate int
_info(struct modinfo * modinfo)2487c478bd9Sstevel@tonic-gate _info(struct modinfo *modinfo)
2497c478bd9Sstevel@tonic-gate {
2507c478bd9Sstevel@tonic-gate return (mod_info(&modl, modinfo));
2517c478bd9Sstevel@tonic-gate }
252