rockchip-efuse.c 3.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Rockchip eFuse Driver
 *
 * Copyright (c) 2015 Rockchip Electronics Co. Ltd.
 * Author: Caesar Wang <wxt@rock-chips.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 */

17 18
#include <linux/clk.h>
#include <linux/delay.h>
19 20 21
#include <linux/device.h>
#include <linux/io.h>
#include <linux/module.h>
22 23
#include <linux/nvmem-provider.h>
#include <linux/slab.h>
24
#include <linux/of.h>
25
#include <linux/platform_device.h>
26 27 28 29 30 31 32 33 34 35 36

#define EFUSE_A_SHIFT			6
#define EFUSE_A_MASK			0x3ff
#define EFUSE_PGENB			BIT(3)
#define EFUSE_LOAD			BIT(2)
#define EFUSE_STROBE			BIT(1)
#define EFUSE_CSB			BIT(0)

#define REG_EFUSE_CTRL			0x0000
#define REG_EFUSE_DOUT			0x0004

37
struct rockchip_efuse_chip {
38 39
	struct device *dev;
	void __iomem *base;
40
	struct clk *clk;
41 42
};

43 44
static int rockchip_efuse_read(void *context, unsigned int offset,
			       void *val, size_t bytes)
45
{
46
	struct rockchip_efuse_chip *efuse = context;
47 48 49
	u8 *buf = val;
	int ret;

50
	ret = clk_prepare_enable(efuse->clk);
51
	if (ret < 0) {
52
		dev_err(efuse->dev, "failed to prepare/enable efuse clk\n");
53 54 55
		return ret;
	}

56
	writel(EFUSE_LOAD | EFUSE_PGENB, efuse->base + REG_EFUSE_CTRL);
57
	udelay(1);
58
	while (bytes--) {
59
		writel(readl(efuse->base + REG_EFUSE_CTRL) &
60
			     (~(EFUSE_A_MASK << EFUSE_A_SHIFT)),
61 62
			     efuse->base + REG_EFUSE_CTRL);
		writel(readl(efuse->base + REG_EFUSE_CTRL) |
63
			     ((offset++ & EFUSE_A_MASK) << EFUSE_A_SHIFT),
64
			     efuse->base + REG_EFUSE_CTRL);
65
		udelay(1);
66 67
		writel(readl(efuse->base + REG_EFUSE_CTRL) |
			     EFUSE_STROBE, efuse->base + REG_EFUSE_CTRL);
68
		udelay(1);
69 70 71
		*buf++ = readb(efuse->base + REG_EFUSE_DOUT);
		writel(readl(efuse->base + REG_EFUSE_CTRL) &
		     (~EFUSE_STROBE), efuse->base + REG_EFUSE_CTRL);
72 73 74 75
		udelay(1);
	}

	/* Switch to standby mode */
76
	writel(EFUSE_PGENB | EFUSE_CSB, efuse->base + REG_EFUSE_CTRL);
77

78
	clk_disable_unprepare(efuse->clk);
79 80 81 82 83 84 85

	return 0;
}

static struct nvmem_config econfig = {
	.name = "rockchip-efuse",
	.owner = THIS_MODULE,
86 87
	.stride = 1,
	.word_size = 1,
88 89 90 91
	.read_only = true,
};

static const struct of_device_id rockchip_efuse_match[] = {
92
	{ .compatible = "rockchip,rockchip-efuse", },
93 94 95 96
	{ /* sentinel */},
};
MODULE_DEVICE_TABLE(of, rockchip_efuse_match);

97
static int rockchip_efuse_probe(struct platform_device *pdev)
98 99 100
{
	struct resource *res;
	struct nvmem_device *nvmem;
101
	struct rockchip_efuse_chip *efuse;
102

103 104 105 106
	efuse = devm_kzalloc(&pdev->dev, sizeof(struct rockchip_efuse_chip),
			     GFP_KERNEL);
	if (!efuse)
		return -ENOMEM;
107

108 109 110 111
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	efuse->base = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(efuse->base))
		return PTR_ERR(efuse->base);
112

113 114 115
	efuse->clk = devm_clk_get(&pdev->dev, "pclk_efuse");
	if (IS_ERR(efuse->clk))
		return PTR_ERR(efuse->clk);
116

117
	efuse->dev = &pdev->dev;
118 119 120
	econfig.size = resource_size(res);
	econfig.reg_read = rockchip_efuse_read;
	econfig.priv = efuse;
121
	econfig.dev = efuse->dev;
122 123 124 125 126 127 128 129 130
	nvmem = nvmem_register(&econfig);
	if (IS_ERR(nvmem))
		return PTR_ERR(nvmem);

	platform_set_drvdata(pdev, nvmem);

	return 0;
}

131
static int rockchip_efuse_remove(struct platform_device *pdev)
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
{
	struct nvmem_device *nvmem = platform_get_drvdata(pdev);

	return nvmem_unregister(nvmem);
}

static struct platform_driver rockchip_efuse_driver = {
	.probe = rockchip_efuse_probe,
	.remove = rockchip_efuse_remove,
	.driver = {
		.name = "rockchip-efuse",
		.of_match_table = rockchip_efuse_match,
	},
};

module_platform_driver(rockchip_efuse_driver);
MODULE_DESCRIPTION("rockchip_efuse driver");
MODULE_LICENSE("GPL v2");