blob: 32f6f9859c4150207f18efef3c6ef02fbdf1b3be [file] [log] [blame]
Chris Kelly56ff32f2012-02-20 21:12:27 +00001/* -----------------------------------------------------------------------------
2 * Copyright (c) 2011 Ozmo Inc
3 * Released under the GNU General Public License Version 2 (GPLv2).
4 * -----------------------------------------------------------------------------
5 */
6#ifndef _OZEVENT_H
7#define _OZEVENT_H
8#include "ozconfig.h"
9#include "ozeventdef.h"
10
11#ifdef WANT_EVENT_TRACE
Rupesh Gujare68a75f32012-03-29 13:11:50 +010012extern u32 g_evt_mask;
Chris Kelly56ff32f2012-02-20 21:12:27 +000013void oz_event_init(void);
14void oz_event_term(void);
15void oz_event_log2(u8 evt, u8 ctx1, u16 ctx2, void *ctx3, unsigned ctx4);
Rupesh Gujare68a75f32012-03-29 13:11:50 +010016void oz_debugfs_init(void);
17void oz_debugfs_remove(void);
Chris Kelly56ff32f2012-02-20 21:12:27 +000018#define oz_event_log(__evt, __ctx1, __ctx2, __ctx3, __ctx4) \
19 do { \
20 if ((1<<(__evt)) & g_evt_mask) \
21 oz_event_log2(__evt, __ctx1, __ctx2, __ctx3, __ctx4); \
22 } while (0)
Rupesh Gujare68a75f32012-03-29 13:11:50 +010023
Chris Kelly56ff32f2012-02-20 21:12:27 +000024#else
25#define oz_event_init()
26#define oz_event_term()
27#define oz_event_log(__evt, __ctx1, __ctx2, __ctx3, __ctx4)
Rupesh Gujare68a75f32012-03-29 13:11:50 +010028#define oz_debugfs_init()
29#define oz_debugfs_remove()
Chris Kelly56ff32f2012-02-20 21:12:27 +000030#endif /* WANT_EVENT_TRACE */
31
32#endif /* _OZEVENT_H */