mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
nvgpu userspace and test builds are prepared for both host/x86 and target/aarch64. nvgpu common cflags file was included in the Makefile of target builds. Include it in the host build Makefile as well. This makes sure we run the same config of qnx and nvgpu userspace and test builds for MISRA, Coverage. nvgpu shared config file defines the make variables and cflags app- licable to nvgpu common shared by qnx, nvgpu userspace, test builds. Note that cflags are added to variable NVGPU_COMMON_CFLAGS that need to be used by the parent Makefile to update corresponding cflags variable. JIRA NVGPU-3062 Change-Id: Ia7a879698220f3b73aae3f02416cab28432531e0 Signed-off-by: Sagar Kamble <skamble@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2119319 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
54 lines
2.3 KiB
Makefile
54 lines
2.3 KiB
Makefile
#
|
|
# Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
# to deal in the Software without restriction, including without limitation
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
# DEALINGS IN THE SOFTWARE.
|
|
#
|
|
|
|
# This file defines the make variables and cflags applicable to nvgpu common
|
|
# shared by qnx, nvgpu userspace, test builds. Note that cflags are added to
|
|
# variable NVGPU_COMMON_CFLAGS that needs to be used by the parent Makefile
|
|
# to update corresponding cflags variable.
|
|
|
|
# Support iGPU Virt for safety build until rmserver dependency is resolved
|
|
IGPU_VIRT_SUPPORT := 1
|
|
NVGPU_COMMON_CFLAGS := -DIGPU_VIRT_SUPPORT
|
|
|
|
# Enable debugger APIs for safety build until devctl whitelisting is done
|
|
NVGPU_DEBUGGER := 1
|
|
NVGPU_COMMON_CFLAGS += -DNVGPU_DEBUGGER
|
|
|
|
# Enable USERD for safety build until we switch to user mode submits only
|
|
NVGPU_COMMON_CFLAGS += -DNVGPU_USERD
|
|
|
|
# Enable Channel WDT for safety build until we switch to user mode submits only
|
|
NV_COMPONENT_CFLAGS += -DNVGPU_CHANNEL_WDT
|
|
|
|
# Enable iGPU LS PMU for safety build until devctl whitelisting is done
|
|
NVGPU_LS_PMU := 1
|
|
NVGPU_COMMON_CFLAGS += -DNVGPU_LS_PMU
|
|
|
|
NVGPU_COMMON_CFLAGS += -DNVGPU_ENGINE
|
|
|
|
# Enable dgpu support for safety build for now. To be removed.
|
|
NVGPU_DGPU_SUPPORT := 1
|
|
NVGPU_COMMON_CFLAGS += -DNVGPU_DGPU_SUPPORT
|
|
|
|
ifeq ($(NV_BUILD_CONFIGURATION_IS_SAFETY),0)
|
|
endif
|