summaryrefslogtreecommitdiff
path: root/include/trace
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2011-11-30 14:27:08 +0000
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-11-30 20:51:09 +0000
commitbc7ee55633867909bb05e71f957a4d3c1aa1b488 (patch)
treeb8465a2ee229fed3a7ea133a983236ffe7f657d7 /include/trace
parent018690d33ecf4aa1eb1415e38c40e2b0b6c7808e (diff)
regmap: Add trace event for successful cache reads
Currently we only trace physical reads, there's no instrumentation if the read is satisfied from cache. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include/trace')
-rw-r--r--include/trace/events/regmap.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/trace/events/regmap.h b/include/trace/events/regmap.h
index 1e3193b8fcc..12fbf43524e 100644
--- a/include/trace/events/regmap.h
+++ b/include/trace/events/regmap.h
@@ -55,6 +55,15 @@ DEFINE_EVENT(regmap_reg, regmap_reg_read,
);
+DEFINE_EVENT(regmap_reg, regmap_reg_read_cache,
+
+ TP_PROTO(struct device *dev, unsigned int reg,
+ unsigned int val),
+
+ TP_ARGS(dev, reg, val)
+
+);
+
DECLARE_EVENT_CLASS(regmap_block,
TP_PROTO(struct device *dev, unsigned int reg, int count),