mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 09:57:08 +03:00
ACR/SEC2 methods to support ACR boot SEC2 falcon JIRA DNVGPU-34 Change-Id: I917be1d6c61a1c1ae61a918f50228ea00492cd50 Signed-off-by: Mahantesh Kumbar <mkumbar@nvidia.com> Reviewed-on: http://git-master/r/1161122 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
/*
|
|
* Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*/
|
|
|
|
#ifndef __SEC2_H_
|
|
#define __SEC2_H_
|
|
|
|
int sec2_clear_halt_interrupt_status(struct gk20a *g, unsigned int timeout);
|
|
int sec2_wait_for_halt(struct gk20a *g, unsigned int timeout);
|
|
void sec2_copy_to_dmem(struct pmu_gk20a *pmu,
|
|
u32 dst, u8 *src, u32 size, u8 port);
|
|
void sec2_dump_falcon_stats(struct pmu_gk20a *pmu);
|
|
int bl_bootstrap_sec2(struct pmu_gk20a *pmu,
|
|
void *desc, u32 bl_sz);
|
|
void sec_enable_irq(struct pmu_gk20a *pmu, bool enable);
|
|
void init_pmu_setup_hw1(struct gk20a *g);
|
|
int init_sec2_setup_hw1(struct gk20a *g,
|
|
void *desc, u32 bl_sz);
|
|
|
|
#endif /*__SEC2_H_*/
|