From 17277fa1bfb21acf1b880b15db0e799bc623c276 Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Thu, 26 May 2016 00:26:08 +0100 Subject: 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 --- firmware/target/arm/imx233/debug-imx233.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'firmware/target/arm/imx233/debug-imx233.c') diff --git a/firmware/target/arm/imx233/debug-imx233.c b/firmware/target/arm/imx233/debug-imx233.c index 68865efc8d..e33f2ab1ad 100644 --- a/firmware/target/arm/imx233/debug-imx233.c +++ b/firmware/target/arm/imx233/debug-imx233.c @@ -637,7 +637,7 @@ bool dbg_hw_info_icoll(void) static char prio[4] = {'-', '+', '^', '!'}; lcd_putsf(0, j, "%c%s", prio[info.priority & 3], dbg_irqs[i].name); if(info.enabled || info.freq > 0) - lcd_putsf(11, j, "%d", info.freq); + lcd_putsf(11, j, "%d %d %d", info.freq, info.max_time, info.total_time); } lcd_update(); yield(); -- cgit v1.2.3