remove trailing whitespaces
[dpdk.git] / lib / librte_eal / linuxapp / xen_dom0 / dom0_mm_dev.h
1 /*-
2  * This file is provided under a dual BSD/GPLv2 license.  When using or
3  *   redistributing this file, you may do so under either license.
4  *
5  *   GPL LICENSE SUMMARY
6  *
7  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
8  *
9  *   This program is free software; you can redistribute it and/or modify
10  *   it under the terms of version 2 of the GNU General Public License as
11  *   published by the Free Software Foundation.
12  *
13  *   This program is distributed in the hope that it will be useful, but
14  *   WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  *   General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with this program; if not, write to the Free Software
20  *   Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21  *   The full GNU General Public License is included in this distribution
22  *   in the file called LICENSE.GPL.
23  *
24  *   Contact Information:
25  *   Intel Corporation
26  *
27  *   BSD LICENSE
28  *
29  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
30  *   All rights reserved.
31  *
32  *   Redistribution and use in source and binary forms, with or without
33  *   modification, are permitted provided that the following conditions
34  *   are met:
35  *
36  *     * Redistributions of source code must retain the above copyright
37  *       notice, this list of conditions and the following disclaimer.
38  *     * Redistributions in binary form must reproduce the above copyright
39  *       notice, this list of conditions and the following disclaimer in
40  *       the documentation and/or other materials provided with the
41  *       distribution.
42  *     * Neither the name of Intel Corporation nor the names of its
43  *       contributors may be used to endorse or promote products derived
44  *       from this software without specific prior written permission.
45  *
46  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
47  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
48  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
49  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
50  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
51  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
52  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
53  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
54  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
55  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
56  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
57  *
58  */
59 #ifndef _DOM0_MM_DEV_H_
60 #define _DOM0_MM_DEV_H_
61
62 #include <linux/wait.h>
63 #include <linux/mutex.h>
64 #include <linux/sched.h>
65 #include <linux/spinlock.h>
66 #include <exec-env/rte_dom0_common.h>
67
68 #define NUM_MEM_CTX     256  /**< Maximum number of memory context*/
69 #define MAX_EXCHANGE_FAIL_TIME 5  /**< Maximum times of allowing exchange fail .*/
70 #define MAX_MEMBLOCK_SIZE (2 * DOM0_MEMBLOCK_SIZE)
71 #define MAX_NUM_ORDER     (DOM0_CONTIG_NUM_ORDER + 1)
72 #define SIZE_PER_BLOCK    2       /** < size of per memory block(2MB)).*/
73
74 /**
75  * A structure describing the private information for a dom0 device.
76  */
77 struct dom0_mm_dev {
78         struct miscdevice miscdev;
79         uint8_t fail_times;
80         uint32_t used_memsize;
81         uint32_t num_mem_ctx;
82         uint32_t config_memsize;
83         uint32_t num_bigblock;
84         struct  dom0_mm_data *mm_data[NUM_MEM_CTX];
85         struct mutex data_lock;
86 };
87
88 struct dom0_mm_data{
89         uint32_t refcnt;
90         uint32_t num_memseg; /**< Number of memory segment. */
91         uint32_t mem_size;   /**< Size of requesting memory. */
92
93         char name[DOM0_NAME_MAX];
94
95         /** Store global memory block IDs used by an instance */
96         uint32_t block_num[DOM0_NUM_MEMBLOCK];
97
98         /** Store memory block information.*/
99         struct memblock_info block_info[DOM0_NUM_MEMBLOCK];
100
101         /** Store memory segment information.*/
102         struct memseg_info  seg_info[DOM0_NUM_MEMSEG];
103 };
104
105 #define XEN_ERR(args...) printk(KERN_DEBUG "XEN_DOM0: Error: " args)
106 #define XEN_PRINT(args...) printk(KERN_DEBUG "XEN_DOM0: " args)
107 #endif