1 /* arch/arm/mach-msm/last_radio_log.c
3 * Extract the log from a modem crash though SMEM
5 * Copyright (C) 2007 Google, Inc.
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
18 #include <linux/kernel.h>
19 #include <linux/module.h>
21 #include <linux/proc_fs.h>
22 #include <linux/uaccess.h>
24 #include "smd_private.h"
26 static void *radio_log_base
;
27 static size_t radio_log_size
;
29 extern void *smem_item(unsigned id
, unsigned *size
);
31 static ssize_t
last_radio_log_read(struct file
*file
, char __user
*buf
,
32 size_t len
, loff_t
*offset
)
37 if (pos
>= radio_log_size
)
40 count
= min(len
, (size_t)(radio_log_size
- pos
));
41 if (copy_to_user(buf
, radio_log_base
+ pos
, count
)) {
42 pr_err("%s: copy to user failed\n", __func__
);
50 static struct file_operations last_radio_log_fops
= {
51 .read
= last_radio_log_read
,
52 .llseek
= default_llseek
,
55 void msm_init_last_radio_log(struct module
*owner
)
57 struct proc_dir_entry
*entry
;
59 if (last_radio_log_fops
.owner
) {
60 pr_err("%s: already claimed\n", __func__
);
64 radio_log_base
= smem_item(SMEM_CLKREGIM_BSP
, &radio_log_size
);
65 if (!radio_log_base
) {
66 pr_err("%s: could not retrieve SMEM_CLKREGIM_BSP\n", __func__
);
70 entry
= create_proc_entry("last_radio_log", S_IFREG
| S_IRUGO
, NULL
);
72 pr_err("%s: could not create proc entry for radio log\n",
77 pr_err("%s: last radio log is %d bytes long\n", __func__
,
79 last_radio_log_fops
.owner
= owner
;
80 entry
->proc_fops
= &last_radio_log_fops
;
81 entry
->size
= radio_log_size
;
83 EXPORT_SYMBOL(msm_init_last_radio_log
);