| 
									
										
										
										
											2010-04-02 11:48:03 -05:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Created by: Jason Wessel <jason.wessel@windriver.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2009 Wind River Systems, Inc.  All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is licensed under the terms of the GNU General Public | 
					
						
							|  |  |  |  * License version 2. This program is licensed "as is" without any | 
					
						
							|  |  |  |  * warranty of any kind, whether express or implied. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _DEBUG_CORE_H_
 | 
					
						
							|  |  |  | #define _DEBUG_CORE_H_
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * These are the private implementation headers between the kernel | 
					
						
							|  |  |  |  * debugger core and the debugger front end code. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* kernel debug core data structures */ | 
					
						
							|  |  |  | struct kgdb_state { | 
					
						
							|  |  |  | 	int			ex_vector; | 
					
						
							|  |  |  | 	int			signo; | 
					
						
							|  |  |  | 	int			err_code; | 
					
						
							|  |  |  | 	int			cpu; | 
					
						
							|  |  |  | 	int			pass_exception; | 
					
						
							|  |  |  | 	unsigned long		thr_query; | 
					
						
							|  |  |  | 	unsigned long		threadid; | 
					
						
							|  |  |  | 	long			kgdb_usethreadid; | 
					
						
							|  |  |  | 	struct pt_regs		*linux_regs; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Exception state values */ | 
					
						
							|  |  |  | #define DCPU_WANT_MASTER 0x1 /* Waiting to become a master kgdb cpu */
 | 
					
						
							|  |  |  | #define DCPU_NEXT_MASTER 0x2 /* Transition from one master cpu to another */
 | 
					
						
							|  |  |  | #define DCPU_IS_SLAVE    0x4 /* Slave cpu enter exception */
 | 
					
						
							|  |  |  | #define DCPU_SSTEP       0x8 /* CPU is single stepping */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct debuggerinfo_struct { | 
					
						
							|  |  |  | 	void			*debuggerinfo; | 
					
						
							|  |  |  | 	struct task_struct	*task; | 
					
						
							|  |  |  | 	int			exception_state; | 
					
						
							| 
									
										
										
										
											2010-05-20 21:04:21 -05:00
										 |  |  | 	int			ret_state; | 
					
						
							|  |  |  | 	int			irq_depth; | 
					
						
							| 
									
										
										
										
											2010-05-21 08:46:00 -05:00
										 |  |  | 	int			enter_kgdb; | 
					
						
							| 
									
										
										
										
											2010-04-02 11:48:03 -05:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern struct debuggerinfo_struct kgdb_info[]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* kernel debug core break point routines */ | 
					
						
							|  |  |  | extern int dbg_remove_all_break(void); | 
					
						
							|  |  |  | extern int dbg_set_sw_break(unsigned long addr); | 
					
						
							|  |  |  | extern int dbg_remove_sw_break(unsigned long addr); | 
					
						
							|  |  |  | extern int dbg_activate_sw_breakpoints(void); | 
					
						
							| 
									
										
										
										
											2010-05-20 21:04:21 -05:00
										 |  |  | extern int dbg_deactivate_sw_breakpoints(void); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* polled character access to i/o module */ | 
					
						
							|  |  |  | extern int dbg_io_get_char(void); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* stub return value for switching between the gdbstub and kdb */ | 
					
						
							|  |  |  | #define DBG_PASS_EVENT -12345
 | 
					
						
							|  |  |  | /* Switch from one cpu to another */ | 
					
						
							|  |  |  | #define DBG_SWITCH_CPU_EVENT -123456
 | 
					
						
							|  |  |  | extern int dbg_switch_cpu; | 
					
						
							| 
									
										
										
										
											2010-04-02 11:48:03 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* gdbstub interface functions */ | 
					
						
							|  |  |  | extern int gdb_serial_stub(struct kgdb_state *ks); | 
					
						
							|  |  |  | extern void gdbstub_msg_write(const char *s, int len); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-20 21:04:21 -05:00
										 |  |  | /* gdbstub functions used for kdb <-> gdbstub transition */ | 
					
						
							|  |  |  | extern int gdbstub_state(struct kgdb_state *ks, char *cmd); | 
					
						
							| 
									
										
										
										
											2010-05-20 21:04:24 -05:00
										 |  |  | extern int dbg_kdb_mode; | 
					
						
							| 
									
										
										
										
											2010-05-20 21:04:21 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_KGDB_KDB
 | 
					
						
							|  |  |  | extern int kdb_stub(struct kgdb_state *ks); | 
					
						
							| 
									
										
										
										
											2010-05-20 21:04:24 -05:00
										 |  |  | extern int kdb_parse(const char *cmdstr); | 
					
						
							| 
									
										
										
										
											2013-01-02 13:20:49 -08:00
										 |  |  | extern int kdb_common_init_state(struct kgdb_state *ks); | 
					
						
							|  |  |  | extern int kdb_common_deinit_state(void); | 
					
						
							| 
									
										
										
										
											2010-05-20 21:04:21 -05:00
										 |  |  | #else /* ! CONFIG_KGDB_KDB */
 | 
					
						
							|  |  |  | static inline int kdb_stub(struct kgdb_state *ks) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return DBG_PASS_EVENT; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif /* CONFIG_KGDB_KDB */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-02 11:48:03 -05:00
										 |  |  | #endif /* _DEBUG_CORE_H_ */
 |