4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
25 * Copyright (c) 2012, Joyent, Inc. All rights reserved.
29 #include <sys/types.h>
31 #include <sys/errno.h>
36 #include <sys/processor.h>
37 #include <sys/cpuvar.h>
39 #include <sys/modctl.h>
41 #include <sys/sunddi.h>
44 #include <sys/cpuid_drv.h>
45 #include <sys/systeminfo.h>
48 #include <sys/x86_archext.h>
51 static dev_info_t
*cpuid_devi
;
55 cpuid_getinfo(dev_info_t
*devi
, ddi_info_cmd_t cmd
, void *arg
, void **result
)
58 case DDI_INFO_DEVT2DEVINFO
:
59 case DDI_INFO_DEVT2INSTANCE
:
65 switch (getminor((dev_t
)arg
)) {
66 case CPUID_SELF_CPUID_MINOR
:
72 if (cmd
== DDI_INFO_DEVT2INSTANCE
)
80 cpuid_attach(dev_info_t
*devi
, ddi_attach_cmd_t cmd
)
82 if (cmd
!= DDI_ATTACH
)
86 return (ddi_create_minor_node(devi
, CPUID_DRIVER_SELF_NODE
, S_IFCHR
,
87 CPUID_SELF_CPUID_MINOR
, DDI_PSEUDO
, 0));
91 cpuid_detach(dev_info_t
*devi
, ddi_detach_cmd_t cmd
)
93 if (cmd
!= DDI_DETACH
)
95 ddi_remove_minor_node(devi
, NULL
);
102 cpuid_open(dev_t
*dev
, int flag
, int otyp
, cred_t
*cr
)
104 return (getminor(*dev
) == CPUID_SELF_CPUID_MINOR
? 0 : ENXIO
);
107 #if defined(_HAVE_CPUID_INSN)
111 cpuid_read(dev_t dev
, uio_t
*uio
, cred_t
*cr
)
113 struct cpuid_regs crs
;
116 if (!is_x86_feature(x86_featureset
, X86FSET_CPUID
))
119 if (uio
->uio_resid
& (sizeof (crs
) - 1))
122 while (uio
->uio_resid
> 0) {
125 if ((uoff
= (uoff_t
)uio
->uio_loffset
) > UINT_MAX
) {
130 crs
.cp_eax
= (uint32_t)uoff
;
131 crs
.cp_ebx
= crs
.cp_ecx
= crs
.cp_edx
= 0;
132 (void) cpuid_insn(NULL
, &crs
);
134 if ((error
= uiomove(&crs
, sizeof (crs
), UIO_READ
, uio
)) != 0)
136 uio
->uio_loffset
= uoff
+ 1;
144 #define cpuid_read nodev
146 #endif /* _HAVE_CPUID_INSN */
150 cpuid_ioctl(dev_t dev
, int cmd
, intptr_t arg
, int mode
, cred_t
*cr
, int *rval
)
156 case CPUID_GET_HWCAP
: {
157 STRUCT_DECL(cpuid_get_hwcap
, h
);
159 STRUCT_INIT(h
, mode
);
160 if (ddi_copyin((void *)arg
,
161 STRUCT_BUF(h
), STRUCT_SIZE(h
), mode
))
163 if ((ustr
= STRUCT_FGETP(h
, cgh_archname
)) != NULL
&&
164 copyinstr(ustr
, areq
, sizeof (areq
), NULL
) != 0)
166 areq
[sizeof (areq
) - 1] = '\0';
168 if (strcmp(areq
, architecture
) == 0) {
169 STRUCT_FSET(h
, cgh_hwcap
[0], auxv_hwcap
);
170 STRUCT_FSET(h
, cgh_hwcap
[1], auxv_hwcap_2
);
171 #if defined(_SYSCALL32_IMPL)
172 } else if (strcmp(areq
, architecture_32
) == 0) {
173 STRUCT_FSET(h
, cgh_hwcap
[0], auxv_hwcap32
);
174 STRUCT_FSET(h
, cgh_hwcap
[1], auxv_hwcap32_2
);
177 STRUCT_FSET(h
, cgh_hwcap
[0], 0);
178 STRUCT_FSET(h
, cgh_hwcap
[1], 0);
180 if (ddi_copyout(STRUCT_BUF(h
),
181 (void *)arg
, STRUCT_SIZE(h
), mode
))
191 static struct cb_ops cpuid_cb_ops
= {
194 nodev
, /* strategy */
206 D_64BIT
| D_NEW
| D_MP
209 static struct dev_ops cpuid_dv_ops
= {
213 nulldev
, /* identify */
221 ddi_quiesce_not_needed
, /* quiesce */
224 static struct modldrv modldrv
= {
230 static struct modlinkage modl
= {
238 return (mod_install(&modl
));
244 return (mod_remove(&modl
));
248 _info(struct modinfo
*modinfo
)
250 return (mod_info(&modl
, modinfo
));