mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 02:22:34 +03:00
Minion Ucode is enabling HS Ucode Encyrption. Minion Ucode builds will put out separate Debug-signed and Prod-signed Encrypted image files. The driver will load prod image or debug image depending on the setting of DEBUG fuse setting. Add support to read the SCP_CTL_STAT register to differentiate debug and prod boards and load correct binary accordingly. Update the binary name to support two minion ucodes binaries in the build. JIRA NVLINK-283 Bug 2701677 Change-Id: I5348e9705708eeab4ce639b0721f10882d8970a7 Signed-off-by: Tejal Kudav <tkudav@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2258097 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> Reviewed-by: svc-mobile-misra <svc-mobile-misra@nvidia.com> Reviewed-by: svc-mobile-cert <svc-mobile-cert@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Petlozu Pravareshwar <petlozup@nvidia.com> Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
35 lines
1.4 KiB
C
35 lines
1.4 KiB
C
/*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef MINION_TU104_H
|
|
#define MINION_TU104_H
|
|
|
|
#include <nvgpu/types.h>
|
|
|
|
enum nvgpu_nvlink_minion_dlcmd;
|
|
struct gk20a;
|
|
|
|
u32 tu104_nvlink_minion_get_dlcmd_ordinal(struct gk20a *g,
|
|
enum nvgpu_nvlink_minion_dlcmd dlcmd);
|
|
bool tu104_nvlink_minion_is_debug_mode(struct gk20a *g);
|
|
#endif /* MINION_TU104_H */
|