mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
Add the QNX yaml back to the arch. I had removed it to make enabling the compile time YAML check simpler. JIRA NVGPU-3075 Change-Id: Ia89ba32f3cbbc97f68313d652645c5aca9a6c137 Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2129648 Reviewed-by: Automatic_Commit_Validation_User Tested-by: Shashank Singh <shashsingh@nvidia.com> Reviewed-by: Shashank Singh <shashsingh@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
69 lines
1.6 KiB
YAML
69 lines
1.6 KiB
YAML
# Copyright (c) 2019, NVIDIA CORPORATION. All Rights Reserved.
|
|
#
|
|
# Top level NVGPU architecure description in YAML.
|
|
#
|
|
# The format of this document is structured by element and unit. Though only
|
|
# units may have source files associated with them. All units must exist in an
|
|
# element.
|
|
#
|
|
|
|
nvgpu:
|
|
safe: no
|
|
children:
|
|
# The common code element. This has gr, mm, etc.
|
|
common:
|
|
safe: yes
|
|
children:
|
|
!include nvgpu-common.yaml
|
|
|
|
# HAL units - Hardware Abstraction Layer.
|
|
hal:
|
|
children:
|
|
!include nvgpu-hal-new.yaml
|
|
|
|
# The QNX OS layer implementation units.
|
|
qnx:
|
|
safe: yes
|
|
children:
|
|
!include nvgpu-qnx.yaml
|
|
|
|
# And the Linux version of the OS implementation units.
|
|
linux:
|
|
safe: no
|
|
children:
|
|
!include nvgpu-linux.yaml
|
|
|
|
# POSIX units for implementing the OS layer for unit testing.
|
|
posix:
|
|
children:
|
|
!include nvgpu-posix.yaml
|
|
|
|
|
|
# Inteface units - these provide interfaces for NVGPU to the underlying
|
|
# OS or CPU.
|
|
interface:
|
|
safe: yes
|
|
owner: Alex W
|
|
children:
|
|
!include nvgpu-interface.yaml
|
|
|
|
# Virtualization code.
|
|
vgpu:
|
|
safe: yes
|
|
children:
|
|
!include nvgpu-vgpu.yaml
|
|
|
|
# Virtualization HAL code.
|
|
hal-vgpu:
|
|
safe: yes
|
|
children:
|
|
!include nvgpu-hal-vgpu.yaml
|
|
|
|
# A meta-element for the GPU HW. A good example of this is the HW headers.
|
|
# This is not code we write in nvgpu, but we import it from the GPU HW
|
|
# tree (with a little tranformation - the gen reg scrip).
|
|
gpu_hw:
|
|
safe: no
|
|
children:
|
|
!include nvgpu-gpu_hw.yaml
|