blob: 18daeebabd90e4945574f467010218feff2616e9 [file] [log] [blame]
Damjan Marion49d66f12017-07-20 18:10:35 +02001/*
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/*
16 * physmem.h: virtual <-> physical memory mapping for VLIB buffers
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
39
40#ifndef included_vlib_physmem_funcs_h
41#define included_vlib_physmem_funcs_h
42
Damjan Marion68b4da62018-09-30 18:26:20 +020043clib_error_t *vlib_physmem_init (vlib_main_t * vm);
44clib_error_t *vlib_physmem_shared_map_create (vlib_main_t * vm, char *name,
Damjan Marion567e61d2018-10-24 17:08:26 +020045 uword size, u32 log2_page_sz,
46 u32 numa_node, u32 * map_index);
Damjan Marion49d66f12017-07-20 18:10:35 +020047
Damjan Marion68b4da62018-09-30 18:26:20 +020048vlib_physmem_map_t *vlib_physmem_get_map (vlib_main_t * vm, u32 index);
Damjan Marion49d66f12017-07-20 18:10:35 +020049
50always_inline void *
Damjan Marion68b4da62018-09-30 18:26:20 +020051vlib_physmem_alloc_aligned (vlib_main_t * vm, uword n_bytes, uword alignment)
Damjan Marion49d66f12017-07-20 18:10:35 +020052{
Damjan Marion68b4da62018-09-30 18:26:20 +020053 clib_pmalloc_main_t *pm = vm->physmem_main.pmalloc_main;
54 return clib_pmalloc_alloc_aligned (pm, n_bytes, alignment);
Damjan Marion49d66f12017-07-20 18:10:35 +020055}
56
Damjan Mariond2bfb782019-01-07 20:56:04 +010057always_inline void *
58vlib_physmem_alloc_aligned_on_numa (vlib_main_t * vm, uword n_bytes,
59 uword alignment, u32 numa_node)
60{
61 clib_pmalloc_main_t *pm = vm->physmem_main.pmalloc_main;
62 return clib_pmalloc_alloc_aligned_on_numa (pm, n_bytes, alignment,
63 numa_node);
64}
65
Damjan Marion49d66f12017-07-20 18:10:35 +020066/* By default allocate I/O memory with cache line alignment. */
67always_inline void *
Damjan Marion68b4da62018-09-30 18:26:20 +020068vlib_physmem_alloc (vlib_main_t * vm, uword n_bytes)
Damjan Marion49d66f12017-07-20 18:10:35 +020069{
Damjan Marion68b4da62018-09-30 18:26:20 +020070 return vlib_physmem_alloc_aligned (vm, n_bytes, CLIB_CACHE_LINE_BYTES);
71}
72
73always_inline void *
74vlib_physmem_alloc_from_map (vlib_main_t * vm, u32 physmem_map_index,
75 uword n_bytes, uword alignment)
76{
77 clib_pmalloc_main_t *pm = vm->physmem_main.pmalloc_main;
78 vlib_physmem_map_t *map = vlib_physmem_get_map (vm, physmem_map_index);
79 return clib_pmalloc_alloc_from_arena (pm, map->base, n_bytes,
80 CLIB_CACHE_LINE_BYTES);
Damjan Marion49d66f12017-07-20 18:10:35 +020081}
82
83always_inline void
Damjan Marion68b4da62018-09-30 18:26:20 +020084vlib_physmem_free (vlib_main_t * vm, void *p)
Damjan Marion49d66f12017-07-20 18:10:35 +020085{
Damjan Marion68b4da62018-09-30 18:26:20 +020086 if (p)
87 clib_pmalloc_free (vm->physmem_main.pmalloc_main, p);
Damjan Marion49d66f12017-07-20 18:10:35 +020088}
89
90always_inline u64
Damjan Marion68b4da62018-09-30 18:26:20 +020091vlib_physmem_get_page_index (vlib_main_t * vm, void *mem)
Damjan Marion49d66f12017-07-20 18:10:35 +020092{
Damjan Marion68b4da62018-09-30 18:26:20 +020093 clib_pmalloc_main_t *pm = vm->physmem_main.pmalloc_main;
94 return clib_pmalloc_get_page_index (pm, mem);
Damjan Marion49d66f12017-07-20 18:10:35 +020095}
96
Damjan Marion68b4da62018-09-30 18:26:20 +020097always_inline u64
98vlib_physmem_get_pa (vlib_main_t * vm, void *mem)
99{
100 clib_pmalloc_main_t *pm = vm->physmem_main.pmalloc_main;
101 return clib_pmalloc_get_pa (pm, mem);
102}
Damjan Marion49d66f12017-07-20 18:10:35 +0200103
104always_inline clib_error_t *
Damjan Marion68b4da62018-09-30 18:26:20 +0200105vlib_physmem_last_error (struct vlib_main_t * vm)
Damjan Marion49d66f12017-07-20 18:10:35 +0200106{
Damjan Marion68b4da62018-09-30 18:26:20 +0200107 return clib_error_return (0, "unknown error");
Damjan Marion49d66f12017-07-20 18:10:35 +0200108}
109
110#endif /* included_vlib_physmem_funcs_h */
111
112/*
113 * fd.io coding-style-patch-verification: ON
114 *
115 * Local Variables:
116 * eval: (c-set-style "gnu")
117 * End:
118 */