blob: 2e7e5fcd8234207295681c701542eb8d1a0131c2 [file] [log] [blame]
/*
* Copyright (C) 2013-2016 Samsung Electronics, Inc.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* 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.
*/
#include <linux/cdev.h>
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/gfp.h>
#include <linux/ioctl.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/spinlock.h>
#include <linux/string.h>
#include <linux/vmalloc.h>
#include <linux/uaccess.h>
#include "tzdev.h"
#include "tzlog.h"
#include "tz_cdev.h"
#include "tz_iwcbuf.h"
#include "tz_iwio.h"
#include "tz_panic_dump.h"
MODULE_AUTHOR("Pavel Bogachev <p.bogachev@partner.samsung.com>");
MODULE_DESCRIPTION("Trustzone panic dump module");
MODULE_LICENSE("GPL");
#define TZ_PANIC_DUMP_DEVICE_NAME "tz_panic_dump"
static DEFINE_SPINLOCK(tz_panic_dump_slock);
static char *tz_panic_dump;
static unsigned long tz_panic_dump_size;
static long tz_panic_dump_initialize(void)
{
struct tz_iwio_aux_channel *aux_ch;
uint32_t size;
aux_ch = tz_iwio_get_aux_channel();
if (tzdev_smc_tz_panic_dump_init()) {
tz_iwio_put_aux_channel();
return -1;
}
memcpy(&size, aux_ch->buffer, sizeof(uint32_t));
tz_iwio_put_aux_channel();
return size;
}
int tz_panic_dump_alloc_buffer(void)
{
long size;
size = tz_panic_dump_initialize();
if (size < 0) {
tzdev_print(0, "Failed to initialize IW panic dump module\n");
return 0;
}
tz_panic_dump = tz_iwio_alloc_iw_channel(TZ_IWIO_CONNECT_PANIC_DUMP,
DIV_ROUND_UP(size, PAGE_SIZE));
if (!tz_panic_dump) {
tzdev_print(0, "Failed to allocate IW buffer for panic dump\n");
return 0;
}
tz_panic_dump_size = size;
return 0;
}
static ssize_t tz_panic_dump_read(struct file *file, char __user *buf,
size_t count, loff_t *ppos)
{
ssize_t ret;
if (!count)
return 0;
spin_lock(&tz_panic_dump_slock);
if (!tz_panic_dump || !tz_panic_dump_size) {
ret = -EPERM;
goto out;
}
if (*ppos >= tz_panic_dump_size) {
ret = 0;
goto out;
}
if (*ppos + count > tz_panic_dump_size)
count = tz_panic_dump_size - *ppos;
if (copy_to_user(buf, tz_panic_dump + *ppos, count)) {
ret = -EFAULT;
goto out;
}
*ppos += count;
ret = count;
out:
spin_unlock(&tz_panic_dump_slock);
return ret;
}
static long tz_panic_dump_unlocked_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
{
__u32 __user *argp = (__u32 *) arg;
__u32 size;
if (!tz_panic_dump)
return -EPERM;
size = tz_panic_dump_size;
return put_user(size, argp);
}
static const struct file_operations tz_panic_dump_fops = {
.owner = THIS_MODULE,
.read = tz_panic_dump_read,
.unlocked_ioctl = tz_panic_dump_unlocked_ioctl,
#ifdef CONFIG_COMPAT
.compat_ioctl = tz_panic_dump_unlocked_ioctl,
#endif /* CONFIG_COMPAT */
};
static struct tz_cdev tz_panic_dump_cdev = {
.name = TZ_PANIC_DUMP_DEVICE_NAME,
.fops = &tz_panic_dump_fops,
.owner = THIS_MODULE,
};
static int __init tz_panic_dump_init(void)
{
int rc;
rc = tz_cdev_register(&tz_panic_dump_cdev);
return rc;
}
static void __exit tz_panic_dump_exit(void)
{
tz_cdev_unregister(&tz_panic_dump_cdev);
}
module_init(tz_panic_dump_init);
module_exit(tz_panic_dump_exit);