coresight-etb10.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754
  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, bool *lost)
  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. *lost = !!local_xchg(&buf->lost, 0);
  289. size = local_xchg(&buf->data_size, 0);
  290. }
  291. return size;
  292. }
  293. static void etb_update_buffer(struct coresight_device *csdev,
  294. struct perf_output_handle *handle,
  295. void *sink_config)
  296. {
  297. int i, cur;
  298. u8 *buf_ptr;
  299. u32 read_ptr, write_ptr, capacity;
  300. u32 status, read_data, to_read;
  301. unsigned long offset;
  302. struct cs_buffers *buf = sink_config;
  303. struct etb_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);
  304. if (!buf)
  305. return;
  306. capacity = drvdata->buffer_depth * ETB_FRAME_SIZE_WORDS;
  307. CS_UNLOCK(drvdata->base);
  308. etb_disable_hw(drvdata);
  309. /* unit is in words, not bytes */
  310. read_ptr = readl_relaxed(drvdata->base + ETB_RAM_READ_POINTER);
  311. write_ptr = readl_relaxed(drvdata->base + ETB_RAM_WRITE_POINTER);
  312. /*
  313. * Entries should be aligned to the frame size. If they are not
  314. * go back to the last alignement point to give decoding tools a
  315. * chance to fix things.
  316. */
  317. if (write_ptr % ETB_FRAME_SIZE_WORDS) {
  318. dev_err(drvdata->dev,
  319. "write_ptr: %lu not aligned to formatter frame size\n",
  320. (unsigned long)write_ptr);
  321. write_ptr &= ~(ETB_FRAME_SIZE_WORDS - 1);
  322. local_inc(&buf->lost);
  323. }
  324. /*
  325. * Get a hold of the status register and see if a wrap around
  326. * has occurred. If so adjust things accordingly. Otherwise
  327. * start at the beginning and go until the write pointer has
  328. * been reached.
  329. */
  330. status = readl_relaxed(drvdata->base + ETB_STATUS_REG);
  331. if (status & ETB_STATUS_RAM_FULL) {
  332. local_inc(&buf->lost);
  333. to_read = capacity;
  334. read_ptr = write_ptr;
  335. } else {
  336. to_read = CIRC_CNT(write_ptr, read_ptr, drvdata->buffer_depth);
  337. to_read *= ETB_FRAME_SIZE_WORDS;
  338. }
  339. /*
  340. * Make sure we don't overwrite data that hasn't been consumed yet.
  341. * It is entirely possible that the HW buffer has more data than the
  342. * ring buffer can currently handle. If so adjust the start address
  343. * to take only the last traces.
  344. *
  345. * In snapshot mode we are looking to get the latest traces only and as
  346. * such, we don't care about not overwriting data that hasn't been
  347. * processed by user space.
  348. */
  349. if (!buf->snapshot && to_read > handle->size) {
  350. u32 mask = ~(ETB_FRAME_SIZE_WORDS - 1);
  351. /* The new read pointer must be frame size aligned */
  352. to_read = handle->size & mask;
  353. /*
  354. * Move the RAM read pointer up, keeping in mind that
  355. * everything is in frame size units.
  356. */
  357. read_ptr = (write_ptr + drvdata->buffer_depth) -
  358. to_read / ETB_FRAME_SIZE_WORDS;
  359. /* Wrap around if need be*/
  360. if (read_ptr > (drvdata->buffer_depth - 1))
  361. read_ptr -= drvdata->buffer_depth;
  362. /* let the decoder know we've skipped ahead */
  363. local_inc(&buf->lost);
  364. }
  365. /* finally tell HW where we want to start reading from */
  366. writel_relaxed(read_ptr, drvdata->base + ETB_RAM_READ_POINTER);
  367. cur = buf->cur;
  368. offset = buf->offset;
  369. for (i = 0; i < to_read; i += 4) {
  370. buf_ptr = buf->data_pages[cur] + offset;
  371. read_data = readl_relaxed(drvdata->base +
  372. ETB_RAM_READ_DATA_REG);
  373. *buf_ptr++ = read_data >> 0;
  374. *buf_ptr++ = read_data >> 8;
  375. *buf_ptr++ = read_data >> 16;
  376. *buf_ptr++ = read_data >> 24;
  377. offset += 4;
  378. if (offset >= PAGE_SIZE) {
  379. offset = 0;
  380. cur++;
  381. /* wrap around at the end of the buffer */
  382. cur &= buf->nr_pages - 1;
  383. }
  384. }
  385. /* reset ETB buffer for next run */
  386. writel_relaxed(0x0, drvdata->base + ETB_RAM_READ_POINTER);
  387. writel_relaxed(0x0, drvdata->base + ETB_RAM_WRITE_POINTER);
  388. /*
  389. * In snapshot mode all we have to do is communicate to
  390. * perf_aux_output_end() the address of the current head. In full
  391. * trace mode the same function expects a size to move rb->aux_head
  392. * forward.
  393. */
  394. if (buf->snapshot)
  395. local_set(&buf->data_size, (cur * PAGE_SIZE) + offset);
  396. else
  397. local_add(to_read, &buf->data_size);
  398. etb_enable_hw(drvdata);
  399. CS_LOCK(drvdata->base);
  400. }
  401. static const struct coresight_ops_sink etb_sink_ops = {
  402. .enable = etb_enable,
  403. .disable = etb_disable,
  404. .alloc_buffer = etb_alloc_buffer,
  405. .free_buffer = etb_free_buffer,
  406. .set_buffer = etb_set_buffer,
  407. .reset_buffer = etb_reset_buffer,
  408. .update_buffer = etb_update_buffer,
  409. };
  410. static const struct coresight_ops etb_cs_ops = {
  411. .sink_ops = &etb_sink_ops,
  412. };
  413. static void etb_dump(struct etb_drvdata *drvdata)
  414. {
  415. unsigned long flags;
  416. spin_lock_irqsave(&drvdata->spinlock, flags);
  417. if (local_read(&drvdata->mode) == CS_MODE_SYSFS) {
  418. etb_disable_hw(drvdata);
  419. etb_dump_hw(drvdata);
  420. etb_enable_hw(drvdata);
  421. }
  422. spin_unlock_irqrestore(&drvdata->spinlock, flags);
  423. dev_info(drvdata->dev, "ETB dumped\n");
  424. }
  425. static int etb_open(struct inode *inode, struct file *file)
  426. {
  427. struct etb_drvdata *drvdata = container_of(file->private_data,
  428. struct etb_drvdata, miscdev);
  429. if (local_cmpxchg(&drvdata->reading, 0, 1))
  430. return -EBUSY;
  431. dev_dbg(drvdata->dev, "%s: successfully opened\n", __func__);
  432. return 0;
  433. }
  434. static ssize_t etb_read(struct file *file, char __user *data,
  435. size_t len, loff_t *ppos)
  436. {
  437. u32 depth;
  438. struct etb_drvdata *drvdata = container_of(file->private_data,
  439. struct etb_drvdata, miscdev);
  440. etb_dump(drvdata);
  441. depth = drvdata->buffer_depth;
  442. if (*ppos + len > depth * 4)
  443. len = depth * 4 - *ppos;
  444. if (copy_to_user(data, drvdata->buf + *ppos, len)) {
  445. dev_dbg(drvdata->dev, "%s: copy_to_user failed\n", __func__);
  446. return -EFAULT;
  447. }
  448. *ppos += len;
  449. dev_dbg(drvdata->dev, "%s: %zu bytes copied, %d bytes left\n",
  450. __func__, len, (int)(depth * 4 - *ppos));
  451. return len;
  452. }
  453. static int etb_release(struct inode *inode, struct file *file)
  454. {
  455. struct etb_drvdata *drvdata = container_of(file->private_data,
  456. struct etb_drvdata, miscdev);
  457. local_set(&drvdata->reading, 0);
  458. dev_dbg(drvdata->dev, "%s: released\n", __func__);
  459. return 0;
  460. }
  461. static const struct file_operations etb_fops = {
  462. .owner = THIS_MODULE,
  463. .open = etb_open,
  464. .read = etb_read,
  465. .release = etb_release,
  466. .llseek = no_llseek,
  467. };
  468. #define coresight_etb10_simple_func(name, offset) \
  469. coresight_simple_func(struct etb_drvdata, NULL, name, offset)
  470. coresight_etb10_simple_func(rdp, ETB_RAM_DEPTH_REG);
  471. coresight_etb10_simple_func(sts, ETB_STATUS_REG);
  472. coresight_etb10_simple_func(rrp, ETB_RAM_READ_POINTER);
  473. coresight_etb10_simple_func(rwp, ETB_RAM_WRITE_POINTER);
  474. coresight_etb10_simple_func(trg, ETB_TRG);
  475. coresight_etb10_simple_func(ctl, ETB_CTL_REG);
  476. coresight_etb10_simple_func(ffsr, ETB_FFSR);
  477. coresight_etb10_simple_func(ffcr, ETB_FFCR);
  478. static struct attribute *coresight_etb_mgmt_attrs[] = {
  479. &dev_attr_rdp.attr,
  480. &dev_attr_sts.attr,
  481. &dev_attr_rrp.attr,
  482. &dev_attr_rwp.attr,
  483. &dev_attr_trg.attr,
  484. &dev_attr_ctl.attr,
  485. &dev_attr_ffsr.attr,
  486. &dev_attr_ffcr.attr,
  487. NULL,
  488. };
  489. static ssize_t trigger_cntr_show(struct device *dev,
  490. struct device_attribute *attr, char *buf)
  491. {
  492. struct etb_drvdata *drvdata = dev_get_drvdata(dev->parent);
  493. unsigned long val = drvdata->trigger_cntr;
  494. return sprintf(buf, "%#lx\n", val);
  495. }
  496. static ssize_t trigger_cntr_store(struct device *dev,
  497. struct device_attribute *attr,
  498. const char *buf, size_t size)
  499. {
  500. int ret;
  501. unsigned long val;
  502. struct etb_drvdata *drvdata = dev_get_drvdata(dev->parent);
  503. ret = kstrtoul(buf, 16, &val);
  504. if (ret)
  505. return ret;
  506. drvdata->trigger_cntr = val;
  507. return size;
  508. }
  509. static DEVICE_ATTR_RW(trigger_cntr);
  510. static struct attribute *coresight_etb_attrs[] = {
  511. &dev_attr_trigger_cntr.attr,
  512. NULL,
  513. };
  514. static const struct attribute_group coresight_etb_group = {
  515. .attrs = coresight_etb_attrs,
  516. };
  517. static const struct attribute_group coresight_etb_mgmt_group = {
  518. .attrs = coresight_etb_mgmt_attrs,
  519. .name = "mgmt",
  520. };
  521. const struct attribute_group *coresight_etb_groups[] = {
  522. &coresight_etb_group,
  523. &coresight_etb_mgmt_group,
  524. NULL,
  525. };
  526. static int etb_probe(struct amba_device *adev, const struct amba_id *id)
  527. {
  528. int ret;
  529. void __iomem *base;
  530. struct device *dev = &adev->dev;
  531. struct coresight_platform_data *pdata = NULL;
  532. struct etb_drvdata *drvdata;
  533. struct resource *res = &adev->res;
  534. struct coresight_desc desc = { 0 };
  535. struct device_node *np = adev->dev.of_node;
  536. if (np) {
  537. pdata = of_get_coresight_platform_data(dev, np);
  538. if (IS_ERR(pdata))
  539. return PTR_ERR(pdata);
  540. adev->dev.platform_data = pdata;
  541. }
  542. drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
  543. if (!drvdata)
  544. return -ENOMEM;
  545. drvdata->dev = &adev->dev;
  546. drvdata->atclk = devm_clk_get(&adev->dev, "atclk"); /* optional */
  547. if (!IS_ERR(drvdata->atclk)) {
  548. ret = clk_prepare_enable(drvdata->atclk);
  549. if (ret)
  550. return ret;
  551. }
  552. dev_set_drvdata(dev, drvdata);
  553. /* validity for the resource is already checked by the AMBA core */
  554. base = devm_ioremap_resource(dev, res);
  555. if (IS_ERR(base))
  556. return PTR_ERR(base);
  557. drvdata->base = base;
  558. spin_lock_init(&drvdata->spinlock);
  559. drvdata->buffer_depth = etb_get_buffer_depth(drvdata);
  560. pm_runtime_put(&adev->dev);
  561. if (drvdata->buffer_depth & 0x80000000)
  562. return -EINVAL;
  563. drvdata->buf = devm_kzalloc(dev,
  564. drvdata->buffer_depth * 4, GFP_KERNEL);
  565. if (!drvdata->buf) {
  566. dev_err(dev, "Failed to allocate %u bytes for buffer data\n",
  567. drvdata->buffer_depth * 4);
  568. return -ENOMEM;
  569. }
  570. desc.type = CORESIGHT_DEV_TYPE_SINK;
  571. desc.subtype.sink_subtype = CORESIGHT_DEV_SUBTYPE_SINK_BUFFER;
  572. desc.ops = &etb_cs_ops;
  573. desc.pdata = pdata;
  574. desc.dev = dev;
  575. desc.groups = coresight_etb_groups;
  576. drvdata->csdev = coresight_register(&desc);
  577. if (IS_ERR(drvdata->csdev))
  578. return PTR_ERR(drvdata->csdev);
  579. drvdata->miscdev.name = pdata->name;
  580. drvdata->miscdev.minor = MISC_DYNAMIC_MINOR;
  581. drvdata->miscdev.fops = &etb_fops;
  582. ret = misc_register(&drvdata->miscdev);
  583. if (ret)
  584. goto err_misc_register;
  585. return 0;
  586. err_misc_register:
  587. coresight_unregister(drvdata->csdev);
  588. return ret;
  589. }
  590. #ifdef CONFIG_PM
  591. static int etb_runtime_suspend(struct device *dev)
  592. {
  593. struct etb_drvdata *drvdata = dev_get_drvdata(dev);
  594. if (drvdata && !IS_ERR(drvdata->atclk))
  595. clk_disable_unprepare(drvdata->atclk);
  596. return 0;
  597. }
  598. static int etb_runtime_resume(struct device *dev)
  599. {
  600. struct etb_drvdata *drvdata = dev_get_drvdata(dev);
  601. if (drvdata && !IS_ERR(drvdata->atclk))
  602. clk_prepare_enable(drvdata->atclk);
  603. return 0;
  604. }
  605. #endif
  606. static const struct dev_pm_ops etb_dev_pm_ops = {
  607. SET_RUNTIME_PM_OPS(etb_runtime_suspend, etb_runtime_resume, NULL)
  608. };
  609. static struct amba_id etb_ids[] = {
  610. {
  611. .id = 0x0003b907,
  612. .mask = 0x0003ffff,
  613. },
  614. { 0, 0},
  615. };
  616. static struct amba_driver etb_driver = {
  617. .drv = {
  618. .name = "coresight-etb10",
  619. .owner = THIS_MODULE,
  620. .pm = &etb_dev_pm_ops,
  621. .suppress_bind_attrs = true,
  622. },
  623. .probe = etb_probe,
  624. .id_table = etb_ids,
  625. };
  626. builtin_amba_driver(etb_driver);