android_kernel_samsung_msm8976/drivers/misc/tima_debug_log.c

125 lines
3.6 KiB
C

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/types.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/mm.h>
#include <linux/highmem.h>
#include <linux/io.h>
#include <linux/types.h>
#define DEBUG_LOG_START (0x85B00000)
#define DEBUG_LOG_SIZE (1<<20)
#define DEBUG_LOG_MAGIC (0xaabbccdd)
#define DEBUG_LOG_ENTRY_SIZE 128
typedef struct debug_log_entry_s
{
uint32_t timestamp; /* timestamp at which log entry was made*/
uint32_t logger_id; /* id is 1 for tima, 2 for lkmauth app */
#define DEBUG_LOG_MSG_SIZE (DEBUG_LOG_ENTRY_SIZE - sizeof(uint32_t) - sizeof(uint32_t))
char log_msg[DEBUG_LOG_MSG_SIZE]; /* buffer for the entry */
} __attribute__ ((packed)) debug_log_entry_t;
typedef struct debug_log_header_s
{
uint32_t magic; /* magic number */
uint32_t log_start_addr; /* address at which log starts */
uint32_t log_write_addr; /* address at which next entry is written*/
uint32_t num_log_entries; /* number of log entries */
char padding[DEBUG_LOG_ENTRY_SIZE - 4 * sizeof(uint32_t)];
} __attribute__ ((packed)) debug_log_header_t;
#define DRIVER_DESC "A kernel module to read tima debug log"
unsigned long *tima_debug_log_addr = 0;
#ifdef CONFIG_TIMA_GET_QSEE_LOGS_USING_RDX
void set_qsee_log_address(unsigned int address);
#endif
ssize_t tima_read(struct file *filep, char __user *buf, size_t size, loff_t *offset)
{
/* First check is to get rid of integer overflow exploits */
if (size > DEBUG_LOG_SIZE || (*offset) + size > DEBUG_LOG_SIZE) {
printk(KERN_ERR"Extra read\n");
return -EINVAL;
}
memcpy_fromio(buf, (const char *)tima_debug_log_addr + (*offset), size);
*offset += size;
return size;
}
static const struct file_operations tima_proc_fops = {
.read = tima_read,
};
/**
* tima_debug_log_read_init - Initialization function for TIMA
*
* It creates and initializes tima proc entry with initialized read handler
*/
static int __init tima_debug_log_read_init(void)
{
if (proc_create("tima_debug_log", 0644,NULL, &tima_proc_fops) == NULL) {
printk(KERN_ERR"tima_debug_log_read_init: Error creating proc entry\n");
goto error_return;
}
printk(KERN_INFO"tima_debug_log_read_init: Registering /proc/tima_debug_log Interface \n");
tima_debug_log_addr = (unsigned long *)ioremap(DEBUG_LOG_START, DEBUG_LOG_SIZE);
if (tima_debug_log_addr == NULL) {
printk(KERN_ERR"tima_debug_log_read_init: ioremap Failed\n");
goto ioremap_failed;
}
return 0;
ioremap_failed:
remove_proc_entry("tima_debug_log", NULL);
error_return:
return -1;
}
/**
* tima_debug_log_read_exit - Cleanup Code for TIMA
*
* It removes /proc/tima proc entry and does the required cleanup operations
*/
static void __exit tima_debug_log_read_exit(void)
{
remove_proc_entry("tima_debug_log", NULL);
printk(KERN_INFO"Deregistering /proc/tima_debug_log Interface\n");
if(tima_debug_log_addr != NULL)
iounmap(tima_debug_log_addr);
}
module_init(tima_debug_log_read_init);
module_exit(tima_debug_log_read_exit);
MODULE_DESCRIPTION(DRIVER_DESC);
#ifdef CONFIG_TIMA_GET_QSEE_LOGS_USING_RDX
#define QSEE_LOG_ADDR_LOC 0x85A6E000
void set_qsee_log_address(unsigned int address)
{
void *qsee_log_address = NULL;
qsee_log_address = ioremap_nocache(QSEE_LOG_ADDR_LOC, SZ_4K);
if(!qsee_log_address)
{
printk(KERN_ERR"set_qsee_log_address failed\n");
return;
}
memcpy(qsee_log_address, &address, sizeof(unsigned int));
iounmap(qsee_log_address);
return;
}
EXPORT_SYMBOL(set_qsee_log_address);
#endif