3 * Intel Management Engine Interface (Intel MEI) Linux driver
4 * Copyright (c) 2015, Intel Corporation.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 #if !defined(_MEI_TRACE_H_) || defined(TRACE_HEADER_MULTI_READ)
20 #include <linux/stringify.h>
21 #include <linux/types.h>
22 #include <linux/tracepoint.h>
24 #include <linux/device.h>
27 #define TRACE_SYSTEM mei
29 TRACE_EVENT(mei_reg_read
,
30 TP_PROTO(const struct device
*dev
, const char *reg
, u32 offs
, u32 val
),
31 TP_ARGS(dev
, reg
, offs
, val
),
33 __string(dev
, dev_name(dev
))
34 __field(const char *, reg
)
39 __assign_str(dev
, dev_name(dev
))
44 TP_printk("[%s] read %s:[%#x] = %#x",
45 __get_str(dev
), __entry
->reg
, __entry
->offs
, __entry
->val
)
48 TRACE_EVENT(mei_reg_write
,
49 TP_PROTO(const struct device
*dev
, const char *reg
, u32 offs
, u32 val
),
50 TP_ARGS(dev
, reg
, offs
, val
),
52 __string(dev
, dev_name(dev
))
53 __field(const char *, reg
)
58 __assign_str(dev
, dev_name(dev
))
63 TP_printk("[%s] write %s[%#x] = %#x",
64 __get_str(dev
), __entry
->reg
, __entry
->offs
, __entry
->val
)
67 TRACE_EVENT(mei_pci_cfg_read
,
68 TP_PROTO(const struct device
*dev
, const char *reg
, u32 offs
, u32 val
),
69 TP_ARGS(dev
, reg
, offs
, val
),
71 __string(dev
, dev_name(dev
))
72 __field(const char *, reg
)
77 __assign_str(dev
, dev_name(dev
))
82 TP_printk("[%s] pci cfg read %s:[%#x] = %#x",
83 __get_str(dev
), __entry
->reg
, __entry
->offs
, __entry
->val
)
86 #endif /* _MEI_TRACE_H_ */
88 /* This part must be outside protection */
89 #undef TRACE_INCLUDE_PATH
90 #undef TRACE_INCLUDE_FILE
91 #define TRACE_INCLUDE_PATH .
92 #define TRACE_INCLUDE_FILE mei-trace
93 #include <trace/define_trace.h>