mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 17:36:20 +03:00
This patch moves gops init related to SDL from qnx to common-core. For this purpose, it does the following changes: - Adds stub functions for linux and posix. - Updates nvgpu_init.c for mapping err_ops with report error APIs. - Updates nvgpu_err.h header file to include prototypes related to error reporting APIs. - Updates nvgpu-linux.yaml file to include sdl_stub file. Jira NVGPU-3237 Change-Id: Idbdbe6f8437bf53504b29dc2d50214484ad18d6f Signed-off-by: Rajesh Devaraj <rdevaraj@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2119681 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
89 lines
2.6 KiB
C
89 lines
2.6 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.
|
||
*/
|
||
|
||
#include <nvgpu/gk20a.h>
|
||
#include <nvgpu/runlist.h>
|
||
#include <nvgpu/types.h>
|
||
#include <nvgpu/channel.h>
|
||
#include <nvgpu/tsg.h>
|
||
#include <nvgpu/preempt.h>
|
||
#include <nvgpu/nvgpu_err.h>
|
||
|
||
|
||
u32 nvgpu_preempt_get_timeout(struct gk20a *g)
|
||
{
|
||
return g->ctxsw_timeout_period_ms;
|
||
}
|
||
|
||
int nvgpu_preempt_channel(struct gk20a *g, struct nvgpu_channel *ch)
|
||
{
|
||
int err;
|
||
struct nvgpu_tsg *tsg = nvgpu_tsg_from_ch(ch);
|
||
|
||
if (tsg != NULL) {
|
||
err = g->ops.fifo.preempt_tsg(ch->g, tsg);
|
||
} else {
|
||
err = g->ops.fifo.preempt_channel(ch->g, ch);
|
||
}
|
||
|
||
return err;
|
||
}
|
||
|
||
/* called from rc */
|
||
void nvgpu_preempt_poll_tsg_on_pbdma(struct gk20a *g,
|
||
struct nvgpu_tsg *tsg)
|
||
{
|
||
struct nvgpu_fifo *f = &g->fifo;
|
||
u32 runlist_id;
|
||
unsigned long runlist_served_pbdmas;
|
||
unsigned long pbdma_id_bit;
|
||
u32 tsgid, pbdma_id;
|
||
|
||
if (g->ops.fifo.preempt_poll_pbdma == NULL) {
|
||
return;
|
||
}
|
||
|
||
if (tsg == NULL) {
|
||
return;
|
||
}
|
||
|
||
tsgid = tsg->tsgid;
|
||
runlist_id = tsg->runlist_id;
|
||
runlist_served_pbdmas = f->runlist_info[runlist_id]->pbdma_bitmask;
|
||
|
||
for_each_set_bit(pbdma_id_bit, &runlist_served_pbdmas, f->num_pbdma) {
|
||
pbdma_id = U32(pbdma_id_bit);
|
||
/*
|
||
* If pbdma preempt fails the only option is to reset
|
||
* GPU. Any sort of hang indicates the entire GPU’s
|
||
* memory system would be blocked.
|
||
*/
|
||
if (g->ops.fifo.preempt_poll_pbdma(g, tsgid,
|
||
pbdma_id) != 0) {
|
||
(void) nvgpu_report_host_err(g, NVGPU_ERR_MODULE_HOST,
|
||
pbdma_id,
|
||
GPU_HOST_PBDMA_PREEMPT_ERROR, 0);
|
||
nvgpu_err(g, "PBDMA preempt failed");
|
||
}
|
||
}
|
||
}
|