Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
fsl_hypervisor.h
Go to the documentation of this file.
1 /*
2  * Freescale hypervisor ioctl and kernel interface
3  *
4  * Copyright (C) 2008-2011 Freescale Semiconductor, Inc.
5  * Author: Timur Tabi <[email protected]>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution.
14  * * Neither the name of Freescale Semiconductor nor the
15  * names of its contributors may be used to endorse or promote products
16  * derived from this software without specific prior written permission.
17  *
18  *
19  * ALTERNATIVELY, this software may be distributed under the terms of the
20  * GNU General Public License ("GPL") as published by the Free Software
21  * Foundation, either version 2 of that License or (at your option) any
22  * later version.
23  *
24  * This software is provided by Freescale Semiconductor "as is" and any
25  * express or implied warranties, including, but not limited to, the implied
26  * warranties of merchantability and fitness for a particular purpose are
27  * disclaimed. In no event shall Freescale Semiconductor be liable for any
28  * direct, indirect, incidental, special, exemplary, or consequential damages
29  * (including, but not limited to, procurement of substitute goods or services;
30  * loss of use, data, or profits; or business interruption) however caused and
31  * on any theory of liability, whether in contract, strict liability, or tort
32  * (including negligence or otherwise) arising in any way out of the use of this
33  * software, even if advised of the possibility of such damage.
34  *
35  * This file is used by the Freescale hypervisor management driver. It can
36  * also be included by applications that need to communicate with the driver
37  * via the ioctl interface.
38  */
39 
40 #ifndef _UAPIFSL_HYPERVISOR_H
41 #define _UAPIFSL_HYPERVISOR_H
42 
43 #include <linux/types.h>
44 
56 };
57 
77 };
78 
93 };
94 
106 };
107 
144  __u32 reserved; /* padding to ensure local_vaddr is aligned */
148 };
149 
160 };
161 
181  __u32 reserved; /* padding to ensure structure is aligned */
182 };
183 
184 /* The ioctl type, documented in ioctl-number.txt */
185 #define FSL_HV_IOCTL_TYPE 0xAF
186 
187 /* Restart another partition */
188 #define FSL_HV_IOCTL_PARTITION_RESTART \
189  _IOWR(FSL_HV_IOCTL_TYPE, 1, struct fsl_hv_ioctl_restart)
190 
191 /* Get a partition's status */
192 #define FSL_HV_IOCTL_PARTITION_GET_STATUS \
193  _IOWR(FSL_HV_IOCTL_TYPE, 2, struct fsl_hv_ioctl_status)
194 
195 /* Boot another partition */
196 #define FSL_HV_IOCTL_PARTITION_START \
197  _IOWR(FSL_HV_IOCTL_TYPE, 3, struct fsl_hv_ioctl_start)
198 
199 /* Stop this or another partition */
200 #define FSL_HV_IOCTL_PARTITION_STOP \
201  _IOWR(FSL_HV_IOCTL_TYPE, 4, struct fsl_hv_ioctl_stop)
202 
203 /* Copy data from one partition to another */
204 #define FSL_HV_IOCTL_MEMCPY \
205  _IOWR(FSL_HV_IOCTL_TYPE, 5, struct fsl_hv_ioctl_memcpy)
206 
207 /* Ring a doorbell */
208 #define FSL_HV_IOCTL_DOORBELL \
209  _IOWR(FSL_HV_IOCTL_TYPE, 6, struct fsl_hv_ioctl_doorbell)
210 
211 /* Get a property from another guest's device tree */
212 #define FSL_HV_IOCTL_GETPROP \
213  _IOWR(FSL_HV_IOCTL_TYPE, 7, struct fsl_hv_ioctl_prop)
214 
215 /* Set a property in another guest's device tree */
216 #define FSL_HV_IOCTL_SETPROP \
217  _IOWR(FSL_HV_IOCTL_TYPE, 8, struct fsl_hv_ioctl_prop)
218 
219 
220 #endif /* _UAPIFSL_HYPERVISOR_H */