~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/ipxe/src/arch/i386/include/bits/hyperv.h

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _BITS_HYPERV_H
 
2
#define _BITS_HYPERV_H
 
3
 
 
4
/** @file
 
5
 *
 
6
 * Hyper-V interface
 
7
 *
 
8
 */
 
9
 
 
10
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
 
11
 
 
12
#include <stddef.h>
 
13
#include <stdint.h>
 
14
#include <ipxe/io.h>
 
15
 
 
16
/**
 
17
 * Issue hypercall
 
18
 *
 
19
 * @v hv                Hyper-V hypervisor
 
20
 * @v code              Call code
 
21
 * @v in                Input parameters
 
22
 * @v out               Output parameters
 
23
 * @ret status          Status code
 
24
 */
 
25
static inline __attribute__ (( always_inline )) int
 
26
hv_call ( struct hv_hypervisor *hv, unsigned int code, const void *in,
 
27
          void *out ) {
 
28
        void *hypercall = hv->hypercall;
 
29
        uint32_t in_phys;
 
30
        uint32_t out_phys;
 
31
        uint32_t discard_ecx;
 
32
        uint32_t discard_edx;
 
33
        uint16_t result;
 
34
 
 
35
        in_phys = ( ( __builtin_constant_p ( in ) && ( in == NULL ) )
 
36
                       ? 0 : virt_to_phys ( in ) );
 
37
        out_phys = ( ( __builtin_constant_p ( out ) && ( out == NULL ) )
 
38
                       ? 0 : virt_to_phys ( out ) );
 
39
        __asm__ __volatile__ ( "call *%9"
 
40
                               : "=a" ( result ), "=c" ( discard_ecx ),
 
41
                                 "=d" ( discard_edx )
 
42
                               : "d" ( 0 ), "a" ( code ),
 
43
                                 "b" ( 0 ), "c" ( in_phys ),
 
44
                                 "D" ( 0 ), "S" ( out_phys ),
 
45
                                 "m" ( hypercall ) );
 
46
        return result;
 
47
}
 
48
 
 
49
#endif /* _BITS_HYPERV_H */