X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=instrumentation%2Fevents%2Flttng-module%2Fregmap.h;h=badfd32b29a309671233b9b8a339df1aeee2360c;hb=9f36eaed6f91d5897924b551b44d1edd8cee00e2;hp=eef3c6cd255dcfeadb0b80ba15d4276febeba9c7;hpb=f127e61ee231d002fb9a7803643a157e06f6d2e2;p=lttng-modules.git diff --git a/instrumentation/events/lttng-module/regmap.h b/instrumentation/events/lttng-module/regmap.h index eef3c6cd..badfd32b 100644 --- a/instrumentation/events/lttng-module/regmap.h +++ b/instrumentation/events/lttng-module/regmap.h @@ -1,10 +1,11 @@ +/* SPDX-License-Identifier: GPL-2.0 */ #undef TRACE_SYSTEM #define TRACE_SYSTEM regmap #if !defined(LTTNG_TRACE_REGMAP_H) || defined(TRACE_HEADER_MULTI_READ) #define LTTNG_TRACE_REGMAP_H -#include "../../../probes/lttng-tracepoint-event.h" +#include #include #include @@ -19,55 +20,49 @@ struct regmap; */ LTTNG_TRACEPOINT_EVENT_CLASS(regmap_reg, - TP_PROTO(struct device *dev, unsigned int reg, + TP_PROTO(struct regmap *map, unsigned int reg, unsigned int val), - TP_ARGS(dev, reg, val), + TP_ARGS(map, reg, val), TP_FIELDS( - ctf_string(name, dev_name(dev)) + ctf_string(name, regmap_name(map)) ctf_integer(unsigned int, reg, reg) ctf_integer(unsigned int, val, val) ) ) - LTTNG_TRACEPOINT_EVENT_INSTANCE(regmap_reg, regmap_reg_write, - TP_PROTO(struct device *dev, unsigned int reg, + TP_PROTO(struct regmap *map, unsigned int reg, unsigned int val), - TP_ARGS(dev, reg, val) - + TP_ARGS(map, reg, val) ) LTTNG_TRACEPOINT_EVENT_INSTANCE(regmap_reg, regmap_reg_read, - TP_PROTO(struct device *dev, unsigned int reg, + TP_PROTO(struct regmap *map, unsigned int reg, unsigned int val), - TP_ARGS(dev, reg, val) - + TP_ARGS(map, reg, val) ) -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,3,0)) LTTNG_TRACEPOINT_EVENT_INSTANCE(regmap_reg, regmap_reg_read_cache, - TP_PROTO(struct device *dev, unsigned int reg, + TP_PROTO(struct regmap *map, unsigned int reg, unsigned int val), - TP_ARGS(dev, reg, val) - + TP_ARGS(map, reg, val) ) -#endif LTTNG_TRACEPOINT_EVENT_CLASS(regmap_block, - TP_PROTO(struct device *dev, unsigned int reg, int count), + TP_PROTO(struct regmap *map, unsigned int reg, int count), - TP_ARGS(dev, reg, count), + TP_ARGS(map, reg, count), TP_FIELDS( - ctf_string(name, dev_name(dev)) + ctf_string(name, regmap_name(map)) ctf_integer(unsigned int, reg, reg) ctf_integer(int, count, count) ) @@ -75,79 +70,76 @@ LTTNG_TRACEPOINT_EVENT_CLASS(regmap_block, LTTNG_TRACEPOINT_EVENT_INSTANCE(regmap_block, regmap_hw_read_start, - TP_PROTO(struct device *dev, unsigned int reg, int count), + TP_PROTO(struct regmap *map, unsigned int reg, int count), - TP_ARGS(dev, reg, count) + TP_ARGS(map, reg, count) ) LTTNG_TRACEPOINT_EVENT_INSTANCE(regmap_block, regmap_hw_read_done, - TP_PROTO(struct device *dev, unsigned int reg, int count), + TP_PROTO(struct regmap *map, unsigned int reg, int count), - TP_ARGS(dev, reg, count) + TP_ARGS(map, reg, count) ) LTTNG_TRACEPOINT_EVENT_INSTANCE(regmap_block, regmap_hw_write_start, - TP_PROTO(struct device *dev, unsigned int reg, int count), + TP_PROTO(struct regmap *map, unsigned int reg, int count), - TP_ARGS(dev, reg, count) + TP_ARGS(map, reg, count) ) LTTNG_TRACEPOINT_EVENT_INSTANCE(regmap_block, regmap_hw_write_done, - TP_PROTO(struct device *dev, unsigned int reg, int count), + TP_PROTO(struct regmap *map, unsigned int reg, int count), - TP_ARGS(dev, reg, count) + TP_ARGS(map, reg, count) ) LTTNG_TRACEPOINT_EVENT_MAP(regcache_sync, regmap_regcache_sync, - TP_PROTO(struct device *dev, const char *type, + TP_PROTO(struct regmap *map, const char *type, const char *status), - TP_ARGS(dev, type, status), + TP_ARGS(map, type, status), TP_FIELDS( - ctf_string(name, dev_name(dev)) + ctf_string(name, regmap_name(map)) ctf_string(status, status) ctf_string(type, type) ) ) -#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,4,0)) LTTNG_TRACEPOINT_EVENT_CLASS(regmap_bool, - TP_PROTO(struct device *dev, bool flag), + TP_PROTO(struct regmap *map, bool flag), - TP_ARGS(dev, flag), + TP_ARGS(map, flag), TP_FIELDS( - ctf_string(name, dev_name(dev)) + ctf_string(name, regmap_name(map)) ctf_integer(int, flag, flag) ) ) LTTNG_TRACEPOINT_EVENT_INSTANCE(regmap_bool, regmap_cache_only, - TP_PROTO(struct device *dev, bool flag), - - TP_ARGS(dev, flag) + TP_PROTO(struct regmap *map, bool flag), + TP_ARGS(map, flag) ) LTTNG_TRACEPOINT_EVENT_INSTANCE(regmap_bool, regmap_cache_bypass, - TP_PROTO(struct device *dev, bool flag), + TP_PROTO(struct regmap *map, bool flag), - TP_ARGS(dev, flag) + TP_ARGS(map, flag) ) -#endif #endif /* LTTNG_TRACE_REGMAP_H */ /* This part must be outside protection */ -#include "../../../probes/define_trace.h" +#include