blob: 19d171e2e8b3b34d4657af6a020cc01e15d39b0b [file] [log] [blame]
Laura Abbottad340ff2012-01-04 14:23:48 -08001/*
Duy Truong790f06d2013-02-13 16:38:12 -08002 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
Laura Abbottad340ff2012-01-04 14:23:48 -08003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13#ifndef __MSM_RTB_H__
14#define __MSM_RTB_H__
15
Laura Abbottcdedff12012-02-14 11:13:46 -080016/*
17 * These numbers are used from the kernel command line and sysfs
Jeff Ohlstein4e249082012-03-21 15:12:20 -070018 * to control filtering. Remove items from here with extreme caution.
Laura Abbottcdedff12012-02-14 11:13:46 -080019 */
Laura Abbottad340ff2012-01-04 14:23:48 -080020enum logk_event_type {
21 LOGK_NONE = 0,
Laura Abbottcdedff12012-02-14 11:13:46 -080022 LOGK_READL = 1,
23 LOGK_WRITEL = 2,
24 LOGK_LOGBUF = 3,
25 LOGK_HOTPLUG = 4,
26 LOGK_CTXID = 5,
Jeff Ohlstein4e249082012-03-21 15:12:20 -070027 LOGK_TIMESTAMP = 6,
Laura Abbottad340ff2012-01-04 14:23:48 -080028};
29
Jeff Ohlstein4e249082012-03-21 15:12:20 -070030#define LOGTYPE_NOPC 0x80
31
Laura Abbottf8c03b92012-02-16 14:57:58 -080032struct msm_rtb_platform_data {
33 unsigned int size;
34};
35
Laura Abbottad340ff2012-01-04 14:23:48 -080036#if defined(CONFIG_MSM_RTB)
37/*
38 * returns 1 if data was logged, 0 otherwise
39 */
40int uncached_logk_pc(enum logk_event_type log_type, void *caller,
41 void *data);
42
43/*
44 * returns 1 if data was logged, 0 otherwise
45 */
46int uncached_logk(enum logk_event_type log_type, void *data);
47
Laura Abbott0f9c7762012-01-06 18:44:47 -080048#define ETB_WAYPOINT do { \
49 BRANCH_TO_NEXT_ISTR; \
50 nop(); \
51 BRANCH_TO_NEXT_ISTR; \
52 nop(); \
53 } while (0)
54
55#define BRANCH_TO_NEXT_ISTR asm volatile("b .+4\n" : : : "memory")
56/*
57 * both the mb and the isb are needed to ensure enough waypoints for
58 * etb tracing
59 */
60#define LOG_BARRIER do { \
61 mb(); \
62 isb();\
63 } while (0)
Laura Abbottad340ff2012-01-04 14:23:48 -080064#else
65
66static inline int uncached_logk_pc(enum logk_event_type log_type,
67 void *caller,
68 void *data) { return 0; }
69
70static inline int uncached_logk(enum logk_event_type log_type,
71 void *data) { return 0; }
Laura Abbott0f9c7762012-01-06 18:44:47 -080072
73#define ETB_WAYPOINT
74#define BRANCH_TO_NEXT_ISTR
75/*
76 * Due to a GCC bug, we need to have a nop here in order to prevent an extra
77 * read from being generated after the write.
78 */
79#define LOG_BARRIER nop()
Laura Abbottad340ff2012-01-04 14:23:48 -080080#endif
81#endif