mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-25 02:52:51 +03:00
gpu: nvgpu: Move interrupt ISR code to common
This is one of the steps in restructuring of interrupt code. - Move ISR logic to common code. This will allow us to add mixed ASIL error handling levels. - Modify nonstall ISR to use threaded interrupts. Bottom half of nonstall ISR will run nonstall operations instead of adding work to workqueues. - Remove nonstall workqueue implementation. JIRA NVGPU-6351 Change-Id: I5f891b0de4b0c34f6ac05522a5da08dc36221aa6 Signed-off-by: Vedashree Vidwans <vvidwans@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2467713 Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
mobile promotions
parent
ecfd675d9b
commit
e445b57b04
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2014-2020, NVIDIA CORPORATION. All rights reserved.
|
||||
* Copyright (c) 2014-2021, 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,
|
||||
@@ -12,133 +12,34 @@
|
||||
*/
|
||||
|
||||
#include <nvgpu/trace.h>
|
||||
#include <linux/irqreturn.h>
|
||||
|
||||
#include <nvgpu/gk20a.h>
|
||||
#include <nvgpu/mc.h>
|
||||
#include <nvgpu/nvgpu_init.h>
|
||||
|
||||
#include <nvgpu/atomic.h>
|
||||
#include "os_linux.h"
|
||||
|
||||
irqreturn_t nvgpu_intr_stall(struct gk20a *g)
|
||||
void nvgpu_trace_intr_thread_stall_start(struct gk20a *g)
|
||||
{
|
||||
u32 mc_intr_0;
|
||||
|
||||
#ifdef CONFIG_NVGPU_TRACE
|
||||
trace_mc_gk20a_intr_stall(g->name);
|
||||
#endif
|
||||
|
||||
if (nvgpu_is_powered_off(g))
|
||||
return IRQ_NONE;
|
||||
|
||||
/* not from gpu when sharing irq with others */
|
||||
mc_intr_0 = g->ops.mc.intr_stall(g);
|
||||
if (unlikely(!mc_intr_0))
|
||||
return IRQ_NONE;
|
||||
|
||||
nvgpu_mc_intr_stall_pause(g);
|
||||
if (g->sw_quiesce_pending) {
|
||||
return IRQ_NONE;
|
||||
}
|
||||
|
||||
nvgpu_atomic_set(&g->mc.sw_irq_stall_pending, 1);
|
||||
|
||||
#ifdef CONFIG_NVGPU_TRACE
|
||||
trace_mc_gk20a_intr_stall_done(g->name);
|
||||
#endif
|
||||
|
||||
return IRQ_WAKE_THREAD;
|
||||
}
|
||||
|
||||
irqreturn_t nvgpu_intr_thread_stall(struct gk20a *g)
|
||||
{
|
||||
nvgpu_log(g, gpu_dbg_intr, "interrupt thread launched");
|
||||
|
||||
#ifdef CONFIG_NVGPU_TRACE
|
||||
trace_mc_gk20a_intr_thread_stall(g->name);
|
||||
#endif
|
||||
}
|
||||
|
||||
g->ops.mc.isr_stall(g);
|
||||
/* sync handled irq counter before re-enabling interrupts */
|
||||
nvgpu_atomic_set(&g->mc.sw_irq_stall_pending, 0);
|
||||
nvgpu_mc_intr_stall_resume(g);
|
||||
|
||||
nvgpu_cond_broadcast(&g->mc.sw_irq_stall_last_handled_cond);
|
||||
|
||||
void nvgpu_trace_intr_thread_stall_done(struct gk20a *g)
|
||||
{
|
||||
#ifdef CONFIG_NVGPU_TRACE
|
||||
trace_mc_gk20a_intr_thread_stall_done(g->name);
|
||||
#endif
|
||||
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
irqreturn_t nvgpu_intr_nonstall(struct gk20a *g)
|
||||
void nvgpu_trace_intr_stall_start(struct gk20a *g)
|
||||
{
|
||||
u32 non_stall_intr_val;
|
||||
int ops_old, ops_new, ops = 0;
|
||||
struct nvgpu_os_linux *l = nvgpu_os_linux_from_gk20a(g);
|
||||
|
||||
if (nvgpu_is_powered_off(g))
|
||||
return IRQ_NONE;
|
||||
|
||||
/* not from gpu when sharing irq with others */
|
||||
non_stall_intr_val = g->ops.mc.intr_nonstall(g);
|
||||
if (unlikely(!non_stall_intr_val))
|
||||
return IRQ_NONE;
|
||||
|
||||
nvgpu_mc_intr_nonstall_pause(g);
|
||||
if (g->sw_quiesce_pending) {
|
||||
return IRQ_NONE;
|
||||
}
|
||||
|
||||
nvgpu_atomic_set(&g->mc.sw_irq_nonstall_pending, 1);
|
||||
ops = g->ops.mc.isr_nonstall(g);
|
||||
if (ops) {
|
||||
do {
|
||||
ops_old = atomic_read(&l->nonstall_ops);
|
||||
ops_new = ops_old | ops;
|
||||
} while (ops_old != atomic_cmpxchg(&l->nonstall_ops,
|
||||
ops_old, ops_new));
|
||||
|
||||
queue_work(l->nonstall_work_queue, &l->nonstall_fn_work);
|
||||
}
|
||||
|
||||
/* sync handled irq counter before re-enabling interrupts */
|
||||
nvgpu_atomic_set(&g->mc.sw_irq_nonstall_pending, 0);
|
||||
|
||||
nvgpu_mc_intr_nonstall_resume(g);
|
||||
|
||||
nvgpu_cond_broadcast(&g->mc.sw_irq_nonstall_last_handled_cond);
|
||||
|
||||
return IRQ_HANDLED;
|
||||
#ifdef CONFIG_NVGPU_TRACE
|
||||
trace_mc_gk20a_intr_stall(g->name);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void mc_gk20a_handle_intr_nonstall(struct gk20a *g, u32 ops)
|
||||
void nvgpu_trace_intr_stall_done(struct gk20a *g)
|
||||
{
|
||||
bool semaphore_wakeup, post_events;
|
||||
|
||||
semaphore_wakeup =
|
||||
(((ops & NVGPU_NONSTALL_OPS_WAKEUP_SEMAPHORE) != 0U) ?
|
||||
true : false);
|
||||
post_events = (((ops & NVGPU_NONSTALL_OPS_POST_EVENTS) != 0U) ?
|
||||
true: false);
|
||||
|
||||
if (semaphore_wakeup) {
|
||||
g->ops.semaphore_wakeup(g, post_events);
|
||||
}
|
||||
}
|
||||
|
||||
void nvgpu_intr_nonstall_cb(struct work_struct *work)
|
||||
{
|
||||
struct nvgpu_os_linux *l =
|
||||
container_of(work, struct nvgpu_os_linux, nonstall_fn_work);
|
||||
struct gk20a *g = &l->g;
|
||||
|
||||
do {
|
||||
u32 ops;
|
||||
|
||||
ops = atomic_xchg(&l->nonstall_ops, 0);
|
||||
mc_gk20a_handle_intr_nonstall(g, ops);
|
||||
} while (atomic_read(&l->nonstall_ops) != 0);
|
||||
#ifdef CONFIG_NVGPU_TRACE
|
||||
trace_mc_gk20a_intr_stall_done(g->name);
|
||||
#endif
|
||||
}
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2014-2017, 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 __NVGPU_LINUX_INTR_H__
|
||||
#define __NVGPU_LINUX_INTR_H__
|
||||
struct gk20a;
|
||||
|
||||
irqreturn_t nvgpu_intr_stall(struct gk20a *g);
|
||||
irqreturn_t nvgpu_intr_thread_stall(struct gk20a *g);
|
||||
irqreturn_t nvgpu_intr_nonstall(struct gk20a *g);
|
||||
void nvgpu_intr_nonstall_cb(struct work_struct *work);
|
||||
#endif
|
||||
@@ -70,7 +70,6 @@
|
||||
#include "module.h"
|
||||
|
||||
#include "module_usermode.h"
|
||||
#include "intr.h"
|
||||
#include "ioctl.h"
|
||||
#include "ioctl_ctrl.h"
|
||||
|
||||
@@ -437,13 +436,6 @@ int gk20a_pm_finalize_poweron(struct device *dev)
|
||||
|
||||
nvgpu_restore_usermode_for_poweron(g);
|
||||
|
||||
/* Enable interrupt workqueue */
|
||||
if (!l->nonstall_work_queue) {
|
||||
l->nonstall_work_queue = alloc_workqueue("%s",
|
||||
WQ_HIGHPRI, 1, "mc_nonstall");
|
||||
INIT_WORK(&l->nonstall_fn_work, nvgpu_intr_nonstall_cb);
|
||||
}
|
||||
|
||||
err = nvgpu_detect_chip(g);
|
||||
if (err)
|
||||
goto done;
|
||||
@@ -931,22 +923,33 @@ u64 nvgpu_resource_addr(struct platform_device *dev, int i)
|
||||
static irqreturn_t gk20a_intr_isr_stall(int irq, void *dev_id)
|
||||
{
|
||||
struct gk20a *g = dev_id;
|
||||
u32 err = nvgpu_intr_stall_isr(g);
|
||||
|
||||
return nvgpu_intr_stall(g);
|
||||
return err == NVGPU_INTR_HANDLE ? IRQ_WAKE_THREAD : IRQ_NONE;
|
||||
}
|
||||
|
||||
static irqreturn_t gk20a_intr_thread_isr_stall(int irq, void *dev_id)
|
||||
{
|
||||
struct gk20a *g = dev_id;
|
||||
|
||||
nvgpu_intr_stall_handle(g);
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static irqreturn_t gk20a_intr_isr_nonstall(int irq, void *dev_id)
|
||||
{
|
||||
struct gk20a *g = dev_id;
|
||||
u32 err = nvgpu_intr_nonstall_isr(g);
|
||||
|
||||
return nvgpu_intr_nonstall(g);
|
||||
return err == NVGPU_INTR_HANDLE ? IRQ_WAKE_THREAD : IRQ_NONE;
|
||||
}
|
||||
|
||||
static irqreturn_t gk20a_intr_thread_stall(int irq, void *dev_id)
|
||||
static irqreturn_t gk20a_intr_thread_isr_nonstall(int irq, void *dev_id)
|
||||
{
|
||||
struct gk20a *g = dev_id;
|
||||
|
||||
return nvgpu_intr_thread_stall(g);
|
||||
nvgpu_intr_nonstall_handle(g);
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
void gk20a_remove_support(struct gk20a *g)
|
||||
@@ -1495,8 +1498,6 @@ out:
|
||||
*/
|
||||
void gk20a_driver_start_unload(struct gk20a *g)
|
||||
{
|
||||
struct nvgpu_os_linux *l = nvgpu_os_linux_from_gk20a(g);
|
||||
|
||||
nvgpu_log(g, gpu_dbg_shutdown, "Driver is now going down!\n");
|
||||
|
||||
nvgpu_start_gpu_idle(g);
|
||||
@@ -1507,12 +1508,6 @@ void gk20a_driver_start_unload(struct gk20a *g)
|
||||
nvgpu_wait_for_idle(g);
|
||||
|
||||
nvgpu_wait_for_deferred_interrupts(g);
|
||||
|
||||
if (l->nonstall_work_queue) {
|
||||
cancel_work_sync(&l->nonstall_fn_work);
|
||||
destroy_workqueue(l->nonstall_work_queue);
|
||||
l->nonstall_work_queue = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
static inline void set_gk20a(struct platform_device *pdev, struct gk20a *gk20a)
|
||||
@@ -1660,7 +1655,7 @@ static int gk20a_probe(struct platform_device *dev)
|
||||
err = devm_request_threaded_irq(&dev->dev,
|
||||
l->interrupts.stall_lines[i],
|
||||
gk20a_intr_isr_stall,
|
||||
gk20a_intr_thread_stall,
|
||||
gk20a_intr_thread_isr_stall,
|
||||
0, "gk20a_stall", gk20a);
|
||||
if (err) {
|
||||
dev_err(&dev->dev,
|
||||
@@ -1671,9 +1666,10 @@ static int gk20a_probe(struct platform_device *dev)
|
||||
}
|
||||
}
|
||||
if (l->interrupts.nonstall_size > 0) {
|
||||
err = devm_request_irq(&dev->dev,
|
||||
l->interrupts.nonstall_line,
|
||||
gk20a_intr_isr_nonstall,
|
||||
err = devm_request_threaded_irq(&dev->dev,
|
||||
l->interrupts.nonstall_line,
|
||||
gk20a_intr_isr_nonstall,
|
||||
gk20a_intr_thread_isr_nonstall,
|
||||
0, "gk20a_nonstall", gk20a);
|
||||
if (err) {
|
||||
dev_err(&dev->dev,
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
#include <nvgpu/nvhost.h>
|
||||
#include <nvgpu/nvgpu_common.h>
|
||||
#include <nvgpu/kmem.h>
|
||||
#include <nvgpu/mc.h>
|
||||
#include <nvgpu/enabled.h>
|
||||
#include <nvgpu/nvlink_probe.h>
|
||||
#include <nvgpu/soc.h>
|
||||
@@ -34,7 +35,6 @@
|
||||
|
||||
#include "nvlink.h"
|
||||
#include "module.h"
|
||||
#include "intr.h"
|
||||
#include "sysfs.h"
|
||||
#include "os_linux.h"
|
||||
#include "platform_gk20a.h"
|
||||
@@ -323,11 +323,8 @@ static struct pci_device_id nvgpu_pci_table[] = {
|
||||
static irqreturn_t nvgpu_pci_isr(int irq, void *dev_id)
|
||||
{
|
||||
struct gk20a *g = dev_id;
|
||||
irqreturn_t ret_stall;
|
||||
irqreturn_t ret_nonstall;
|
||||
|
||||
ret_stall = nvgpu_intr_stall(g);
|
||||
ret_nonstall = nvgpu_intr_nonstall(g);
|
||||
u32 ret_stall = nvgpu_intr_stall_isr(g);
|
||||
u32 ret_nonstall = nvgpu_intr_nonstall_isr(g);
|
||||
|
||||
#if defined(CONFIG_PCI_MSI)
|
||||
/* Send MSI EOI */
|
||||
@@ -335,14 +332,22 @@ static irqreturn_t nvgpu_pci_isr(int irq, void *dev_id)
|
||||
g->ops.xve.rearm_msi(g);
|
||||
#endif
|
||||
|
||||
return (ret_stall == IRQ_NONE) ? ret_nonstall : IRQ_WAKE_THREAD;
|
||||
if ((ret_stall == NVGPU_INTR_HANDLE) ||
|
||||
(ret_nonstall == NVGPU_INTR_HANDLE)) {
|
||||
return IRQ_WAKE_THREAD;
|
||||
}
|
||||
|
||||
return IRQ_NONE;
|
||||
}
|
||||
|
||||
static irqreturn_t nvgpu_pci_intr_thread(int irq, void *dev_id)
|
||||
{
|
||||
struct gk20a *g = dev_id;
|
||||
|
||||
return nvgpu_intr_thread_stall(g);
|
||||
nvgpu_intr_stall_handle(g);
|
||||
nvgpu_intr_nonstall_handle(g);
|
||||
|
||||
return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
static int nvgpu_pci_init_support(struct pci_dev *pdev)
|
||||
|
||||
Reference in New Issue
Block a user