gpudev: add child device representing a device context
[dpdk.git] / lib / gpudev / gpudev_driver.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2021 NVIDIA Corporation & Affiliates
3  */
4
5 /*
6  * This header file must be included only by drivers.
7  * It is considered internal, i.e. hidden for the application.
8  * The prefix rte_ is used to avoid namespace clash in drivers.
9  */
10
11 #ifndef RTE_GPUDEV_DRIVER_H
12 #define RTE_GPUDEV_DRIVER_H
13
14 #include <stdint.h>
15 #include <sys/queue.h>
16
17 #include <rte_dev.h>
18
19 #include "rte_gpudev.h"
20
21 /* Flags indicate current state of device. */
22 enum rte_gpu_state {
23         RTE_GPU_STATE_UNUSED,        /* not initialized */
24         RTE_GPU_STATE_INITIALIZED,   /* initialized */
25 };
26
27 struct rte_gpu;
28 typedef int (rte_gpu_close_t)(struct rte_gpu *dev);
29 typedef int (rte_gpu_info_get_t)(struct rte_gpu *dev, struct rte_gpu_info *info);
30
31 struct rte_gpu_ops {
32         /* Get device info. If NULL, info is just copied. */
33         rte_gpu_info_get_t *dev_info_get;
34         /* Close device or child context. */
35         rte_gpu_close_t *dev_close;
36 };
37
38 struct rte_gpu {
39         /* Backing device. */
40         struct rte_device *device;
41         /* Unique identifier name. */
42         char name[RTE_DEV_NAME_MAX_LEN]; /* Updated by this library. */
43         /* Device info structure. */
44         struct rte_gpu_info info;
45         /* Driver functions. */
46         struct rte_gpu_ops ops;
47         /* Event callback list. */
48         TAILQ_HEAD(rte_gpu_callback_list, rte_gpu_callback) callbacks;
49         /* Current state (used or not) in the running process. */
50         enum rte_gpu_state state; /* Updated by this library. */
51         /* Driver-specific private data for the running process. */
52         void *process_private;
53 } __rte_cache_aligned;
54
55 __rte_internal
56 struct rte_gpu *rte_gpu_get_by_name(const char *name);
57
58 /* First step of initialization */
59 __rte_internal
60 struct rte_gpu *rte_gpu_allocate(const char *name);
61
62 /* Last step of initialization. */
63 __rte_internal
64 void rte_gpu_complete_new(struct rte_gpu *dev);
65
66 /* Last step of removal. */
67 __rte_internal
68 int rte_gpu_release(struct rte_gpu *dev);
69
70 /* Call registered callbacks. No multi-process event. */
71 __rte_internal
72 void rte_gpu_notify(struct rte_gpu *dev, enum rte_gpu_event);
73
74 #endif /* RTE_GPUDEV_DRIVER_H */