1 /* hvapi.c: Hypervisor API management.
3 * Copyright (C) 2007 David S. Miller <davem@davemloft.net>
5 #include <linux/kernel.h>
6 #include <linux/export.h>
7 #include <linux/init.h>
9 #include <asm/hypervisor.h>
10 #include <asm/oplib.h>
12 /* If the hypervisor indicates that the API setting
13 * calls are unsupported, by returning HV_EBADTRAP or
14 * HV_ENOTSUPPORTED, we assume that API groups with the
15 * PRE_API flag set are major 1 minor 0.
23 #define FLAG_PRE_API 0x00000001
26 static struct api_info api_table
[] = {
27 { .group
= HV_GRP_SUN4V
, .flags
= FLAG_PRE_API
},
28 { .group
= HV_GRP_CORE
, .flags
= FLAG_PRE_API
},
29 { .group
= HV_GRP_INTR
, },
30 { .group
= HV_GRP_SOFT_STATE
, },
31 { .group
= HV_GRP_TM
, },
32 { .group
= HV_GRP_PCI
, .flags
= FLAG_PRE_API
},
33 { .group
= HV_GRP_LDOM
, },
34 { .group
= HV_GRP_SVC_CHAN
, .flags
= FLAG_PRE_API
},
35 { .group
= HV_GRP_NCS
, .flags
= FLAG_PRE_API
},
36 { .group
= HV_GRP_RNG
, },
37 { .group
= HV_GRP_PBOOT
, },
38 { .group
= HV_GRP_TPM
, },
39 { .group
= HV_GRP_SDIO
, },
40 { .group
= HV_GRP_SDIO_ERR
, },
41 { .group
= HV_GRP_REBOOT_DATA
, },
42 { .group
= HV_GRP_ATU
, .flags
= FLAG_PRE_API
},
43 { .group
= HV_GRP_NIAG_PERF
, .flags
= FLAG_PRE_API
},
44 { .group
= HV_GRP_FIRE_PERF
, },
45 { .group
= HV_GRP_N2_CPU
, },
46 { .group
= HV_GRP_NIU
, },
47 { .group
= HV_GRP_VF_CPU
, },
48 { .group
= HV_GRP_KT_CPU
, },
49 { .group
= HV_GRP_VT_CPU
, },
50 { .group
= HV_GRP_T5_CPU
, },
51 { .group
= HV_GRP_DIAG
, .flags
= FLAG_PRE_API
},
52 { .group
= HV_GRP_M7_PERF
, },
55 static DEFINE_SPINLOCK(hvapi_lock
);
57 static struct api_info
*__get_info(unsigned long group
)
61 for (i
= 0; i
< ARRAY_SIZE(api_table
); i
++) {
62 if (api_table
[i
].group
== group
)
68 static void __get_ref(struct api_info
*p
)
73 static void __put_ref(struct api_info
*p
)
75 if (--p
->refcnt
== 0) {
78 sun4v_set_version(p
->group
, 0, 0, &ignore
);
79 p
->major
= p
->minor
= 0;
83 /* Register a hypervisor API specification. It indicates the
84 * API group and desired major+minor.
86 * If an existing API registration exists '0' (success) will
87 * be returned if it is compatible with the one being registered.
88 * Otherwise a negative error code will be returned.
90 * Otherwise an attempt will be made to negotiate the requested
91 * API group/major/minor with the hypervisor, and errors returned
92 * if that does not succeed.
94 int sun4v_hvapi_register(unsigned long group
, unsigned long major
,
101 spin_lock_irqsave(&hvapi_lock
, flags
);
102 p
= __get_info(group
);
107 if (p
->major
== major
) {
112 unsigned long actual_minor
;
113 unsigned long hv_ret
;
115 hv_ret
= sun4v_set_version(group
, major
, *minor
,
118 if (hv_ret
== HV_EOK
) {
119 *minor
= actual_minor
;
121 p
->minor
= actual_minor
;
123 } else if (hv_ret
== HV_EBADTRAP
||
124 hv_ret
== HV_ENOTSUPPORTED
) {
125 if (p
->flags
& FLAG_PRE_API
) {
139 spin_unlock_irqrestore(&hvapi_lock
, flags
);
143 EXPORT_SYMBOL(sun4v_hvapi_register
);
145 void sun4v_hvapi_unregister(unsigned long group
)
150 spin_lock_irqsave(&hvapi_lock
, flags
);
151 p
= __get_info(group
);
154 spin_unlock_irqrestore(&hvapi_lock
, flags
);
156 EXPORT_SYMBOL(sun4v_hvapi_unregister
);
158 int sun4v_hvapi_get(unsigned long group
,
159 unsigned long *major
,
160 unsigned long *minor
)
166 spin_lock_irqsave(&hvapi_lock
, flags
);
168 p
= __get_info(group
);
169 if (p
&& p
->refcnt
) {
174 spin_unlock_irqrestore(&hvapi_lock
, flags
);
178 EXPORT_SYMBOL(sun4v_hvapi_get
);
180 void __init
sun4v_hvapi_init(void)
182 unsigned long group
, major
, minor
;
184 group
= HV_GRP_SUN4V
;
187 if (sun4v_hvapi_register(group
, major
, &minor
))
193 if (sun4v_hvapi_register(group
, major
, &minor
))
199 prom_printf("HVAPI: Cannot register API group "
200 "%lx with major(%lu) minor(%lu)\n",
201 group
, major
, minor
);