android_kernel_samsung_msm8976/drivers/misc/qfp_fuse.c

316 lines
6.8 KiB
C

/* Copyright (c) 2011-2014, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 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.
*/
#define pr_fmt(fmt) "%s: " fmt, __func__
#include <linux/init.h>
#include <linux/module.h>
#include <linux/fs.h>
#include <linux/slab.h>
#include <linux/miscdevice.h>
#include <linux/delay.h>
#include <linux/qfp_fuse.h>
#include <linux/io.h>
#include <linux/uaccess.h>
#include <linux/regulator/consumer.h>
#include <linux/platform_device.h>
#include <linux/mutex.h>
#include <linux/of.h>
/*
* Time QFPROM requires to reliably burn a fuse.
*/
#define QFPROM_BLOW_TIMEOUT_US 20
#define QFPROM_BLOW_TIMER_OFFSET 0x2038
/*
* Denotes number of cycles required to blow the fuse.
*/
#define QFPROM_BLOW_TIMER_VALUE 0xF0
#define QFPROM_BLOW_STATUS_OFFSET 0x204C
#define QFPROM_BLOW_STATUS_BUSY 0x01
#define QFPROM_BLOW_STATUS_ERROR 0x02
#define QFP_FUSE_READY 0x01
#define QFP_FUSE_OFF 0x00
#define QFP_FUSE_BUF_SIZE 64
#define UINT32_MAX (0xFFFFFFFFU)
struct qfp_priv_t {
void __iomem *base;
uint32_t size;
uint32_t blow_status_offset;
uint32_t blow_timer;
struct mutex lock;
u8 state;
};
struct qfp_resource {
resource_size_t start;
resource_size_t size;
uint32_t blow_status_offset;
uint32_t blow_timer;
};
/* We need only one instance of this for the driver */
static struct qfp_priv_t *qfp_priv;
static inline bool is_usr_req_valid(const struct qfp_fuse_req *req)
{
uint32_t size = qfp_priv->size;
uint32_t req_size;
if (req->size >= (UINT32_MAX / sizeof(uint32_t)))
return false;
req_size = req->size * sizeof(uint32_t);
if ((req_size == 0) || (req_size > size))
return false;
if (req->offset >= size)
return false;
if ((req->offset + req_size) > size)
return false;
return true;
}
static int qfp_fuse_open(struct inode *inode, struct file *filp)
{
if (qfp_priv == NULL)
return -ENODEV;
filp->private_data = qfp_priv;
return 0;
}
static int qfp_fuse_release(struct inode *inode, struct file *filp)
{
filp->private_data = NULL;
return 0;
}
static long
qfp_fuse_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
{
int err = 0;
struct qfp_fuse_req req;
u32 fuse_buf[QFP_FUSE_BUF_SIZE];
u32 *buf = fuse_buf;
u32 *ptr = NULL;
int i;
/* Verify user arguments. */
if (_IOC_TYPE(cmd) != QFP_FUSE_IOC_MAGIC)
return -ENOTTY;
switch (cmd) {
case QFP_FUSE_IOC_READ:
if (arg == 0) {
pr_err("user space arg not supplied\n");
err = -EFAULT;
break;
}
if (copy_from_user(&req, (void __user *)arg, sizeof(req))) {
pr_err("Error copying req from user space\n");
err = -EFAULT;
break;
}
/* Check for limits */
if (is_usr_req_valid(&req) == false) {
pr_err("Invalid request\n");
err = -EINVAL;
break;
}
if (req.size > QFP_FUSE_BUF_SIZE) {
/* Allocate memory for buffer */
ptr = kzalloc(req.size * 4, GFP_KERNEL);
if (ptr == NULL) {
pr_alert("No memory for data\n");
err = -ENOMEM;
break;
}
buf = ptr;
}
if (mutex_lock_interruptible(&qfp_priv->lock)) {
err = -ERESTARTSYS;
break;
}
/* Read data */
for (i = 0; i < req.size; i++)
buf[i] = readl_relaxed(
((u32 *) (qfp_priv->base + req.offset)) + i);
if (copy_to_user((void __user *)req.data, buf, 4*(req.size))) {
pr_err("Error copying to user space\n");
err = -EFAULT;
}
mutex_unlock(&qfp_priv->lock);
break;
case QFP_FUSE_IOC_WRITE:
pr_err("Fuse-write is no longer supported.\n");
return -EPERM;
break;
default:
pr_err("Invalid ioctl command.\n");
return -ENOTTY;
}
kfree(ptr);
return err;
}
static const struct file_operations qfp_fuse_fops = {
.owner = THIS_MODULE,
.unlocked_ioctl = qfp_fuse_ioctl,
.open = qfp_fuse_open,
.release = qfp_fuse_release
};
static struct miscdevice qfp_fuse_dev = {
.minor = MISC_DYNAMIC_MINOR,
.name = "qfpfuse",
.fops = &qfp_fuse_fops
};
static int qfp_get_resource(struct platform_device *pdev,
struct qfp_resource *qfp_res)
{
struct resource *res;
uint32_t blow_status_offset = QFPROM_BLOW_STATUS_OFFSET;
uint32_t blow_timer = QFPROM_BLOW_TIMER_VALUE;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res)
return -ENODEV;
if (pdev->dev.of_node) {
struct device_node *np = pdev->dev.of_node;
if (of_property_read_u32(np, "qcom,blow-status-offset",
&blow_status_offset) == 0) {
if ((res->start + blow_status_offset) > res->end) {
pr_err("Invalid blow-status-offset\n");
return -EINVAL;
}
}
of_property_read_u32(np, "qcom,blow-timer", &blow_timer);
}
qfp_res->start = res->start;
qfp_res->size = resource_size(res);
qfp_res->blow_status_offset = blow_status_offset;
qfp_res->blow_timer = blow_timer;
return 0;
}
static int qfp_fuse_probe(struct platform_device *pdev)
{
int ret = 0;
struct qfp_resource res;
ret = qfp_get_resource(pdev, &res);
if (ret)
return ret;
/* Initialize */
qfp_priv = kzalloc(sizeof(struct qfp_priv_t), GFP_KERNEL);
if (qfp_priv == NULL) {
pr_alert("Not enough memory to initialize device\n");
return -ENOMEM;
}
qfp_priv->base = ioremap(res.start, res.size);
if (!qfp_priv->base) {
pr_warn("ioremap failed\n");
goto err;
}
qfp_priv->size = res.size;
qfp_priv->blow_status_offset = res.blow_status_offset;
qfp_priv->blow_timer = res.blow_timer;
mutex_init(&qfp_priv->lock);
ret = misc_register(&qfp_fuse_dev);
if (ret < 0)
goto err;
pr_info("Fuse driver base:%p end:%p\n", qfp_priv->base,
qfp_priv->base + qfp_priv->size);
return 0;
err:
kfree(qfp_priv);
qfp_priv = NULL;
return ret;
}
static int qfp_fuse_remove(struct platform_device *plat)
{
iounmap((void __iomem *)qfp_priv->base);
kfree(qfp_priv);
qfp_priv = NULL;
misc_deregister(&qfp_fuse_dev);
pr_info("Removing Fuse driver\n");
return 0;
}
static struct of_device_id __attribute__ ((unused)) qfp_fuse_of_match[] = {
{ .compatible = "qcom,qfp-fuse", },
{}
};
static struct platform_driver qfp_fuse_driver = {
.probe = qfp_fuse_probe,
.remove = qfp_fuse_remove,
.driver = {
.name = "qfp_fuse_driver",
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(qfp_fuse_of_match),
},
};
static int __init qfp_fuse_init(void)
{
return platform_driver_register(&qfp_fuse_driver);
}
static void __exit qfp_fuse_exit(void)
{
platform_driver_unregister(&qfp_fuse_driver);
}
MODULE_LICENSE("GPL v2");
MODULE_AUTHOR("Rohit Vaswani <rvaswani@codeaurora.org>");
MODULE_DESCRIPTION("Driver to read/write to QFPROM fuses.");
MODULE_VERSION("1.01");
module_init(qfp_fuse_init);
module_exit(qfp_fuse_exit);