mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 01:31:30 +03:00
mc-utils driver support is needed on T264, and it should be present in nvidia-t264 repo, so as to avoid leaking any information. Also, we need to make sure once T264 is public the existing mc-utils driver can be updated easily for T264 support. Hence first copy the existing mc-utils driver from nvidia-oot into nvidia-t264, then make changes for T264 and finally when T264 is public, just cherry-pick the addional changes in nvidia-oot and clean up driver from nvidia-t264. This change is doing the first step i.e. copying existing mc-utils driver code from nvidia-oot into nvidia-t264. Bug 4090660 Change-Id: I95eff8d3f7fef267a5c0f0e2137c4343a615d4aa Signed-off-by: Ketan Patil <ketanp@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-t264/+/2911970 Reviewed-by: Sachin Nikam <snikam@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
100 lines
2.7 KiB
C
100 lines
2.7 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
// Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
#ifndef __TEGRA_MC_UTILS_H
|
|
#define __TEGRA_MC_UTILS_H
|
|
|
|
enum dram_types {
|
|
DRAM_TYPE_INVAL,
|
|
DRAM_TYPE_LPDDR5_16CH_ECC_1RANK,
|
|
DRAM_TYPE_LPDDR5_16CH_ECC_2RANK,
|
|
DRAM_TYPE_LPDDR5_8CH_ECC_1RANK,
|
|
DRAM_TYPE_LPDDR5_8CH_ECC_2RANK,
|
|
DRAM_TYPE_LPDDR5_4CH_ECC_1RANK,
|
|
DRAM_TYPE_LPDDR5_4CH_ECC_2RANK,
|
|
DRAM_TYPE_LPDDR5_16CH_1RANK,
|
|
DRAM_TYPE_LPDDR5_16CH_2RANK,
|
|
DRAM_TYPE_LPDDR5_8CH_1RANK,
|
|
DRAM_TYPE_LPDDR5_8CH_2RANK,
|
|
DRAM_TYPE_LPDDR5_4CH_1RANK,
|
|
DRAM_TYPE_LPDDR5_4CH_2RANK,
|
|
DRAM_TYPE_LPDDR4_16CH_ECC_1RANK,
|
|
DRAM_TYPE_LPDDR4_16CH_ECC_2RANK,
|
|
DRAM_TYPE_LPDDR4_8CH_ECC_1RANK,
|
|
DRAM_TYPE_LPDDR4_8CH_ECC_2RANK,
|
|
DRAM_TYPE_LPDDR4_4CH_ECC_1RANK,
|
|
DRAM_TYPE_LPDDR4_4CH_ECC_2RANK,
|
|
DRAM_TYPE_LPDDR4_16CH_1RANK,
|
|
DRAM_TYPE_LPDDR4_16CH_2RANK,
|
|
DRAM_TYPE_LPDDR4_8CH_1RANK,
|
|
DRAM_TYPE_LPDDR4_8CH_2RANK,
|
|
DRAM_TYPE_LPDDR4_4CH_1RANK,
|
|
DRAM_TYPE_LPDDR4_4CH_2RANK,
|
|
};
|
|
|
|
struct mc_utils_ops {
|
|
unsigned long (*emc_freq_to_bw)(unsigned long freq);
|
|
unsigned long (*emc_bw_to_freq)(unsigned long bw);
|
|
enum dram_types (*tegra_dram_types)(void);
|
|
u8 (*get_dram_num_channels)(void);
|
|
unsigned long (*dram_clk_to_mc_clk)(unsigned long dram_clk);
|
|
};
|
|
|
|
/*
|
|
* Utility API to convert the given frequency to Bandwidth.
|
|
*
|
|
* @freq Frequency to convert. It can be in any unit - the resulting Bandwidth
|
|
* will be in the same unit as passed. E.g KHz leads to KBps and Hz
|
|
* leads to Bps.
|
|
*
|
|
* Converts EMC clock frequency into theoretical BW. This
|
|
* does not account for a realistic utilization of the EMC bus. That is the
|
|
* various overheads (refresh, bank commands, etc) that a real system sees
|
|
* are not computed.
|
|
*
|
|
* Return: Converted Bandwidth.
|
|
*/
|
|
unsigned long emc_freq_to_bw(unsigned long freq);
|
|
|
|
/*
|
|
* Utility API to convert the given Bandwidth to frequency.
|
|
*
|
|
* @bw Bandwidth to convert. It can be in any unit - the resulting frequency
|
|
* will be in the same unit as passed. E.g KBps leads to KHz and Bps leads
|
|
* to Hz.
|
|
*
|
|
* Converts BW into theoretical EMC clock frequency.
|
|
*
|
|
* Return: Converted Frequency.
|
|
*/
|
|
unsigned long emc_bw_to_freq(unsigned long bw);
|
|
|
|
/*
|
|
* Return dram types or dram configuration.
|
|
*
|
|
* Return dram configuration based upon ecc/channel/Rank
|
|
*
|
|
* Return: dram type.
|
|
*/
|
|
enum dram_types tegra_dram_types(void);
|
|
|
|
/*
|
|
* Return Number of channels of dram.
|
|
*
|
|
* Return number of dram channels
|
|
*
|
|
* Return: dram channels.
|
|
*/
|
|
u8 get_dram_num_channels(void);
|
|
|
|
/*
|
|
* Return mc_clk from dram_clk.
|
|
*
|
|
* Return DRAM clock in MHZ to MC clk in MHz.
|
|
*
|
|
* dram_clk: dram clk in MHz
|
|
* Return: mc clk in MHz.
|
|
*/
|
|
unsigned long dram_clk_to_mc_clk(unsigned long dram_clk);
|
|
#endif /* __TEGRA_MC_UTILS_H */
|