Initial commit of vpp code.
[vpp.git] / vlib / vlib / unix / physmem.h
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef __included_physmem_h__
16 #define __included_physmem_h__
17
18 /* Manage I/O physical memory. */
19 #define _GNU_SOURCE 
20 #include <sched.h>
21 #include <vppinfra/cache.h>
22 #include <vppinfra/error.h>
23 #include <vppinfra/mheap.h>
24 #include <vppinfra/os.h>
25
26 #include <vlib/vlib.h>
27 #include <vlib/unix/unix.h>
28
29 #include <sys/fcntl.h>          /* for open */
30 #include <sys/file.h>           /* for flock */
31 #include <sys/ioctl.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <fcntl.h>
35 #include <sys/ipc.h>
36 #include <sys/shm.h>
37
38 typedef struct {
39   /* File descriptor for /dev/uio-dma. */
40   int uio_dma_fd;
41
42   /* Virtual memory via mmaped. */
43   void * mem;
44
45   /* Size in bytes. */
46   uword mem_size;
47
48   /* Heap allocated out of virtual memory. */
49   void * heap;
50
51   /* huge TLB segment id */
52   int shmid;
53
54   /* should we try to use htlb ? */
55   int no_hugepages;
56
57 } physmem_main_t;
58
59 #endif /* __included_physmem_h__ */