coresight-etb10.c 19 KB

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