]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - drivers/staging/unisys/visorutil/visorkmodutils.c
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[mirror_ubuntu-zesty-kernel.git] / drivers / staging / unisys / visorutil / visorkmodutils.c
1 /* timskmodutils.c
2 *
3 * Copyright (C) 2010 - 2013 UNISYS CORPORATION
4 * All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
14 * NON INFRINGEMENT. See the GNU General Public License for more
15 * details.
16 */
17
18 #include "uniklog.h"
19 #include "timskmod.h"
20
21 #define MYDRVNAME "timskmodutils"
22
23 /* s-Par uses the Intel processor's VT-X features to separate groups of
24 * processors into partitions. The firmware sets the hypervisor bit and
25 * reports an ID in the HV capabilities leaf so that the partition's OS
26 * knows s-Par is present and managing the processors.
27 */
28
29 #define UNISYS_SPAR_LEAF_ID 0x40000000
30
31 /* The s-Par leaf ID returns "UnisysSpar64" encoded across ebx, ecx, edx */
32 #define UNISYS_SPAR_ID_EBX 0x73696e55
33 #define UNISYS_SPAR_ID_ECX 0x70537379
34 #define UNISYS_SPAR_ID_EDX 0x34367261
35
36 int unisys_spar_platform;
37 EXPORT_SYMBOL_GPL(unisys_spar_platform);
38
39 static __init uint32_t visorutil_spar_detect(void)
40 {
41 unsigned int eax, ebx, ecx, edx;
42
43 if (cpu_has_hypervisor) {
44 /* check the ID */
45 cpuid(UNISYS_SPAR_LEAF_ID, &eax, &ebx, &ecx, &edx);
46 return (ebx == UNISYS_SPAR_ID_EBX) &&
47 (ecx == UNISYS_SPAR_ID_ECX) &&
48 (edx == UNISYS_SPAR_ID_EDX);
49 } else {
50 return 0;
51 }
52 }
53
54 static __init int visorutil_mod_init(void)
55 {
56 if (visorutil_spar_detect()) {
57 unisys_spar_platform = TRUE;
58 return 0;
59 } else {
60 return -ENODEV;
61 }
62 }
63
64 static __exit void
65 visorutil_mod_exit(void)
66 {
67 }
68
69 module_init(visorutil_mod_init);
70 module_exit(visorutil_mod_exit);
71
72 MODULE_LICENSE("GPL");