mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
memory: tegra: Add mc-hwpm driver for T264
Add mc-hwpm driver for T264. This driver registers hwpm_ip_ops which is used by hwpm driver to evaluate performance of MC channels. Bug 4110130 Change-Id: I72af8dc60e834195129292d2d5263a6db1cf6f1a Signed-off-by: Ashish Mhetre <amhetre@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-t264/+/2914644 Reviewed-by: Ketan Patil <ketanp@nvidia.com> Reviewed-by: Sachin Nikam <snikam@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
This commit is contained in:
committed by
Jon Hunter
parent
e7db60a58d
commit
e6106d4ecb
@@ -1,2 +1,3 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
obj-m += mc-t26x.o
|
||||
obj-m += tegra264-mc-hwpm.o
|
||||
|
||||
144
drivers/memory/tegra/private-soc/tegra264-mc-hwpm.c
Normal file
144
drivers/memory/tegra/private-soc/tegra264-mc-hwpm.c
Normal file
@@ -0,0 +1,144 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved.
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) "tegra264-mc-hwpm: " fmt
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/export.h>
|
||||
#include <linux/of_device.h>
|
||||
#include <linux/of_address.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/pm_runtime.h>
|
||||
|
||||
#include <uapi/linux/tegra-soc-hwpm-uapi.h>
|
||||
|
||||
#define MAX_MC_CHANNELS 33 // Broadcast Channel + 32 MC Channels
|
||||
|
||||
static struct tegra_soc_hwpm_ip_ops hwpm_ip_ops;
|
||||
|
||||
struct tegra_mc_hwpm {
|
||||
struct device *dev;
|
||||
void __iomem **ch_regs;
|
||||
u32 no_ch;
|
||||
};
|
||||
|
||||
/**
|
||||
* ch_no == 0 = Broadcast Channel
|
||||
* ch_no == 1 = MC0
|
||||
* ch_no == 2 = MC1
|
||||
* .
|
||||
* .
|
||||
* ch_no == 32 = MC31
|
||||
*/
|
||||
static u32 mc_readl(struct tegra_mc_hwpm *mc, u32 ch_no, u32 reg)
|
||||
{
|
||||
return readl(mc->ch_regs[ch_no] + reg);
|
||||
}
|
||||
|
||||
static void mc_writel(struct tegra_mc_hwpm *mc, u32 ch_no, u32 val, u32 reg)
|
||||
{
|
||||
writel(val, mc->ch_regs[ch_no] + reg);
|
||||
}
|
||||
|
||||
static int tegra_mc_hwpm_reg_op(void *ip_dev,
|
||||
enum tegra_soc_hwpm_ip_reg_op reg_op,
|
||||
u32 inst_element_index, u64 reg_offset, u32 *reg_data)
|
||||
{
|
||||
struct device *dev = (struct device *)ip_dev;
|
||||
struct tegra_mc_hwpm *mc;
|
||||
|
||||
mc = dev_get_drvdata(dev);
|
||||
if (!mc) {
|
||||
pr_err("Invalid device\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
if (inst_element_index >= mc->no_ch) {
|
||||
pr_err("Incorrect channel number: %u\n", inst_element_index);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (reg_op == TEGRA_SOC_HWPM_IP_REG_OP_READ) {
|
||||
*reg_data = mc_readl(mc, inst_element_index, (u32)reg_offset);
|
||||
} else if (reg_op == TEGRA_SOC_HWPM_IP_REG_OP_WRITE) {
|
||||
mc_writel(mc, inst_element_index, *reg_data, (u32)reg_offset);
|
||||
} else {
|
||||
dev_err(mc->dev, "Invalid operation\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct of_device_id mc_hwpm_of_ids[] = {
|
||||
{ .compatible = "nvidia,tegra-t264-mc-hwpm" },
|
||||
{ }
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, mc_hwpm_of_ids);
|
||||
|
||||
static int tegra_mc_hwpm_hwpm_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct tegra_mc_hwpm *mc;
|
||||
struct resource *res;
|
||||
u64 base_addr;
|
||||
u32 i;
|
||||
|
||||
mc = devm_kzalloc(&pdev->dev, sizeof(*mc), GFP_KERNEL);
|
||||
if (!mc)
|
||||
return -ENOMEM;
|
||||
|
||||
platform_set_drvdata(pdev, mc);
|
||||
mc->dev = &pdev->dev;
|
||||
|
||||
mc->no_ch = MAX_MC_CHANNELS;
|
||||
mc->ch_regs = devm_kcalloc(mc->dev, mc->no_ch, sizeof(*mc->ch_regs),
|
||||
GFP_KERNEL);
|
||||
if (!mc->ch_regs)
|
||||
return -ENOMEM;
|
||||
|
||||
for (i = 0; i < mc->no_ch; i++){
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, i);
|
||||
if (!res) {
|
||||
dev_err(mc->dev, "Missing MC channels in device tree\n");
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
mc->ch_regs[i] = devm_ioremap(mc->dev, res->start, resource_size(res));
|
||||
if (IS_ERR(mc->ch_regs[i]))
|
||||
return PTR_ERR(mc->ch_regs[i]);
|
||||
|
||||
if (i == 0)
|
||||
base_addr = res->start;
|
||||
}
|
||||
|
||||
hwpm_ip_ops.ip_dev = (void *)mc->dev;
|
||||
hwpm_ip_ops.resource_enum = TEGRA_SOC_HWPM_RESOURCE_MSS_CHANNEL;
|
||||
hwpm_ip_ops.ip_base_address = base_addr;
|
||||
hwpm_ip_ops.hwpm_ip_reg_op = &tegra_mc_hwpm_reg_op;
|
||||
tegra_soc_hwpm_ip_register(&hwpm_ip_ops);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct platform_driver mc_hwpm_driver = {
|
||||
.driver = {
|
||||
.name = "tegra264-mc-hwpm",
|
||||
.of_match_table = mc_hwpm_of_ids,
|
||||
.owner = THIS_MODULE,
|
||||
},
|
||||
|
||||
.probe = tegra_mc_hwpm_hwpm_probe,
|
||||
};
|
||||
|
||||
static int __init tegra_mc_hwpm_init(void)
|
||||
{
|
||||
return platform_driver_register(&mc_hwpm_driver);
|
||||
}
|
||||
module_init(tegra_mc_hwpm_init);
|
||||
|
||||
MODULE_AUTHOR("Ashish Mhetre <amhetre@nvidia.com>");
|
||||
MODULE_DESCRIPTION("Tegra264 MC-HWPM driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
Reference in New Issue
Block a user