Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2011-2012, The Linux Foundation. All rights reserved. |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/module.h> |
Pratik Patel | cf41862 | 2011-09-22 11:15:11 -0700 | [diff] [blame] | 15 | #include <linux/init.h> |
| 16 | #include <linux/types.h> |
| 17 | #include <linux/device.h> |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 18 | #include <linux/platform_device.h> |
| 19 | #include <linux/io.h> |
| 20 | #include <linux/err.h> |
| 21 | #include <linux/fs.h> |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 22 | #include <linux/slab.h> |
| 23 | #include <linux/delay.h> |
| 24 | #include <linux/smp.h> |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 25 | #include <linux/wakelock.h> |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 26 | #include <linux/sysfs.h> |
| 27 | #include <linux/stat.h> |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 28 | #include <linux/mutex.h> |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 29 | #include <linux/clk.h> |
Pratik Patel | 5f6d1af | 2012-06-13 15:48:13 -0700 | [diff] [blame] | 30 | #include <linux/of_coresight.h> |
Pratik Patel | 1746b8f | 2012-06-02 21:11:41 -0700 | [diff] [blame] | 31 | #include <linux/coresight.h> |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 32 | #include <asm/sections.h> |
Pratik Patel | 2d0c7b6 | 2012-02-24 19:04:37 -0800 | [diff] [blame] | 33 | #include <mach/socinfo.h> |
Pratik Patel | 2647779 | 2012-09-07 01:35:36 -0700 | [diff] [blame] | 34 | #include <mach/msm_memory_dump.h> |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 35 | |
Pratik Patel | 1746b8f | 2012-06-02 21:11:41 -0700 | [diff] [blame] | 36 | #include "coresight-priv.h" |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 37 | |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 38 | #define etm_writel_mm(drvdata, val, off) \ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 39 | __raw_writel((val), drvdata->base + off) |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 40 | #define etm_readl_mm(drvdata, off) \ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 41 | __raw_readl(drvdata->base + off) |
| 42 | |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 43 | #define etm_writel(drvdata, val, off) \ |
| 44 | ({ \ |
| 45 | if (cpu_is_krait_v3()) \ |
| 46 | etm_writel_cp14(val, off); \ |
| 47 | else \ |
| 48 | etm_writel_mm(drvdata, val, off); \ |
| 49 | }) |
| 50 | #define etm_readl(drvdata, off) \ |
| 51 | ({ \ |
| 52 | uint32_t val; \ |
| 53 | if (cpu_is_krait_v3()) \ |
| 54 | val = etm_readl_cp14(off); \ |
| 55 | else \ |
| 56 | val = etm_readl_mm(drvdata, off); \ |
| 57 | val; \ |
| 58 | }) |
| 59 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 60 | #define ETM_LOCK(drvdata) \ |
| 61 | do { \ |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 62 | /* recommended by spec to ensure ETM writes are committed prior |
| 63 | * to resuming execution |
| 64 | */ \ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 65 | mb(); \ |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 66 | isb(); \ |
| 67 | etm_writel_mm(drvdata, 0x0, CORESIGHT_LAR); \ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 68 | } while (0) |
| 69 | #define ETM_UNLOCK(drvdata) \ |
| 70 | do { \ |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 71 | etm_writel_mm(drvdata, CORESIGHT_UNLOCK, CORESIGHT_LAR); \ |
| 72 | /* ensure unlock and any pending writes are committed prior to |
| 73 | * programming ETM registers |
| 74 | */ \ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 75 | mb(); \ |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 76 | isb(); \ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 77 | } while (0) |
| 78 | |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 79 | /* |
| 80 | * Device registers: |
| 81 | * 0x000 - 0x2FC: Trace registers |
| 82 | * 0x300 - 0x314: Management registers |
| 83 | * 0x318 - 0xEFC: Trace registers |
| 84 | * |
| 85 | * Coresight registers |
| 86 | * 0xF00 - 0xF9C: Management registers |
| 87 | * 0xFA0 - 0xFA4: Management registers in PFTv1.0 |
| 88 | * Trace registers in PFTv1.1 |
| 89 | * 0xFA8 - 0xFFC: Management registers |
| 90 | */ |
| 91 | |
| 92 | /* Trace registers (0x000-0x2FC) */ |
| 93 | #define ETMCR (0x000) |
| 94 | #define ETMCCR (0x004) |
| 95 | #define ETMTRIGGER (0x008) |
| 96 | #define ETMSR (0x010) |
| 97 | #define ETMSCR (0x014) |
| 98 | #define ETMTSSCR (0x018) |
| 99 | #define ETMTEEVR (0x020) |
| 100 | #define ETMTECR1 (0x024) |
| 101 | #define ETMFFLR (0x02C) |
| 102 | #define ETMACVRn(n) (0x040 + (n * 4)) |
| 103 | #define ETMACTRn(n) (0x080 + (n * 4)) |
| 104 | #define ETMCNTRLDVRn(n) (0x140 + (n * 4)) |
| 105 | #define ETMCNTENRn(n) (0x150 + (n * 4)) |
| 106 | #define ETMCNTRLDEVRn(n) (0x160 + (n * 4)) |
| 107 | #define ETMCNTVRn(n) (0x170 + (n * 4)) |
| 108 | #define ETMSQ12EVR (0x180) |
| 109 | #define ETMSQ21EVR (0x184) |
| 110 | #define ETMSQ23EVR (0x188) |
Pratik Patel | d5bbc76 | 2012-01-29 14:13:21 -0800 | [diff] [blame] | 111 | #define ETMSQ31EVR (0x18C) |
| 112 | #define ETMSQ32EVR (0x190) |
| 113 | #define ETMSQ13EVR (0x194) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 114 | #define ETMSQR (0x19C) |
| 115 | #define ETMEXTOUTEVRn(n) (0x1A0 + (n * 4)) |
| 116 | #define ETMCIDCVRn(n) (0x1B0 + (n * 4)) |
| 117 | #define ETMCIDCMR (0x1BC) |
| 118 | #define ETMIMPSPEC0 (0x1C0) |
| 119 | #define ETMIMPSPEC1 (0x1C4) |
| 120 | #define ETMIMPSPEC2 (0x1C8) |
| 121 | #define ETMIMPSPEC3 (0x1CC) |
| 122 | #define ETMIMPSPEC4 (0x1D0) |
| 123 | #define ETMIMPSPEC5 (0x1D4) |
| 124 | #define ETMIMPSPEC6 (0x1D8) |
| 125 | #define ETMIMPSPEC7 (0x1DC) |
| 126 | #define ETMSYNCFR (0x1E0) |
| 127 | #define ETMIDR (0x1E4) |
| 128 | #define ETMCCER (0x1E8) |
| 129 | #define ETMEXTINSELR (0x1EC) |
| 130 | #define ETMTESSEICR (0x1F0) |
| 131 | #define ETMEIBCR (0x1F4) |
| 132 | #define ETMTSEVR (0x1F8) |
| 133 | #define ETMAUXCR (0x1FC) |
| 134 | #define ETMTRACEIDR (0x200) |
Pratik Patel | d5bbc76 | 2012-01-29 14:13:21 -0800 | [diff] [blame] | 135 | #define ETMVMIDCVR (0x240) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 136 | /* Management registers (0x300-0x314) */ |
| 137 | #define ETMOSLAR (0x300) |
| 138 | #define ETMOSLSR (0x304) |
| 139 | #define ETMOSSRR (0x308) |
| 140 | #define ETMPDCR (0x310) |
| 141 | #define ETMPDSR (0x314) |
| 142 | |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 143 | #define ETM_MAX_ADDR_CMP (16) |
| 144 | #define ETM_MAX_CNTR (4) |
| 145 | #define ETM_MAX_CTXID_CMP (3) |
| 146 | |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 147 | #define ETM_MODE_EXCLUDE BIT(0) |
| 148 | #define ETM_MODE_CYCACC BIT(1) |
| 149 | #define ETM_MODE_STALL BIT(2) |
| 150 | #define ETM_MODE_TIMESTAMP BIT(3) |
| 151 | #define ETM_MODE_CTXID BIT(4) |
| 152 | #define ETM_MODE_ALL (0x1F) |
| 153 | |
| 154 | #define ETM_EVENT_MASK (0x1FFFF) |
| 155 | #define ETM_SYNC_MASK (0xFFF) |
| 156 | #define ETM_ALL_MASK (0xFFFFFFFF) |
| 157 | |
| 158 | #define ETM_SEQ_STATE_MAX_VAL (0x2) |
| 159 | |
Pratik Patel | 2647779 | 2012-09-07 01:35:36 -0700 | [diff] [blame] | 160 | #define ETM_REG_DUMP_VER_OFF (4) |
| 161 | #define ETM_REG_DUMP_VER (1) |
| 162 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 163 | enum etm_addr_type { |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 164 | ETM_ADDR_TYPE_NONE, |
| 165 | ETM_ADDR_TYPE_SINGLE, |
| 166 | ETM_ADDR_TYPE_RANGE, |
| 167 | ETM_ADDR_TYPE_START, |
| 168 | ETM_ADDR_TYPE_STOP, |
| 169 | }; |
| 170 | |
Pratik Patel | 29cba15 | 2012-01-03 11:40:26 -0800 | [diff] [blame] | 171 | #ifdef CONFIG_MSM_QDSS_ETM_DEFAULT_ENABLE |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 172 | static int boot_enable = 1; |
Pratik Patel | 29cba15 | 2012-01-03 11:40:26 -0800 | [diff] [blame] | 173 | #else |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 174 | static int boot_enable; |
Pratik Patel | 29cba15 | 2012-01-03 11:40:26 -0800 | [diff] [blame] | 175 | #endif |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 176 | module_param_named( |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 177 | boot_enable, boot_enable, int, S_IRUGO |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 178 | ); |
| 179 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 180 | struct etm_drvdata { |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 181 | void __iomem *base; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 182 | struct device *dev; |
| 183 | struct coresight_device *csdev; |
| 184 | struct clk *clk; |
| 185 | struct mutex mutex; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 186 | struct wake_lock wake_lock; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 187 | int cpu; |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 188 | uint8_t arch; |
| 189 | uint8_t nr_addr_cmp; |
| 190 | uint8_t nr_cntr; |
| 191 | uint8_t nr_ext_inp; |
| 192 | uint8_t nr_ext_out; |
| 193 | uint8_t nr_ctxid_cmp; |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 194 | uint8_t reset; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 195 | uint32_t mode; |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 196 | uint32_t ctrl; |
| 197 | uint32_t trigger_event; |
| 198 | uint32_t startstop_ctrl; |
| 199 | uint32_t enable_event; |
| 200 | uint32_t enable_ctrl1; |
| 201 | uint32_t fifofull_level; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 202 | uint8_t addr_idx; |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 203 | uint32_t addr_val[ETM_MAX_ADDR_CMP]; |
| 204 | uint32_t addr_acctype[ETM_MAX_ADDR_CMP]; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 205 | uint32_t addr_type[ETM_MAX_ADDR_CMP]; |
| 206 | uint8_t cntr_idx; |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 207 | uint32_t cntr_rld_val[ETM_MAX_CNTR]; |
| 208 | uint32_t cntr_event[ETM_MAX_CNTR]; |
| 209 | uint32_t cntr_rld_event[ETM_MAX_CNTR]; |
| 210 | uint32_t cntr_val[ETM_MAX_CNTR]; |
| 211 | uint32_t seq_12_event; |
| 212 | uint32_t seq_21_event; |
| 213 | uint32_t seq_23_event; |
| 214 | uint32_t seq_31_event; |
| 215 | uint32_t seq_32_event; |
| 216 | uint32_t seq_13_event; |
| 217 | uint32_t seq_curr_state; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 218 | uint8_t ctxid_idx; |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 219 | uint32_t ctxid_val[ETM_MAX_CTXID_CMP]; |
| 220 | uint32_t ctxid_mask; |
| 221 | uint32_t sync_freq; |
| 222 | uint32_t timestamp_event; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 223 | }; |
| 224 | |
Pratik Patel | c14b4df | 2012-09-05 18:07:59 -0700 | [diff] [blame] | 225 | static struct etm_drvdata *etm0drvdata; |
| 226 | |
Pratik Patel | d1d65c9 | 2012-09-25 23:37:43 -0700 | [diff] [blame^] | 227 | /* |
| 228 | * ETM clock is derived from the processor clock and gets enabled on a |
| 229 | * logical OR of below items on Krait (v2 onwards): |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 230 | * 1.CPMR[ETMCLKEN] is 1 |
| 231 | * 2.ETMCR[PD] is 0 |
| 232 | * 3.ETMPDCR[PU] is 1 |
| 233 | * 4.Reset is asserted (core or debug) |
| 234 | * 5.APB memory mapped requests (eg. EDAP access) |
| 235 | * |
| 236 | * 1., 2. and 3. above are permanent enables whereas 4. and 5. are temporary |
| 237 | * enables |
| 238 | * |
Pratik Patel | d1d65c9 | 2012-09-25 23:37:43 -0700 | [diff] [blame^] | 239 | * We rely on 5. to be able to access ETMCR/ETMPDCR and then use 2./3. above |
| 240 | * for ETM clock vote in the driver and the save-restore code uses 1. above |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 241 | * for its vote |
| 242 | */ |
Pratik Patel | d1d65c9 | 2012-09-25 23:37:43 -0700 | [diff] [blame^] | 243 | static void etm_set_pwrdwn(struct etm_drvdata *drvdata) |
| 244 | { |
| 245 | uint32_t etmcr; |
| 246 | |
| 247 | /* ensure pending cp14 accesses complete before setting pwrdwn */ |
| 248 | mb(); |
| 249 | isb(); |
| 250 | etmcr = etm_readl(drvdata, ETMCR); |
| 251 | etmcr |= BIT(0); |
| 252 | etm_writel(drvdata, etmcr, ETMCR); |
| 253 | } |
| 254 | |
| 255 | static void etm_clr_pwrdwn(struct etm_drvdata *drvdata) |
| 256 | { |
| 257 | uint32_t etmcr; |
| 258 | |
| 259 | etmcr = etm_readl(drvdata, ETMCR); |
| 260 | etmcr &= ~BIT(0); |
| 261 | etm_writel(drvdata, etmcr, ETMCR); |
| 262 | /* ensure pwrup completes before subsequent cp14 accesses */ |
| 263 | mb(); |
| 264 | isb(); |
| 265 | } |
| 266 | |
Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 267 | static void etm_set_pwrup(struct etm_drvdata *drvdata) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 268 | { |
Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 269 | uint32_t etmpdcr; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 270 | |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 271 | etmpdcr = etm_readl_mm(drvdata, ETMPDCR); |
Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 272 | etmpdcr |= BIT(3); |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 273 | etm_writel_mm(drvdata, etmpdcr, ETMPDCR); |
| 274 | /* ensure pwrup completes before subsequent cp14 accesses */ |
| 275 | mb(); |
| 276 | isb(); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 277 | } |
| 278 | |
Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 279 | static void etm_clr_pwrup(struct etm_drvdata *drvdata) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 280 | { |
Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 281 | uint32_t etmpdcr; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 282 | |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 283 | /* ensure pending cp14 accesses complete before clearing pwrup */ |
| 284 | mb(); |
| 285 | isb(); |
| 286 | etmpdcr = etm_readl_mm(drvdata, ETMPDCR); |
Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 287 | etmpdcr &= ~BIT(3); |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 288 | etm_writel_mm(drvdata, etmpdcr, ETMPDCR); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 289 | } |
| 290 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 291 | static void etm_set_prog(struct etm_drvdata *drvdata) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 292 | { |
| 293 | uint32_t etmcr; |
| 294 | int count; |
| 295 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 296 | etmcr = etm_readl(drvdata, ETMCR); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 297 | etmcr |= BIT(10); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 298 | etm_writel(drvdata, etmcr, ETMCR); |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 299 | /* recommended by spec for cp14 accesses to ensure etmcr write is |
| 300 | * complete before polling etmsr |
| 301 | */ |
| 302 | isb(); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 303 | for (count = TIMEOUT_US; BVAL(etm_readl(drvdata, ETMSR), 1) != 1 |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 304 | && count > 0; count--) |
| 305 | udelay(1); |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 306 | WARN(count == 0, "timeout while setting prog bit, ETMSR: %#x\n", |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 307 | etm_readl(drvdata, ETMSR)); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 310 | static void etm_clr_prog(struct etm_drvdata *drvdata) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 311 | { |
| 312 | uint32_t etmcr; |
| 313 | int count; |
| 314 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 315 | etmcr = etm_readl(drvdata, ETMCR); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 316 | etmcr &= ~BIT(10); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 317 | etm_writel(drvdata, etmcr, ETMCR); |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 318 | /* recommended by spec for cp14 accesses to ensure etmcr write is |
| 319 | * complete before polling etmsr |
| 320 | */ |
| 321 | isb(); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 322 | for (count = TIMEOUT_US; BVAL(etm_readl(drvdata, ETMSR), 1) != 0 |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 323 | && count > 0; count--) |
| 324 | udelay(1); |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 325 | WARN(count == 0, "timeout while clearing prog bit, ETMSR: %#x\n", |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 326 | etm_readl(drvdata, ETMSR)); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Pratik Patel | 66e1a41 | 2012-09-06 11:07:06 -0700 | [diff] [blame] | 329 | static void __etm_enable(void *info) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 330 | { |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 331 | int i; |
Pratik Patel | d1d65c9 | 2012-09-25 23:37:43 -0700 | [diff] [blame^] | 332 | uint32_t etmcr; |
Pratik Patel | 66e1a41 | 2012-09-06 11:07:06 -0700 | [diff] [blame] | 333 | struct etm_drvdata *drvdata = info; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 334 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 335 | ETM_UNLOCK(drvdata); |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 336 | /* Vote for ETM power/clock enable */ |
Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 337 | etm_set_pwrup(drvdata); |
Pratik Patel | d1d65c9 | 2012-09-25 23:37:43 -0700 | [diff] [blame^] | 338 | /* |
| 339 | * Clear power down bit since when this bit is set writes to |
| 340 | * certain registers might be ignored. |
| 341 | */ |
| 342 | etm_clr_pwrdwn(drvdata); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 343 | etm_set_prog(drvdata); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 344 | |
Pratik Patel | d1d65c9 | 2012-09-25 23:37:43 -0700 | [diff] [blame^] | 345 | etmcr = etm_readl(drvdata, ETMCR); |
| 346 | etmcr &= (BIT(10) | BIT(0)); |
| 347 | etm_writel(drvdata, drvdata->ctrl | etmcr, ETMCR); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 348 | etm_writel(drvdata, drvdata->trigger_event, ETMTRIGGER); |
| 349 | etm_writel(drvdata, drvdata->startstop_ctrl, ETMTSSCR); |
| 350 | etm_writel(drvdata, drvdata->enable_event, ETMTEEVR); |
| 351 | etm_writel(drvdata, drvdata->enable_ctrl1, ETMTECR1); |
| 352 | etm_writel(drvdata, drvdata->fifofull_level, ETMFFLR); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 353 | for (i = 0; i < drvdata->nr_addr_cmp; i++) { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 354 | etm_writel(drvdata, drvdata->addr_val[i], ETMACVRn(i)); |
| 355 | etm_writel(drvdata, drvdata->addr_acctype[i], ETMACTRn(i)); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 356 | } |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 357 | for (i = 0; i < drvdata->nr_cntr; i++) { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 358 | etm_writel(drvdata, drvdata->cntr_rld_val[i], ETMCNTRLDVRn(i)); |
| 359 | etm_writel(drvdata, drvdata->cntr_event[i], ETMCNTENRn(i)); |
| 360 | etm_writel(drvdata, drvdata->cntr_rld_event[i], |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 361 | ETMCNTRLDEVRn(i)); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 362 | etm_writel(drvdata, drvdata->cntr_val[i], ETMCNTVRn(i)); |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 363 | } |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 364 | etm_writel(drvdata, drvdata->seq_12_event, ETMSQ12EVR); |
| 365 | etm_writel(drvdata, drvdata->seq_21_event, ETMSQ21EVR); |
| 366 | etm_writel(drvdata, drvdata->seq_23_event, ETMSQ23EVR); |
| 367 | etm_writel(drvdata, drvdata->seq_31_event, ETMSQ31EVR); |
| 368 | etm_writel(drvdata, drvdata->seq_32_event, ETMSQ32EVR); |
| 369 | etm_writel(drvdata, drvdata->seq_13_event, ETMSQ13EVR); |
| 370 | etm_writel(drvdata, drvdata->seq_curr_state, ETMSQR); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 371 | for (i = 0; i < drvdata->nr_ext_out; i++) |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 372 | etm_writel(drvdata, 0x0000406F, ETMEXTOUTEVRn(i)); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 373 | for (i = 0; i < drvdata->nr_ctxid_cmp; i++) |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 374 | etm_writel(drvdata, drvdata->ctxid_val[i], ETMCIDCVRn(i)); |
| 375 | etm_writel(drvdata, drvdata->ctxid_mask, ETMCIDCMR); |
| 376 | etm_writel(drvdata, drvdata->sync_freq, ETMSYNCFR); |
| 377 | etm_writel(drvdata, 0x00000000, ETMEXTINSELR); |
| 378 | etm_writel(drvdata, drvdata->timestamp_event, ETMTSEVR); |
| 379 | etm_writel(drvdata, 0x00000000, ETMAUXCR); |
| 380 | etm_writel(drvdata, drvdata->cpu + 1, ETMTRACEIDR); |
| 381 | etm_writel(drvdata, 0x00000000, ETMVMIDCVR); |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 382 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 383 | etm_clr_prog(drvdata); |
| 384 | ETM_LOCK(drvdata); |
Pratik Patel | 66e1a41 | 2012-09-06 11:07:06 -0700 | [diff] [blame] | 385 | |
| 386 | dev_dbg(drvdata->dev, "cpu: %d enable smp call done\n", drvdata->cpu); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 387 | } |
| 388 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 389 | static int etm_enable(struct coresight_device *csdev) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 390 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 391 | struct etm_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent); |
| 392 | int ret; |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 393 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 394 | wake_lock(&drvdata->wake_lock); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 395 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 396 | ret = clk_prepare_enable(drvdata->clk); |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 397 | if (ret) |
| 398 | goto err_clk; |
| 399 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 400 | mutex_lock(&drvdata->mutex); |
Pratik Patel | 66e1a41 | 2012-09-06 11:07:06 -0700 | [diff] [blame] | 401 | /* executing __etm_enable on the cpu whose ETM is being enabled |
| 402 | * ensures that register writes occur when cpu is powered. |
| 403 | */ |
| 404 | smp_call_function_single(drvdata->cpu, __etm_enable, drvdata, 1); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 405 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 406 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 407 | wake_unlock(&drvdata->wake_lock); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 408 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 409 | dev_info(drvdata->dev, "ETM tracing enabled\n"); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 410 | return 0; |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 411 | err_clk: |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 412 | wake_unlock(&drvdata->wake_lock); |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 413 | return ret; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 414 | } |
| 415 | |
Pratik Patel | 66e1a41 | 2012-09-06 11:07:06 -0700 | [diff] [blame] | 416 | static void __etm_disable(void *info) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 417 | { |
Pratik Patel | 66e1a41 | 2012-09-06 11:07:06 -0700 | [diff] [blame] | 418 | struct etm_drvdata *drvdata = info; |
| 419 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 420 | ETM_UNLOCK(drvdata); |
| 421 | etm_set_prog(drvdata); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 422 | |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 423 | /* program trace enable to low by using always false event */ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 424 | etm_writel(drvdata, 0x6F | BIT(14), ETMTEEVR); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 425 | |
Pratik Patel | d1d65c9 | 2012-09-25 23:37:43 -0700 | [diff] [blame^] | 426 | etm_set_pwrdwn(drvdata); |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 427 | /* Vote for ETM power/clock disable */ |
Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 428 | etm_clr_pwrup(drvdata); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 429 | ETM_LOCK(drvdata); |
Pratik Patel | 66e1a41 | 2012-09-06 11:07:06 -0700 | [diff] [blame] | 430 | |
| 431 | dev_dbg(drvdata->dev, "cpu: %d disable smp call done\n", drvdata->cpu); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 432 | } |
| 433 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 434 | static void etm_disable(struct coresight_device *csdev) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 435 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 436 | struct etm_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent); |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 437 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 438 | wake_lock(&drvdata->wake_lock); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 439 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 440 | mutex_lock(&drvdata->mutex); |
Pratik Patel | 66e1a41 | 2012-09-06 11:07:06 -0700 | [diff] [blame] | 441 | /* executing __etm_disable on the cpu whose ETM is being disabled |
| 442 | * ensures that register writes occur when cpu is powered. |
| 443 | */ |
| 444 | smp_call_function_single(drvdata->cpu, __etm_disable, drvdata, 1); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 445 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 446 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 447 | clk_disable_unprepare(drvdata->clk); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 448 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 449 | wake_unlock(&drvdata->wake_lock); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 450 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 451 | dev_info(drvdata->dev, "ETM tracing disabled\n"); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 452 | } |
| 453 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 454 | static const struct coresight_ops_source etm_source_ops = { |
| 455 | .enable = etm_enable, |
| 456 | .disable = etm_disable, |
| 457 | }; |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 458 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 459 | static const struct coresight_ops etm_cs_ops = { |
| 460 | .source_ops = &etm_source_ops, |
| 461 | }; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 462 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 463 | static ssize_t etm_show_nr_addr_cmp(struct device *dev, |
| 464 | struct device_attribute *attr, char *buf) |
| 465 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 466 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 467 | unsigned long val = drvdata->nr_addr_cmp; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 468 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 469 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 470 | } |
| 471 | static DEVICE_ATTR(nr_addr_cmp, S_IRUGO, etm_show_nr_addr_cmp, NULL); |
| 472 | |
| 473 | static ssize_t etm_show_nr_cntr(struct device *dev, |
| 474 | struct device_attribute *attr, char *buf) |
| 475 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 476 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 477 | unsigned long val = drvdata->nr_cntr; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 478 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 479 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 480 | } |
| 481 | static DEVICE_ATTR(nr_cntr, S_IRUGO, etm_show_nr_cntr, NULL); |
| 482 | |
| 483 | static ssize_t etm_show_nr_ctxid_cmp(struct device *dev, |
| 484 | struct device_attribute *attr, char *buf) |
| 485 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 486 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 487 | unsigned long val = drvdata->nr_ctxid_cmp; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 488 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 489 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 490 | } |
| 491 | static DEVICE_ATTR(nr_ctxid_cmp, S_IRUGO, etm_show_nr_ctxid_cmp, NULL); |
| 492 | |
| 493 | static ssize_t etm_show_reset(struct device *dev, struct device_attribute *attr, |
| 494 | char *buf) |
| 495 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 496 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 497 | unsigned long val = drvdata->reset; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 498 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 499 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 500 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 501 | |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 502 | /* Reset to trace everything i.e. exclude nothing. */ |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 503 | static ssize_t etm_store_reset(struct device *dev, |
| 504 | struct device_attribute *attr, const char *buf, |
| 505 | size_t size) |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 506 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 507 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 508 | int i; |
| 509 | unsigned long val; |
| 510 | |
| 511 | if (sscanf(buf, "%lx", &val) != 1) |
| 512 | return -EINVAL; |
| 513 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 514 | mutex_lock(&drvdata->mutex); |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 515 | if (val) { |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 516 | drvdata->mode = ETM_MODE_EXCLUDE; |
| 517 | drvdata->ctrl = 0x0; |
Pratik Patel | 2d0c7b6 | 2012-02-24 19:04:37 -0800 | [diff] [blame] | 518 | if (cpu_is_krait_v1()) { |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 519 | drvdata->mode |= ETM_MODE_CYCACC; |
| 520 | drvdata->ctrl |= BIT(12); |
Pratik Patel | 2d0c7b6 | 2012-02-24 19:04:37 -0800 | [diff] [blame] | 521 | } |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 522 | drvdata->trigger_event = 0x406F; |
| 523 | drvdata->startstop_ctrl = 0x0; |
| 524 | drvdata->enable_event = 0x6F; |
| 525 | drvdata->enable_ctrl1 = 0x1000000; |
| 526 | drvdata->fifofull_level = 0x28; |
| 527 | drvdata->addr_idx = 0x0; |
| 528 | for (i = 0; i < drvdata->nr_addr_cmp; i++) { |
| 529 | drvdata->addr_val[i] = 0x0; |
| 530 | drvdata->addr_acctype[i] = 0x0; |
| 531 | drvdata->addr_type[i] = ETM_ADDR_TYPE_NONE; |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 532 | } |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 533 | drvdata->cntr_idx = 0x0; |
| 534 | for (i = 0; i < drvdata->nr_cntr; i++) { |
| 535 | drvdata->cntr_rld_val[i] = 0x0; |
| 536 | drvdata->cntr_event[i] = 0x406F; |
| 537 | drvdata->cntr_rld_event[i] = 0x406F; |
| 538 | drvdata->cntr_val[i] = 0x0; |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 539 | } |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 540 | drvdata->seq_12_event = 0x406F; |
| 541 | drvdata->seq_21_event = 0x406F; |
| 542 | drvdata->seq_23_event = 0x406F; |
| 543 | drvdata->seq_31_event = 0x406F; |
| 544 | drvdata->seq_32_event = 0x406F; |
| 545 | drvdata->seq_13_event = 0x406F; |
| 546 | drvdata->seq_curr_state = 0x0; |
| 547 | drvdata->ctxid_idx = 0x0; |
| 548 | for (i = 0; i < drvdata->nr_ctxid_cmp; i++) |
| 549 | drvdata->ctxid_val[i] = 0x0; |
| 550 | drvdata->ctxid_mask = 0x0; |
Pratik Patel | 77b9063 | 2012-07-17 17:54:51 -0700 | [diff] [blame] | 551 | /* Bits[7:0] of ETMSYNCFR are reserved on Krait pass3 onwards */ |
| 552 | if (cpu_is_krait() && !cpu_is_krait_v1() && !cpu_is_krait_v2()) |
| 553 | drvdata->sync_freq = 0x100; |
| 554 | else |
| 555 | drvdata->sync_freq = 0x80; |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 556 | drvdata->timestamp_event = 0x406F; |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 557 | } |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 558 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 559 | return size; |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 560 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 561 | static DEVICE_ATTR(reset, S_IRUGO | S_IWUSR, etm_show_reset, etm_store_reset); |
Pratik Patel | d30deda | 2012-02-01 14:40:55 -0800 | [diff] [blame] | 562 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 563 | static ssize_t etm_show_mode(struct device *dev, struct device_attribute *attr, |
| 564 | char *buf) |
| 565 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 566 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 567 | unsigned long val = drvdata->mode; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 568 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 569 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 570 | } |
| 571 | |
| 572 | static ssize_t etm_store_mode(struct device *dev, struct device_attribute *attr, |
| 573 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 574 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 575 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 576 | unsigned long val; |
| 577 | |
| 578 | if (sscanf(buf, "%lx", &val) != 1) |
| 579 | return -EINVAL; |
| 580 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 581 | mutex_lock(&drvdata->mutex); |
| 582 | drvdata->mode = val & ETM_MODE_ALL; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 583 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 584 | if (drvdata->mode & ETM_MODE_EXCLUDE) |
| 585 | drvdata->enable_ctrl1 |= BIT(24); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 586 | else |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 587 | drvdata->enable_ctrl1 &= ~BIT(24); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 588 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 589 | if (drvdata->mode & ETM_MODE_CYCACC) |
| 590 | drvdata->ctrl |= BIT(12); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 591 | else |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 592 | drvdata->ctrl &= ~BIT(12); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 593 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 594 | if (drvdata->mode & ETM_MODE_STALL) |
| 595 | drvdata->ctrl |= BIT(7); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 596 | else |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 597 | drvdata->ctrl &= ~BIT(7); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 598 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 599 | if (drvdata->mode & ETM_MODE_TIMESTAMP) |
| 600 | drvdata->ctrl |= BIT(28); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 601 | else |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 602 | drvdata->ctrl &= ~BIT(28); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 603 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 604 | if (drvdata->mode & ETM_MODE_CTXID) |
| 605 | drvdata->ctrl |= (BIT(14) | BIT(15)); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 606 | else |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 607 | drvdata->ctrl &= ~(BIT(14) | BIT(15)); |
| 608 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 609 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 610 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 611 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 612 | static DEVICE_ATTR(mode, S_IRUGO | S_IWUSR, etm_show_mode, etm_store_mode); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 613 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 614 | static ssize_t etm_show_trigger_event(struct device *dev, |
| 615 | struct device_attribute *attr, char *buf) |
| 616 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 617 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 618 | unsigned long val = drvdata->trigger_event; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 619 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 620 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 621 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 622 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 623 | static ssize_t etm_store_trigger_event(struct device *dev, |
| 624 | struct device_attribute *attr, |
| 625 | const char *buf, size_t size) |
| 626 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 627 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 628 | unsigned long val; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 629 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 630 | if (sscanf(buf, "%lx", &val) != 1) |
| 631 | return -EINVAL; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 632 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 633 | drvdata->trigger_event = val & ETM_EVENT_MASK; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 634 | return size; |
| 635 | } |
| 636 | static DEVICE_ATTR(trigger_event, S_IRUGO | S_IWUSR, etm_show_trigger_event, |
| 637 | etm_store_trigger_event); |
| 638 | |
| 639 | static ssize_t etm_show_enable_event(struct device *dev, |
| 640 | struct device_attribute *attr, char *buf) |
| 641 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 642 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 643 | unsigned long val = drvdata->enable_event; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 644 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 645 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 646 | } |
| 647 | |
| 648 | static ssize_t etm_store_enable_event(struct device *dev, |
| 649 | struct device_attribute *attr, |
| 650 | const char *buf, size_t size) |
| 651 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 652 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 653 | unsigned long val; |
| 654 | |
| 655 | if (sscanf(buf, "%lx", &val) != 1) |
| 656 | return -EINVAL; |
| 657 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 658 | drvdata->enable_event = val & ETM_EVENT_MASK; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 659 | return size; |
| 660 | } |
| 661 | static DEVICE_ATTR(enable_event, S_IRUGO | S_IWUSR, etm_show_enable_event, |
| 662 | etm_store_enable_event); |
| 663 | |
| 664 | static ssize_t etm_show_fifofull_level(struct device *dev, |
| 665 | struct device_attribute *attr, char *buf) |
| 666 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 667 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 668 | unsigned long val = drvdata->fifofull_level; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 669 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 670 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 671 | } |
| 672 | |
| 673 | static ssize_t etm_store_fifofull_level(struct device *dev, |
| 674 | struct device_attribute *attr, |
| 675 | const char *buf, size_t size) |
| 676 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 677 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 678 | unsigned long val; |
| 679 | |
| 680 | if (sscanf(buf, "%lx", &val) != 1) |
| 681 | return -EINVAL; |
| 682 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 683 | drvdata->fifofull_level = val; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 684 | return size; |
| 685 | } |
| 686 | static DEVICE_ATTR(fifofull_level, S_IRUGO | S_IWUSR, etm_show_fifofull_level, |
| 687 | etm_store_fifofull_level); |
| 688 | |
| 689 | static ssize_t etm_show_addr_idx(struct device *dev, |
| 690 | struct device_attribute *attr, char *buf) |
| 691 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 692 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 693 | unsigned long val = drvdata->addr_idx; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 694 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 695 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 696 | } |
| 697 | |
| 698 | static ssize_t etm_store_addr_idx(struct device *dev, |
| 699 | struct device_attribute *attr, |
| 700 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 701 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 702 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 703 | unsigned long val; |
| 704 | |
| 705 | if (sscanf(buf, "%lx", &val) != 1) |
| 706 | return -EINVAL; |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 707 | if (val >= drvdata->nr_addr_cmp) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 708 | return -EINVAL; |
| 709 | |
| 710 | /* Use mutex to ensure index doesn't change while it gets dereferenced |
| 711 | * multiple times within a mutex block elsewhere. |
| 712 | */ |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 713 | mutex_lock(&drvdata->mutex); |
| 714 | drvdata->addr_idx = val; |
| 715 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 716 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 717 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 718 | static DEVICE_ATTR(addr_idx, S_IRUGO | S_IWUSR, etm_show_addr_idx, |
| 719 | etm_store_addr_idx); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 720 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 721 | static ssize_t etm_show_addr_single(struct device *dev, |
| 722 | struct device_attribute *attr, char *buf) |
| 723 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 724 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 725 | unsigned long val; |
| 726 | uint8_t idx; |
| 727 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 728 | mutex_lock(&drvdata->mutex); |
| 729 | idx = drvdata->addr_idx; |
| 730 | if (!(drvdata->addr_type[idx] == ETM_ADDR_TYPE_NONE || |
| 731 | drvdata->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) { |
| 732 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 733 | return -EPERM; |
| 734 | } |
| 735 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 736 | val = drvdata->addr_val[idx]; |
| 737 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 738 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 739 | } |
| 740 | |
| 741 | static ssize_t etm_store_addr_single(struct device *dev, |
| 742 | struct device_attribute *attr, |
| 743 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 744 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 745 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 746 | unsigned long val; |
| 747 | uint8_t idx; |
| 748 | |
| 749 | if (sscanf(buf, "%lx", &val) != 1) |
| 750 | return -EINVAL; |
| 751 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 752 | mutex_lock(&drvdata->mutex); |
| 753 | idx = drvdata->addr_idx; |
| 754 | if (!(drvdata->addr_type[idx] == ETM_ADDR_TYPE_NONE || |
| 755 | drvdata->addr_type[idx] == ETM_ADDR_TYPE_SINGLE)) { |
| 756 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 757 | return -EPERM; |
| 758 | } |
| 759 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 760 | drvdata->addr_val[idx] = val; |
| 761 | drvdata->addr_type[idx] = ETM_ADDR_TYPE_SINGLE; |
| 762 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 763 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 764 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 765 | static DEVICE_ATTR(addr_single, S_IRUGO | S_IWUSR, etm_show_addr_single, |
| 766 | etm_store_addr_single); |
| 767 | |
| 768 | static ssize_t etm_show_addr_range(struct device *dev, |
| 769 | struct device_attribute *attr, char *buf) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 770 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 771 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 772 | unsigned long val1, val2; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 773 | uint8_t idx; |
| 774 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 775 | mutex_lock(&drvdata->mutex); |
| 776 | idx = drvdata->addr_idx; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 777 | if (idx % 2 != 0) { |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 778 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 779 | return -EPERM; |
| 780 | } |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 781 | if (!((drvdata->addr_type[idx] == ETM_ADDR_TYPE_NONE && |
| 782 | drvdata->addr_type[idx + 1] == ETM_ADDR_TYPE_NONE) || |
| 783 | (drvdata->addr_type[idx] == ETM_ADDR_TYPE_RANGE && |
| 784 | drvdata->addr_type[idx + 1] == ETM_ADDR_TYPE_RANGE))) { |
| 785 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 786 | return -EPERM; |
| 787 | } |
| 788 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 789 | val1 = drvdata->addr_val[idx]; |
| 790 | val2 = drvdata->addr_val[idx + 1]; |
| 791 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 792 | return scnprintf(buf, PAGE_SIZE, "%#lx %#lx\n", val1, val2); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 793 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 794 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 795 | static ssize_t etm_store_addr_range(struct device *dev, |
| 796 | struct device_attribute *attr, |
| 797 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 798 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 799 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 800 | unsigned long val1, val2; |
| 801 | uint8_t idx; |
| 802 | |
| 803 | if (sscanf(buf, "%lx %lx", &val1, &val2) != 2) |
| 804 | return -EINVAL; |
| 805 | /* lower address comparator cannot have a higher address value */ |
| 806 | if (val1 > val2) |
| 807 | return -EINVAL; |
| 808 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 809 | mutex_lock(&drvdata->mutex); |
| 810 | idx = drvdata->addr_idx; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 811 | if (idx % 2 != 0) { |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 812 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 813 | return -EPERM; |
| 814 | } |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 815 | if (!((drvdata->addr_type[idx] == ETM_ADDR_TYPE_NONE && |
| 816 | drvdata->addr_type[idx + 1] == ETM_ADDR_TYPE_NONE) || |
| 817 | (drvdata->addr_type[idx] == ETM_ADDR_TYPE_RANGE && |
| 818 | drvdata->addr_type[idx + 1] == ETM_ADDR_TYPE_RANGE))) { |
| 819 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 820 | return -EPERM; |
| 821 | } |
| 822 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 823 | drvdata->addr_val[idx] = val1; |
| 824 | drvdata->addr_type[idx] = ETM_ADDR_TYPE_RANGE; |
| 825 | drvdata->addr_val[idx + 1] = val2; |
| 826 | drvdata->addr_type[idx + 1] = ETM_ADDR_TYPE_RANGE; |
| 827 | drvdata->enable_ctrl1 |= (1 << (idx/2)); |
| 828 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 829 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 830 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 831 | static DEVICE_ATTR(addr_range, S_IRUGO | S_IWUSR, etm_show_addr_range, |
| 832 | etm_store_addr_range); |
| 833 | |
| 834 | static ssize_t etm_show_addr_start(struct device *dev, |
| 835 | struct device_attribute *attr, char *buf) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 836 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 837 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 838 | unsigned long val; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 839 | uint8_t idx; |
| 840 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 841 | mutex_lock(&drvdata->mutex); |
| 842 | idx = drvdata->addr_idx; |
| 843 | if (!(drvdata->addr_type[idx] == ETM_ADDR_TYPE_NONE || |
| 844 | drvdata->addr_type[idx] == ETM_ADDR_TYPE_START)) { |
| 845 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 846 | return -EPERM; |
| 847 | } |
| 848 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 849 | val = drvdata->addr_val[idx]; |
| 850 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 851 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 852 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 853 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 854 | static ssize_t etm_store_addr_start(struct device *dev, |
| 855 | struct device_attribute *attr, |
| 856 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 857 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 858 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 859 | unsigned long val; |
| 860 | uint8_t idx; |
| 861 | |
| 862 | if (sscanf(buf, "%lx", &val) != 1) |
| 863 | return -EINVAL; |
| 864 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 865 | mutex_lock(&drvdata->mutex); |
| 866 | idx = drvdata->addr_idx; |
| 867 | if (!(drvdata->addr_type[idx] == ETM_ADDR_TYPE_NONE || |
| 868 | drvdata->addr_type[idx] == ETM_ADDR_TYPE_START)) { |
| 869 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 870 | return -EPERM; |
| 871 | } |
| 872 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 873 | drvdata->addr_val[idx] = val; |
| 874 | drvdata->addr_type[idx] = ETM_ADDR_TYPE_START; |
| 875 | drvdata->startstop_ctrl |= (1 << idx); |
| 876 | drvdata->enable_ctrl1 |= BIT(25); |
| 877 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 878 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 879 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 880 | static DEVICE_ATTR(addr_start, S_IRUGO | S_IWUSR, etm_show_addr_start, |
| 881 | etm_store_addr_start); |
| 882 | |
| 883 | static ssize_t etm_show_addr_stop(struct device *dev, |
| 884 | struct device_attribute *attr, char *buf) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 885 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 886 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 887 | unsigned long val; |
| 888 | uint8_t idx; |
| 889 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 890 | mutex_lock(&drvdata->mutex); |
| 891 | idx = drvdata->addr_idx; |
| 892 | if (!(drvdata->addr_type[idx] == ETM_ADDR_TYPE_NONE || |
| 893 | drvdata->addr_type[idx] == ETM_ADDR_TYPE_STOP)) { |
| 894 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 895 | return -EPERM; |
| 896 | } |
| 897 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 898 | val = drvdata->addr_val[idx]; |
| 899 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 900 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 901 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 902 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 903 | static ssize_t etm_store_addr_stop(struct device *dev, |
| 904 | struct device_attribute *attr, |
| 905 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 906 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 907 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 908 | unsigned long val; |
| 909 | uint8_t idx; |
| 910 | |
| 911 | if (sscanf(buf, "%lx", &val) != 1) |
| 912 | return -EINVAL; |
| 913 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 914 | mutex_lock(&drvdata->mutex); |
| 915 | idx = drvdata->addr_idx; |
| 916 | if (!(drvdata->addr_type[idx] == ETM_ADDR_TYPE_NONE || |
| 917 | drvdata->addr_type[idx] == ETM_ADDR_TYPE_STOP)) { |
| 918 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 919 | return -EPERM; |
| 920 | } |
| 921 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 922 | drvdata->addr_val[idx] = val; |
| 923 | drvdata->addr_type[idx] = ETM_ADDR_TYPE_STOP; |
| 924 | drvdata->startstop_ctrl |= (1 << (idx + 16)); |
| 925 | drvdata->enable_ctrl1 |= BIT(25); |
| 926 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 927 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 928 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 929 | static DEVICE_ATTR(addr_stop, S_IRUGO | S_IWUSR, etm_show_addr_stop, |
| 930 | etm_store_addr_stop); |
| 931 | |
| 932 | static ssize_t etm_show_addr_acctype(struct device *dev, |
| 933 | struct device_attribute *attr, char *buf) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 934 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 935 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 936 | unsigned long val; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 937 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 938 | mutex_lock(&drvdata->mutex); |
| 939 | val = drvdata->addr_acctype[drvdata->addr_idx]; |
| 940 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 941 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 942 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 943 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 944 | static ssize_t etm_store_addr_acctype(struct device *dev, |
| 945 | struct device_attribute *attr, |
| 946 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 947 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 948 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 949 | unsigned long val; |
| 950 | |
| 951 | if (sscanf(buf, "%lx", &val) != 1) |
| 952 | return -EINVAL; |
| 953 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 954 | mutex_lock(&drvdata->mutex); |
| 955 | drvdata->addr_acctype[drvdata->addr_idx] = val; |
| 956 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 957 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 958 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 959 | static DEVICE_ATTR(addr_acctype, S_IRUGO | S_IWUSR, etm_show_addr_acctype, |
| 960 | etm_store_addr_acctype); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 961 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 962 | static ssize_t etm_show_cntr_idx(struct device *dev, |
| 963 | struct device_attribute *attr, char *buf) |
| 964 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 965 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 966 | unsigned long val = drvdata->addr_idx; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 967 | |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 968 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 969 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 970 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 971 | static ssize_t etm_store_cntr_idx(struct device *dev, |
| 972 | struct device_attribute *attr, |
| 973 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 974 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 975 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 976 | unsigned long val; |
| 977 | |
| 978 | if (sscanf(buf, "%lx", &val) != 1) |
| 979 | return -EINVAL; |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 980 | if (val >= drvdata->nr_cntr) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 981 | return -EINVAL; |
| 982 | |
| 983 | /* Use mutex to ensure index doesn't change while it gets dereferenced |
| 984 | * multiple times within a mutex block elsewhere. |
| 985 | */ |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 986 | mutex_lock(&drvdata->mutex); |
| 987 | drvdata->cntr_idx = val; |
| 988 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 989 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 990 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 991 | static DEVICE_ATTR(cntr_idx, S_IRUGO | S_IWUSR, etm_show_cntr_idx, |
| 992 | etm_store_cntr_idx); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 993 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 994 | static ssize_t etm_show_cntr_rld_val(struct device *dev, |
| 995 | struct device_attribute *attr, char *buf) |
| 996 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 997 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 998 | unsigned long val; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 999 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1000 | mutex_lock(&drvdata->mutex); |
| 1001 | val = drvdata->cntr_rld_val[drvdata->cntr_idx]; |
| 1002 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1003 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1004 | } |
| 1005 | |
| 1006 | static ssize_t etm_store_cntr_rld_val(struct device *dev, |
| 1007 | struct device_attribute *attr, |
| 1008 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1009 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1010 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1011 | unsigned long val; |
| 1012 | |
| 1013 | if (sscanf(buf, "%lx", &val) != 1) |
| 1014 | return -EINVAL; |
| 1015 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1016 | mutex_lock(&drvdata->mutex); |
| 1017 | drvdata->cntr_rld_val[drvdata->cntr_idx] = val; |
| 1018 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1019 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1020 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1021 | static DEVICE_ATTR(cntr_rld_val, S_IRUGO | S_IWUSR, etm_show_cntr_rld_val, |
| 1022 | etm_store_cntr_rld_val); |
| 1023 | |
| 1024 | static ssize_t etm_show_cntr_event(struct device *dev, |
| 1025 | struct device_attribute *attr, char *buf) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1026 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1027 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1028 | unsigned long val; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1029 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1030 | mutex_lock(&drvdata->mutex); |
| 1031 | val = drvdata->cntr_event[drvdata->cntr_idx]; |
| 1032 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1033 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1034 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1035 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1036 | static ssize_t etm_store_cntr_event(struct device *dev, |
| 1037 | struct device_attribute *attr, |
| 1038 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1039 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1040 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1041 | unsigned long val; |
| 1042 | |
| 1043 | if (sscanf(buf, "%lx", &val) != 1) |
| 1044 | return -EINVAL; |
| 1045 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1046 | mutex_lock(&drvdata->mutex); |
| 1047 | drvdata->cntr_event[drvdata->cntr_idx] = val & ETM_EVENT_MASK; |
| 1048 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1049 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1050 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1051 | static DEVICE_ATTR(cntr_event, S_IRUGO | S_IWUSR, etm_show_cntr_event, |
| 1052 | etm_store_cntr_event); |
| 1053 | |
| 1054 | static ssize_t etm_show_cntr_rld_event(struct device *dev, |
| 1055 | struct device_attribute *attr, char *buf) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1056 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1057 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1058 | unsigned long val; |
| 1059 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1060 | mutex_lock(&drvdata->mutex); |
| 1061 | val = drvdata->cntr_rld_event[drvdata->cntr_idx]; |
| 1062 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1063 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1064 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1065 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1066 | static ssize_t etm_store_cntr_rld_event(struct device *dev, |
| 1067 | struct device_attribute *attr, |
| 1068 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1069 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1070 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1071 | unsigned long val; |
| 1072 | |
| 1073 | if (sscanf(buf, "%lx", &val) != 1) |
| 1074 | return -EINVAL; |
| 1075 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1076 | mutex_lock(&drvdata->mutex); |
| 1077 | drvdata->cntr_rld_event[drvdata->cntr_idx] = val & ETM_EVENT_MASK; |
| 1078 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1079 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1080 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1081 | static DEVICE_ATTR(cntr_rld_event, S_IRUGO | S_IWUSR, etm_show_cntr_rld_event, |
| 1082 | etm_store_cntr_rld_event); |
| 1083 | |
| 1084 | static ssize_t etm_show_cntr_val(struct device *dev, |
| 1085 | struct device_attribute *attr, char *buf) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1086 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1087 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1088 | unsigned long val; |
| 1089 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1090 | mutex_lock(&drvdata->mutex); |
| 1091 | val = drvdata->cntr_val[drvdata->cntr_idx]; |
| 1092 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1093 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1094 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1095 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1096 | static ssize_t etm_store_cntr_val(struct device *dev, |
| 1097 | struct device_attribute *attr, |
| 1098 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1099 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1100 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1101 | unsigned long val; |
| 1102 | |
| 1103 | if (sscanf(buf, "%lx", &val) != 1) |
| 1104 | return -EINVAL; |
| 1105 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1106 | mutex_lock(&drvdata->mutex); |
| 1107 | drvdata->cntr_val[drvdata->cntr_idx] = val; |
| 1108 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1109 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1110 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1111 | static DEVICE_ATTR(cntr_val, S_IRUGO | S_IWUSR, etm_show_cntr_val, |
| 1112 | etm_store_cntr_val); |
| 1113 | |
| 1114 | static ssize_t etm_show_seq_12_event(struct device *dev, |
| 1115 | struct device_attribute *attr, char *buf) |
| 1116 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1117 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1118 | unsigned long val = drvdata->seq_12_event; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1119 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1120 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1121 | } |
| 1122 | |
| 1123 | static ssize_t etm_store_seq_12_event(struct device *dev, |
| 1124 | struct device_attribute *attr, |
| 1125 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1126 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1127 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1128 | unsigned long val; |
| 1129 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1130 | if (sscanf(buf, "%lx", &val) != 1) |
| 1131 | return -EINVAL; |
| 1132 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1133 | drvdata->seq_12_event = val & ETM_EVENT_MASK; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1134 | return size; |
| 1135 | } |
| 1136 | static DEVICE_ATTR(seq_12_event, S_IRUGO | S_IWUSR, etm_show_seq_12_event, |
| 1137 | etm_store_seq_12_event); |
| 1138 | |
| 1139 | static ssize_t etm_show_seq_21_event(struct device *dev, |
| 1140 | struct device_attribute *attr, char *buf) |
| 1141 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1142 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1143 | unsigned long val = drvdata->seq_21_event; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1144 | |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1145 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1146 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1147 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1148 | static ssize_t etm_store_seq_21_event(struct device *dev, |
| 1149 | struct device_attribute *attr, |
| 1150 | const char *buf, size_t size) |
| 1151 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1152 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1153 | unsigned long val; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1154 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1155 | if (sscanf(buf, "%lx", &val) != 1) |
| 1156 | return -EINVAL; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1157 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1158 | drvdata->seq_21_event = val & ETM_EVENT_MASK; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1159 | return size; |
| 1160 | } |
| 1161 | static DEVICE_ATTR(seq_21_event, S_IRUGO | S_IWUSR, etm_show_seq_21_event, |
| 1162 | etm_store_seq_21_event); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1163 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1164 | static ssize_t etm_show_seq_23_event(struct device *dev, |
| 1165 | struct device_attribute *attr, char *buf) |
| 1166 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1167 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1168 | unsigned long val = drvdata->seq_23_event; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1169 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1170 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1171 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1172 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1173 | static ssize_t etm_store_seq_23_event(struct device *dev, |
| 1174 | struct device_attribute *attr, |
| 1175 | const char *buf, size_t size) |
| 1176 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1177 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1178 | unsigned long val; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1179 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1180 | if (sscanf(buf, "%lx", &val) != 1) |
| 1181 | return -EINVAL; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1182 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1183 | drvdata->seq_23_event = val & ETM_EVENT_MASK; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1184 | return size; |
| 1185 | } |
| 1186 | static DEVICE_ATTR(seq_23_event, S_IRUGO | S_IWUSR, etm_show_seq_23_event, |
| 1187 | etm_store_seq_23_event); |
| 1188 | |
| 1189 | static ssize_t etm_show_seq_31_event(struct device *dev, |
| 1190 | struct device_attribute *attr, char *buf) |
| 1191 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1192 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1193 | unsigned long val = drvdata->seq_31_event; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1194 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1195 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1196 | } |
| 1197 | |
| 1198 | static ssize_t etm_store_seq_31_event(struct device *dev, |
| 1199 | struct device_attribute *attr, |
| 1200 | const char *buf, size_t size) |
| 1201 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1202 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1203 | unsigned long val; |
| 1204 | |
| 1205 | if (sscanf(buf, "%lx", &val) != 1) |
| 1206 | return -EINVAL; |
| 1207 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1208 | drvdata->seq_31_event = val & ETM_EVENT_MASK; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1209 | return size; |
| 1210 | } |
| 1211 | static DEVICE_ATTR(seq_31_event, S_IRUGO | S_IWUSR, etm_show_seq_31_event, |
| 1212 | etm_store_seq_31_event); |
| 1213 | |
| 1214 | static ssize_t etm_show_seq_32_event(struct device *dev, |
| 1215 | struct device_attribute *attr, char *buf) |
| 1216 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1217 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1218 | unsigned long val = drvdata->seq_32_event; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1219 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1220 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1221 | } |
| 1222 | |
| 1223 | static ssize_t etm_store_seq_32_event(struct device *dev, |
| 1224 | struct device_attribute *attr, |
| 1225 | const char *buf, size_t size) |
| 1226 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1227 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1228 | unsigned long val; |
| 1229 | |
| 1230 | if (sscanf(buf, "%lx", &val) != 1) |
| 1231 | return -EINVAL; |
| 1232 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1233 | drvdata->seq_32_event = val & ETM_EVENT_MASK; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1234 | return size; |
| 1235 | } |
| 1236 | static DEVICE_ATTR(seq_32_event, S_IRUGO | S_IWUSR, etm_show_seq_32_event, |
| 1237 | etm_store_seq_32_event); |
| 1238 | |
| 1239 | static ssize_t etm_show_seq_13_event(struct device *dev, |
| 1240 | struct device_attribute *attr, char *buf) |
| 1241 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1242 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1243 | unsigned long val = drvdata->seq_13_event; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1244 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1245 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1246 | } |
| 1247 | |
| 1248 | static ssize_t etm_store_seq_13_event(struct device *dev, |
| 1249 | struct device_attribute *attr, |
| 1250 | const char *buf, size_t size) |
| 1251 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1252 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1253 | unsigned long val; |
| 1254 | |
| 1255 | if (sscanf(buf, "%lx", &val) != 1) |
| 1256 | return -EINVAL; |
| 1257 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1258 | drvdata->seq_13_event = val & ETM_EVENT_MASK; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1259 | return size; |
| 1260 | } |
| 1261 | static DEVICE_ATTR(seq_13_event, S_IRUGO | S_IWUSR, etm_show_seq_13_event, |
| 1262 | etm_store_seq_13_event); |
| 1263 | |
| 1264 | static ssize_t etm_show_seq_curr_state(struct device *dev, |
| 1265 | struct device_attribute *attr, char *buf) |
| 1266 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1267 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1268 | unsigned long val = drvdata->seq_curr_state; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1269 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1270 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1271 | } |
| 1272 | |
| 1273 | static ssize_t etm_store_seq_curr_state(struct device *dev, |
| 1274 | struct device_attribute *attr, |
| 1275 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1276 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1277 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1278 | unsigned long val; |
| 1279 | |
| 1280 | if (sscanf(buf, "%lx", &val) != 1) |
| 1281 | return -EINVAL; |
| 1282 | if (val > ETM_SEQ_STATE_MAX_VAL) |
| 1283 | return -EINVAL; |
| 1284 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1285 | drvdata->seq_curr_state = val; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1286 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1287 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1288 | static DEVICE_ATTR(seq_curr_state, S_IRUGO | S_IWUSR, etm_show_seq_curr_state, |
| 1289 | etm_store_seq_curr_state); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1290 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1291 | static ssize_t etm_show_ctxid_idx(struct device *dev, |
| 1292 | struct device_attribute *attr, char *buf) |
| 1293 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1294 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1295 | unsigned long val = drvdata->ctxid_idx; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1296 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1297 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1298 | } |
| 1299 | |
| 1300 | static ssize_t etm_store_ctxid_idx(struct device *dev, |
| 1301 | struct device_attribute *attr, |
| 1302 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1303 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1304 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1305 | unsigned long val; |
| 1306 | |
| 1307 | if (sscanf(buf, "%lx", &val) != 1) |
| 1308 | return -EINVAL; |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1309 | if (val >= drvdata->nr_ctxid_cmp) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1310 | return -EINVAL; |
| 1311 | |
| 1312 | /* Use mutex to ensure index doesn't change while it gets dereferenced |
| 1313 | * multiple times within a mutex block elsewhere. |
| 1314 | */ |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1315 | mutex_lock(&drvdata->mutex); |
| 1316 | drvdata->ctxid_idx = val; |
| 1317 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1318 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1319 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1320 | static DEVICE_ATTR(ctxid_idx, S_IRUGO | S_IWUSR, etm_show_ctxid_idx, |
| 1321 | etm_store_ctxid_idx); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1322 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1323 | static ssize_t etm_show_ctxid_val(struct device *dev, |
| 1324 | struct device_attribute *attr, char *buf) |
| 1325 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1326 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1327 | unsigned long val; |
| 1328 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1329 | mutex_lock(&drvdata->mutex); |
| 1330 | val = drvdata->ctxid_val[drvdata->ctxid_idx]; |
| 1331 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1332 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1333 | } |
| 1334 | |
| 1335 | static ssize_t etm_store_ctxid_val(struct device *dev, |
| 1336 | struct device_attribute *attr, |
| 1337 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1338 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1339 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1340 | unsigned long val; |
| 1341 | |
| 1342 | if (sscanf(buf, "%lx", &val) != 1) |
| 1343 | return -EINVAL; |
| 1344 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1345 | mutex_lock(&drvdata->mutex); |
| 1346 | drvdata->ctxid_val[drvdata->ctxid_idx] = val; |
| 1347 | mutex_unlock(&drvdata->mutex); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1348 | return size; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1349 | } |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1350 | static DEVICE_ATTR(ctxid_val, S_IRUGO | S_IWUSR, etm_show_ctxid_val, |
| 1351 | etm_store_ctxid_val); |
| 1352 | |
| 1353 | static ssize_t etm_show_ctxid_mask(struct device *dev, |
| 1354 | struct device_attribute *attr, char *buf) |
| 1355 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1356 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1357 | unsigned long val = drvdata->ctxid_mask; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1358 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1359 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1360 | } |
| 1361 | |
| 1362 | static ssize_t etm_store_ctxid_mask(struct device *dev, |
| 1363 | struct device_attribute *attr, |
| 1364 | const char *buf, size_t size) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1365 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1366 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1367 | unsigned long val; |
| 1368 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1369 | if (sscanf(buf, "%lx", &val) != 1) |
| 1370 | return -EINVAL; |
| 1371 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1372 | drvdata->ctxid_mask = val; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1373 | return size; |
| 1374 | } |
| 1375 | static DEVICE_ATTR(ctxid_mask, S_IRUGO | S_IWUSR, etm_show_ctxid_mask, |
| 1376 | etm_store_ctxid_mask); |
| 1377 | |
| 1378 | static ssize_t etm_show_sync_freq(struct device *dev, |
| 1379 | struct device_attribute *attr, char *buf) |
| 1380 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1381 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1382 | unsigned long val = drvdata->sync_freq; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1383 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1384 | } |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1385 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1386 | static ssize_t etm_store_sync_freq(struct device *dev, |
| 1387 | struct device_attribute *attr, |
| 1388 | const char *buf, size_t size) |
| 1389 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1390 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1391 | unsigned long val; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1392 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1393 | if (sscanf(buf, "%lx", &val) != 1) |
| 1394 | return -EINVAL; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1395 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1396 | drvdata->sync_freq = val & ETM_SYNC_MASK; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1397 | return size; |
| 1398 | } |
| 1399 | static DEVICE_ATTR(sync_freq, S_IRUGO | S_IWUSR, etm_show_sync_freq, |
| 1400 | etm_store_sync_freq); |
| 1401 | |
| 1402 | static ssize_t etm_show_timestamp_event(struct device *dev, |
| 1403 | struct device_attribute *attr, |
| 1404 | char *buf) |
| 1405 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1406 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1407 | unsigned long val = drvdata->timestamp_event; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1408 | |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1409 | return scnprintf(buf, PAGE_SIZE, "%#lx\n", val); |
| 1410 | } |
| 1411 | |
| 1412 | static ssize_t etm_store_timestamp_event(struct device *dev, |
| 1413 | struct device_attribute *attr, |
| 1414 | const char *buf, size_t size) |
| 1415 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1416 | struct etm_drvdata *drvdata = dev_get_drvdata(dev->parent); |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1417 | unsigned long val; |
| 1418 | |
| 1419 | if (sscanf(buf, "%lx", &val) != 1) |
| 1420 | return -EINVAL; |
| 1421 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1422 | drvdata->timestamp_event = val & ETM_EVENT_MASK; |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1423 | return size; |
| 1424 | } |
| 1425 | static DEVICE_ATTR(timestamp_event, S_IRUGO | S_IWUSR, etm_show_timestamp_event, |
| 1426 | etm_store_timestamp_event); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1427 | |
| 1428 | static struct attribute *etm_attrs[] = { |
Pratik Patel | a9c0e06 | 2012-05-28 13:45:35 -0700 | [diff] [blame] | 1429 | &dev_attr_nr_addr_cmp.attr, |
| 1430 | &dev_attr_nr_cntr.attr, |
| 1431 | &dev_attr_nr_ctxid_cmp.attr, |
| 1432 | &dev_attr_reset.attr, |
| 1433 | &dev_attr_mode.attr, |
| 1434 | &dev_attr_trigger_event.attr, |
| 1435 | &dev_attr_enable_event.attr, |
| 1436 | &dev_attr_fifofull_level.attr, |
| 1437 | &dev_attr_addr_idx.attr, |
| 1438 | &dev_attr_addr_single.attr, |
| 1439 | &dev_attr_addr_range.attr, |
| 1440 | &dev_attr_addr_start.attr, |
| 1441 | &dev_attr_addr_stop.attr, |
| 1442 | &dev_attr_addr_acctype.attr, |
| 1443 | &dev_attr_cntr_idx.attr, |
| 1444 | &dev_attr_cntr_rld_val.attr, |
| 1445 | &dev_attr_cntr_event.attr, |
| 1446 | &dev_attr_cntr_rld_event.attr, |
| 1447 | &dev_attr_cntr_val.attr, |
| 1448 | &dev_attr_seq_12_event.attr, |
| 1449 | &dev_attr_seq_21_event.attr, |
| 1450 | &dev_attr_seq_23_event.attr, |
| 1451 | &dev_attr_seq_31_event.attr, |
| 1452 | &dev_attr_seq_32_event.attr, |
| 1453 | &dev_attr_seq_13_event.attr, |
| 1454 | &dev_attr_seq_curr_state.attr, |
| 1455 | &dev_attr_ctxid_idx.attr, |
| 1456 | &dev_attr_ctxid_val.attr, |
| 1457 | &dev_attr_ctxid_mask.attr, |
| 1458 | &dev_attr_sync_freq.attr, |
| 1459 | &dev_attr_timestamp_event.attr, |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1460 | NULL, |
| 1461 | }; |
| 1462 | |
| 1463 | static struct attribute_group etm_attr_grp = { |
| 1464 | .attrs = etm_attrs, |
| 1465 | }; |
| 1466 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1467 | static const struct attribute_group *etm_attr_grps[] = { |
| 1468 | &etm_attr_grp, |
| 1469 | NULL, |
| 1470 | }; |
| 1471 | |
| 1472 | /* Memory mapped writes to clear os lock not supported */ |
| 1473 | static void etm_os_unlock(void *unused) |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1474 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1475 | unsigned long value = 0x0; |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1476 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1477 | asm("mcr p14, 1, %0, c1, c0, 4\n\t" : : "r" (value)); |
| 1478 | asm("isb\n\t"); |
Pratik Patel | 6630ebe | 2012-03-06 16:44:22 -0800 | [diff] [blame] | 1479 | } |
| 1480 | |
Stephen Boyd | a951050 | 2012-04-24 16:23:34 -0700 | [diff] [blame] | 1481 | static bool __devinit etm_arch_supported(uint8_t arch) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1482 | { |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 1483 | switch (arch) { |
| 1484 | case PFT_ARCH_V1_1: |
| 1485 | break; |
| 1486 | default: |
| 1487 | return false; |
| 1488 | } |
| 1489 | return true; |
| 1490 | } |
| 1491 | |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 1492 | static void __devinit etm_prepare_arch(struct etm_drvdata *drvdata) |
| 1493 | { |
| 1494 | /* Unlock OS lock first to allow memory mapped reads and writes. This |
| 1495 | * is required for Krait pass1 |
| 1496 | * */ |
| 1497 | etm_os_unlock(NULL); |
| 1498 | smp_call_function(etm_os_unlock, NULL, 1); |
| 1499 | } |
| 1500 | |
| 1501 | static void __devinit etm_init_arch_data(void *info) |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 1502 | { |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 1503 | uint32_t etmidr; |
| 1504 | uint32_t etmccr; |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 1505 | struct etm_drvdata *drvdata = info; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1506 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1507 | ETM_UNLOCK(drvdata); |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 1508 | /* Vote for ETM power/clock enable */ |
Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 1509 | etm_set_pwrup(drvdata); |
Pratik Patel | d1d65c9 | 2012-09-25 23:37:43 -0700 | [diff] [blame^] | 1510 | /* |
| 1511 | * Clear power down bit since when this bit is set writes to |
| 1512 | * certain registers might be ignored. |
| 1513 | */ |
| 1514 | etm_clr_pwrdwn(drvdata); |
Pratik Patel | 61de730 | 2012-03-07 12:06:10 -0800 | [diff] [blame] | 1515 | /* Set prog bit. It will be set from reset but this is included to |
| 1516 | * ensure it is set |
| 1517 | */ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1518 | etm_set_prog(drvdata); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1519 | |
| 1520 | /* find all capabilities */ |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1521 | etmidr = etm_readl(drvdata, ETMIDR); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1522 | drvdata->arch = BMVAL(etmidr, 4, 11); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1523 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1524 | etmccr = etm_readl(drvdata, ETMCCR); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1525 | drvdata->nr_addr_cmp = BMVAL(etmccr, 0, 3) * 2; |
| 1526 | drvdata->nr_cntr = BMVAL(etmccr, 13, 15); |
| 1527 | drvdata->nr_ext_inp = BMVAL(etmccr, 17, 19); |
| 1528 | drvdata->nr_ext_out = BMVAL(etmccr, 20, 22); |
| 1529 | drvdata->nr_ctxid_cmp = BMVAL(etmccr, 24, 25); |
Pratik Patel | 2d0c7b6 | 2012-02-24 19:04:37 -0800 | [diff] [blame] | 1530 | |
Pratik Patel | d1d65c9 | 2012-09-25 23:37:43 -0700 | [diff] [blame^] | 1531 | etm_set_pwrdwn(drvdata); |
Pratik Patel | 17f3b82 | 2011-11-21 12:41:47 -0800 | [diff] [blame] | 1532 | /* Vote for ETM power/clock disable */ |
Pratik Patel | ef6da29 | 2012-09-17 17:37:19 -0700 | [diff] [blame] | 1533 | etm_clr_pwrup(drvdata); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1534 | ETM_LOCK(drvdata); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1535 | } |
| 1536 | |
Pratik Patel | c14b4df | 2012-09-05 18:07:59 -0700 | [diff] [blame] | 1537 | static void __devinit etm_copy_arch_data(struct etm_drvdata *drvdata) |
| 1538 | { |
| 1539 | drvdata->arch = etm0drvdata->arch; |
| 1540 | drvdata->nr_addr_cmp = etm0drvdata->nr_addr_cmp; |
| 1541 | drvdata->nr_cntr = etm0drvdata->nr_cntr; |
| 1542 | drvdata->nr_ext_inp = etm0drvdata->nr_ext_inp; |
| 1543 | drvdata->nr_ext_out = etm0drvdata->nr_ext_out; |
| 1544 | drvdata->nr_ctxid_cmp = etm0drvdata->nr_ctxid_cmp; |
| 1545 | } |
| 1546 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1547 | static void __devinit etm_init_default_data(struct etm_drvdata *drvdata) |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1548 | { |
| 1549 | int i; |
| 1550 | |
| 1551 | drvdata->trigger_event = 0x406F; |
| 1552 | drvdata->enable_event = 0x6F; |
| 1553 | drvdata->enable_ctrl1 = 0x1; |
| 1554 | drvdata->fifofull_level = 0x28; |
| 1555 | if (drvdata->nr_addr_cmp >= 2) { |
| 1556 | drvdata->addr_val[0] = (uint32_t) _stext; |
| 1557 | drvdata->addr_val[1] = (uint32_t) _etext; |
| 1558 | drvdata->addr_type[0] = ETM_ADDR_TYPE_RANGE; |
| 1559 | drvdata->addr_type[1] = ETM_ADDR_TYPE_RANGE; |
| 1560 | } |
| 1561 | for (i = 0; i < drvdata->nr_cntr; i++) { |
| 1562 | drvdata->cntr_event[i] = 0x406F; |
| 1563 | drvdata->cntr_rld_event[i] = 0x406F; |
| 1564 | } |
| 1565 | drvdata->seq_12_event = 0x406F; |
| 1566 | drvdata->seq_21_event = 0x406F; |
| 1567 | drvdata->seq_23_event = 0x406F; |
| 1568 | drvdata->seq_31_event = 0x406F; |
| 1569 | drvdata->seq_32_event = 0x406F; |
| 1570 | drvdata->seq_13_event = 0x406F; |
Pratik Patel | 77b9063 | 2012-07-17 17:54:51 -0700 | [diff] [blame] | 1571 | /* Bits[7:0] of ETMSYNCFR are reserved on Krait pass3 onwards */ |
| 1572 | if (cpu_is_krait() && !cpu_is_krait_v1() && !cpu_is_krait_v2()) |
| 1573 | drvdata->sync_freq = 0x100; |
| 1574 | else |
| 1575 | drvdata->sync_freq = 0x80; |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1576 | drvdata->timestamp_event = 0x406F; |
| 1577 | |
| 1578 | /* Overrides for Krait pass1 */ |
| 1579 | if (cpu_is_krait_v1()) { |
| 1580 | /* Krait pass1 doesn't support include filtering and non-cycle |
| 1581 | * accurate tracing |
| 1582 | */ |
| 1583 | drvdata->mode = (ETM_MODE_EXCLUDE | ETM_MODE_CYCACC); |
| 1584 | drvdata->ctrl = 0x1000; |
| 1585 | drvdata->enable_ctrl1 = 0x1000000; |
| 1586 | for (i = 0; i < drvdata->nr_addr_cmp; i++) { |
| 1587 | drvdata->addr_val[i] = 0x0; |
| 1588 | drvdata->addr_acctype[i] = 0x0; |
| 1589 | drvdata->addr_type[i] = ETM_ADDR_TYPE_NONE; |
| 1590 | } |
| 1591 | } |
| 1592 | } |
| 1593 | |
Pratik Patel | 492b301 | 2012-03-06 14:22:30 -0800 | [diff] [blame] | 1594 | static int __devinit etm_probe(struct platform_device *pdev) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1595 | { |
Pratik Patel | e577179 | 2011-09-17 18:33:54 -0700 | [diff] [blame] | 1596 | int ret; |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1597 | struct device *dev = &pdev->dev; |
Pratik Patel | 5f6d1af | 2012-06-13 15:48:13 -0700 | [diff] [blame] | 1598 | struct coresight_platform_data *pdata; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1599 | struct etm_drvdata *drvdata; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1600 | struct resource *res; |
Pratik Patel | 2647779 | 2012-09-07 01:35:36 -0700 | [diff] [blame] | 1601 | uint32_t reg_size; |
| 1602 | static int count; |
| 1603 | void *baddr; |
| 1604 | struct msm_client_dump dump; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1605 | struct coresight_desc *desc; |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1606 | |
Pratik Patel | 5f6d1af | 2012-06-13 15:48:13 -0700 | [diff] [blame] | 1607 | if (pdev->dev.of_node) { |
| 1608 | pdata = of_get_coresight_platform_data(dev, pdev->dev.of_node); |
| 1609 | if (IS_ERR(pdata)) |
| 1610 | return PTR_ERR(pdata); |
| 1611 | pdev->dev.platform_data = pdata; |
| 1612 | } |
| 1613 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1614 | drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL); |
| 1615 | if (!drvdata) |
| 1616 | return -ENOMEM; |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1617 | drvdata->dev = &pdev->dev; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1618 | platform_set_drvdata(pdev, drvdata); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1619 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1620 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1621 | if (!res) |
| 1622 | return -ENODEV; |
Pratik Patel | 2647779 | 2012-09-07 01:35:36 -0700 | [diff] [blame] | 1623 | reg_size = resource_size(res); |
Pratik Patel | 2c09b76 | 2012-07-21 15:54:54 -0700 | [diff] [blame] | 1624 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1625 | drvdata->base = devm_ioremap(dev, res->start, resource_size(res)); |
| 1626 | if (!drvdata->base) |
| 1627 | return -ENOMEM; |
| 1628 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1629 | mutex_init(&drvdata->mutex); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1630 | wake_lock_init(&drvdata->wake_lock, WAKE_LOCK_SUSPEND, "coresight-etm"); |
Pratik Patel | e10a77c | 2012-03-20 10:35:16 -0700 | [diff] [blame] | 1631 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1632 | drvdata->clk = devm_clk_get(dev, "core_clk"); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1633 | if (IS_ERR(drvdata->clk)) { |
| 1634 | ret = PTR_ERR(drvdata->clk); |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1635 | goto err0; |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 1636 | } |
Pratik Patel | 2c09b76 | 2012-07-21 15:54:54 -0700 | [diff] [blame] | 1637 | |
Pratik Patel | 6fb3834 | 2012-06-03 14:51:38 -0700 | [diff] [blame] | 1638 | ret = clk_set_rate(drvdata->clk, CORESIGHT_CLK_RATE_TRACE); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1639 | if (ret) |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1640 | goto err0; |
| 1641 | |
Pratik Patel | 2647779 | 2012-09-07 01:35:36 -0700 | [diff] [blame] | 1642 | drvdata->cpu = count++; |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1643 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1644 | ret = clk_prepare_enable(drvdata->clk); |
Pratik Patel | f17b147 | 2012-05-25 22:23:52 -0700 | [diff] [blame] | 1645 | if (ret) |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1646 | goto err0; |
Pratik Patel | 2c09b76 | 2012-07-21 15:54:54 -0700 | [diff] [blame] | 1647 | |
Pratik Patel | c14b4df | 2012-09-05 18:07:59 -0700 | [diff] [blame] | 1648 | /* Use CPU0 to populate read-only configuration data for ETM0. For other |
| 1649 | * ETMs copy it over from ETM0. |
| 1650 | */ |
| 1651 | if (drvdata->cpu == 0) { |
Pratik Patel | e6e41da | 2012-09-12 12:50:29 -0700 | [diff] [blame] | 1652 | etm_prepare_arch(drvdata); |
| 1653 | smp_call_function_single(drvdata->cpu, etm_init_arch_data, |
| 1654 | drvdata, 1); |
Pratik Patel | c14b4df | 2012-09-05 18:07:59 -0700 | [diff] [blame] | 1655 | etm0drvdata = drvdata; |
| 1656 | } else { |
Pratik Patel | dc3a0a4 | 2012-09-11 17:48:23 -0700 | [diff] [blame] | 1657 | etm_copy_arch_data(drvdata); |
| 1658 | } |
| 1659 | if (etm_arch_supported(drvdata->arch) == false) { |
| 1660 | ret = -EINVAL; |
| 1661 | goto err1; |
Pratik Patel | c14b4df | 2012-09-05 18:07:59 -0700 | [diff] [blame] | 1662 | } |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1663 | etm_init_default_data(drvdata); |
Pratik Patel | 2c09b76 | 2012-07-21 15:54:54 -0700 | [diff] [blame] | 1664 | |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1665 | clk_disable_unprepare(drvdata->clk); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1666 | |
Pratik Patel | 2647779 | 2012-09-07 01:35:36 -0700 | [diff] [blame] | 1667 | baddr = devm_kzalloc(dev, PAGE_SIZE + reg_size, GFP_KERNEL); |
| 1668 | if (baddr) { |
| 1669 | *(uint32_t *)(baddr + ETM_REG_DUMP_VER_OFF) = ETM_REG_DUMP_VER; |
| 1670 | dump.id = MSM_ETM0_REG + drvdata->cpu; |
| 1671 | dump.start_addr = virt_to_phys(baddr); |
| 1672 | dump.end_addr = dump.start_addr + PAGE_SIZE + reg_size; |
| 1673 | ret = msm_dump_table_register(&dump); |
| 1674 | if (ret) { |
| 1675 | devm_kfree(dev, baddr); |
| 1676 | dev_err(dev, "ETM REG dump setup failed\n"); |
| 1677 | } |
| 1678 | } else { |
| 1679 | dev_err(dev, "ETM REG dump space allocation failed\n"); |
| 1680 | } |
| 1681 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1682 | desc = devm_kzalloc(dev, sizeof(*desc), GFP_KERNEL); |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1683 | if (!desc) { |
| 1684 | ret = -ENOMEM; |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1685 | goto err0; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1686 | } |
| 1687 | desc->type = CORESIGHT_DEV_TYPE_SOURCE; |
| 1688 | desc->subtype.source_subtype = CORESIGHT_DEV_SUBTYPE_SOURCE_PROC; |
| 1689 | desc->ops = &etm_cs_ops; |
| 1690 | desc->pdata = pdev->dev.platform_data; |
| 1691 | desc->dev = &pdev->dev; |
| 1692 | desc->groups = etm_attr_grps; |
| 1693 | desc->owner = THIS_MODULE; |
| 1694 | drvdata->csdev = coresight_register(desc); |
| 1695 | if (IS_ERR(drvdata->csdev)) { |
| 1696 | ret = PTR_ERR(drvdata->csdev); |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1697 | goto err0; |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1698 | } |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1699 | |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1700 | dev_info(dev, "ETM initialized\n"); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1701 | |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1702 | if (boot_enable) |
| 1703 | coresight_enable(drvdata->csdev); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1704 | |
| 1705 | return 0; |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1706 | err1: |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1707 | clk_disable_unprepare(drvdata->clk); |
Pratik Patel | 4a1b252 | 2012-06-17 15:31:15 -0700 | [diff] [blame] | 1708 | err0: |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1709 | wake_lock_destroy(&drvdata->wake_lock); |
| 1710 | mutex_destroy(&drvdata->mutex); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1711 | return ret; |
| 1712 | } |
| 1713 | |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 1714 | static int __devexit etm_remove(struct platform_device *pdev) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1715 | { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1716 | struct etm_drvdata *drvdata = platform_get_drvdata(pdev); |
| 1717 | |
| 1718 | coresight_unregister(drvdata->csdev); |
Pratik Patel | 16aefdb | 2012-05-30 10:41:23 -0700 | [diff] [blame] | 1719 | wake_lock_destroy(&drvdata->wake_lock); |
| 1720 | mutex_destroy(&drvdata->mutex); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1721 | return 0; |
| 1722 | } |
| 1723 | |
Pratik Patel | 9eae482 | 2012-05-14 17:34:53 -0700 | [diff] [blame] | 1724 | static struct of_device_id etm_match[] = { |
Pratik Patel | 5f6d1af | 2012-06-13 15:48:13 -0700 | [diff] [blame] | 1725 | {.compatible = "arm,coresight-etm"}, |
Pratik Patel | 9eae482 | 2012-05-14 17:34:53 -0700 | [diff] [blame] | 1726 | {} |
| 1727 | }; |
| 1728 | |
Pratik Patel | 492b301 | 2012-03-06 14:22:30 -0800 | [diff] [blame] | 1729 | static struct platform_driver etm_driver = { |
| 1730 | .probe = etm_probe, |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 1731 | .remove = __devexit_p(etm_remove), |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1732 | .driver = { |
Pratik Patel | 3b0ca88 | 2012-06-01 16:54:14 -0700 | [diff] [blame] | 1733 | .name = "coresight-etm", |
Pratik Patel | 9eae482 | 2012-05-14 17:34:53 -0700 | [diff] [blame] | 1734 | .owner = THIS_MODULE, |
| 1735 | .of_match_table = etm_match, |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1736 | }, |
| 1737 | }; |
| 1738 | |
Pratik Patel | 492b301 | 2012-03-06 14:22:30 -0800 | [diff] [blame] | 1739 | int __init etm_init(void) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1740 | { |
Pratik Patel | 492b301 | 2012-03-06 14:22:30 -0800 | [diff] [blame] | 1741 | return platform_driver_register(&etm_driver); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1742 | } |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 1743 | module_init(etm_init); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1744 | |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 1745 | void __exit etm_exit(void) |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1746 | { |
Pratik Patel | 492b301 | 2012-03-06 14:22:30 -0800 | [diff] [blame] | 1747 | platform_driver_unregister(&etm_driver); |
Pratik Patel | 7831c08 | 2011-06-08 21:44:37 -0700 | [diff] [blame] | 1748 | } |
Pratik Patel | f6fe918 | 2012-03-20 14:04:18 -0700 | [diff] [blame] | 1749 | module_exit(etm_exit); |
| 1750 | |
| 1751 | MODULE_LICENSE("GPL v2"); |
| 1752 | MODULE_DESCRIPTION("CoreSight Program Flow Trace driver"); |