mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 18:16:01 +03:00
fifo_pbdma_isr is moved to fifo_intr_gk20a HAL unit and renamed to gk20a_fifo_pbdma_isr. The pbdma specific handling part of the function gk20a_fifo_handle_pbdma_intr is now separated into a top level HAL function named handle_pbdma_intr. This HAL function is implemented for GM20B and all the other architectures use the same implementation. handle_pbdma_intr can accept NULL values for the parameters handled and error_notifier. gk20a_fifo_handle_pbdma_intr is called from gv11b_fifo_poll_pbdma_chan_status and gk20a_fifo_pbdma_isr. The call to gk20a_fifo_handle_pbdma_intr from gv11b_fifo_poll_pbdma_chan_status doesn't progress to recovery. Thus, the function gk20a_fifo_handle_pbdma_intr is removed to decouple pbdma handling from recovery. gv11b_fifo_poll_pbdma_chan_status now directly calls the HAL handle_pbdma_intr. For gk20a_fifo_pbdma_isr, rc_type is used to proceed to recovery by calling gk20a_fifo_pbdma_fault_rc. gk20a_fifo_pbdma_fault_rc is changed to public from static. Jira NVGPU-2950 Change-Id: I4f3597aca2317d4b745cd47bab9dd95c927160a9 Signed-off-by: Debarshi Dutta <ddutta@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2073535 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
41 lines
1.7 KiB
C
41 lines
1.7 KiB
C
/*
|
|
* Copyright (c) 2011-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_FIFO_INTR_GK20A_H
|
|
#define NVGPU_FIFO_INTR_GK20A_H
|
|
|
|
#include <nvgpu/types.h>
|
|
|
|
struct gk20a;
|
|
|
|
void gk20a_fifo_intr_0_enable(struct gk20a *g, bool enable);
|
|
void gk20a_fifo_intr_1_enable(struct gk20a *g, bool enable);
|
|
void gk20a_fifo_intr_0_isr(struct gk20a *g);
|
|
u32 gk20a_fifo_intr_1_isr(struct gk20a *g);
|
|
|
|
void gk20a_fifo_intr_handle_chsw_error(struct gk20a *g);
|
|
void gk20a_fifo_intr_handle_runlist_event(struct gk20a *g);
|
|
u32 gk20a_fifo_pbdma_isr(struct gk20a *g);
|
|
bool gk20a_fifo_handle_sched_error(struct gk20a *g);
|
|
|
|
#endif /* NVGPU_FIFO_INTR_GK20A_H */
|