mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 18:42:29 +03:00
Add support gr_prepare for sw and hw. Add needed registers using nvgpu_posix_io_add_reg_space calls. Add unit tests covering following functions nvgpu_gr_prepare_sw nvgpu_gr_enable_hw Copy the falcon ucode binaries under userspace/firmware directory install-unit.sh modified to copy the firmware binaries under nvgpu-unnit/firmware directory Jira NVGPU-3582 Change-Id: If2131d2c48e828251208da86688b0594e62de82e Signed-off-by: vinodg <vinodg@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2184293 Reviewed-by: Deepak Nibade <dnibade@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
84 lines
2.7 KiB
Makefile
84 lines
2.7 KiB
Makefile
# -*- mode: 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.
|
|
|
|
include $(NVGPU_SRC)/Makefile.sources
|
|
|
|
OBJS := $(srcs:%.c=$(NVGPU_OUT)/%.o)
|
|
|
|
HEADERS := \
|
|
$(NVGPU_SRC)/include/nvgpu/*.h \
|
|
$(NVGPU_SRC)/include/nvgpu/hw/*/*.h
|
|
|
|
CORE_OBJS := \
|
|
$(CORE_OUT)/unit_main.o \
|
|
$(CORE_OUT)/nvgpu.o \
|
|
$(CORE_OUT)/args.o \
|
|
$(CORE_OUT)/io.o \
|
|
$(CORE_OUT)/module.o \
|
|
$(CORE_OUT)/results.o \
|
|
$(CORE_OUT)/exec.o
|
|
|
|
CORE_HEADERS := \
|
|
$(CORE_SRC)/../include/unit/*.h
|
|
|
|
# Each directory under the UNIT_SRC directory should correspond to one module.
|
|
UNITS := \
|
|
$(UNIT_SRC)/posix/env \
|
|
$(UNIT_SRC)/posix/bitops \
|
|
$(UNIT_SRC)/posix/mockio \
|
|
$(UNIT_SRC)/posix/fault-injection \
|
|
$(UNIT_SRC)/posix/bug \
|
|
$(UNIT_SRC)/pramin \
|
|
$(UNIT_SRC)/init \
|
|
$(UNIT_SRC)/interface/bsearch \
|
|
$(UNIT_SRC)/interface/lock \
|
|
$(UNIT_SRC)/interface/atomic \
|
|
$(UNIT_SRC)/interface/rbtree \
|
|
$(UNIT_SRC)/mm/nvgpu_sgt \
|
|
$(UNIT_SRC)/mm/allocators/buddy_allocator \
|
|
$(UNIT_SRC)/mm/allocators/nvgpu_allocator \
|
|
$(UNIT_SRC)/mm/allocators/bitmap_allocator \
|
|
$(UNIT_SRC)/mm/allocators/page_allocator \
|
|
$(UNIT_SRC)/mm/dma \
|
|
$(UNIT_SRC)/mm/gmmu/pd_cache \
|
|
$(UNIT_SRC)/mm/gmmu/page_table \
|
|
$(UNIT_SRC)/mm/mm \
|
|
$(UNIT_SRC)/mm/page_table_faults \
|
|
$(UNIT_SRC)/mm/nvgpu_mem \
|
|
$(UNIT_SRC)/mm/vm \
|
|
$(UNIT_SRC)/fifo \
|
|
$(UNIT_SRC)/fifo/channel \
|
|
$(UNIT_SRC)/fifo/runlist \
|
|
$(UNIT_SRC)/fifo/tsg \
|
|
$(UNIT_SRC)/list \
|
|
$(UNIT_SRC)/enabled \
|
|
$(UNIT_SRC)/falcon \
|
|
$(UNIT_SRC)/falcon/falcon_tests \
|
|
$(UNIT_SRC)/pmu \
|
|
$(UNIT_SRC)/gr \
|
|
$(UNIT_SRC)/gr/config \
|
|
$(UNIT_SRC)/gr/init
|
|
|
|
ifeq ($(CONFIG_NVGPU_HAL_NON_FUSA),1)
|
|
UNITS += $(UNIT_SRC)/fuse
|
|
endif
|