forked from cornelisnetworks/opa-psm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
psm_gdrcpy.c
227 lines (188 loc) · 6.45 KB
/
psm_gdrcpy.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/*
This file is provided under a dual BSD/GPLv2 license. When using or
redistributing this file, you may do so under either license.
GPL LICENSE SUMMARY
Copyright(c) 2018 Intel Corporation.
This program is free software; you can redistribute it and/or modify
it under the terms of version 2 of the GNU General Public License as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
Contact Information:
Intel Corporation, www.intel.com
BSD LICENSE
Copyright(c) 2018 Intel Corporation.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of Intel Corporation nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef PSM_CUDA
#include "psm_user.h"
#include "psm2_hal.h"
#include "psm_gdrcpy.h"
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include "ptl_ips/ips_tid.h"
#include "ptl_ips/ips_expected_proto.h"
static int gdr_fd;
int is_gdr_copy_enabled;
int get_gdr_fd(){
return gdr_fd;
}
#define GPU_PAGE_OFFSET_MASK (PSMI_GPU_PAGESIZE -1)
#define GPU_PAGE_MASK ~GPU_PAGE_OFFSET_MASK
uint64_t
gdr_cache_evict() {
int ret;
struct hfi1_gdr_cache_evict_params params;
params.evict_params_in.version = HFI1_GDR_VERSION;
params.evict_params_in.pages_to_evict = 4;
ret = ioctl(gdr_fd, HFI1_IOCTL_GDR_GPU_CACHE_EVICT, ¶ms);
if (ret) {
/* Fatal error */
psmi_handle_error(PSMI_EP_NORETURN, PSM2_INTERNAL_ERR,
"PIN/MMAP ioctl failed ret %d errno %d\n",
ret, errno);
return ret;
}
return params.evict_params_out.pages_evicted;
}
uint64_t
ips_sdma_gpu_cache_evict(int fd) {
int ret;
struct hfi1_sdma_gpu_cache_evict_params params;
params.evict_params_in.version = HFI1_GDR_VERSION;
params.evict_params_in.pages_to_evict = 2;
ret = ioctl(fd, HFI1_IOCTL_SDMA_CACHE_EVICT, ¶ms);
if (ret) {
/* Fatal error */
psmi_handle_error(PSMI_EP_NORETURN, PSM2_INTERNAL_ERR,
"SDMA Cache Evict failed ret %d errno %d\n",
ret, errno);
return ret;
}
return params.evict_params_out.pages_evicted;
}
/* handle_out_of_bar_space is called when the driver tries
* to self evict in the GDR cache and finds no entries.
* This could be due to the fact that all the pages pinned
* in the BAR1 region are cached in the SDMA and TID cache.
* We try to evict from both the caches for 30 seconds after
* which we bail out. If successful we retry to PIN/MMAP once
* again
*/
uint64_t
handle_out_of_bar_space(struct ips_proto *proto)
{
time_t lastEvictTime = 0;
uint64_t lengthEvicted;
time_t now;
retry:
now = time(NULL);
if (!lastEvictTime)
lastEvictTime = now;
if (proto->protoexp && proto->protoexp->tidc.tid_cachemap.payload.nidle) {
lengthEvicted =
ips_tidcache_evict(&proto->protoexp->tidc, -1);
if (lengthEvicted) {
lastEvictTime = 0;
return lengthEvicted; /* signals a retry of the writev command. */
}
}
lengthEvicted = ips_sdma_gpu_cache_evict(psmi_hal_get_fd(proto->ep->context.psm_hw_ctxt));
if (lengthEvicted) {
lastEvictTime = 0;
return lengthEvicted;
}
static const double thirtySeconds = 30.0;
if (difftime(now, lastEvictTime) >
thirtySeconds) {
return 0;
} else {
goto retry;
}
}
void *
gdr_convert_gpu_to_host_addr(int gdr_fd, unsigned long buf,
size_t size, int flags,
struct ips_proto* proto)
{
struct hfi1_gdr_query_params query_params;
void *host_addr_buf;
int ret;
query_params.query_params_in.version = HFI1_GDR_VERSION;
uintptr_t pageaddr = buf & GPU_PAGE_MASK;
/* As size is guarenteed to be in the range of 0-8kB
* there is a guarentee that buf+size-1 does not overflow
* 64 bits.
*/
uint32_t pagelen = (uint32_t) (PSMI_GPU_PAGESIZE +
((buf + size - 1) & GPU_PAGE_MASK) -
pageaddr);
query_params.query_params_in.gpu_buf_addr = pageaddr;
query_params.query_params_in.gpu_buf_size = pagelen;
retry:
ret = ioctl(gdr_fd, HFI1_IOCTL_GDR_GPU_PIN_MMAP, &query_params);
if (ret) {
if (errno == ENOMEM || errno == EINVAL) {
if (!handle_out_of_bar_space(proto)) {
/* Fatal error */
psmi_handle_error(PSMI_EP_NORETURN, PSM2_INTERNAL_ERR,
"Unable to PIN GPU pages(Out of BAR1 space)\n");
return NULL;
} else {
goto retry;
}
} else {
/* Fatal error */
psmi_handle_error(PSMI_EP_NORETURN, PSM2_INTERNAL_ERR,
"PIN/MMAP ioctl failed ret %d errno %d\n",
ret, errno);
return NULL;
}
}
host_addr_buf = (void *)query_params.query_params_out.host_buf_addr;
return host_addr_buf + (buf & GPU_PAGE_OFFSET_MASK);
}
void hfi_gdr_open(){
gdr_fd = open(GDR_DEVICE_PATH, O_RDWR);
if (-1 == gdr_fd ) {
/* Non-Fatal error. If device cannot be found we assume
* that the driver does not support GDR Copy and we fallback
* to sending all GPU messages using rndv protocol
*/
_HFI_INFO(" Warning: The HFI1 driver installed does not support GPUDirect RDMA"
" fast copy. Turning off GDR fast copy in PSM \n");
is_gdr_copy_enabled = 0;
return;
}
return;
}
void hfi_gdr_close()
{
close(GDR_FD);
}
#endif