x86 mmiotrace: implement mmiotrace_printk()
[linux-2.6/libata-dev.git] / include / linux / mmiotrace.h
blob60cc3bf5c538821a915652e15eec87db68a1417f
1 #ifndef MMIOTRACE_H
2 #define MMIOTRACE_H
4 #include <linux/types.h>
5 #include <linux/list.h>
7 struct kmmio_probe;
8 struct pt_regs;
10 typedef void (*kmmio_pre_handler_t)(struct kmmio_probe *,
11 struct pt_regs *, unsigned long addr);
12 typedef void (*kmmio_post_handler_t)(struct kmmio_probe *,
13 unsigned long condition, struct pt_regs *);
15 struct kmmio_probe {
16 struct list_head list; /* kmmio internal list */
17 unsigned long addr; /* start location of the probe point */
18 unsigned long len; /* length of the probe region */
19 kmmio_pre_handler_t pre_handler; /* Called before addr is executed. */
20 kmmio_post_handler_t post_handler; /* Called after addr is executed */
21 void *private;
24 /* kmmio is active by some kmmio_probes? */
25 static inline int is_kmmio_active(void)
27 extern unsigned int kmmio_count;
28 return kmmio_count;
31 extern int register_kmmio_probe(struct kmmio_probe *p);
32 extern void unregister_kmmio_probe(struct kmmio_probe *p);
34 /* Called from page fault handler. */
35 extern int kmmio_handler(struct pt_regs *regs, unsigned long addr);
37 #ifdef CONFIG_MMIOTRACE
38 /* Called from ioremap.c */
39 extern void mmiotrace_ioremap(resource_size_t offset, unsigned long size,
40 void __iomem *addr);
41 extern void mmiotrace_iounmap(volatile void __iomem *addr);
43 /* For anyone to insert markers. Remember trailing newline. */
44 extern int mmiotrace_printk(const char *fmt, ...)
45 __attribute__ ((format (printf, 1, 2)));
46 #else
47 static inline void mmiotrace_ioremap(resource_size_t offset,
48 unsigned long size, void __iomem *addr)
52 static inline void mmiotrace_iounmap(volatile void __iomem *addr)
56 static inline int mmiotrace_printk(const char *fmt, ...)
57 __attribute__ ((format (printf, 1, 0)));
59 static inline int mmiotrace_printk(const char *fmt, ...)
61 return 0;
63 #endif /* CONFIG_MMIOTRACE */
65 enum mm_io_opcode {
66 MMIO_READ = 0x1, /* struct mmiotrace_rw */
67 MMIO_WRITE = 0x2, /* struct mmiotrace_rw */
68 MMIO_PROBE = 0x3, /* struct mmiotrace_map */
69 MMIO_UNPROBE = 0x4, /* struct mmiotrace_map */
70 MMIO_MARKER = 0x5, /* raw char data */
71 MMIO_UNKNOWN_OP = 0x6, /* struct mmiotrace_rw */
74 struct mmiotrace_rw {
75 resource_size_t phys; /* PCI address of register */
76 unsigned long value;
77 unsigned long pc; /* optional program counter */
78 int map_id;
79 unsigned char opcode; /* one of MMIO_{READ,WRITE,UNKNOWN_OP} */
80 unsigned char width; /* size of register access in bytes */
83 struct mmiotrace_map {
84 resource_size_t phys; /* base address in PCI space */
85 unsigned long virt; /* base virtual address */
86 unsigned long len; /* mapping size */
87 int map_id;
88 unsigned char opcode; /* MMIO_PROBE or MMIO_UNPROBE */
91 /* in kernel/trace/trace_mmiotrace.c */
92 extern void enable_mmiotrace(void);
93 extern void disable_mmiotrace(void);
94 extern void mmio_trace_rw(struct mmiotrace_rw *rw);
95 extern void mmio_trace_mapping(struct mmiotrace_map *map);
96 extern int mmio_trace_printk(const char *fmt, va_list args);
98 #endif /* MMIOTRACE_H */