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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
|
/*
* Copyright 2015 International Business Machines
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Generic support to enqueue DDCB commands.
*
* Might be a cool thing if we could use libcard.h directly as
* absorber. Need to do more experiments to figure out if that is
* possible to limit changes we need to perform to get in a CAPI
* capable version.
*/
#include <stdint.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <unistd.h>
#include <errno.h>
#include <malloc.h>
#include <time.h>
#include <limits.h>
#include <fcntl.h>
#include <signal.h>
#include <pthread.h>
#include <semaphore.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <asm/byteorder.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <dirent.h>
#ifndef CONFIG_DONT_USE_INOTIFY
#include <sys/inotify.h>
#endif
#include <libddcb.h>
#ifndef ARRAY_SIZE
# define ARRAY_SIZE(a) (sizeof((a)) / sizeof((a)[0]))
#endif
#ifndef ABS
# define ABS(a) (((a) < 0) ? -(a) : (a))
#endif
/* This is the internal structure for each Stream */
struct card_dev_t {
int card_no; /* card id: FIXEM do we need card_dev? */
int card_type; /* type of card: GenWQE, CAPI, CAPIsim, ... */
int mode;
void *card_data; /* private data from underlying layer */
int card_rc; /* return code from lower level */
int card_errno; /* errno from lower level */
struct ddcb_accel_funcs *accel; /* supported set of functions */
};
static unsigned int ddcb_trace = 0x0;
#define ddcb_gather_statistics(accel) \
(ddcb_trace & DDCB_FLAG_STATISTICS)
static struct ddcb_accel_funcs *accel_list = NULL;
int libddcb_verbose = 0;
FILE *libddcb_fd_out;
static inline uint64_t get_usec(void)
{
struct timeval t;
gettimeofday(&t, NULL);
return t.tv_sec * 1000000 + t.tv_usec;
}
static struct ddcb_accel_funcs *find_accelerator(int card_type)
{
struct ddcb_accel_funcs *accel;
for (accel = accel_list; accel != NULL; accel = accel->priv_data) {
if (accel->card_type == card_type)
return accel;
}
return NULL;
}
static const char * const retc_errlist[] = {
[ABS(DDCB_RETC_IDLE)] = "unexecuted/untouched DDCB",
[ABS(DDCB_RETC_PENDING)] = "pending execution",
[ABS(DDCB_RETC_COMPLETE)] = "command complete. no error",
[ABS(DDCB_RETC_FAULT)] =
"application error, recoverable, please see ATTN and PROGR",
[ABS(DDCB_RETC_ERROR)] =
"application error, non-recoverable, please see ATTN and PROGR",
[ABS(DDCB_RETC_FORCED_ERROR)] = "overwritten by driver",
[ABS(DDCB_RETC_UNEXEC)] = "unexecuted/removed from queue",
[ABS(DDCB_RETC_TERM)] = "terminated",
};
static const int retc_nerr __attribute__((unused)) = ARRAY_SIZE(retc_errlist);
const char *ddcb_retc_strerror(int errnum)
{
if (ABS(errnum) >= retc_nerr)
return "unknown error code";
return retc_errlist[ABS(errnum)];
}
static const char * const ddcb_errlist[] = {
[ABS(DDCB_ERRNO)] = "libc call went wrong",
[ABS(DDCB_ERR_CARD)] = "problems accessing accelerator",
[ABS(DDCB_ERR_OPEN)] = "cannot open accelerator",
[ABS(DDCB_ERR_VERS_MISMATCH)] = "library version mismatch",
[ABS(DDCB_ERR_INVAL)] = "illegal parameters",
[ABS(DDCB_ERR_EXEC_DDCB)] = "ddcb execution failed",
[ABS(DDCB_ERR_APPID)] ="application id wrong",
[ABS(DDCB_ERR_NOTIMPL)] = "function not implemented",
[ABS(DDCB_ERR_ENOMEM)] = "out of memory",
[ABS(DDCB_ERR_ENOENT)] = "entry not found",
[ABS(DDCB_ERR_IRQTIMEOUT)] = "timeout waiting on irq event",
[ABS(DDCB_ERR_EVENTFAIL)] = "failed waiting on expected event",
};
static const int ddcb_nerr __attribute__((unused)) = ARRAY_SIZE(ddcb_errlist);
const char *ddcb_strerror(int errnum)
{
if (ABS(errnum) >= ddcb_nerr)
return "unknown error code";
return ddcb_errlist[ABS(errnum)];
}
void ddcb_hexdump(FILE *fp, const void *buff, unsigned int size)
{
unsigned int i, j = 0;
const uint8_t *b = (uint8_t *)buff;
char ascii[17];
if (fp == NULL)
return;
for (i = 0; i < size; i++) {
if ((i & 0x0f) == 0x00) {
fprintf(fp, " %08x:", i);
memset(ascii, '\0', sizeof(ascii));
j = 0;
}
fprintf(fp, " %02x", b[i]);
ascii[j++] = isalnum(b[i]) ? b[i] : '.';
if ((i & 0x0f) == 0x0f)
fprintf(fp, " | %s\n", ascii);
}
/* print trailing up to a 16 byte boundary. */
for (; i < ((size + 0xf) & ~0xf); i++) {
fprintf(fp, " ");
ascii[j++] = ' ';
if ((i & 0x0f) == 0x0f)
fprintf(fp, " | %s\n", ascii);
}
fprintf(fp, "\n");
}
void ddcb_debug(int verbosity)
{
libddcb_verbose = verbosity;
}
void ddcb_set_logfile(FILE *fd_out)
{
libddcb_fd_out = fd_out;
}
accel_t accel_open(int card_no, unsigned int card_type,
unsigned int mode, int *err_code,
uint64_t appl_id, uint64_t appl_id_mask)
{
int rc = DDCB_OK;
struct card_dev_t *card;
struct ddcb_accel_funcs *accel;
uint64_t s = 0, e = 0;
if (ddcb_gather_statistics())
s = get_usec();
card = calloc(1, sizeof(*card));
if (card == NULL) {
rc = DDCB_ERR_ENOMEM;
goto err_out;
}
accel = find_accelerator(card_type);
if (accel == NULL) {
rc = DDCB_ERR_ENOENT;
goto err_free;
}
card->card_no = card_no;
card->card_type = card_type;
card->mode = mode;
card->accel = accel;
if (card->accel->card_open == NULL) {
rc = DDCB_ERR_NOTIMPL;
goto err_free;
}
card->card_data = card->accel->card_open(card_no, mode, &card->card_rc,
appl_id, appl_id_mask);
if (card->card_data == NULL) {
rc = DDCB_ERR_CARD;
goto err_free;
}
if (err_code)
*err_code = DDCB_OK;
if (ddcb_gather_statistics()) {
e = get_usec();
pthread_mutex_lock(&accel->slock);
accel->num_open++;
accel->time_open += (e - s);
pthread_mutex_unlock(&accel->slock);
}
return card;
err_free:
free(card);
err_out:
if (err_code)
*err_code = rc;
return NULL;
}
int accel_close(accel_t card)
{
int rc;
struct ddcb_accel_funcs *accel;
uint64_t s = 0, e = 0;
if (card == NULL)
return DDCB_ERR_INVAL;
accel = card->accel;
if (ddcb_gather_statistics())
s = get_usec();
if (accel == NULL)
return DDCB_ERR_INVAL;
if (accel->card_close == NULL)
return DDCB_ERR_NOTIMPL;
rc = accel->card_close(card->card_data);
free(card);
if (ddcb_gather_statistics()) {
e = get_usec();
pthread_mutex_lock(&accel->slock);
accel->num_close++;
accel->time_close += (e - s);
pthread_mutex_unlock(&accel->slock);
}
return rc;
}
const char *accel_strerror(accel_t card, int card_rc)
{
struct ddcb_accel_funcs *accel;
if (card == NULL)
return "invalid accelerator";
accel = card->accel;
if (accel == NULL)
return "invalid accelerator";
if (accel->card_strerror == NULL)
return NULL;
return accel->card_strerror(card->card_data, card_rc);
}
int accel_ddcb_execute(accel_t card, struct ddcb_cmd *req,
int *card_rc, int *card_errno)
{
struct ddcb_accel_funcs *accel = card->accel;
uint64_t s = 0, e = 0;
if (ddcb_gather_statistics())
s = get_usec();
if (accel == NULL)
return DDCB_ERR_INVAL;
if (accel->ddcb_execute == NULL)
return DDCB_ERR_NOTIMPL;
card->card_rc = accel->ddcb_execute(card->card_data, req);
card->card_errno = errno;
if (card_rc != NULL)
*card_rc = card->card_rc;
if (card_errno != NULL)
*card_errno = card->card_errno;
if (card->card_rc < 0)
return DDCB_ERR_CARD;
if (ddcb_gather_statistics()) {
e = get_usec();
pthread_mutex_lock(&accel->slock);
accel->num_execute++;
accel->time_execute += (e - s);
pthread_mutex_unlock(&accel->slock);
}
return DDCB_OK;
}
uint64_t accel_read_reg64(accel_t card, uint32_t offs, int *card_rc)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL) {
if (card_rc != NULL)
*card_rc = DDCB_ERR_INVAL;
return 0;
}
if (accel->card_read_reg64 == NULL) {
if (card_rc != NULL)
*card_rc = DDCB_ERR_NOTIMPL;
return 0;
}
return accel->card_read_reg64(card->card_data, offs, card_rc);
}
uint32_t accel_read_reg32(accel_t card, uint32_t offs, int *card_rc)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL) {
if (card_rc != NULL)
*card_rc = DDCB_ERR_INVAL;
return 0;
}
if (accel->card_read_reg32 == NULL) {
if (card_rc != NULL)
*card_rc = DDCB_ERR_NOTIMPL;
return 0;
}
return accel->card_read_reg32(card->card_data, offs, card_rc);
}
int accel_write_reg64(accel_t card, uint32_t offs, uint64_t val)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL)
return DDCB_ERR_INVAL;
if (accel->card_write_reg64 == NULL)
return DDCB_ERR_NOTIMPL;
return accel->card_write_reg64(card->card_data, offs, val);
}
int accel_write_reg32(accel_t card, uint32_t offs, uint32_t val)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL)
return DDCB_ERR_INVAL;
if (accel->card_write_reg32 == NULL)
return DDCB_ERR_NOTIMPL;
return accel->card_write_reg32(card->card_data, offs, val);
}
uint64_t accel_get_app_id(accel_t card)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL)
return 0;
if (accel->card_get_app_id == NULL)
return 0;
return accel->card_get_app_id(card->card_data);
}
uint64_t accel_get_queue_work_time(accel_t card)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL)
return 0;
if (accel->card_get_queue_work_time == NULL)
return 0;
return accel->card_get_queue_work_time(card->card_data);
}
uint64_t accel_get_frequency(accel_t card)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL)
return 0;
if (accel->card_get_frequency == NULL)
return 0;
return accel->card_get_frequency(card->card_data);
}
void accel_dump_hardware_version(accel_t card, FILE *fp)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL)
return;
if (accel->card_dump_hardware_version == NULL)
return;
return accel->card_dump_hardware_version(card->card_data, fp);
}
int accel_pin_memory(accel_t card, const void *addr, size_t size,
int dir)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL)
return DDCB_ERR_INVAL;
if (accel->card_write_reg32 == NULL)
return DDCB_ERR_NOTIMPL;
return accel->card_pin_memory(card->card_data, addr, size, dir);
}
int accel_unpin_memory(accel_t card __attribute__((unused)),
const void *addr __attribute__((unused)),
size_t size __attribute__((unused)))
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL)
return DDCB_ERR_INVAL;
if (accel->card_unpin_memory == NULL)
return DDCB_ERR_NOTIMPL;
return accel->card_unpin_memory(card->card_data, addr, size);
}
void *accel_malloc(accel_t card, size_t size)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL)
return NULL;
if (accel->card_malloc == NULL)
return NULL;
return accel->card_malloc(card->card_data, size);
}
int accel_free(accel_t card, void *ptr, size_t size)
{
struct ddcb_accel_funcs *accel = card->accel;
if (accel == NULL)
return DDCB_ERR_INVAL;
if (accel->card_free == NULL)
return DDCB_ERR_NOTIMPL;
return accel->card_free(card->card_data, ptr, size);
}
int accel_dump_statistics(struct ddcb_accel_funcs *accel, FILE *fp)
{
if (accel == NULL)
return DDCB_ERR_INVAL;
if (accel->dump_statistics == NULL)
return DDCB_ERR_NOTIMPL;
return accel->dump_statistics(fp);
}
int ddcb_register_accelerator(struct ddcb_accel_funcs *accel)
{
int rc;
if (accel == NULL)
return DDCB_ERR_INVAL;
if (ddcb_gather_statistics()) {
rc = pthread_mutex_init(&accel->slock, NULL);
if (rc != 0)
return DDCB_ERRNO;
}
accel->priv_data = accel_list;
accel_list = accel;
return DDCB_OK;
}
static void _init(void) __attribute__((constructor));
static void _init(void)
{
const char *ddcb_trace_env = getenv("DDCB_TRACE");
libddcb_fd_out = stderr; /* Default fd out for messages */
if (ddcb_trace_env != NULL)
ddcb_trace = strtol(ddcb_trace_env, (char **)NULL, 0);
}
static void _done(void) __attribute__((destructor));
static void _done(void)
{
struct ddcb_accel_funcs *accel;
for (accel = accel_list; accel != NULL; accel = accel->priv_data) {
if (accel->num_open == 0)
continue;
if (ddcb_gather_statistics()) {
fprintf(libddcb_fd_out,
"libddcb statistics for %s\n"
" open ; %5lld ; %8lld usec\n"
" execute ; %5lld ; %8lld usec\n"
" close ; %5lld ; %8lld usec\n",
accel->card_name,
(long long)accel->num_open,
(long long)accel->time_open,
(long long)accel->num_execute,
(long long)accel->time_execute,
(long long)accel->num_close,
(long long)accel->time_close);
pthread_mutex_destroy(&accel->slock);
}
accel_dump_statistics(accel, libddcb_fd_out);
}
return;
}
|