coresight-etb10.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753
  1. /* Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
  2. *
  3. * Description: CoreSight Embedded Trace Buffer driver
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 and
  7. * only version 2 as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #include <asm/local.h>
  15. #include <linux/kernel.h>
  16. #include <linux/init.h>
  17. #include <linux/types.h>
  18. #include <linux/device.h>
  19. #include <linux/io.h>
  20. #include <linux/err.h>
  21. #include <linux/fs.h>
  22. #include <linux/miscdevice.h>
  23. #include <linux/uaccess.h>
  24. #include <linux/slab.h>
  25. #include <linux/spinlock.h>
  26. #include <linux/pm_runtime.h>
  27. #include <linux/seq_file.h>
  28. #include <linux/coresight.h>
  29. #include <linux/amba/bus.h>
  30. #include <linux/clk.h>
  31. #include <linux/circ_buf.h>
  32. #include <linux/mm.h>
  33. #include <linux/perf_event.h>
  34. #include <asm/local.h>
  35. #include "coresight-priv.h"
  36. #define ETB_RAM_DEPTH_REG 0x004
  37. #define ETB_STATUS_REG 0x00c
  38. #define ETB_RAM_READ_DATA_REG 0x010
  39. #define ETB_RAM_READ_POINTER 0x014
  40. #define ETB_RAM_WRITE_POINTER 0x018
  41. #define ETB_TRG 0x01c
  42. #define ETB_CTL_REG 0x020
  43. #define ETB_RWD_REG 0x024
  44. #define ETB_FFSR 0x300
  45. #define ETB_FFCR 0x304
  46. #define ETB_ITMISCOP0 0xee0
  47. #define ETB_ITTRFLINACK 0xee4
  48. #define ETB_ITTRFLIN 0xee8
  49. #define ETB_ITATBDATA0 0xeeC
  50. #define ETB_ITATBCTR2 0xef0
  51. #define ETB_ITATBCTR1 0xef4
  52. #define ETB_ITATBCTR0 0xef8
  53. /* register description */
  54. /* STS - 0x00C */
  55. #define ETB_STATUS_RAM_FULL BIT(0)
  56. /* CTL - 0x020 */
  57. #define ETB_CTL_CAPT_EN BIT(0)
  58. /* FFCR - 0x304 */
  59. #define ETB_FFCR_EN_FTC BIT(0)
  60. #define ETB_FFCR_FON_MAN BIT(6)
  61. #define ETB_FFCR_STOP_FI BIT(12)
  62. #define ETB_FFCR_STOP_TRIGGER BIT(13)
  63. #define ETB_FFCR_BIT 6
  64. #define ETB_FFSR_BIT 1
  65. #define ETB_FRAME_SIZE_WORDS 4
  66. /**
  67. * struct etb_drvdata - specifics associated to an ETB component
  68. * @base: memory mapped base address for this component.
  69. * @dev: the device entity associated to this component.
  70. * @atclk: optional clock for the core parts of the ETB.
  71. * @csdev: component vitals needed by the framework.
  72. * @miscdev: specifics to handle "/dev/xyz.etb" entry.
  73. * @spinlock: only one at a time pls.
  74. * @reading: synchronise user space access to etb buffer.
  75. * @mode: this ETB is being used.
  76. * @buf: area of memory where ETB buffer content gets sent.
  77. * @buffer_depth: size of @buf.
  78. * @trigger_cntr: amount of words to store after a trigger.
  79. */
  80. struct etb_drvdata {
  81. void __iomem *base;
  82. struct device *dev;
  83. struct clk *atclk;
  84. struct coresight_device *csdev;
  85. struct miscdevice miscdev;
  86. spinlock_t spinlock;
  87. local_t reading;
  88. local_t mode;
  89. u8 *buf;
  90. u32 buffer_depth;
  91. u32 trigger_cntr;
  92. };
  93. static unsigned int etb_get_buffer_depth(struct etb_drvdata *drvdata)
  94. {
  95. u32 depth = 0;
  96. pm_runtime_get_sync(drvdata->dev);
  97. /* RO registers don't need locking */
  98. depth = readl_relaxed(drvdata->base + ETB_RAM_DEPTH_REG);
  99. pm_runtime_put(drvdata->dev);
  100. return depth;
  101. }
  102. static void etb_enable_hw(struct etb_drvdata *drvdata)
  103. {
  104. int i;
  105. u32 depth;
  106. CS_UNLOCK(drvdata->base);
  107. depth = drvdata->buffer_depth;
  108. /* reset write RAM pointer address */
  109. writel_relaxed(0x0, drvdata->base + ETB_RAM_WRITE_POINTER);
  110. /* clear entire RAM buffer */
  111. for (i = 0; i < depth; i++)
  112. writel_relaxed(0x0, drvdata->base + ETB_RWD_REG);
  113. /* reset write RAM pointer address */
  114. writel_relaxed(0x0, drvdata->base + ETB_RAM_WRITE_POINTER);
  115. /* reset read RAM pointer address */
  116. writel_relaxed(0x0, drvdata->base + ETB_RAM_READ_POINTER);
  117. writel_relaxed(drvdata->trigger_cntr, drvdata->base + ETB_TRG);
  118. writel_relaxed(ETB_FFCR_EN_FTC | ETB_FFCR_STOP_TRIGGER,
  119. drvdata->base + ETB_FFCR);
  120. /* ETB trace capture enable */
  121. writel_relaxed(ETB_CTL_CAPT_EN, drvdata->base + ETB_CTL_REG);
  122. CS_LOCK(drvdata->base);
  123. }
  124. static int etb_enable(struct coresight_device *csdev, u32 mode)
  125. {
  126. u32 val;
  127. unsigned long flags;
  128. struct etb_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
  129. val = local_cmpxchg(&drvdata->mode,
  130. CS_MODE_DISABLED, mode);
  131. /*
  132. * When accessing from Perf, a HW buffer can be handled
  133. * by a single trace entity. In sysFS mode many tracers
  134. * can be logging to the same HW buffer.
  135. */
  136. if (val == CS_MODE_PERF)
  137. return -EBUSY;
  138. /* Nothing to do, the tracer is already enabled. */
  139. if (val == CS_MODE_SYSFS)
  140. goto out;
  141. spin_lock_irqsave(&drvdata->spinlock, flags);
  142. etb_enable_hw(drvdata);
  143. spin_unlock_irqrestore(&drvdata->spinlock, flags);
  144. out:
  145. dev_info(drvdata->dev, "ETB enabled\n");
  146. return 0;
  147. }
  148. static void etb_disable_hw(struct etb_drvdata *drvdata)
  149. {
  150. u32 ffcr;
  151. CS_UNLOCK(drvdata->base);
  152. ffcr = readl_relaxed(drvdata->base + ETB_FFCR);
  153. /* stop formatter when a stop has completed */
  154. ffcr |= ETB_FFCR_STOP_FI;
  155. writel_relaxed(ffcr, drvdata->base + ETB_FFCR);
  156. /* manually generate a flush of the system */
  157. ffcr |= ETB_FFCR_FON_MAN;
  158. writel_relaxed(ffcr, drvdata->base + ETB_FFCR);
  159. if (coresight_timeout(drvdata->base, ETB_FFCR, ETB_FFCR_BIT, 0)) {
  160. dev_err(drvdata->dev,
  161. "timeout while waiting for completion of Manual Flush\n");
  162. }
  163. /* disable trace capture */
  164. writel_relaxed(0x0, drvdata->base + ETB_CTL_REG);
  165. if (coresight_timeout(drvdata->base, ETB_FFSR, ETB_FFSR_BIT, 1)) {
  166. dev_err(drvdata->dev,
  167. "timeout while waiting for Formatter to Stop\n");
  168. }
  169. CS_LOCK(drvdata->base);
  170. }
  171. static void etb_dump_hw(struct etb_drvdata *drvdata)
  172. {
  173. int i;
  174. u8 *buf_ptr;
  175. u32 read_data, depth;
  176. u32 read_ptr, write_ptr;
  177. u32 frame_off, frame_endoff;
  178. CS_UNLOCK(drvdata->base);
  179. read_ptr = readl_relaxed(drvdata->base + ETB_RAM_READ_POINTER);
  180. write_ptr = readl_relaxed(drvdata->base + ETB_RAM_WRITE_POINTER);
  181. frame_off = write_ptr % ETB_FRAME_SIZE_WORDS;
  182. frame_endoff = ETB_FRAME_SIZE_WORDS - frame_off;
  183. if (frame_off) {
  184. dev_err(drvdata->dev,
  185. "write_ptr: %lu not aligned to formatter frame size\n",
  186. (unsigned long)write_ptr);
  187. dev_err(drvdata->dev, "frameoff: %lu, frame_endoff: %lu\n",
  188. (unsigned long)frame_off, (unsigned long)frame_endoff);
  189. write_ptr += frame_endoff;
  190. }
  191. if ((readl_relaxed(drvdata->base + ETB_STATUS_REG)
  192. & ETB_STATUS_RAM_FULL) == 0)
  193. writel_relaxed(0x0, drvdata->base + ETB_RAM_READ_POINTER);
  194. else
  195. writel_relaxed(write_ptr, drvdata->base + ETB_RAM_READ_POINTER);
  196. depth = drvdata->buffer_depth;
  197. buf_ptr = drvdata->buf;
  198. for (i = 0; i < depth; i++) {
  199. read_data = readl_relaxed(drvdata->base +
  200. ETB_RAM_READ_DATA_REG);
  201. *buf_ptr++ = read_data >> 0;
  202. *buf_ptr++ = read_data >> 8;
  203. *buf_ptr++ = read_data >> 16;
  204. *buf_ptr++ = read_data >> 24;
  205. }
  206. if (frame_off) {
  207. buf_ptr -= (frame_endoff * 4);
  208. for (i = 0; i < frame_endoff; i++) {
  209. *buf_ptr++ = 0x0;
  210. *buf_ptr++ = 0x0;
  211. *buf_ptr++ = 0x0;
  212. *buf_ptr++ = 0x0;
  213. }
  214. }
  215. writel_relaxed(read_ptr, drvdata->base + ETB_RAM_READ_POINTER);
  216. CS_LOCK(drvdata->base);
  217. }
  218. static void etb_disable(struct coresight_device *csdev)
  219. {
  220. struct etb_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
  221. unsigned long flags;
  222. spin_lock_irqsave(&drvdata->spinlock, flags);
  223. etb_disable_hw(drvdata);
  224. etb_dump_hw(drvdata);
  225. spin_unlock_irqrestore(&drvdata->spinlock, flags);
  226. local_set(&drvdata->mode, CS_MODE_DISABLED);
  227. dev_info(drvdata->dev, "ETB disabled\n");
  228. }
  229. static void *etb_alloc_buffer(struct coresight_device *csdev, int cpu,
  230. void **pages, int nr_pages, bool overwrite)
  231. {
  232. int node;
  233. struct cs_buffers *buf;
  234. if (cpu == -1)
  235. cpu = smp_processor_id();
  236. node = cpu_to_node(cpu);
  237. buf = kzalloc_node(sizeof(struct cs_buffers), GFP_KERNEL, node);
  238. if (!buf)
  239. return NULL;
  240. buf->snapshot = overwrite;
  241. buf->nr_pages = nr_pages;
  242. buf->data_pages = pages;
  243. return buf;
  244. }
  245. static void etb_free_buffer(void *config)
  246. {
  247. struct cs_buffers *buf = config;
  248. kfree(buf);
  249. }
  250. static int etb_set_buffer(struct coresight_device *csdev,
  251. struct perf_output_handle *handle,
  252. void *sink_config)
  253. {
  254. int ret = 0;
  255. unsigned long head;
  256. struct cs_buffers *buf = sink_config;
  257. /* wrap head around to the amount of space we have */
  258. head = handle->head & ((buf->nr_pages << PAGE_SHIFT) - 1);
  259. /* find the page to write to */
  260. buf->cur = head / PAGE_SIZE;
  261. /* and offset within that page */
  262. buf->offset = head % PAGE_SIZE;
  263. local_set(&buf->data_size, 0);
  264. return ret;
  265. }
  266. static unsigned long etb_reset_buffer(struct coresight_device *csdev,
  267. struct perf_output_handle *handle,
  268. void *sink_config)
  269. {
  270. unsigned long size = 0;
  271. struct cs_buffers *buf = sink_config;
  272. if (buf) {
  273. /*
  274. * In snapshot mode ->data_size holds the new address of the
  275. * ring buffer's head. The size itself is the whole address
  276. * range since we want the latest information.
  277. */
  278. if (buf->snapshot)
  279. handle->head = local_xchg(&buf->data_size,
  280. buf->nr_pages << PAGE_SHIFT);
  281. /*
  282. * Tell the tracer PMU how much we got in this run and if
  283. * something went wrong along the way. Nobody else can use
  284. * this cs_buffers instance until we are done. As such
  285. * resetting parameters here and squaring off with the ring
  286. * buffer API in the tracer PMU is fine.
  287. */
  288. size = local_xchg(&buf->data_size, 0);
  289. }
  290. return size;
  291. }
  292. static void etb_update_buffer(struct coresight_device *csdev,
  293. struct perf_output_handle *handle,
  294. void *sink_config)
  295. {
  296. int i, cur;
  297. u8 *buf_ptr;
  298. u32 read_ptr, write_ptr, capacity;
  299. u32 status, read_data, to_read;
  300. unsigned long offset;
  301. struct cs_buffers *buf = sink_config;
  302. struct etb_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
  303. if (!buf)
  304. return;
  305. capacity = drvdata->buffer_depth * ETB_FRAME_SIZE_WORDS;
  306. CS_UNLOCK(drvdata->base);
  307. etb_disable_hw(drvdata);
  308. /* unit is in words, not bytes */
  309. read_ptr = readl_relaxed(drvdata->base + ETB_RAM_READ_POINTER);
  310. write_ptr = readl_relaxed(drvdata->base + ETB_RAM_WRITE_POINTER);
  311. /*
  312. * Entries should be aligned to the frame size. If they are not
  313. * go back to the last alignement point to give decoding tools a
  314. * chance to fix things.
  315. */
  316. if (write_ptr % ETB_FRAME_SIZE_WORDS) {
  317. dev_err(drvdata->dev,
  318. "write_ptr: %lu not aligned to formatter frame size\n",
  319. (unsigned long)write_ptr);
  320. write_ptr &= ~(ETB_FRAME_SIZE_WORDS - 1);
  321. perf_aux_output_flag(handle, PERF_AUX_FLAG_TRUNCATED);
  322. }
  323. /*
  324. * Get a hold of the status register and see if a wrap around
  325. * has occurred. If so adjust things accordingly. Otherwise
  326. * start at the beginning and go until the write pointer has
  327. * been reached.
  328. */
  329. status = readl_relaxed(drvdata->base + ETB_STATUS_REG);
  330. if (status & ETB_STATUS_RAM_FULL) {
  331. perf_aux_output_flag(handle, PERF_AUX_FLAG_TRUNCATED);
  332. to_read = capacity;
  333. read_ptr = write_ptr;
  334. } else {
  335. to_read = CIRC_CNT(write_ptr, read_ptr, drvdata->buffer_depth);
  336. to_read *= ETB_FRAME_SIZE_WORDS;
  337. }
  338. /*
  339. * Make sure we don't overwrite data that hasn't been consumed yet.
  340. * It is entirely possible that the HW buffer has more data than the
  341. * ring buffer can currently handle. If so adjust the start address
  342. * to take only the last traces.
  343. *
  344. * In snapshot mode we are looking to get the latest traces only and as
  345. * such, we don't care about not overwriting data that hasn't been
  346. * processed by user space.
  347. */
  348. if (!buf->snapshot && to_read > handle->size) {
  349. u32 mask = ~(ETB_FRAME_SIZE_WORDS - 1);
  350. /* The new read pointer must be frame size aligned */
  351. to_read = handle->size & mask;
  352. /*
  353. * Move the RAM read pointer up, keeping in mind that
  354. * everything is in frame size units.
  355. */
  356. read_ptr = (write_ptr + drvdata->buffer_depth) -
  357. to_read / ETB_FRAME_SIZE_WORDS;
  358. /* Wrap around if need be*/
  359. if (read_ptr > (drvdata->buffer_depth - 1))
  360. read_ptr -= drvdata->buffer_depth;
  361. /* let the decoder know we've skipped ahead */
  362. perf_aux_output_flag(handle, PERF_AUX_FLAG_TRUNCATED);
  363. }
  364. /* finally tell HW where we want to start reading from */
  365. writel_relaxed(read_ptr, drvdata->base + ETB_RAM_READ_POINTER);
  366. cur = buf->cur;
  367. offset = buf->offset;
  368. for (i = 0; i < to_read; i += 4) {
  369. buf_ptr = buf->data_pages[cur] + offset;
  370. read_data = readl_relaxed(drvdata->base +
  371. ETB_RAM_READ_DATA_REG);
  372. *buf_ptr++ = read_data >> 0;
  373. *buf_ptr++ = read_data >> 8;
  374. *buf_ptr++ = read_data >> 16;
  375. *buf_ptr++ = read_data >> 24;
  376. offset += 4;
  377. if (offset >= PAGE_SIZE) {
  378. offset = 0;
  379. cur++;
  380. /* wrap around at the end of the buffer */
  381. cur &= buf->nr_pages - 1;
  382. }
  383. }
  384. /* reset ETB buffer for next run */
  385. writel_relaxed(0x0, drvdata->base + ETB_RAM_READ_POINTER);
  386. writel_relaxed(0x0, drvdata->base + ETB_RAM_WRITE_POINTER);
  387. /*
  388. * In snapshot mode all we have to do is communicate to
  389. * perf_aux_output_end() the address of the current head. In full
  390. * trace mode the same function expects a size to move rb->aux_head
  391. * forward.
  392. */
  393. if (buf->snapshot)
  394. local_set(&buf->data_size, (cur * PAGE_SIZE) + offset);
  395. else
  396. local_add(to_read, &buf->data_size);
  397. etb_enable_hw(drvdata);
  398. CS_LOCK(drvdata->base);
  399. }
  400. static const struct coresight_ops_sink etb_sink_ops = {
  401. .enable = etb_enable,
  402. .disable = etb_disable,
  403. .alloc_buffer = etb_alloc_buffer,
  404. .free_buffer = etb_free_buffer,
  405. .set_buffer = etb_set_buffer,
  406. .reset_buffer = etb_reset_buffer,
  407. .update_buffer = etb_update_buffer,
  408. };
  409. static const struct coresight_ops etb_cs_ops = {
  410. .sink_ops = &etb_sink_ops,
  411. };
  412. static void etb_dump(struct etb_drvdata *drvdata)
  413. {
  414. unsigned long flags;
  415. spin_lock_irqsave(&drvdata->spinlock, flags);
  416. if (local_read(&drvdata->mode) == CS_MODE_SYSFS) {
  417. etb_disable_hw(drvdata);
  418. etb_dump_hw(drvdata);
  419. etb_enable_hw(drvdata);
  420. }
  421. spin_unlock_irqrestore(&drvdata->spinlock, flags);
  422. dev_info(drvdata->dev, "ETB dumped\n");
  423. }
  424. static int etb_open(struct inode *inode, struct file *file)
  425. {
  426. struct etb_drvdata *drvdata = container_of(file->private_data,
  427. struct etb_drvdata, miscdev);
  428. if (local_cmpxchg(&drvdata->reading, 0, 1))
  429. return -EBUSY;
  430. dev_dbg(drvdata->dev, "%s: successfully opened\n", __func__);
  431. return 0;
  432. }
  433. static ssize_t etb_read(struct file *file, char __user *data,
  434. size_t len, loff_t *ppos)
  435. {
  436. u32 depth;
  437. struct etb_drvdata *drvdata = container_of(file->private_data,
  438. struct etb_drvdata, miscdev);
  439. etb_dump(drvdata);
  440. depth = drvdata->buffer_depth;
  441. if (*ppos + len > depth * 4)
  442. len = depth * 4 - *ppos;
  443. if (copy_to_user(data, drvdata->buf + *ppos, len)) {
  444. dev_dbg(drvdata->dev, "%s: copy_to_user failed\n", __func__);
  445. return -EFAULT;
  446. }
  447. *ppos += len;
  448. dev_dbg(drvdata->dev, "%s: %zu bytes copied, %d bytes left\n",
  449. __func__, len, (int)(depth * 4 - *ppos));
  450. return len;
  451. }
  452. static int etb_release(struct inode *inode, struct file *file)
  453. {
  454. struct etb_drvdata *drvdata = container_of(file->private_data,
  455. struct etb_drvdata, miscdev);
  456. local_set(&drvdata->reading, 0);
  457. dev_dbg(drvdata->dev, "%s: released\n", __func__);
  458. return 0;
  459. }
  460. static const struct file_operations etb_fops = {
  461. .owner = THIS_MODULE,
  462. .open = etb_open,
  463. .read = etb_read,
  464. .release = etb_release,
  465. .llseek = no_llseek,
  466. };
  467. #define coresight_etb10_simple_func(name, offset) \
  468. coresight_simple_func(struct etb_drvdata, NULL, name, offset)
  469. coresight_etb10_simple_func(rdp, ETB_RAM_DEPTH_REG);
  470. coresight_etb10_simple_func(sts, ETB_STATUS_REG);
  471. coresight_etb10_simple_func(rrp, ETB_RAM_READ_POINTER);
  472. coresight_etb10_simple_func(rwp, ETB_RAM_WRITE_POINTER);
  473. coresight_etb10_simple_func(trg, ETB_TRG);
  474. coresight_etb10_simple_func(ctl, ETB_CTL_REG);
  475. coresight_etb10_simple_func(ffsr, ETB_FFSR);
  476. coresight_etb10_simple_func(ffcr, ETB_FFCR);
  477. static struct attribute *coresight_etb_mgmt_attrs[] = {
  478. &dev_attr_rdp.attr,
  479. &dev_attr_sts.attr,
  480. &dev_attr_rrp.attr,
  481. &dev_attr_rwp.attr,
  482. &dev_attr_trg.attr,
  483. &dev_attr_ctl.attr,
  484. &dev_attr_ffsr.attr,
  485. &dev_attr_ffcr.attr,
  486. NULL,
  487. };
  488. static ssize_t trigger_cntr_show(struct device *dev,
  489. struct device_attribute *attr, char *buf)
  490. {
  491. struct etb_drvdata *drvdata = dev_get_drvdata(dev->parent);
  492. unsigned long val = drvdata->trigger_cntr;
  493. return sprintf(buf, "%#lx\n", val);
  494. }
  495. static ssize_t trigger_cntr_store(struct device *dev,
  496. struct device_attribute *attr,
  497. const char *buf, size_t size)
  498. {
  499. int ret;
  500. unsigned long val;
  501. struct etb_drvdata *drvdata = dev_get_drvdata(dev->parent);
  502. ret = kstrtoul(buf, 16, &val);
  503. if (ret)
  504. return ret;
  505. drvdata->trigger_cntr = val;
  506. return size;
  507. }
  508. static DEVICE_ATTR_RW(trigger_cntr);
  509. static struct attribute *coresight_etb_attrs[] = {
  510. &dev_attr_trigger_cntr.attr,
  511. NULL,
  512. };
  513. static const struct attribute_group coresight_etb_group = {
  514. .attrs = coresight_etb_attrs,
  515. };
  516. static const struct attribute_group coresight_etb_mgmt_group = {
  517. .attrs = coresight_etb_mgmt_attrs,
  518. .name = "mgmt",
  519. };
  520. const struct attribute_group *coresight_etb_groups[] = {
  521. &coresight_etb_group,
  522. &coresight_etb_mgmt_group,
  523. NULL,
  524. };
  525. static int etb_probe(struct amba_device *adev, const struct amba_id *id)
  526. {
  527. int ret;
  528. void __iomem *base;
  529. struct device *dev = &adev->dev;
  530. struct coresight_platform_data *pdata = NULL;
  531. struct etb_drvdata *drvdata;
  532. struct resource *res = &adev->res;
  533. struct coresight_desc desc = { 0 };
  534. struct device_node *np = adev->dev.of_node;
  535. if (np) {
  536. pdata = of_get_coresight_platform_data(dev, np);
  537. if (IS_ERR(pdata))
  538. return PTR_ERR(pdata);
  539. adev->dev.platform_data = pdata;
  540. }
  541. drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
  542. if (!drvdata)
  543. return -ENOMEM;
  544. drvdata->dev = &adev->dev;
  545. drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */
  546. if (!IS_ERR(drvdata->atclk)) {
  547. ret = clk_prepare_enable(drvdata->atclk);
  548. if (ret)
  549. return ret;
  550. }
  551. dev_set_drvdata(dev, drvdata);
  552. /* validity for the resource is already checked by the AMBA core */
  553. base = devm_ioremap_resource(dev, res);
  554. if (IS_ERR(base))
  555. return PTR_ERR(base);
  556. drvdata->base = base;
  557. spin_lock_init(&drvdata->spinlock);
  558. drvdata->buffer_depth = etb_get_buffer_depth(drvdata);
  559. pm_runtime_put(&adev->dev);
  560. if (drvdata->buffer_depth & 0x80000000)
  561. return -EINVAL;
  562. drvdata->buf = devm_kzalloc(dev,
  563. drvdata->buffer_depth * 4, GFP_KERNEL);
  564. if (!drvdata->buf) {
  565. dev_err(dev, "Failed to allocate %u bytes for buffer data\n",
  566. drvdata->buffer_depth * 4);
  567. return -ENOMEM;
  568. }
  569. desc.type = CORESIGHT_DEV_TYPE_SINK;
  570. desc.subtype.sink_subtype = CORESIGHT_DEV_SUBTYPE_SINK_BUFFER;
  571. desc.ops = &etb_cs_ops;
  572. desc.pdata = pdata;
  573. desc.dev = dev;
  574. desc.groups = coresight_etb_groups;
  575. drvdata->csdev = coresight_register(&desc);
  576. if (IS_ERR(drvdata->csdev))
  577. return PTR_ERR(drvdata->csdev);
  578. drvdata->miscdev.name = pdata->name;
  579. drvdata->miscdev.minor = MISC_DYNAMIC_MINOR;
  580. drvdata->miscdev.fops = &etb_fops;
  581. ret = misc_register(&drvdata->miscdev);
  582. if (ret)
  583. goto err_misc_register;
  584. return 0;
  585. err_misc_register:
  586. coresight_unregister(drvdata->csdev);
  587. return ret;
  588. }
  589. #ifdef CONFIG_PM
  590. static int etb_runtime_suspend(struct device *dev)
  591. {
  592. struct etb_drvdata *drvdata = dev_get_drvdata(dev);
  593. if (drvdata && !IS_ERR(drvdata->atclk))
  594. clk_disable_unprepare(drvdata->atclk);
  595. return 0;
  596. }
  597. static int etb_runtime_resume(struct device *dev)
  598. {
  599. struct etb_drvdata *drvdata = dev_get_drvdata(dev);
  600. if (drvdata && !IS_ERR(drvdata->atclk))
  601. clk_prepare_enable(drvdata->atclk);
  602. return 0;
  603. }
  604. #endif
  605. static const struct dev_pm_ops etb_dev_pm_ops = {
  606. SET_RUNTIME_PM_OPS(etb_runtime_suspend, etb_runtime_resume, NULL)
  607. };
  608. static struct amba_id etb_ids[] = {
  609. {
  610. .id = 0x0003b907,
  611. .mask = 0x0003ffff,
  612. },
  613. { 0, 0},
  614. };
  615. static struct amba_driver etb_driver = {
  616. .drv = {
  617. .name = "coresight-etb10",
  618. .owner = THIS_MODULE,
  619. .pm = &etb_dev_pm_ops,
  620. .suppress_bind_attrs = true,
  621. },
  622. .probe = etb_probe,
  623. .id_table = etb_ids,
  624. };
  625. builtin_amba_driver(etb_driver);