| /* Copyright (c) 2011, Code Aurora Forum. 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. |
| * |
| */ |
| #include <linux/debugfs.h> |
| #include <linux/delay.h> |
| #include <linux/errno.h> |
| #include <linux/init.h> |
| #include <linux/io.h> |
| #include <linux/kernel.h> |
| #include <linux/module.h> |
| #include <linux/platform_device.h> |
| #include <linux/sched.h> |
| #include <linux/slab.h> |
| #include <linux/types.h> |
| #include <linux/mm.h> |
| #include <asm/uaccess.h> |
| |
| #include <mach/msm_iomap.h> |
| #include "rpm_stats.h" |
| |
| enum { |
| ID_COUNTER, |
| ID_ACCUM_TIME_SCLK, |
| ID_MAX, |
| }; |
| |
| static char *msm_rpmstats_id_labels[ID_MAX] = { |
| [ID_COUNTER] = "Count", |
| [ID_ACCUM_TIME_SCLK] = "Total time(uSec)", |
| }; |
| |
| #define SCLK_HZ 32768 |
| struct msm_rpmstats_record{ |
| char name[32]; |
| uint32_t id; |
| uint32_t val; |
| }; |
| |
| struct msm_rpmstats_private_data{ |
| void __iomem *reg_base; |
| u32 num_records; |
| u32 read_idx; |
| u32 len; |
| char buf[128]; |
| struct msm_rpmstats_platform_data *platform_data; |
| }; |
| |
| static inline unsigned long msm_rpmstats_read_register(void __iomem *regbase, |
| int index, int offset) |
| { |
| return readl_relaxed(regbase + index * 12 + (offset + 1) * 4); |
| } |
| static void msm_rpmstats_strcpy(char *dest, char *src) |
| { |
| union { |
| char ch[4]; |
| unsigned long word; |
| } string; |
| int index = 0; |
| |
| do { |
| int i; |
| string.word = readl_relaxed(src + 4 * index); |
| for (i = 0; i < 4; i++) { |
| *dest++ = string.ch[i]; |
| if (!string.ch[i]) |
| break; |
| } |
| index++; |
| } while (*(dest-1)); |
| |
| } |
| static int msm_rpmstats_copy_stats(struct msm_rpmstats_private_data *pdata) |
| { |
| |
| struct msm_rpmstats_record record; |
| unsigned long ptr; |
| unsigned long offset; |
| char *str; |
| uint64_t usec; |
| |
| ptr = msm_rpmstats_read_register(pdata->reg_base, pdata->read_idx, 0); |
| offset = (ptr - (unsigned long)pdata->platform_data->phys_addr_base); |
| |
| if (offset > pdata->platform_data->phys_size) |
| str = (char *)ioremap(ptr, SZ_256); |
| else |
| str = (char *) pdata->reg_base + offset; |
| |
| msm_rpmstats_strcpy(record.name, str); |
| |
| if (offset > pdata->platform_data->phys_size) |
| iounmap(str); |
| |
| record.id = msm_rpmstats_read_register(pdata->reg_base, |
| pdata->read_idx, 1); |
| record.val = msm_rpmstats_read_register(pdata->reg_base, |
| pdata->read_idx, 2); |
| |
| if (record.id == ID_ACCUM_TIME_SCLK) { |
| usec = record.val * USEC_PER_SEC; |
| do_div(usec, SCLK_HZ); |
| } else |
| usec = (unsigned long)record.val; |
| |
| pdata->read_idx++; |
| |
| return snprintf(pdata->buf, sizeof(pdata->buf), |
| "RPM Mode:%s\n\t%s:%llu\n", |
| record.name, |
| msm_rpmstats_id_labels[record.id], |
| usec); |
| } |
| |
| static int msm_rpmstats_file_read(struct file *file, char __user *bufu, |
| size_t count, loff_t *ppos) |
| { |
| struct msm_rpmstats_private_data *prvdata; |
| prvdata = file->private_data; |
| |
| if (!prvdata) |
| return -EINVAL; |
| |
| if (!bufu || count < 0) |
| return -EINVAL; |
| |
| if (!prvdata->num_records) |
| prvdata->num_records = readl_relaxed(prvdata->reg_base); |
| |
| if ((*ppos >= prvdata->len) |
| && (prvdata->read_idx < prvdata->num_records)) { |
| prvdata->len = msm_rpmstats_copy_stats(prvdata); |
| *ppos = 0; |
| } |
| |
| return simple_read_from_buffer(bufu, count, ppos, |
| prvdata->buf, prvdata->len); |
| } |
| |
| static int msm_rpmstats_file_open(struct inode *inode, struct file *file) |
| { |
| struct msm_rpmstats_private_data *prvdata; |
| struct msm_rpmstats_platform_data *pdata; |
| |
| pdata = inode->i_private; |
| |
| file->private_data = |
| kmalloc(sizeof(struct msm_rpmstats_private_data), GFP_KERNEL); |
| |
| if (!file->private_data) |
| return -ENOMEM; |
| prvdata = file->private_data; |
| |
| prvdata->reg_base = ioremap(pdata->phys_addr_base, pdata->phys_size); |
| if (!prvdata->reg_base) { |
| kfree(file->private_data); |
| prvdata = NULL; |
| pr_err("%s: ERROR could not ioremap start=%p, len=%u\n", |
| __func__, (void *)pdata->phys_addr_base, |
| pdata->phys_size); |
| return -EBUSY; |
| } |
| |
| prvdata->read_idx = prvdata->num_records = prvdata->len = 0; |
| prvdata->platform_data = pdata; |
| return 0; |
| } |
| |
| static int msm_rpmstats_file_close(struct inode *inode, struct file *file) |
| { |
| struct msm_rpmstats_private_data *private = file->private_data; |
| |
| if (private->reg_base) |
| iounmap(private->reg_base); |
| kfree(file->private_data); |
| |
| return 0; |
| } |
| |
| static const struct file_operations msm_rpmstats_fops = { |
| .owner = THIS_MODULE, |
| .open = msm_rpmstats_file_open, |
| .read = msm_rpmstats_file_read, |
| .release = msm_rpmstats_file_close, |
| .llseek = no_llseek, |
| }; |
| |
| static int __devinit msm_rpmstats_probe(struct platform_device *pdev) |
| { |
| struct dentry *dent; |
| struct msm_rpmstats_platform_data *pdata; |
| |
| pdata = pdev->dev.platform_data; |
| if (!pdata) |
| return -EINVAL; |
| dent = debugfs_create_file("rpm_stats", S_IRUGO, NULL, |
| pdev->dev.platform_data, &msm_rpmstats_fops); |
| |
| if (!dent) { |
| pr_err("%s: ERROR debugfs_create_file failed\n", __func__); |
| return -ENOMEM; |
| } |
| platform_set_drvdata(pdev, dent); |
| return 0; |
| } |
| |
| static int __devexit msm_rpmstats_remove(struct platform_device *pdev) |
| { |
| struct dentry *dent; |
| |
| dent = platform_get_drvdata(pdev); |
| debugfs_remove(dent); |
| platform_set_drvdata(pdev, NULL); |
| return 0; |
| } |
| static struct platform_driver msm_rpmstats_driver = { |
| .probe = msm_rpmstats_probe, |
| .remove = __devexit_p(msm_rpmstats_remove), |
| .driver = { |
| .name = "msm_rpm_stat", |
| .owner = THIS_MODULE, |
| }, |
| }; |
| static int __init msm_rpmstats_init(void) |
| { |
| return platform_driver_register(&msm_rpmstats_driver); |
| } |
| static void __exit msm_rpmstats_exit(void) |
| { |
| platform_driver_unregister(&msm_rpmstats_driver); |
| } |
| module_init(msm_rpmstats_init); |
| module_exit(msm_rpmstats_exit); |
| |
| MODULE_LICENSE("GPL v2"); |
| MODULE_DESCRIPTION("MSM RPM Statistics driver"); |
| MODULE_VERSION("1.0"); |
| MODULE_ALIAS("platform:msm_stat_log"); |