mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
gpu: nvgpu: move non-safe functions from fusa hal to non-fusa hal
Multiple non-safe functions under NVGPU_DEBUGGER, NVGPU_CILP and other config flags were moved to fusa files. Although they are guarded by the C flags, it makes sense to keep those functions in non-fusa files. Make this change for all hals. JIRA NVGPU-3853 Change-Id: I8151b55a60cb50c5058af48bab9e8068f929ac3b Signed-off-by: Sagar Kamble <skamble@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2204352 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
Alex Waterman
parent
e5259f5819
commit
ec293030c1
84
drivers/gpu/nvgpu/hal/mm/cache/flush_gk20a.c
vendored
Normal file
84
drivers/gpu/nvgpu/hal/mm/cache/flush_gk20a.c
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#ifdef CONFIG_NVGPU_TRACE
|
||||
#include <trace/events/gk20a.h>
|
||||
#endif
|
||||
|
||||
#include <nvgpu/mm.h>
|
||||
#include <nvgpu/io.h>
|
||||
#include <nvgpu/gk20a.h>
|
||||
#include <nvgpu/timers.h>
|
||||
|
||||
#include <nvgpu/hw/gk20a/hw_flush_gk20a.h>
|
||||
|
||||
#include "flush_gk20a.h"
|
||||
|
||||
#ifdef CONFIG_NVGPU_COMPRESSION
|
||||
void gk20a_mm_cbc_clean(struct gk20a *g)
|
||||
{
|
||||
struct mm_gk20a *mm = &g->mm;
|
||||
u32 data;
|
||||
struct nvgpu_timeout timeout;
|
||||
u32 retries = 200;
|
||||
|
||||
nvgpu_log_fn(g, " ");
|
||||
|
||||
gk20a_busy_noresume(g);
|
||||
if (!g->power_on) {
|
||||
goto hw_was_off;
|
||||
}
|
||||
|
||||
if (g->ops.mm.get_flush_retries != NULL) {
|
||||
retries = g->ops.mm.get_flush_retries(g, NVGPU_FLUSH_CBC_CLEAN);
|
||||
}
|
||||
|
||||
nvgpu_assert(nvgpu_timeout_init(g, &timeout, retries,
|
||||
NVGPU_TIMER_RETRY_TIMER) == 0);
|
||||
|
||||
nvgpu_mutex_acquire(&mm->l2_op_lock);
|
||||
|
||||
/* Flush all dirty lines from the CBC to L2 */
|
||||
nvgpu_writel(g, flush_l2_clean_comptags_r(),
|
||||
flush_l2_clean_comptags_pending_busy_f());
|
||||
|
||||
do {
|
||||
data = nvgpu_readl(g, flush_l2_clean_comptags_r());
|
||||
|
||||
if (flush_l2_clean_comptags_outstanding_v(data) ==
|
||||
flush_l2_clean_comptags_outstanding_true_v() ||
|
||||
flush_l2_clean_comptags_pending_v(data) ==
|
||||
flush_l2_clean_comptags_pending_busy_v()) {
|
||||
nvgpu_log_info(g, "l2_clean_comptags 0x%x", data);
|
||||
nvgpu_udelay(5);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
} while (nvgpu_timeout_expired_msg(&timeout,
|
||||
"l2_clean_comptags too many retries") == 0);
|
||||
|
||||
nvgpu_mutex_release(&mm->l2_op_lock);
|
||||
|
||||
hw_was_off:
|
||||
gk20a_idle_nosuspend(g);
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user