mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 01:50:07 +03:00
Moved - common/sync/sema_cmdbuf_gk20a.c -> hal/sync/sema_cmdbuf_gk20a.c - common/sync/sema_cmdbuf_gk20a.h -> hal/sync/sema_cmdbuf_gk20a.h - common/sync/sema_cmdbuf_gv11b.c -> hal/sync/sema_cmdbuf_gv11b.c - common/sync/sema_cmdbuf_gv11b.h -> hal/sync/sema_cmdbuf_gv11b.h - common/sync/syncpt_cmdbuf_gk20a.c -> hal/sync/syncpt_cmdbuf_gk20a.c - common/sync/syncpt_cmdbuf_gk20a.h -> hal/sync/syncpt_cmdbuf_gk20a.h - common/sync/syncpt_cmdbuf_gv11b.c -> hal/sync/syncpt_cmdbuf_gv11b.c - common/sync/syncpt_cmdbuf_gv11b.h -> hal/sync/syncpt_cmdbuf_gv11b.h Updated makefiles and #include directives. Jira NVGPU-1984 Change-Id: I5df008512a9243572081a89310d12a77c2354924 Signed-off-by: Thomas Fleury <tfleury@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2101322 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> Reviewed-by: svc-mobile-misra <svc-mobile-misra@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>
80 lines
2.6 KiB
C
80 lines
2.6 KiB
C
/*
|
|
* GV11B sema cmdbuf
|
|
*
|
|
* Copyright (c) 2018, 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/nvgpu_mem.h>
|
|
#include <nvgpu/semaphore.h>
|
|
#include <nvgpu/gk20a.h>
|
|
#include <nvgpu/channel.h>
|
|
|
|
#include "sema_cmdbuf_gv11b.h"
|
|
|
|
u32 gv11b_sema_get_wait_cmd_size(void)
|
|
{
|
|
return 10U;
|
|
}
|
|
|
|
u32 gv11b_sema_get_incr_cmd_size(void)
|
|
{
|
|
return 12U;
|
|
}
|
|
|
|
void gv11b_sema_add_cmd(struct gk20a *g,
|
|
struct nvgpu_semaphore *s, u64 sema_va,
|
|
struct priv_cmd_entry *cmd,
|
|
u32 off, bool acquire, bool wfi)
|
|
{
|
|
nvgpu_log_fn(g, " ");
|
|
|
|
/* sema_addr_lo */
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, 0x20010017);
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, sema_va & 0xffffffffULL);
|
|
|
|
/* sema_addr_hi */
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, 0x20010018);
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, (sema_va >> 32ULL) & 0xffULL);
|
|
|
|
/* payload_lo */
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, 0x20010019);
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, nvgpu_semaphore_get_value(s));
|
|
|
|
/* payload_hi : ignored */
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, 0x2001001a);
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, 0);
|
|
|
|
if (acquire) {
|
|
/* sema_execute : acq_strict_geq | switch_en | 32bit */
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, 0x2001001b);
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, U32(0x2) | BIT32(12));
|
|
} else {
|
|
/* sema_execute : release | wfi | 32bit */
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, 0x2001001b);
|
|
nvgpu_mem_wr32(g, cmd->mem, off++,
|
|
U32(0x1) | ((wfi ? U32(0x1) : U32(0x0)) << 20U));
|
|
|
|
/* non_stall_int : payload is ignored */
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, 0x20010008);
|
|
nvgpu_mem_wr32(g, cmd->mem, off++, 0);
|
|
}
|
|
}
|