]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/powerpc/pseries/phyp-hvcall.S
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / sys / powerpc / pseries / phyp-hvcall.S
1 /*-
2  * Copyright (C) 2010 Andreas Tobler
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
18  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
20  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
21  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
22  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
23  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  * $FreeBSD$
26  */
27 #include <machine/asm.h>
28
29 /* Hypervisor entry call. */
30 #define  hc  .long 0x44000022
31
32 /*
33  * Simple HV calls take the same arguments, with the same ABI, as this
34  * C function
35  */
36 ASENTRY(phyp_hcall)
37         mflr    %r0
38         std     %r0,16(%r1)
39         hc                              /* invoke the hypervisor */
40         ld      %r0,16(%r1)
41         mtlr    %r0
42         blr                             /* return r3 = status */
43
44 /*
45  * PFT HV calls take a special ABI (see PAPR 14.5.4.1)
46  *
47  * r3-r7 arguments passed unchanged, r8-r10 are addresses of return values
48  * HV takes the same r3-r7, but returns values in r3, r4-r6
49  */
50 ASENTRY(phyp_pft_hcall)
51         mflr    %r0
52         std     %r0,16(%r1)
53         stdu    %r1,-80(%r1)
54         std     %r8,48(%r1)             /* save arguments */
55         std     %r9,56(%r1)
56         std     %r10,64(%r1)
57         hc                              /* invoke the hypervisor */
58         ld      %r11,48(%r1)            /* store results */
59         std     %r4,0(%r11)
60         ld      %r11,56(%r1)
61         std     %r5,0(%r11)
62         ld      %r11,64(%r1)
63         std     %r6,0(%r11)
64         ld      %r1,0(%r1)              /* exit */
65         ld      %r0,16(%r1)
66         mtlr    %r0
67         blr                             /* return r3 = status */
68