summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Benech <nbenech@nvidia.com>2018-09-28 15:29:26 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-09-29 02:55:13 -0400
commit44574a01bb665c3ee59db3577fdd438a9aefc037 (patch)
tree51232cc970105d72075dd3feacbd0b0a2c106aa9
parent7a033af6602258b2f2c738a7836d17562b17d8b8 (diff)
gpu: nvgpu: unit: Add mockio unit test to tmake
MockIO unit test went in before the tmake changes. Now adding tmake files so that it builds for target. Change-Id: I9f08076a46f8f6487342553999d43279fb74cabb Signed-off-by: Nicolas Benech <nbenech@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1851219 Reviewed-by: Philip Elcan <pelcan@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Alex Waterman <alexw@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
-rw-r--r--Makefile.umbrella.tmk1
-rw-r--r--drivers/gpu/nvgpu/libnvgpu-drv.export16
-rw-r--r--userspace/units/posix-mockio/Makefile.interface.tmk25
-rw-r--r--userspace/units/posix-mockio/Makefile.tmk40
-rw-r--r--userspace/units/posix-mockio/posix-mockio.export3
5 files changed, 85 insertions, 0 deletions
diff --git a/Makefile.umbrella.tmk b/Makefile.umbrella.tmk
index 744c6c05..049ea98c 100644
--- a/Makefile.umbrella.tmk
+++ b/Makefile.umbrella.tmk
@@ -24,6 +24,7 @@ NV_REPOSITORY_COMPONENTS := drivers/gpu/nvgpu
24NV_REPOSITORY_COMPONENTS += userspace 24NV_REPOSITORY_COMPONENTS += userspace
25NV_REPOSITORY_COMPONENTS += userspace/units/posix-bitops 25NV_REPOSITORY_COMPONENTS += userspace/units/posix-bitops
26NV_REPOSITORY_COMPONENTS += userspace/units/posix-env 26NV_REPOSITORY_COMPONENTS += userspace/units/posix-env
27NV_REPOSITORY_COMPONENTS += userspace/units/posix-mockio
27endif 28endif
28 29
29# Local Variables: 30# Local Variables:
diff --git a/drivers/gpu/nvgpu/libnvgpu-drv.export b/drivers/gpu/nvgpu/libnvgpu-drv.export
index b4244389..dc5d088f 100644
--- a/drivers/gpu/nvgpu/libnvgpu-drv.export
+++ b/drivers/gpu/nvgpu/libnvgpu-drv.export
@@ -15,3 +15,19 @@ test_and_clear_bit
15test_and_set_bit 15test_and_set_bit
16bitmap_clear 16bitmap_clear
17bitmap_set 17bitmap_set
18nvgpu_readl
19nvgpu_writel
20nvgpu_writel_check
21nvgpu_bar1_writel
22nvgpu_usermode_writel
23__nvgpu_readl
24nvgpu_bar1_readl
25nvgpu_posix_register_io
26nvgpu_posix_io_writel_reg_space
27nvgpu_posix_io_record_access
28nvgpu_posix_io_readl_reg_space
29nvgpu_posix_io_init_reg_space
30nvgpu_posix_io_start_recorder
31nvgpu_posix_io_add_reg_space
32nvgpu_posix_io_get_error_code
33nvgpu_posix_io_check_sequence
diff --git a/userspace/units/posix-mockio/Makefile.interface.tmk b/userspace/units/posix-mockio/Makefile.interface.tmk
new file mode 100644
index 00000000..87b47398
--- /dev/null
+++ b/userspace/units/posix-mockio/Makefile.interface.tmk
@@ -0,0 +1,25 @@
1################################### tell Emacs this is a -*- makefile-gmake -*-
2#
3# Copyright (c) 2018, NVIDIA CORPORATION. All Rights Reserved.
4#
5# NVIDIA CORPORATION and its licensors retain all intellectual property
6# and proprietary rights in and to this software, related documentation
7# and any modifications thereto. Any use, reproduction, disclosure or
8# distribution of this software and related documentation without an express
9# license agreement from NVIDIA CORPORATION is strictly prohibited.
10#
11# tmake for SW Mobile component makefile
12#
13###############################################################################
14
15ifdef NV_INTERFACE_FLAG_SHARED_LIBRARY_SECTION
16NV_INTERFACE_NAME := posix-mockio
17NV_INTERFACE_EXPORTS := posix-mockio
18NV_INTERFACE_PUBLIC_INCLUDES := . include
19endif
20
21# Local Variables:
22# indent-tabs-mode: t
23# tab-width: 8
24# End:
25# vi: set tabstop=8 noexpandtab:
diff --git a/userspace/units/posix-mockio/Makefile.tmk b/userspace/units/posix-mockio/Makefile.tmk
new file mode 100644
index 00000000..fbc31351
--- /dev/null
+++ b/userspace/units/posix-mockio/Makefile.tmk
@@ -0,0 +1,40 @@
1################################### tell Emacs this is a -*- makefile-gmake -*-
2#
3# Copyright (c) 2018 NVIDIA CORPORATION. All Rights Reserved.
4#
5# NVIDIA CORPORATION and its licensors retain all intellectual property
6# and proprietary rights in and to this software, related documentation
7# and any modifications thereto. Any use, reproduction, disclosure or
8# distribution of this software and related documentation without an express
9# license agreement from NVIDIA CORPORATION is strictly prohibited.
10#
11# tmake for SW Mobile component makefile
12#
13###############################################################################
14
15ifdef NV_COMPONENT_FLAG_SHARED_LIBRARY_SECTION
16include $(NV_BUILD_START_COMPONENT)
17
18NV_COMPONENT_NAME := posix-mockio
19NV_COMPONENT_SOURCES := posix-mockio.c
20NV_COMPONENT_OWN_INTERFACE_DIR := .
21NV_COMPONENT_CFLAGS += -D__NVGPU_POSIX__
22
23NV_COMPONENT_NEEDED_INTERFACE_DIRS := \
24 $(NV_SOURCE)/kernel/nvgpu/drivers/gpu/nvgpu \
25 $(NV_SOURCE)/kernel/nvgpu/userspace
26
27NV_COMPONENT_SYSTEMIMAGE_DIR := $(NV_SYSTEMIMAGE_TEST_EXECUTABLE_DIR)/nvgpu_unit/units
28systemimage:: $(NV_COMPONENT_SYSTEMIMAGE_DIR)
29$(NV_COMPONENT_SYSTEMIMAGE_DIR) : $(NV_SYSTEMIMAGE_TEST_EXECUTABLE_DIR)
30 $(MKDIR_P) $@
31
32include $(NV_BUILD_SHARED_LIBRARY)
33
34endif
35
36# Local Variables:
37# indent-tabs-mode: t
38# tab-width: 8
39# End:
40# vi: set tabstop=8 noexpandtab:
diff --git a/userspace/units/posix-mockio/posix-mockio.export b/userspace/units/posix-mockio/posix-mockio.export
new file mode 100644
index 00000000..b039dd36
--- /dev/null
+++ b/userspace/units/posix-mockio/posix-mockio.export
@@ -0,0 +1,3 @@
1# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
2
3__unit_module__