mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 10:11:26 +03:00
In order to avoid the VIC performance bottleneck from EMC, VIC needs to ask for the required memory bandwidth for itself according to its current frequency. Bug 4097374 Signed-off-by: Johnny Liu <johnliu@nvidia.com> Change-Id: Ieeeace34a935f96f949e5c8429f2f2b4edaa556c Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2897536 Reviewed-by: Mikko Perttunen <mperttunen@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
38 lines
865 B
C
38 lines
865 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2015-2023, NVIDIA Corporation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef TEGRA_VIC_H
|
|
#define TEGRA_VIC_H
|
|
|
|
/* VIC methods */
|
|
|
|
#define VIC_SET_FCE_UCODE_SIZE 0x0000071C
|
|
#define VIC_SET_FCE_UCODE_OFFSET 0x0000072C
|
|
|
|
/* VIC registers */
|
|
|
|
#define NV_PVIC_MISC_PRI_VIC_CG 0x000016d0
|
|
#define CG_IDLE_CG_DLY_CNT(val) ((val & 0x3f) << 0)
|
|
#define CG_IDLE_CG_EN (1 << 6)
|
|
#define CG_WAKEUP_DLY_CNT(val) ((val & 0xf) << 16)
|
|
|
|
#define NV_PVIC_TFBIF_ACTMON_ACTIVE_WEIGHT 0x00002054
|
|
|
|
#define VIC_TFBIF_TRANSCFG 0x00002044
|
|
|
|
/* Firmware offsets */
|
|
|
|
#define VIC_UCODE_FCE_HEADER_OFFSET (6*4)
|
|
#define VIC_UCODE_FCE_DATA_OFFSET (7*4)
|
|
#define FCE_UCODE_SIZE_OFFSET (2*4)
|
|
|
|
/*
|
|
* VIC AXI read bus is 256-bits width
|
|
* VIC AXI write bus is 256-bits width
|
|
*/
|
|
#define VIC_AXI_RW_BANDWIDTH 512
|
|
|
|
#endif /* TEGRA_VIC_H */
|