Laura Abbott | ad340ff | 2012-01-04 14:23:48 -0800 | [diff] [blame] | 1 | /* |
Duy Truong | 790f06d | 2013-02-13 16:38:12 -0800 | [diff] [blame] | 2 | * Copyright (c) 2012, The Linux Foundation. All rights reserved. |
Laura Abbott | ad340ff | 2012-01-04 14:23:48 -0800 | [diff] [blame] | 3 | * |
| 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 Abbott | cdedff1 | 2012-02-14 11:13:46 -0800 | [diff] [blame] | 16 | /* |
| 17 | * These numbers are used from the kernel command line and sysfs |
Jeff Ohlstein | 4e24908 | 2012-03-21 15:12:20 -0700 | [diff] [blame] | 18 | * to control filtering. Remove items from here with extreme caution. |
Laura Abbott | cdedff1 | 2012-02-14 11:13:46 -0800 | [diff] [blame] | 19 | */ |
Laura Abbott | ad340ff | 2012-01-04 14:23:48 -0800 | [diff] [blame] | 20 | enum logk_event_type { |
| 21 | LOGK_NONE = 0, |
Laura Abbott | cdedff1 | 2012-02-14 11:13:46 -0800 | [diff] [blame] | 22 | LOGK_READL = 1, |
| 23 | LOGK_WRITEL = 2, |
| 24 | LOGK_LOGBUF = 3, |
| 25 | LOGK_HOTPLUG = 4, |
| 26 | LOGK_CTXID = 5, |
Jeff Ohlstein | 4e24908 | 2012-03-21 15:12:20 -0700 | [diff] [blame] | 27 | LOGK_TIMESTAMP = 6, |
Laura Abbott | ad340ff | 2012-01-04 14:23:48 -0800 | [diff] [blame] | 28 | }; |
| 29 | |
Jeff Ohlstein | 4e24908 | 2012-03-21 15:12:20 -0700 | [diff] [blame] | 30 | #define LOGTYPE_NOPC 0x80 |
| 31 | |
Laura Abbott | f8c03b9 | 2012-02-16 14:57:58 -0800 | [diff] [blame] | 32 | struct msm_rtb_platform_data { |
| 33 | unsigned int size; |
| 34 | }; |
| 35 | |
Laura Abbott | ad340ff | 2012-01-04 14:23:48 -0800 | [diff] [blame] | 36 | #if defined(CONFIG_MSM_RTB) |
| 37 | /* |
| 38 | * returns 1 if data was logged, 0 otherwise |
| 39 | */ |
| 40 | int 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 | */ |
| 46 | int uncached_logk(enum logk_event_type log_type, void *data); |
| 47 | |
Laura Abbott | 0f9c776 | 2012-01-06 18:44:47 -0800 | [diff] [blame] | 48 | #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 Abbott | ad340ff | 2012-01-04 14:23:48 -0800 | [diff] [blame] | 64 | #else |
| 65 | |
| 66 | static inline int uncached_logk_pc(enum logk_event_type log_type, |
| 67 | void *caller, |
| 68 | void *data) { return 0; } |
| 69 | |
| 70 | static inline int uncached_logk(enum logk_event_type log_type, |
| 71 | void *data) { return 0; } |
Laura Abbott | 0f9c776 | 2012-01-06 18:44:47 -0800 | [diff] [blame] | 72 | |
| 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 Abbott | ad340ff | 2012-01-04 14:23:48 -0800 | [diff] [blame] | 80 | #endif |
| 81 | #endif |