diff options
author | Amaury Pouly <amaury.pouly@gmail.com> | 2016-05-26 00:26:08 +0100 |
---|---|---|
committer | Amaury Pouly <amaury.pouly@gmail.com> | 2016-12-12 13:20:10 +0100 |
commit | 17277fa1bfb21acf1b880b15db0e799bc623c276 (patch) | |
tree | d701fd1cfb0c134761efdd3a8b220ecc09275af0 /firmware/target/arm/imx233/icoll-imx233.h | |
parent | a523c3fcfe40734f3b15fbf086578fa188fc0ec6 (diff) |
imx233: add more icoll statistics
Those new statistics give the maximum time an IRQ took and also the total
time spent in IRQ, for each IRQ. Hopefully those do not take took much time
or space to collect. If this is the case, it can be enabled in debug builds only
the future.
Change-Id: I05af172897c5cb7ffcc9322452f974d8f968e29d
Diffstat (limited to 'firmware/target/arm/imx233/icoll-imx233.h')
-rw-r--r-- | firmware/target/arm/imx233/icoll-imx233.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/firmware/target/arm/imx233/icoll-imx233.h b/firmware/target/arm/imx233/icoll-imx233.h index 20b93648c9..1815c70384 100644 --- a/firmware/target/arm/imx233/icoll-imx233.h +++ b/firmware/target/arm/imx233/icoll-imx233.h @@ -74,9 +74,11 @@ struct imx233_icoll_irq_info_t { - bool enabled; - unsigned freq; - unsigned priority; + bool enabled; /* is IRQ currently enabled ? */ + unsigned freq; /* how many times was IRQ fired in the past second */ + unsigned priority; /* IRQ priority (0-3) */ + unsigned max_time; /* maximum time spent in one IRQ during the past second (in us) */ + unsigned total_time; /* total time spent in IRQ during the past second (in us) */ }; void imx233_icoll_init(void); |