mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 09:57:08 +03:00
Add unit tests to cover the invalid falcon port access, falcon sw init switch cases, nvgpu_falcon_set_irq, nvgpu_timeout_init failure branch coverage. Compile out the functions nvgpu_falcon_get_mem_size & falcon_bootstrap as they are needed by LS PMU and VBIOS code. For iGPU safety the falcon functions needing these will call the HAL APIs directly. This way we avoid the unreachable code as well. Updated the prototype of falcon bootstrap HAL API as that doesn't return any error. With these changes, we get 100% line coverage for common.falcon unit. JIRA NVGPU-2214 Change-Id: I1fe653d97c1a6a1521d7da38f171928dda58c5b5 Signed-off-by: Sagar Kamble <skamble@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2258311 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
79 lines
2.8 KiB
C
79 lines
2.8 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 NVGPU_GOPS_FALCON_H
|
|
#define NVGPU_GOPS_FALCON_H
|
|
|
|
#include <nvgpu/types.h>
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* Falcon HAL interface.
|
|
*/
|
|
struct gk20a;
|
|
|
|
struct gops_falcon {
|
|
/** @cond DOXYGEN_SHOULD_SKIP_THIS */
|
|
|
|
int (*falcon_sw_init)(struct gk20a *g, u32 flcn_id);
|
|
void (*falcon_sw_free)(struct gk20a *g, u32 flcn_id);
|
|
void (*reset)(struct nvgpu_falcon *flcn);
|
|
bool (*is_falcon_cpu_halted)(struct nvgpu_falcon *flcn);
|
|
bool (*is_falcon_idle)(struct nvgpu_falcon *flcn);
|
|
bool (*is_falcon_scrubbing_done)(struct nvgpu_falcon *flcn);
|
|
u32 (*get_mem_size)(struct nvgpu_falcon *flcn,
|
|
enum falcon_mem_type mem_type);
|
|
u8 (*get_ports_count)(struct nvgpu_falcon *flcn,
|
|
enum falcon_mem_type mem_type);
|
|
|
|
int (*copy_to_dmem)(struct nvgpu_falcon *flcn,
|
|
u32 dst, u8 *src, u32 size, u8 port);
|
|
int (*copy_to_imem)(struct nvgpu_falcon *flcn,
|
|
u32 dst, u8 *src, u32 size, u8 port,
|
|
bool sec, u32 tag);
|
|
void (*bootstrap)(struct nvgpu_falcon *flcn,
|
|
u32 boot_vector);
|
|
u32 (*mailbox_read)(struct nvgpu_falcon *flcn,
|
|
u32 mailbox_index);
|
|
void (*mailbox_write)(struct nvgpu_falcon *flcn,
|
|
u32 mailbox_index, u32 data);
|
|
void (*set_irq)(struct nvgpu_falcon *flcn, bool enable,
|
|
u32 intr_mask, u32 intr_dest);
|
|
#ifdef CONFIG_NVGPU_FALCON_DEBUG
|
|
void (*dump_falcon_stats)(struct nvgpu_falcon *flcn);
|
|
#endif
|
|
#ifdef CONFIG_NVGPU_FALCON_NON_FUSA
|
|
bool (*clear_halt_interrupt_status)(struct nvgpu_falcon *flcn);
|
|
int (*copy_from_dmem)(struct nvgpu_falcon *flcn,
|
|
u32 src, u8 *dst, u32 size, u8 port);
|
|
int (*copy_from_imem)(struct nvgpu_falcon *flcn,
|
|
u32 src, u8 *dst, u32 size, u8 port);
|
|
void (*get_falcon_ctls)(struct nvgpu_falcon *flcn,
|
|
u32 *sctl, u32 *cpuctl);
|
|
#endif
|
|
|
|
/** @endcond DOXYGEN_SHOULD_SKIP_THIS */
|
|
|
|
};
|
|
|
|
#endif
|