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_NIAG_PERF
, .flags
= FLAG_PRE_API
},
43 { .group
= HV_GRP_FIRE_PERF
, },
44 { .group
= HV_GRP_N2_CPU
, },
45 { .group
= HV_GRP_NIU
, },
46 { .group
= HV_GRP_VF_CPU
, },
47 { .group
= HV_GRP_KT_CPU
, },
48 { .group
= HV_GRP_VT_CPU
, },
49 { .group
= HV_GRP_DIAG
, .flags
= FLAG_PRE_API
},
52 static DEFINE_SPINLOCK(hvapi_lock
);
54 static struct api_info
*__get_info(unsigned long group
)
58 for (i
= 0; i
< ARRAY_SIZE(api_table
); i
++) {
59 if (api_table
[i
].group
== group
)
65 static void __get_ref(struct api_info
*p
)
70 static void __put_ref(struct api_info
*p
)
72 if (--p
->refcnt
== 0) {
75 sun4v_set_version(p
->group
, 0, 0, &ignore
);
76 p
->major
= p
->minor
= 0;
80 /* Register a hypervisor API specification. It indicates the
81 * API group and desired major+minor.
83 * If an existing API registration exists '0' (success) will
84 * be returned if it is compatible with the one being registered.
85 * Otherwise a negative error code will be returned.
87 * Otherwise an attempt will be made to negotiate the requested
88 * API group/major/minor with the hypervisor, and errors returned
89 * if that does not succeed.
91 int sun4v_hvapi_register(unsigned long group
, unsigned long major
,
98 spin_lock_irqsave(&hvapi_lock
, flags
);
99 p
= __get_info(group
);
104 if (p
->major
== major
) {
109 unsigned long actual_minor
;
110 unsigned long hv_ret
;
112 hv_ret
= sun4v_set_version(group
, major
, *minor
,
115 if (hv_ret
== HV_EOK
) {
116 *minor
= actual_minor
;
118 p
->minor
= actual_minor
;
120 } else if (hv_ret
== HV_EBADTRAP
||
121 hv_ret
== HV_ENOTSUPPORTED
) {
122 if (p
->flags
& FLAG_PRE_API
) {
136 spin_unlock_irqrestore(&hvapi_lock
, flags
);
140 EXPORT_SYMBOL(sun4v_hvapi_register
);
142 void sun4v_hvapi_unregister(unsigned long group
)
147 spin_lock_irqsave(&hvapi_lock
, flags
);
148 p
= __get_info(group
);
151 spin_unlock_irqrestore(&hvapi_lock
, flags
);
153 EXPORT_SYMBOL(sun4v_hvapi_unregister
);
155 int sun4v_hvapi_get(unsigned long group
,
156 unsigned long *major
,
157 unsigned long *minor
)
163 spin_lock_irqsave(&hvapi_lock
, flags
);
165 p
= __get_info(group
);
166 if (p
&& p
->refcnt
) {
171 spin_unlock_irqrestore(&hvapi_lock
, flags
);
175 EXPORT_SYMBOL(sun4v_hvapi_get
);
177 void __init
sun4v_hvapi_init(void)
179 unsigned long group
, major
, minor
;
181 group
= HV_GRP_SUN4V
;
184 if (sun4v_hvapi_register(group
, major
, &minor
))
190 if (sun4v_hvapi_register(group
, major
, &minor
))
196 prom_printf("HVAPI: Cannot register API group "
197 "%lx with major(%lu) minor(%lu)\n",
198 group
, major
, minor
);