1 #ifndef __PSTORE_INTERNAL_H__
2 #define __PSTORE_INTERNAL_H__
4 #include <linux/types.h>
5 #include <linux/time.h>
6 #include <linux/pstore.h>
8 #if NR_CPUS <= 2 && defined(CONFIG_ARM_THUMB)
9 #define PSTORE_CPU_IN_IP 0x1
10 #elif NR_CPUS <= 4 && defined(CONFIG_ARM)
11 #define PSTORE_CPU_IN_IP 0x3
14 struct pstore_ftrace_record
{
16 unsigned long parent_ip
;
17 #ifndef PSTORE_CPU_IN_IP
23 pstore_ftrace_encode_cpu(struct pstore_ftrace_record
*rec
, unsigned int cpu
)
25 #ifndef PSTORE_CPU_IN_IP
32 static inline unsigned int
33 pstore_ftrace_decode_cpu(struct pstore_ftrace_record
*rec
)
35 #ifndef PSTORE_CPU_IN_IP
38 return rec
->ip
& PSTORE_CPU_IN_IP
;
42 #ifdef CONFIG_PSTORE_FTRACE
43 extern void pstore_register_ftrace(void);
45 static inline void pstore_register_ftrace(void) {}
48 #ifdef CONFIG_PSTORE_PMSG
49 extern void pstore_register_pmsg(void);
51 static inline void pstore_register_pmsg(void) {}
54 extern struct pstore_info
*psinfo
;
56 extern void pstore_set_kmsg_bytes(int);
57 extern void pstore_get_records(int);
58 extern int pstore_mkfile(enum pstore_type_id
, char *psname
, u64 id
,
59 int count
, char *data
, bool compressed
,
60 size_t size
, struct timespec time
,
61 struct pstore_info
*psi
);
62 extern int pstore_is_mounted(void);