mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
soc/tegra: Add Kfuse driver
Add kfuse driver. The kfuse block stores downstream and upstream HDCP keys for use by the HDMI module. Bug 3625675 Change-Id: Ie4b23c161035439266ec7dda54b61e84799a6d5a Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2705641 GVS: Gerrit_Virtual_Submit
This commit is contained in:
committed by
mobile promotions
parent
6d96357ebe
commit
1c042c10b4
@@ -9,6 +9,7 @@ obj-m += pinctrl/
|
||||
obj-m += platform/tegra/
|
||||
obj-m += pwm/
|
||||
obj-m += ras/
|
||||
obj-m += soc/tegra/
|
||||
obj-m += thermal/
|
||||
obj-m += watchdog/
|
||||
|
||||
|
||||
4
drivers/soc/tegra/Makefile
Normal file
4
drivers/soc/tegra/Makefile
Normal file
@@ -0,0 +1,4 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
||||
|
||||
obj-m += fuse/
|
||||
4
drivers/soc/tegra/fuse/Makefile
Normal file
4
drivers/soc/tegra/fuse/Makefile
Normal file
@@ -0,0 +1,4 @@
|
||||
# SPDX-License-Identifier: GPL-2.0
|
||||
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
|
||||
|
||||
obj-m += kfuse.o
|
||||
320
drivers/soc/tegra/fuse/kfuse.c
Normal file
320
drivers/soc/tegra/fuse/kfuse.c
Normal file
@@ -0,0 +1,320 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
// Copyright (C) 2022 NVIDIA CORPORATION. All rights reserved.
|
||||
|
||||
/* The kfuse block stores downstream and upstream HDCP keys for use by HDMI
|
||||
* module.
|
||||
*/
|
||||
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/string.h>
|
||||
#include <linux/delay.h>
|
||||
#include <linux/clk.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/of_device.h>
|
||||
#include <soc/tegra/fuse.h>
|
||||
#include <soc/tegra/kfuse.h>
|
||||
|
||||
/* SOC specific Tegra kfuse information */
|
||||
struct tegra_kfuse_soc {
|
||||
bool sensing_support;
|
||||
};
|
||||
|
||||
struct tegra_kfuse {
|
||||
struct device *dev;
|
||||
struct clk *clk;
|
||||
void __iomem *aperture;
|
||||
const struct tegra_kfuse_soc *soc;
|
||||
unsigned int cg_refcount;
|
||||
|
||||
/* Mutex for handling clockgating reference count */
|
||||
struct mutex cg_refcount_mutex;
|
||||
};
|
||||
|
||||
/* Public API does not provide kfuse structure or device */
|
||||
static struct tegra_kfuse *global_kfuse;
|
||||
|
||||
/* register definition */
|
||||
#define KFUSE_PD 0x24
|
||||
#define KFUSE_PD_PU 0u
|
||||
#define KFUSE_PD_PD BIT(0)
|
||||
|
||||
#define KFUSE_STATE 0x80
|
||||
#define KFUSE_STATE_DONE BIT(16)
|
||||
#define KFUSE_STATE_CRCPASS BIT(17)
|
||||
|
||||
#define KFUSE_KEYADDR 0x88
|
||||
#define KFUSE_KEYADDR_AUTOINC BIT(16)
|
||||
#define KFUSE_KEYS 0x8c
|
||||
#define KFUSE_CG1_0 0x90
|
||||
|
||||
static u32 tegra_kfuse_readl(struct tegra_kfuse *kfuse, unsigned long offset)
|
||||
{
|
||||
return readl(kfuse->aperture + offset);
|
||||
}
|
||||
|
||||
static void tegra_kfuse_writel(struct tegra_kfuse *kfuse, u32 value,
|
||||
unsigned long offset)
|
||||
{
|
||||
writel(value, kfuse->aperture + offset);
|
||||
}
|
||||
|
||||
static struct tegra_kfuse *tegra_kfuse_get(void)
|
||||
{
|
||||
return global_kfuse;
|
||||
}
|
||||
|
||||
static int tegra_kfuse_wait_for_done(struct tegra_kfuse *kfuse)
|
||||
{
|
||||
u32 reg;
|
||||
int retries = 50;
|
||||
|
||||
do {
|
||||
reg = tegra_kfuse_readl(kfuse, KFUSE_STATE);
|
||||
if (reg & KFUSE_STATE_DONE)
|
||||
return 0;
|
||||
msleep(10);
|
||||
} while (--retries);
|
||||
return -ETIMEDOUT;
|
||||
}
|
||||
|
||||
int tegra_kfuse_enable_sensing(void)
|
||||
{
|
||||
struct tegra_kfuse *kfuse = tegra_kfuse_get();
|
||||
int err = 0;
|
||||
|
||||
/* check that kfuse driver is available.. */
|
||||
if (!kfuse)
|
||||
return -ENODEV;
|
||||
|
||||
mutex_lock(&kfuse->cg_refcount_mutex);
|
||||
|
||||
/* increment refcount */
|
||||
kfuse->cg_refcount++;
|
||||
|
||||
/* if clock was already up, quit */
|
||||
if (kfuse->cg_refcount > 1)
|
||||
goto exit_unlock;
|
||||
|
||||
/* enable kfuse clock */
|
||||
err = clk_prepare_enable(kfuse->clk);
|
||||
if (err) {
|
||||
kfuse->cg_refcount--;
|
||||
goto exit_unlock;
|
||||
}
|
||||
|
||||
/* enable kfuse sensing */
|
||||
tegra_kfuse_writel(kfuse, 1, KFUSE_CG1_0);
|
||||
|
||||
exit_unlock:
|
||||
mutex_unlock(&kfuse->cg_refcount_mutex);
|
||||
|
||||
return err;
|
||||
}
|
||||
EXPORT_SYMBOL(tegra_kfuse_enable_sensing);
|
||||
|
||||
void tegra_kfuse_disable_sensing(void)
|
||||
{
|
||||
struct tegra_kfuse *kfuse = tegra_kfuse_get();
|
||||
|
||||
/* check that kfuse driver is available.. */
|
||||
if (!kfuse)
|
||||
return;
|
||||
|
||||
mutex_lock(&kfuse->cg_refcount_mutex);
|
||||
|
||||
if (WARN_ON(kfuse->cg_refcount == 0))
|
||||
goto exit_unlock;
|
||||
|
||||
/* decrement refcount */
|
||||
kfuse->cg_refcount--;
|
||||
|
||||
/* if there are still users, quit */
|
||||
if (kfuse->cg_refcount > 0)
|
||||
goto exit_unlock;
|
||||
|
||||
/* disable kfuse sensing */
|
||||
tegra_kfuse_writel(kfuse, 0, KFUSE_CG1_0);
|
||||
|
||||
/* ..and disable kfuse clock */
|
||||
clk_disable_unprepare(kfuse->clk);
|
||||
|
||||
exit_unlock:
|
||||
mutex_unlock(&kfuse->cg_refcount_mutex);
|
||||
}
|
||||
EXPORT_SYMBOL(tegra_kfuse_disable_sensing);
|
||||
|
||||
/* read up to KFUSE_DATA_SZ bytes into dest.
|
||||
* always starts at the first kfuse.
|
||||
*/
|
||||
int tegra_kfuse_read(void *dest, size_t len)
|
||||
{
|
||||
struct tegra_kfuse *kfuse = tegra_kfuse_get();
|
||||
int err;
|
||||
u32 v;
|
||||
unsigned int cnt;
|
||||
|
||||
if (!kfuse)
|
||||
return -ENODEV;
|
||||
|
||||
if (len > KFUSE_DATA_SZ)
|
||||
return -EINVAL;
|
||||
|
||||
if (kfuse->soc->sensing_support) {
|
||||
err = tegra_kfuse_enable_sensing();
|
||||
if (err)
|
||||
return err;
|
||||
}
|
||||
|
||||
err = clk_prepare_enable(kfuse->clk);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
tegra_kfuse_writel(kfuse, KFUSE_PD_PU, KFUSE_PD);
|
||||
udelay(2);
|
||||
|
||||
tegra_kfuse_writel(kfuse, KFUSE_KEYADDR_AUTOINC, KFUSE_KEYADDR);
|
||||
|
||||
err = tegra_kfuse_wait_for_done(kfuse);
|
||||
if (err) {
|
||||
dev_err(kfuse->dev, "kfuse: read timeout\n");
|
||||
clk_disable_unprepare(kfuse->clk);
|
||||
return err;
|
||||
}
|
||||
|
||||
if ((tegra_kfuse_readl(kfuse, KFUSE_STATE) &
|
||||
KFUSE_STATE_CRCPASS) == 0) {
|
||||
dev_err(kfuse->dev, "kfuse: crc failed\n");
|
||||
clk_disable_unprepare(kfuse->clk);
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
for (cnt = 0; cnt < len; cnt += 4) {
|
||||
v = tegra_kfuse_readl(kfuse, KFUSE_KEYS);
|
||||
memcpy(dest + cnt, &v, sizeof(v));
|
||||
}
|
||||
|
||||
tegra_kfuse_writel(kfuse, KFUSE_PD_PD, KFUSE_PD);
|
||||
|
||||
clk_disable_unprepare(kfuse->clk);
|
||||
|
||||
if (kfuse->soc->sensing_support)
|
||||
tegra_kfuse_disable_sensing();
|
||||
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL(tegra_kfuse_read);
|
||||
|
||||
static int tegra_kfuse_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct tegra_kfuse *kfuse;
|
||||
struct resource *resource;
|
||||
int err;
|
||||
|
||||
if (global_kfuse)
|
||||
return -EBUSY;
|
||||
|
||||
kfuse = devm_kzalloc(&pdev->dev, sizeof(*kfuse), GFP_KERNEL);
|
||||
if (!kfuse)
|
||||
return -ENOMEM;
|
||||
|
||||
kfuse->soc = of_device_get_match_data(&pdev->dev);
|
||||
kfuse->dev = &pdev->dev;
|
||||
|
||||
kfuse->clk = devm_clk_get(&pdev->dev, "kfuse");
|
||||
|
||||
if (IS_ERR(kfuse->clk)) {
|
||||
err = PTR_ERR(kfuse->clk);
|
||||
if (err != -EPROBE_DEFER)
|
||||
dev_err(&pdev->dev, "Failed to get kfuse clk: %d\n", err);
|
||||
return err;
|
||||
}
|
||||
|
||||
resource = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
if (!resource) {
|
||||
dev_err(&pdev->dev, "Failed to get MEM resource\n");
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
kfuse->aperture = devm_ioremap_resource(&pdev->dev, resource);
|
||||
if (IS_ERR(kfuse->aperture)) {
|
||||
err = PTR_ERR(kfuse->aperture);
|
||||
dev_err(&pdev->dev, "Failed to ioremap: %d\n", err);
|
||||
return err;
|
||||
}
|
||||
|
||||
mutex_init(&kfuse->cg_refcount_mutex);
|
||||
|
||||
platform_set_drvdata(pdev, kfuse);
|
||||
|
||||
/* for public API */
|
||||
global_kfuse = kfuse;
|
||||
|
||||
dev_info(&pdev->dev, "initialized\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int tegra_kfuse_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct tegra_kfuse *kfuse = platform_get_drvdata(pdev);
|
||||
int ret = 0;
|
||||
|
||||
/* ensure that no-one is using sensing now */
|
||||
mutex_lock(&kfuse->cg_refcount_mutex);
|
||||
if (kfuse->cg_refcount)
|
||||
ret = -EBUSY;
|
||||
mutex_unlock(&kfuse->cg_refcount_mutex);
|
||||
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
global_kfuse = NULL;
|
||||
|
||||
dev_info(&pdev->dev, "removed\n");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct tegra_kfuse_soc tegra124_kfuse_soc = {
|
||||
.sensing_support = false,
|
||||
};
|
||||
|
||||
static const struct tegra_kfuse_soc tegra210_kfuse_soc = {
|
||||
.sensing_support = false,
|
||||
};
|
||||
|
||||
static const struct tegra_kfuse_soc tegra186_kfuse_soc = {
|
||||
.sensing_support = true,
|
||||
};
|
||||
|
||||
static const struct tegra_kfuse_soc tegra194_kfuse_soc = {
|
||||
.sensing_support = true,
|
||||
};
|
||||
|
||||
static const struct of_device_id tegra_kfuse_of_match[] = {
|
||||
{ .compatible = "nvidia,tegra124-kfuse", .data = &tegra124_kfuse_soc, },
|
||||
{ .compatible = "nvidia,tegra210-kfuse", .data = &tegra210_kfuse_soc, },
|
||||
{ .compatible = "nvidia,tegra186-kfuse", .data = &tegra186_kfuse_soc, },
|
||||
{ .compatible = "nvidia,tegra194-kfuse", .data = &tegra194_kfuse_soc, },
|
||||
{ },
|
||||
};
|
||||
|
||||
static struct platform_driver kfuse_driver = {
|
||||
.probe = tegra_kfuse_probe,
|
||||
.remove = tegra_kfuse_remove,
|
||||
.driver = {
|
||||
.owner = THIS_MODULE,
|
||||
.name = "kfuse",
|
||||
.of_match_table = tegra_kfuse_of_match,
|
||||
},
|
||||
};
|
||||
|
||||
module_platform_driver(kfuse_driver);
|
||||
|
||||
MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
|
||||
MODULE_DESCRIPTION("Tegra Kfuse Driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
13
include/soc/tegra/kfuse.h
Normal file
13
include/soc/tegra/kfuse.h
Normal file
@@ -0,0 +1,13 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
// Copyright (C) 2022 NVIDIA CORPORATION. All rights reserved.
|
||||
|
||||
#ifndef __SOC_TEGRA_KFUSE_H__
|
||||
#define __SOC_TEGRA_KFUSE_H__
|
||||
|
||||
/* there are 144 32-bit values in total */
|
||||
#define KFUSE_DATA_SZ (144 * 4)
|
||||
|
||||
int tegra_kfuse_read(void *dest, size_t len);
|
||||
void tegra_kfuse_disable_sensing(void);
|
||||
int tegra_kfuse_enable_sensing(void);
|
||||
#endif /* __SOC_TEGRA_KFUSE_H__ */
|
||||
Reference in New Issue
Block a user