mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 09:57:08 +03:00
Add wrapper header file nvgpu/bug.h. It #includes <linux/bug.h> in Linux. JIRA NVGPU-13 Change-Id: I7bf02ba554333f7cbd79d72bd1cb423c81ebcb49 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1461545 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
73 lines
2.2 KiB
C
73 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <nvgpu/page_allocator.h>
|
|
#include <nvgpu/bug.h>
|
|
|
|
#include "gk20a/gk20a.h"
|
|
#include "gk20a/mm_gk20a.h"
|
|
#include "gk20a/pramin_gk20a.h"
|
|
|
|
#include <nvgpu/hw/gk20a/hw_bus_gk20a.h>
|
|
#include <nvgpu/hw/gk20a/hw_pram_gk20a.h>
|
|
|
|
/* WARNING: returns pramin_window_lock taken, complement with pramin_exit() */
|
|
static u32 gk20a_pramin_enter(struct gk20a *g, struct nvgpu_mem *mem,
|
|
struct page_alloc_chunk *chunk, u32 w)
|
|
{
|
|
u64 bufbase = chunk->base;
|
|
u64 addr = bufbase + w * sizeof(u32);
|
|
u32 hi = (u32)((addr & ~(u64)0xfffff)
|
|
>> bus_bar0_window_target_bar0_window_base_shift_v());
|
|
u32 lo = (u32)(addr & 0xfffff);
|
|
u32 win = nvgpu_aperture_mask(g, mem,
|
|
bus_bar0_window_target_sys_mem_noncoherent_f(),
|
|
bus_bar0_window_target_vid_mem_f()) |
|
|
bus_bar0_window_base_f(hi);
|
|
|
|
gk20a_dbg(gpu_dbg_mem,
|
|
"0x%08x:%08x begin for %p,%p at [%llx,%llx] (sz %llx)",
|
|
hi, lo, mem, chunk, bufbase,
|
|
bufbase + chunk->length, chunk->length);
|
|
|
|
WARN_ON(!bufbase);
|
|
|
|
nvgpu_spinlock_acquire(&g->mm.pramin_window_lock);
|
|
|
|
if (g->mm.pramin_window != win) {
|
|
gk20a_writel(g, bus_bar0_window_r(), win);
|
|
gk20a_readl(g, bus_bar0_window_r());
|
|
g->mm.pramin_window = win;
|
|
}
|
|
|
|
return lo;
|
|
}
|
|
|
|
static void gk20a_pramin_exit(struct gk20a *g, struct nvgpu_mem *mem,
|
|
struct page_alloc_chunk *chunk)
|
|
{
|
|
gk20a_dbg(gpu_dbg_mem, "end for %p,%p", mem, chunk);
|
|
|
|
nvgpu_spinlock_release(&g->mm.pramin_window_lock);
|
|
}
|
|
|
|
void gk20a_init_pramin_ops(struct gpu_ops *gops)
|
|
{
|
|
gops->pramin.enter = gk20a_pramin_enter;
|
|
gops->pramin.exit = gk20a_pramin_exit;
|
|
gops->pramin.data032_r = pram_data032_r;
|
|
}
|