summaryrefslogtreecommitdiffstats
path: root/userspace/include/unit/core.h
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2018-06-27 17:45:07 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-08-10 02:11:06 -0400
commit691bf904451bfe2e4c44ea05319149996abbbbf1 (patch)
tree0fe66bd37989f9d619234b7f4d2be1df6ed61c85 /userspace/include/unit/core.h
parent6e746a97cc7ee2bc5a3adee04dd9c65b3921eee5 (diff)
gpu: nvgpu: unit: Add unit testing FW
Full documentation for this is in the unit testing confluence page. JIRA NVGPU-525 Bug 2261555 Change-Id: I463e6267eb0eb12b7313f8b275266e8faabe5ccf Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1683915 GVS: Gerrit_Virtual_Submit Reviewed-by: Konsta Holtta <kholtta@nvidia.com> Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'userspace/include/unit/core.h')
-rw-r--r--userspace/include/unit/core.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/userspace/include/unit/core.h b/userspace/include/unit/core.h
new file mode 100644
index 00000000..d9d119db
--- /dev/null
+++ b/userspace/include/unit/core.h
@@ -0,0 +1,63 @@
1/*
2 * Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 */
22
23#ifndef __UNIT_CORE_H__
24#define __UNIT_CORE_H__
25
26struct unit_fw_args;
27struct unit_modules;
28struct unit_results;
29
30struct gk20a;
31
32/*
33 * The core unit testing framework data structure. Keeps track of global state
34 * for the unit test app.
35 */
36struct unit_fw {
37 struct unit_fw_args *args;
38
39 struct unit_module **modules;
40
41 struct unit_results *results;
42
43 /*
44 * nvgpu-drv interface. Currently the only two directly referenced
45 * functions are:
46 *
47 * nvgpu_posix_probe()
48 * nvgpu_posix_cleanup()
49 *
50 * There will get populated so that we can call them before/after each
51 * module.
52 */
53 void *nvgpu_so;
54 struct {
55 struct gk20a *(*nvgpu_posix_probe)(void);
56 void (*nvgpu_posix_cleanup)(struct gk20a *g);
57 } nvgpu;
58};
59
60int core_load_nvgpu(struct unit_fw *fw);
61int core_exec(struct unit_fw *fw);
62
63#endif