2 * Freescale hypervisor call interface
4 * Copyright 2008-2010 Freescale Semiconductor, Inc.
6 * Author: Timur Tabi <timur@freescale.com>
8 * This file is provided under a dual BSD/GPL license. When using or
9 * redistributing this file, you may do so under either license.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions are met:
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * * Neither the name of Freescale Semiconductor nor the
19 * names of its contributors may be used to endorse or promote products
20 * derived from this software without specific prior written permission.
23 * ALTERNATIVELY, this software may be distributed under the terms of the
24 * GNU General Public License ("GPL") as published by the Free Software
25 * Foundation, either version 2 of that License or (at your option) any
28 * THIS SOFTWARE IS PROVIDED BY Freescale Semiconductor ``AS IS'' AND ANY
29 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
30 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
31 * DISCLAIMED. IN NO EVENT SHALL Freescale Semiconductor BE LIABLE FOR ANY
32 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
33 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
34 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
35 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
37 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 #include <linux/types.h>
44 #include <linux/errno.h>
45 #include <asm/byteorder.h>
46 #include <asm/epapr_hcalls.h>
48 #define FH_API_VERSION 1
50 #define FH_ERR_GET_INFO 1
51 #define FH_PARTITION_GET_DTPROP 2
52 #define FH_PARTITION_SET_DTPROP 3
53 #define FH_PARTITION_RESTART 4
54 #define FH_PARTITION_GET_STATUS 5
55 #define FH_PARTITION_START 6
56 #define FH_PARTITION_STOP 7
57 #define FH_PARTITION_MEMCPY 8
58 #define FH_DMA_ENABLE 9
59 #define FH_DMA_DISABLE 10
60 #define FH_SEND_NMI 11
61 #define FH_VMPIC_GET_MSIR 12
62 #define FH_SYSTEM_RESET 13
63 #define FH_GET_CORE_STATE 14
64 #define FH_ENTER_NAP 15
65 #define FH_EXIT_NAP 16
66 #define FH_CLAIM_DEVICE 17
67 #define FH_PARTITION_STOP_DMA 18
69 /* vendor ID: Freescale Semiconductor */
70 #define FH_HCALL_TOKEN(num) _EV_HCALL_TOKEN(EV_FSL_VENDOR_ID, num)
73 * We use "uintptr_t" to define a register because it's guaranteed to be a
74 * 32-bit integer on a 32-bit platform, and a 64-bit integer on a 64-bit
77 * All registers are either input/output or output only. Registers that are
78 * initialized before making the hypercall are input/output. All
79 * input/output registers are represented with "+r". Output-only registers
80 * are represented with "=r". Do not specify any unused registers. The
81 * clobber list will tell the compiler that the hypercall modifies those
82 * registers, which is good enough.
86 * fh_send_nmi - send NMI to virtual cpu(s).
87 * @vcpu_mask: send NMI to virtual cpu(s) specified by this mask.
89 * Returns 0 for success, or EINVAL for invalid vcpu_mask.
91 static inline unsigned int fh_send_nmi(unsigned int vcpu_mask
)
93 register uintptr_t r11
__asm__("r11");
94 register uintptr_t r3
__asm__("r3");
96 r11
= FH_HCALL_TOKEN(FH_SEND_NMI
);
99 __asm__
__volatile__ ("sc 1"
100 : "+r" (r11
), "+r" (r3
)
101 : : EV_HCALL_CLOBBERS1
107 /* Arbitrary limits to avoid excessive memory allocation in hypervisor */
108 #define FH_DTPROP_MAX_PATHLEN 4096
109 #define FH_DTPROP_MAX_PROPLEN 32768
112 * fh_partiton_get_dtprop - get a property from a guest device tree.
113 * @handle: handle of partition whose device tree is to be accessed
114 * @dtpath_addr: physical address of device tree path to access
115 * @propname_addr: physical address of name of property
116 * @propvalue_addr: physical address of property value buffer
117 * @propvalue_len: length of buffer on entry, length of property on return
119 * Returns zero on success, non-zero on error.
121 static inline unsigned int fh_partition_get_dtprop(int handle
,
122 uint64_t dtpath_addr
,
123 uint64_t propname_addr
,
124 uint64_t propvalue_addr
,
125 uint32_t *propvalue_len
)
127 register uintptr_t r11
__asm__("r11");
128 register uintptr_t r3
__asm__("r3");
129 register uintptr_t r4
__asm__("r4");
130 register uintptr_t r5
__asm__("r5");
131 register uintptr_t r6
__asm__("r6");
132 register uintptr_t r7
__asm__("r7");
133 register uintptr_t r8
__asm__("r8");
134 register uintptr_t r9
__asm__("r9");
135 register uintptr_t r10
__asm__("r10");
137 r11
= FH_HCALL_TOKEN(FH_PARTITION_GET_DTPROP
);
140 #ifdef CONFIG_PHYS_64BIT
141 r4
= dtpath_addr
>> 32;
142 r6
= propname_addr
>> 32;
143 r8
= propvalue_addr
>> 32;
149 r5
= (uint32_t)dtpath_addr
;
150 r7
= (uint32_t)propname_addr
;
151 r9
= (uint32_t)propvalue_addr
;
152 r10
= *propvalue_len
;
154 __asm__
__volatile__ ("sc 1"
156 "+r" (r3
), "+r" (r4
), "+r" (r5
), "+r" (r6
), "+r" (r7
),
157 "+r" (r8
), "+r" (r9
), "+r" (r10
)
158 : : EV_HCALL_CLOBBERS8
166 * Set a property in a guest device tree.
167 * @handle: handle of partition whose device tree is to be accessed
168 * @dtpath_addr: physical address of device tree path to access
169 * @propname_addr: physical address of name of property
170 * @propvalue_addr: physical address of property value
171 * @propvalue_len: length of property
173 * Returns zero on success, non-zero on error.
175 static inline unsigned int fh_partition_set_dtprop(int handle
,
176 uint64_t dtpath_addr
,
177 uint64_t propname_addr
,
178 uint64_t propvalue_addr
,
179 uint32_t propvalue_len
)
181 register uintptr_t r11
__asm__("r11");
182 register uintptr_t r3
__asm__("r3");
183 register uintptr_t r4
__asm__("r4");
184 register uintptr_t r6
__asm__("r6");
185 register uintptr_t r8
__asm__("r8");
186 register uintptr_t r5
__asm__("r5");
187 register uintptr_t r7
__asm__("r7");
188 register uintptr_t r9
__asm__("r9");
189 register uintptr_t r10
__asm__("r10");
191 r11
= FH_HCALL_TOKEN(FH_PARTITION_SET_DTPROP
);
194 #ifdef CONFIG_PHYS_64BIT
195 r4
= dtpath_addr
>> 32;
196 r6
= propname_addr
>> 32;
197 r8
= propvalue_addr
>> 32;
203 r5
= (uint32_t)dtpath_addr
;
204 r7
= (uint32_t)propname_addr
;
205 r9
= (uint32_t)propvalue_addr
;
208 __asm__
__volatile__ ("sc 1"
210 "+r" (r3
), "+r" (r4
), "+r" (r5
), "+r" (r6
), "+r" (r7
),
211 "+r" (r8
), "+r" (r9
), "+r" (r10
)
212 : : EV_HCALL_CLOBBERS8
219 * fh_partition_restart - reboot the current partition
220 * @partition: partition ID
222 * Returns an error code if reboot failed. Does not return if it succeeds.
224 static inline unsigned int fh_partition_restart(unsigned int partition
)
226 register uintptr_t r11
__asm__("r11");
227 register uintptr_t r3
__asm__("r3");
229 r11
= FH_HCALL_TOKEN(FH_PARTITION_RESTART
);
232 __asm__
__volatile__ ("sc 1"
233 : "+r" (r11
), "+r" (r3
)
234 : : EV_HCALL_CLOBBERS1
240 #define FH_PARTITION_STOPPED 0
241 #define FH_PARTITION_RUNNING 1
242 #define FH_PARTITION_STARTING 2
243 #define FH_PARTITION_STOPPING 3
244 #define FH_PARTITION_PAUSING 4
245 #define FH_PARTITION_PAUSED 5
246 #define FH_PARTITION_RESUMING 6
249 * fh_partition_get_status - gets the status of a partition
250 * @partition: partition ID
251 * @status: returned status code
253 * Returns 0 for success, or an error code.
255 static inline unsigned int fh_partition_get_status(unsigned int partition
,
256 unsigned int *status
)
258 register uintptr_t r11
__asm__("r11");
259 register uintptr_t r3
__asm__("r3");
260 register uintptr_t r4
__asm__("r4");
262 r11
= FH_HCALL_TOKEN(FH_PARTITION_GET_STATUS
);
265 __asm__
__volatile__ ("sc 1"
266 : "+r" (r11
), "+r" (r3
), "=r" (r4
)
267 : : EV_HCALL_CLOBBERS2
276 * fh_partition_start - boots and starts execution of the specified partition
277 * @partition: partition ID
278 * @entry_point: guest physical address to start execution
280 * The hypervisor creates a 1-to-1 virtual/physical IMA mapping, so at boot
281 * time, guest physical address are the same as guest virtual addresses.
283 * Returns 0 for success, or an error code.
285 static inline unsigned int fh_partition_start(unsigned int partition
,
286 uint32_t entry_point
, int load
)
288 register uintptr_t r11
__asm__("r11");
289 register uintptr_t r3
__asm__("r3");
290 register uintptr_t r4
__asm__("r4");
291 register uintptr_t r5
__asm__("r5");
293 r11
= FH_HCALL_TOKEN(FH_PARTITION_START
);
298 __asm__
__volatile__ ("sc 1"
299 : "+r" (r11
), "+r" (r3
), "+r" (r4
), "+r" (r5
)
300 : : EV_HCALL_CLOBBERS3
307 * fh_partition_stop - stops another partition
308 * @partition: partition ID
310 * Returns 0 for success, or an error code.
312 static inline unsigned int fh_partition_stop(unsigned int partition
)
314 register uintptr_t r11
__asm__("r11");
315 register uintptr_t r3
__asm__("r3");
317 r11
= FH_HCALL_TOKEN(FH_PARTITION_STOP
);
320 __asm__
__volatile__ ("sc 1"
321 : "+r" (r11
), "+r" (r3
)
322 : : EV_HCALL_CLOBBERS1
329 * struct fh_sg_list: definition of the fh_partition_memcpy S/G list
330 * @source: guest physical address to copy from
331 * @target: guest physical address to copy to
332 * @size: number of bytes to copy
333 * @reserved: reserved, must be zero
335 * The scatter/gather list for fh_partition_memcpy() is an array of these
336 * structures. The array must be guest physically contiguous.
338 * This structure must be aligned on 32-byte boundary, so that no single
339 * strucuture can span two pages.
342 uint64_t source
; /**< guest physical address to copy from */
343 uint64_t target
; /**< guest physical address to copy to */
344 uint64_t size
; /**< number of bytes to copy */
345 uint64_t reserved
; /**< reserved, must be zero */
346 } __attribute__ ((aligned(32)));
349 * fh_partition_memcpy - copies data from one guest to another
350 * @source: the ID of the partition to copy from
351 * @target: the ID of the partition to copy to
352 * @sg_list: guest physical address of an array of &fh_sg_list structures
353 * @count: the number of entries in @sg_list
355 * Returns 0 for success, or an error code.
357 static inline unsigned int fh_partition_memcpy(unsigned int source
,
358 unsigned int target
, phys_addr_t sg_list
, unsigned int count
)
360 register uintptr_t r11
__asm__("r11");
361 register uintptr_t r3
__asm__("r3");
362 register uintptr_t r4
__asm__("r4");
363 register uintptr_t r5
__asm__("r5");
364 register uintptr_t r6
__asm__("r6");
365 register uintptr_t r7
__asm__("r7");
367 r11
= FH_HCALL_TOKEN(FH_PARTITION_MEMCPY
);
370 r5
= (uint32_t) sg_list
;
372 #ifdef CONFIG_PHYS_64BIT
379 __asm__
__volatile__ ("sc 1"
381 "+r" (r3
), "+r" (r4
), "+r" (r5
), "+r" (r6
), "+r" (r7
)
382 : : EV_HCALL_CLOBBERS5
389 * fh_dma_enable - enable DMA for the specified device
390 * @liodn: the LIODN of the I/O device for which to enable DMA
392 * Returns 0 for success, or an error code.
394 static inline unsigned int fh_dma_enable(unsigned int liodn
)
396 register uintptr_t r11
__asm__("r11");
397 register uintptr_t r3
__asm__("r3");
399 r11
= FH_HCALL_TOKEN(FH_DMA_ENABLE
);
402 __asm__
__volatile__ ("sc 1"
403 : "+r" (r11
), "+r" (r3
)
404 : : EV_HCALL_CLOBBERS1
411 * fh_dma_disable - disable DMA for the specified device
412 * @liodn: the LIODN of the I/O device for which to disable DMA
414 * Returns 0 for success, or an error code.
416 static inline unsigned int fh_dma_disable(unsigned int liodn
)
418 register uintptr_t r11
__asm__("r11");
419 register uintptr_t r3
__asm__("r3");
421 r11
= FH_HCALL_TOKEN(FH_DMA_DISABLE
);
424 __asm__
__volatile__ ("sc 1"
425 : "+r" (r11
), "+r" (r3
)
426 : : EV_HCALL_CLOBBERS1
434 * fh_vmpic_get_msir - returns the MPIC-MSI register value
435 * @interrupt: the interrupt number
436 * @msir_val: returned MPIC-MSI register value
438 * Returns 0 for success, or an error code.
440 static inline unsigned int fh_vmpic_get_msir(unsigned int interrupt
,
441 unsigned int *msir_val
)
443 register uintptr_t r11
__asm__("r11");
444 register uintptr_t r3
__asm__("r3");
445 register uintptr_t r4
__asm__("r4");
447 r11
= FH_HCALL_TOKEN(FH_VMPIC_GET_MSIR
);
450 __asm__
__volatile__ ("sc 1"
451 : "+r" (r11
), "+r" (r3
), "=r" (r4
)
452 : : EV_HCALL_CLOBBERS2
461 * fh_system_reset - reset the system
463 * Returns 0 for success, or an error code.
465 static inline unsigned int fh_system_reset(void)
467 register uintptr_t r11
__asm__("r11");
468 register uintptr_t r3
__asm__("r3");
470 r11
= FH_HCALL_TOKEN(FH_SYSTEM_RESET
);
472 __asm__
__volatile__ ("sc 1"
473 : "+r" (r11
), "=r" (r3
)
474 : : EV_HCALL_CLOBBERS1
482 * fh_err_get_info - get platform error information
484 * 0 for guest error event queue
485 * 1 for global error event queue
487 * @pointer to store the platform error data:
488 * platform error data is returned in registers r4 - r11
490 * Returns 0 for success, or an error code.
492 static inline unsigned int fh_err_get_info(int queue
, uint32_t *bufsize
,
493 uint32_t addr_hi
, uint32_t addr_lo
, int peek
)
495 register uintptr_t r11
__asm__("r11");
496 register uintptr_t r3
__asm__("r3");
497 register uintptr_t r4
__asm__("r4");
498 register uintptr_t r5
__asm__("r5");
499 register uintptr_t r6
__asm__("r6");
500 register uintptr_t r7
__asm__("r7");
502 r11
= FH_HCALL_TOKEN(FH_ERR_GET_INFO
);
509 __asm__
__volatile__ ("sc 1"
510 : "+r" (r11
), "+r" (r3
), "+r" (r4
), "+r" (r5
), "+r" (r6
),
512 : : EV_HCALL_CLOBBERS5
521 #define FH_VCPU_RUN 0
522 #define FH_VCPU_IDLE 1
523 #define FH_VCPU_NAP 2
526 * fh_get_core_state - get the state of a vcpu
528 * @handle: handle of partition containing the vcpu
529 * @vcpu: vcpu number within the partition
530 * @state:the current state of the vcpu, see FH_VCPU_*
532 * Returns 0 for success, or an error code.
534 static inline unsigned int fh_get_core_state(unsigned int handle
,
535 unsigned int vcpu
, unsigned int *state
)
537 register uintptr_t r11
__asm__("r11");
538 register uintptr_t r3
__asm__("r3");
539 register uintptr_t r4
__asm__("r4");
541 r11
= FH_HCALL_TOKEN(FH_GET_CORE_STATE
);
545 __asm__
__volatile__ ("sc 1"
546 : "+r" (r11
), "+r" (r3
), "+r" (r4
)
547 : : EV_HCALL_CLOBBERS2
555 * fh_enter_nap - enter nap on a vcpu
557 * Note that though the API supports entering nap on a vcpu other
558 * than the caller, this may not be implmented and may return EINVAL.
560 * @handle: handle of partition containing the vcpu
561 * @vcpu: vcpu number within the partition
563 * Returns 0 for success, or an error code.
565 static inline unsigned int fh_enter_nap(unsigned int handle
, unsigned int vcpu
)
567 register uintptr_t r11
__asm__("r11");
568 register uintptr_t r3
__asm__("r3");
569 register uintptr_t r4
__asm__("r4");
571 r11
= FH_HCALL_TOKEN(FH_ENTER_NAP
);
575 __asm__
__volatile__ ("sc 1"
576 : "+r" (r11
), "+r" (r3
), "+r" (r4
)
577 : : EV_HCALL_CLOBBERS2
584 * fh_exit_nap - exit nap on a vcpu
585 * @handle: handle of partition containing the vcpu
586 * @vcpu: vcpu number within the partition
588 * Returns 0 for success, or an error code.
590 static inline unsigned int fh_exit_nap(unsigned int handle
, unsigned int vcpu
)
592 register uintptr_t r11
__asm__("r11");
593 register uintptr_t r3
__asm__("r3");
594 register uintptr_t r4
__asm__("r4");
596 r11
= FH_HCALL_TOKEN(FH_EXIT_NAP
);
600 __asm__
__volatile__ ("sc 1"
601 : "+r" (r11
), "+r" (r3
), "+r" (r4
)
602 : : EV_HCALL_CLOBBERS2
608 * fh_claim_device - claim a "claimable" shared device
609 * @handle: fsl,hv-device-handle of node to claim
611 * Returns 0 for success, or an error code.
613 static inline unsigned int fh_claim_device(unsigned int handle
)
615 register uintptr_t r11
__asm__("r11");
616 register uintptr_t r3
__asm__("r3");
618 r11
= FH_HCALL_TOKEN(FH_CLAIM_DEVICE
);
621 __asm__
__volatile__ ("sc 1"
622 : "+r" (r11
), "+r" (r3
)
623 : : EV_HCALL_CLOBBERS1
630 * Run deferred DMA disabling on a partition's private devices
632 * This applies to devices which a partition owns either privately,
633 * or which are claimable and still actively owned by that partition,
634 * and which do not have the no-dma-disable property.
636 * @handle: partition (must be stopped) whose DMA is to be disabled
638 * Returns 0 for success, or an error code.
640 static inline unsigned int fh_partition_stop_dma(unsigned int handle
)
642 register uintptr_t r11
__asm__("r11");
643 register uintptr_t r3
__asm__("r3");
645 r11
= FH_HCALL_TOKEN(FH_PARTITION_STOP_DMA
);
648 __asm__
__volatile__ ("sc 1"
649 : "+r" (r11
), "+r" (r3
)
650 : : EV_HCALL_CLOBBERS1