1 /* arch/arm/mach-msm/smd_debug.c
3 * Copyright (C) 2007 Google, Inc.
4 * Author: Brian Swetland <swetland@google.com>
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
17 #include <linux/debugfs.h>
18 #include <linux/list.h>
20 #include <mach/msm_iomap.h>
22 #include "smd_private.h"
24 #if defined(CONFIG_DEBUG_FS)
26 static char *chstate(unsigned n
)
41 case SMD_SS_RESET_OPENING
:
49 static int dump_ch(char *buf
, int max
, struct smd_channel
*ch
)
51 volatile struct smd_half_channel
*s
= ch
->send
;
52 volatile struct smd_half_channel
*r
= ch
->recv
;
57 " %8s(%05d/%05d) %c%c%c%c%c%c%c <->"
58 " %8s(%05d/%05d) %c%c%c%c%c%c%c '%s'\n", ch
->n
,
59 chstate(s
->state
), s
->tail
, s
->head
,
66 s
->fSTATE
? 'S' : 's',
67 chstate(r
->state
), r
->tail
, r
->head
,
74 r
->fSTATE
? 'S' : 's',
79 static int debug_read_stat(char *buf
, int max
)
84 msg
= smem_find(ID_DIAG_ERR_MSG
, SZ_DIAG_ERR_MSG
);
86 if (raw_smsm_get_state(SMSM_STATE_MODEM
) & SMSM_RESET
)
87 i
+= scnprintf(buf
+ i
, max
- i
,
88 "smsm: ARM9 HAS CRASHED\n");
90 i
+= scnprintf(buf
+ i
, max
- i
, "smsm: a9: %08x a11: %08x\n",
91 raw_smsm_get_state(SMSM_STATE_MODEM
),
92 raw_smsm_get_state(SMSM_STATE_APPS
));
93 #ifdef CONFIG_ARCH_MSM_SCORPION
94 i
+= scnprintf(buf
+ i
, max
- i
, "smsm dem: apps: %08x modem: %08x "
95 "qdsp6: %08x power: %08x time: %08x\n",
96 raw_smsm_get_state(SMSM_STATE_APPS_DEM
),
97 raw_smsm_get_state(SMSM_STATE_MODEM_DEM
),
98 raw_smsm_get_state(SMSM_STATE_QDSP6_DEM
),
99 raw_smsm_get_state(SMSM_STATE_POWER_MASTER_DEM
),
100 raw_smsm_get_state(SMSM_STATE_TIME_MASTER_DEM
));
103 msg
[SZ_DIAG_ERR_MSG
- 1] = 0;
104 i
+= scnprintf(buf
+ i
, max
- i
, "diag: '%s'\n", msg
);
109 static int debug_read_mem(char *buf
, int max
)
112 struct smem_shared
*shared
= (void *) MSM_SHARED_RAM_BASE
;
113 struct smem_heap_entry
*toc
= shared
->heap_toc
;
116 i
+= scnprintf(buf
+ i
, max
- i
,
117 "heap: init=%d free=%d remain=%d\n",
118 shared
->heap_info
.initialized
,
119 shared
->heap_info
.free_offset
,
120 shared
->heap_info
.heap_remaining
);
122 for (n
= 0; n
< SMEM_NUM_ITEMS
; n
++) {
123 if (toc
[n
].allocated
== 0)
125 i
+= scnprintf(buf
+ i
, max
- i
,
126 "%04d: offset %08x size %08x\n",
127 n
, toc
[n
].offset
, toc
[n
].size
);
132 static int debug_read_ch(char *buf
, int max
)
134 struct smd_channel
*ch
;
138 spin_lock_irqsave(&smd_lock
, flags
);
139 list_for_each_entry(ch
, &smd_ch_list_dsp
, ch_list
)
140 i
+= dump_ch(buf
+ i
, max
- i
, ch
);
141 list_for_each_entry(ch
, &smd_ch_list_modem
, ch_list
)
142 i
+= dump_ch(buf
+ i
, max
- i
, ch
);
143 list_for_each_entry(ch
, &smd_ch_closed_list
, ch_list
)
144 i
+= dump_ch(buf
+ i
, max
- i
, ch
);
145 spin_unlock_irqrestore(&smd_lock
, flags
);
150 static int debug_read_version(char *buf
, int max
)
152 struct smem_shared
*shared
= (void *) MSM_SHARED_RAM_BASE
;
153 unsigned version
= shared
->version
[VERSION_MODEM
];
154 return sprintf(buf
, "%d.%d\n", version
>> 16, version
& 0xffff);
157 static int debug_read_build_id(char *buf
, int max
)
162 data
= smem_item(SMEM_HW_SW_BUILD_ID
, &size
);
168 memcpy(buf
, data
, size
);
173 static int debug_read_alloc_tbl(char *buf
, int max
)
175 struct smd_alloc_elm
*shared
;
178 shared
= smem_find(ID_CH_ALLOC_TBL
, sizeof(*shared
) * 64);
180 for (n
= 0; n
< 64; n
++) {
181 if (shared
[n
].ref_count
== 0)
183 i
+= scnprintf(buf
+ i
, max
- i
,
184 "%03d: %-20s cid=%02d type=%03d "
185 "kind=%02d ref_count=%d\n",
186 n
, shared
[n
].name
, shared
[n
].cid
,
187 shared
[n
].ctype
& 0xff,
188 (shared
[n
].ctype
>> 8) & 0xf,
189 shared
[n
].ref_count
);
195 #define DEBUG_BUFMAX 4096
196 static char debug_buffer
[DEBUG_BUFMAX
];
198 static ssize_t
debug_read(struct file
*file
, char __user
*buf
,
199 size_t count
, loff_t
*ppos
)
201 int (*fill
)(char *buf
, int max
) = file
->private_data
;
202 int bsize
= fill(debug_buffer
, DEBUG_BUFMAX
);
203 return simple_read_from_buffer(buf
, count
, ppos
, debug_buffer
, bsize
);
206 static int debug_open(struct inode
*inode
, struct file
*file
)
208 file
->private_data
= inode
->i_private
;
212 static const struct file_operations debug_ops
= {
215 .llseek
= default_llseek
,
218 static void debug_create(const char *name
, mode_t mode
,
220 int (*fill
)(char *buf
, int max
))
222 debugfs_create_file(name
, mode
, dent
, fill
, &debug_ops
);
225 static int smd_debugfs_init(void)
229 dent
= debugfs_create_dir("smd", 0);
233 debug_create("ch", 0444, dent
, debug_read_ch
);
234 debug_create("stat", 0444, dent
, debug_read_stat
);
235 debug_create("mem", 0444, dent
, debug_read_mem
);
236 debug_create("version", 0444, dent
, debug_read_version
);
237 debug_create("tbl", 0444, dent
, debug_read_alloc_tbl
);
238 debug_create("build", 0444, dent
, debug_read_build_id
);
243 late_initcall(smd_debugfs_init
);
247 #define MAX_NUM_SLEEP_CLIENTS 64
248 #define MAX_SLEEP_NAME_LEN 8
250 #define NUM_GPIO_INT_REGISTERS 6
251 #define GPIO_SMEM_NUM_GROUPS 2
252 #define GPIO_SMEM_MAX_PC_INTERRUPTS 8
254 struct tramp_gpio_save
{
257 unsigned int polarity
;
260 struct tramp_gpio_smem
{
261 uint16_t num_fired
[GPIO_SMEM_NUM_GROUPS
];
262 uint16_t fired
[GPIO_SMEM_NUM_GROUPS
][GPIO_SMEM_MAX_PC_INTERRUPTS
];
263 uint32_t enabled
[NUM_GPIO_INT_REGISTERS
];
264 uint32_t detection
[NUM_GPIO_INT_REGISTERS
];
265 uint32_t polarity
[NUM_GPIO_INT_REGISTERS
];
269 void smsm_print_sleep_info(void)
273 #ifndef CONFIG_ARCH_MSM_SCORPION
274 struct tramp_gpio_smem
*gpio
;
275 struct smsm_interrupt_info
*int_info
;
279 spin_lock_irqsave(&smem_lock
, flags
);
281 ptr
= smem_alloc(SMEM_SMSM_SLEEP_DELAY
, sizeof(*ptr
));
283 pr_info("SMEM_SMSM_SLEEP_DELAY: %x\n", *ptr
);
285 ptr
= smem_alloc(SMEM_SMSM_LIMIT_SLEEP
, sizeof(*ptr
));
287 pr_info("SMEM_SMSM_LIMIT_SLEEP: %x\n", *ptr
);
289 ptr
= smem_alloc(SMEM_SLEEP_POWER_COLLAPSE_DISABLED
, sizeof(*ptr
));
291 pr_info("SMEM_SLEEP_POWER_COLLAPSE_DISABLED: %x\n", *ptr
);
293 #ifndef CONFIG_ARCH_MSM_SCORPION
294 int_info
= smem_alloc(SMEM_SMSM_INT_INFO
, sizeof(*int_info
));
296 pr_info("SMEM_SMSM_INT_INFO %x %x %x\n",
297 int_info
->interrupt_mask
,
298 int_info
->pending_interrupts
,
299 int_info
->wakeup_reason
);
301 gpio
= smem_alloc(SMEM_GPIO_INT
, sizeof(*gpio
));
304 for (i
= 0; i
< NUM_GPIO_INT_REGISTERS
; i
++)
305 pr_info("SMEM_GPIO_INT: %d: e %x d %x p %x\n",
306 i
, gpio
->enabled
[i
], gpio
->detection
[i
],
309 for (i
= 0; i
< GPIO_SMEM_NUM_GROUPS
; i
++)
310 pr_info("SMEM_GPIO_INT: %d: f %d: %d %d...\n",
311 i
, gpio
->num_fired
[i
], gpio
->fired
[i
][0],
316 spin_unlock_irqrestore(&smem_lock
, flags
);