coresight-etb10.c 19 KB

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