Files
linux-nv-oot/drivers/platform/tegra/dce/dce-hsp-ss-t264.c
anupamg ea36afee6c DCE-KMD: Update OS abstraction - Part 2
Modules covered in this CL:
1) dce-os-log

This is not a functional CL. It does the following:
1) Rename dce_<info/err/debug/warn> to
   dce_os_<info/err/debug/warn>

2) Rename dce_log_msg() to dce_os_log_msg()

3) Rename DCE_<WARNING/ERROR/INFO/DEBUG> to
   DCE_OS_<WARNING/ERROR/INFO/DEBUG>

4) Move dce-log.h to os/linux/include/dce-os-log.h

5) Stop using old abstraction:
    a) Replace <os-dce-log.h> includes with <dce-os-log.h>

6) Delete all related old deprecated log files:
    a) os/include/linux-kmd/os-dce-log.h
    b) os/include/os-dce-log.h

JIRA TDS-16126

Change-Id: I75ebe98a785c298678d80371184efae6e46932ee
Signed-off-by: anupamg <anupamg@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/3228536
Reviewed-by: Arun Swain <arswain@nvidia.com>
Reviewed-by: Mahesh Kumar <mahkumar@nvidia.com>
GVS: buildbot_gerritrpt <buildbot_gerritrpt@nvidia.com>
2025-07-24 10:19:12 +00:00

160 lines
3.6 KiB
C

// SPDX-License-Identifier: GPL-2.0-only
/*
* SPDX-FileCopyrightText: Copyright (c) 2023-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
*/
#include <dce.h>
#include <dce-os-utils.h>
#include <hw/t264/hw_hsp_dce.h>
#include <dce-hsp-t264.h>
/**
* ss_set_regs is a 2D array of read-only pointers to a function returning u32.
*
* Array of functions that retrun base addresses of shared semaphores set
* registers in DCE cluster based on the semaphore id and HSP id.
*/
static u32 (*const ss_set_regs[DCE_MAX_HSP_T264][DCE_MAX_NO_SS_T264])(void) = {
[0U] = {
hsp_0_ss0_set_r,
hsp_0_ss1_set_r,
hsp_0_ss2_set_r,
hsp_0_ss3_set_r,
},
[1U] = {
hsp_1_ss0_set_r,
hsp_1_ss1_set_r,
hsp_1_ss2_set_r,
hsp_1_ss3_set_r,
},
};
/**
* ss_clear_regs is a 2D array of read-only pointers to a function
* returning u32.
*
* Array of functions that retrun base addresses of shared semaphores clear
* registers in DCE cluster based on the semaphore id and HSP id.
*/
static u32 (*const ss_clear_regs[DCE_MAX_HSP_T264][DCE_MAX_NO_SS_T264])(void) = {
[0U] = {
hsp_0_ss0_clr_r,
hsp_0_ss1_clr_r,
hsp_0_ss2_clr_r,
hsp_0_ss3_clr_r,
},
[1U] = {
hsp_1_ss0_clr_r,
hsp_1_ss1_clr_r,
hsp_1_ss2_clr_r,
hsp_1_ss3_clr_r,
},
};
/**
* ss_state_regs is a 2D array of read-only pointers to a function
* returning u32.
*
* Array of functions that retrun base addresses of shared semaphores state
* registers in DCE cluster based on the semaphore id and HSP id.
*/
static u32 (*const ss_state_regs[DCE_MAX_HSP_T264][DCE_MAX_NO_SS_T264])(void) = {
[0U] = {
hsp_0_ss0_state_r,
hsp_0_ss1_state_r,
hsp_0_ss2_state_r,
hsp_0_ss3_state_r,
},
[1U] = {
hsp_1_ss0_state_r,
hsp_1_ss1_state_r,
hsp_1_ss2_state_r,
hsp_1_ss3_state_r,
},
};
/**
* dce_ss_get_state_t264 - Get the state of ss_#n in the DCE Cluster
*
* @d : Pointer to tegra_dce struct.
* @hsp_id : ID of hsp instance used
* @id : Shared Semaphore Id.
*
* Return : u32
*/
u32 dce_ss_get_state_t264(struct tegra_dce *d, u8 hsp_id, u8 id)
{
return dce_os_readl(d, ss_state_regs[hsp_id][id]());
}
/**
* dce_ss_set_t264 - Set an u32 value to ss_#n in the DCE Cluster
*
* @d : Pointer to tegra_dce struct.
* @bpos : bit to be set.
* @hsp_id : ID of hsp instance used
* @id : Shared Semaphore Id.
*
* Return : Void
*/
void dce_ss_set_t264(struct tegra_dce *d, u8 bpos, u8 hsp_id, u8 id)
{
unsigned long val = 0U;
if (hsp_id >= DCE_MAX_HSP_T264 || id >= DCE_MAX_NO_SS_T264) {
dce_os_err(d, "Invalid HSP ID:%u OR SS ID:%u", hsp_id, id);
return;
}
val = dce_ss_get_state_t264(d, d->hsp_id, id);
/**
* Debug info. please remove
*/
dce_os_info(d, "Current Value in SS#%d : %lx", id, val);
/**
* TODO :Use DCE_INSERT here.
*/
dce_os_bitmap_set(&val, bpos, 1);
/**
* Debug info. please remove
*/
dce_os_info(d, "Value after bitmap operation : %lx", val);
dce_os_writel(d, ss_set_regs[hsp_id][id](), (u32)val);
/**
* Debug info. please remove
*/
val = dce_ss_get_state_t264(d, d->hsp_id, id);
dce_os_info(d, "Current Value in SS#%d : %lx", id, val);
}
/**
* dce_ss_clear_t264 - Clear a bit in ss_#n in the DCE Cluster
*
* @d : Pointer to tegra_dce struct.
* @bpos : bit to be cleared.
* @hsp_id : ID of hsp instance used
* @id : Shared Semaphore Id.
*
* Return : Void
*/
void dce_ss_clear_t264(struct tegra_dce *d, u8 bpos, u8 hsp_id, u8 id)
{
unsigned long val;
if (hsp_id >= DCE_MAX_HSP_T264 || id >= DCE_MAX_NO_SS_T264) {
dce_os_err(d, "Invalid HSP ID:%u OR SS ID:%u", hsp_id, id);
return;
}
val = dce_ss_get_state_t264(d, d->hsp_id, id);
dce_os_bitmap_set(&val, bpos, 1);
dce_os_writel(d, ss_clear_regs[hsp_id][id](), val);
}