1 // SPDX-License-Identifier: GPL-2.0
3 * Intel(R) Trace Hub Memory Storage Unit
5 * Copyright (C) 2014-2015 Intel Corporation.
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/types.h>
11 #include <linux/module.h>
12 #include <linux/device.h>
13 #include <linux/uaccess.h>
14 #include <linux/sizes.h>
15 #include <linux/printk.h>
16 #include <linux/slab.h>
20 #include <linux/workqueue.h>
21 #include <linux/dma-mapping.h>
24 #include <asm/set_memory.h>
27 #include <linux/intel_th.h>
31 #define msc_dev(x) (&(x)->thdev->dev)
34 * Lockout state transitions:
35 * READY -> INUSE -+-> LOCKED -+-> READY -> etc.
37 * WIN_READY: window can be used by HW
38 * WIN_INUSE: window is in use
39 * WIN_LOCKED: window is filled up and is being processed by the buffer
42 * All state transitions happen automatically, except for the LOCKED->READY,
43 * which needs to be signalled by the buffer code by calling
44 * intel_th_msc_window_unlock().
46 * When the interrupt handler has to switch to the next window, it checks
47 * whether it's READY, and if it is, it performs the switch and tracing
48 * continues. If it's LOCKED, it stops the trace.
57 * struct msc_window - multiblock mode window descriptor
58 * @entry: window list linkage (msc::win_list)
59 * @pgoff: page offset into the buffer that this window starts at
60 * @lockout: lockout state, see comment below
61 * @lo_lock: lockout state serialization
62 * @nr_blocks: number of blocks (pages) in this window
63 * @nr_segs: number of segments in this window (<= @nr_blocks)
64 * @_sgt: array of block descriptors
65 * @sgt: array of block descriptors
68 struct list_head entry
;
70 enum lockout_state lockout
;
72 unsigned int nr_blocks
;
80 * struct msc_iter - iterator for msc buffer
81 * @entry: msc::iter_list linkage
82 * @msc: pointer to the MSC device
83 * @start_win: oldest window
84 * @win: current window
85 * @offset: current logical offset into the buffer
86 * @start_block: oldest block in the window
87 * @block: block number in the window
88 * @block_off: offset into current block
89 * @wrap_count: block wrapping handling
90 * @eof: end of buffer reached
93 struct list_head entry
;
95 struct msc_window
*start_win
;
96 struct msc_window
*win
;
98 struct scatterlist
*start_block
;
99 struct scatterlist
*block
;
100 unsigned int block_off
;
101 unsigned int wrap_count
;
106 * struct msc - MSC device representation
107 * @reg_base: register window base address
108 * @thdev: intel_th_device pointer
109 * @mbuf: MSU buffer, if assigned
110 * @mbuf_priv MSU buffer's private data, if @mbuf
111 * @win_list: list of windows in multiblock mode
112 * @single_sgt: single mode buffer
113 * @cur_win: current window
114 * @nr_pages: total number of pages allocated for this buffer
115 * @single_sz: amount of data in single mode
116 * @single_wrap: single mode wrap occurred
117 * @base: buffer's base pointer
118 * @base_addr: buffer's base address
119 * @user_count: number of users of the buffer
120 * @mmap_count: number of mappings
121 * @buf_mutex: mutex to serialize access to buffer-related bits
123 * @enabled: MSC is enabled
124 * @wrap: wrapping is enabled
125 * @mode: MSC operating mode
126 * @burst_len: write burst length
127 * @index: number of this MSC in the MSU
130 void __iomem
*reg_base
;
131 void __iomem
*msu_base
;
132 struct intel_th_device
*thdev
;
134 const struct msu_buffer
*mbuf
;
137 struct work_struct work
;
138 struct list_head win_list
;
139 struct sg_table single_sgt
;
140 struct msc_window
*cur_win
;
141 struct msc_window
*switch_on_unlock
;
142 unsigned long nr_pages
;
143 unsigned long single_sz
;
144 unsigned int single_wrap
: 1;
146 dma_addr_t base_addr
;
150 /* <0: no buffer, 0: no users, >0: active users */
154 struct mutex buf_mutex
;
156 struct list_head iter_list
;
161 unsigned int enabled
: 1,
166 unsigned int burst_len
;
170 static LIST_HEAD(msu_buffer_list
);
171 static DEFINE_MUTEX(msu_buffer_mutex
);
174 * struct msu_buffer_entry - internal MSU buffer bookkeeping
175 * @entry: link to msu_buffer_list
176 * @mbuf: MSU buffer object
177 * @owner: module that provides this MSU buffer
179 struct msu_buffer_entry
{
180 struct list_head entry
;
181 const struct msu_buffer
*mbuf
;
182 struct module
*owner
;
185 static struct msu_buffer_entry
*__msu_buffer_entry_find(const char *name
)
187 struct msu_buffer_entry
*mbe
;
189 lockdep_assert_held(&msu_buffer_mutex
);
191 list_for_each_entry(mbe
, &msu_buffer_list
, entry
) {
192 if (!strcmp(mbe
->mbuf
->name
, name
))
199 static const struct msu_buffer
*
200 msu_buffer_get(const char *name
)
202 struct msu_buffer_entry
*mbe
;
204 mutex_lock(&msu_buffer_mutex
);
205 mbe
= __msu_buffer_entry_find(name
);
206 if (mbe
&& !try_module_get(mbe
->owner
))
208 mutex_unlock(&msu_buffer_mutex
);
210 return mbe
? mbe
->mbuf
: NULL
;
213 static void msu_buffer_put(const struct msu_buffer
*mbuf
)
215 struct msu_buffer_entry
*mbe
;
217 mutex_lock(&msu_buffer_mutex
);
218 mbe
= __msu_buffer_entry_find(mbuf
->name
);
220 module_put(mbe
->owner
);
221 mutex_unlock(&msu_buffer_mutex
);
224 int intel_th_msu_buffer_register(const struct msu_buffer
*mbuf
,
225 struct module
*owner
)
227 struct msu_buffer_entry
*mbe
;
230 mbe
= kzalloc(sizeof(*mbe
), GFP_KERNEL
);
234 mutex_lock(&msu_buffer_mutex
);
235 if (__msu_buffer_entry_find(mbuf
->name
)) {
243 list_add_tail(&mbe
->entry
, &msu_buffer_list
);
245 mutex_unlock(&msu_buffer_mutex
);
249 EXPORT_SYMBOL_GPL(intel_th_msu_buffer_register
);
251 void intel_th_msu_buffer_unregister(const struct msu_buffer
*mbuf
)
253 struct msu_buffer_entry
*mbe
;
255 mutex_lock(&msu_buffer_mutex
);
256 mbe
= __msu_buffer_entry_find(mbuf
->name
);
258 list_del(&mbe
->entry
);
261 mutex_unlock(&msu_buffer_mutex
);
263 EXPORT_SYMBOL_GPL(intel_th_msu_buffer_unregister
);
265 static inline bool msc_block_is_empty(struct msc_block_desc
*bdesc
)
267 /* header hasn't been written */
268 if (!bdesc
->valid_dw
)
271 /* valid_dw includes the header */
272 if (!msc_data_sz(bdesc
))
278 static inline struct scatterlist
*msc_win_base_sg(struct msc_window
*win
)
280 return win
->sgt
->sgl
;
283 static inline struct msc_block_desc
*msc_win_base(struct msc_window
*win
)
285 return sg_virt(msc_win_base_sg(win
));
288 static inline dma_addr_t
msc_win_base_dma(struct msc_window
*win
)
290 return sg_dma_address(msc_win_base_sg(win
));
293 static inline unsigned long
294 msc_win_base_pfn(struct msc_window
*win
)
296 return PFN_DOWN(msc_win_base_dma(win
));
300 * msc_is_last_win() - check if a window is the last one for a given MSC
302 * Return: true if @win is the last window in MSC's multiblock buffer
304 static inline bool msc_is_last_win(struct msc_window
*win
)
306 return win
->entry
.next
== &win
->msc
->win_list
;
310 * msc_next_window() - return next window in the multiblock buffer
311 * @win: current window
313 * Return: window following the current one
315 static struct msc_window
*msc_next_window(struct msc_window
*win
)
317 if (msc_is_last_win(win
))
318 return list_first_entry(&win
->msc
->win_list
, struct msc_window
,
321 return list_next_entry(win
, entry
);
324 static size_t msc_win_total_sz(struct msc_window
*win
)
326 struct scatterlist
*sg
;
330 for_each_sg(win
->sgt
->sgl
, sg
, win
->nr_segs
, blk
) {
331 struct msc_block_desc
*bdesc
= sg_virt(sg
);
333 if (msc_block_wrapped(bdesc
))
334 return (size_t)win
->nr_blocks
<< PAGE_SHIFT
;
336 size
+= msc_total_sz(bdesc
);
337 if (msc_block_last_written(bdesc
))
345 * msc_find_window() - find a window matching a given sg_table
347 * @sgt: SG table of the window
348 * @nonempty: skip over empty windows
350 * Return: MSC window structure pointer or NULL if the window
351 * could not be found.
353 static struct msc_window
*
354 msc_find_window(struct msc
*msc
, struct sg_table
*sgt
, bool nonempty
)
356 struct msc_window
*win
;
357 unsigned int found
= 0;
359 if (list_empty(&msc
->win_list
))
363 * we might need a radix tree for this, depending on how
364 * many windows a typical user would allocate; ideally it's
365 * something like 2, in which case we're good
367 list_for_each_entry(win
, &msc
->win_list
, entry
) {
371 /* skip the empty ones */
372 if (nonempty
&& msc_block_is_empty(msc_win_base(win
)))
383 * msc_oldest_window() - locate the window with oldest data
386 * This should only be used in multiblock mode. Caller should hold the
387 * msc::user_count reference.
389 * Return: the oldest window with valid data
391 static struct msc_window
*msc_oldest_window(struct msc
*msc
)
393 struct msc_window
*win
;
395 if (list_empty(&msc
->win_list
))
398 win
= msc_find_window(msc
, msc_next_window(msc
->cur_win
)->sgt
, true);
402 return list_first_entry(&msc
->win_list
, struct msc_window
, entry
);
406 * msc_win_oldest_sg() - locate the oldest block in a given window
407 * @win: window to look at
409 * Return: index of the block with the oldest data
411 static struct scatterlist
*msc_win_oldest_sg(struct msc_window
*win
)
414 struct scatterlist
*sg
;
415 struct msc_block_desc
*bdesc
= msc_win_base(win
);
417 /* without wrapping, first block is the oldest */
418 if (!msc_block_wrapped(bdesc
))
419 return msc_win_base_sg(win
);
422 * with wrapping, last written block contains both the newest and the
423 * oldest data for this window.
425 for_each_sg(win
->sgt
->sgl
, sg
, win
->nr_segs
, blk
) {
426 struct msc_block_desc
*bdesc
= sg_virt(sg
);
428 if (msc_block_last_written(bdesc
))
432 return msc_win_base_sg(win
);
435 static struct msc_block_desc
*msc_iter_bdesc(struct msc_iter
*iter
)
437 return sg_virt(iter
->block
);
440 static struct msc_iter
*msc_iter_install(struct msc
*msc
)
442 struct msc_iter
*iter
;
444 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
446 return ERR_PTR(-ENOMEM
);
448 mutex_lock(&msc
->buf_mutex
);
451 * Reading and tracing are mutually exclusive; if msc is
452 * enabled, open() will fail; otherwise existing readers
453 * will prevent enabling the msc and the rest of fops don't
454 * need to worry about it.
458 iter
= ERR_PTR(-EBUSY
);
464 list_add_tail(&iter
->entry
, &msc
->iter_list
);
466 mutex_unlock(&msc
->buf_mutex
);
471 static void msc_iter_remove(struct msc_iter
*iter
, struct msc
*msc
)
473 mutex_lock(&msc
->buf_mutex
);
474 list_del(&iter
->entry
);
475 mutex_unlock(&msc
->buf_mutex
);
480 static void msc_iter_block_start(struct msc_iter
*iter
)
482 if (iter
->start_block
)
485 iter
->start_block
= msc_win_oldest_sg(iter
->win
);
486 iter
->block
= iter
->start_block
;
487 iter
->wrap_count
= 0;
490 * start with the block with oldest data; if data has wrapped
491 * in this window, it should be in this block
493 if (msc_block_wrapped(msc_iter_bdesc(iter
)))
494 iter
->wrap_count
= 2;
498 static int msc_iter_win_start(struct msc_iter
*iter
, struct msc
*msc
)
500 /* already started, nothing to do */
504 iter
->start_win
= msc_oldest_window(msc
);
505 if (!iter
->start_win
)
508 iter
->win
= iter
->start_win
;
509 iter
->start_block
= NULL
;
511 msc_iter_block_start(iter
);
516 static int msc_iter_win_advance(struct msc_iter
*iter
)
518 iter
->win
= msc_next_window(iter
->win
);
519 iter
->start_block
= NULL
;
521 if (iter
->win
== iter
->start_win
) {
526 msc_iter_block_start(iter
);
531 static int msc_iter_block_advance(struct msc_iter
*iter
)
536 if (iter
->wrap_count
&& iter
->block
== iter
->start_block
) {
538 if (!iter
->wrap_count
)
539 /* copied newest data from the wrapped block */
540 return msc_iter_win_advance(iter
);
543 /* no wrapping, check for last written block */
544 if (!iter
->wrap_count
&& msc_block_last_written(msc_iter_bdesc(iter
)))
545 /* copied newest data for the window */
546 return msc_iter_win_advance(iter
);
549 if (sg_is_last(iter
->block
))
550 iter
->block
= msc_win_base_sg(iter
->win
);
552 iter
->block
= sg_next(iter
->block
);
554 /* no wrapping, sanity check in case there is no last written block */
555 if (!iter
->wrap_count
&& iter
->block
== iter
->start_block
)
556 return msc_iter_win_advance(iter
);
562 * msc_buffer_iterate() - go through multiblock buffer's data
563 * @iter: iterator structure
564 * @size: amount of data to scan
565 * @data: callback's private data
566 * @fn: iterator callback
568 * This will start at the window which will be written to next (containing
569 * the oldest data) and work its way to the current window, calling @fn
570 * for each chunk of data as it goes.
572 * Caller should have msc::user_count reference to make sure the buffer
573 * doesn't disappear from under us.
575 * Return: amount of data actually scanned.
578 msc_buffer_iterate(struct msc_iter
*iter
, size_t size
, void *data
,
579 unsigned long (*fn
)(void *, void *, size_t))
581 struct msc
*msc
= iter
->msc
;
583 unsigned int advance
;
588 /* start with the oldest window */
589 if (msc_iter_win_start(iter
, msc
))
593 unsigned long data_bytes
= msc_data_sz(msc_iter_bdesc(iter
));
594 void *src
= (void *)msc_iter_bdesc(iter
) + MSC_BDESC
;
595 size_t tocopy
= data_bytes
, copied
= 0;
596 size_t remaining
= 0;
601 * If block wrapping happened, we need to visit the last block
602 * twice, because it contains both the oldest and the newest
603 * data in this window.
605 * First time (wrap_count==2), in the very beginning, to collect
606 * the oldest data, which is in the range
607 * (data_bytes..DATA_IN_PAGE).
609 * Second time (wrap_count==1), it's just like any other block,
610 * containing data in the range of [MSC_BDESC..data_bytes].
612 if (iter
->block
== iter
->start_block
&& iter
->wrap_count
== 2) {
613 tocopy
= DATA_IN_PAGE
- data_bytes
;
620 tocopy
-= iter
->block_off
;
621 src
+= iter
->block_off
;
628 remaining
= fn(data
, src
, tocopy
);
633 copied
= tocopy
- remaining
;
635 iter
->block_off
+= copied
;
636 iter
->offset
+= copied
;
642 if (msc_iter_block_advance(iter
))
651 * msc_buffer_clear_hw_header() - clear hw header for multiblock
654 static void msc_buffer_clear_hw_header(struct msc
*msc
)
656 struct msc_window
*win
;
657 struct scatterlist
*sg
;
659 list_for_each_entry(win
, &msc
->win_list
, entry
) {
661 size_t hw_sz
= sizeof(struct msc_block_desc
) -
662 offsetof(struct msc_block_desc
, hw_tag
);
664 for_each_sg(win
->sgt
->sgl
, sg
, win
->nr_segs
, blk
) {
665 struct msc_block_desc
*bdesc
= sg_virt(sg
);
667 memset(&bdesc
->hw_tag
, 0, hw_sz
);
672 static int intel_th_msu_init(struct msc
*msc
)
682 mintctl
= ioread32(msc
->msu_base
+ REG_MSU_MINTCTL
);
683 mintctl
|= msc
->index
? M1BLIE
: M0BLIE
;
684 iowrite32(mintctl
, msc
->msu_base
+ REG_MSU_MINTCTL
);
685 if (mintctl
!= ioread32(msc
->msu_base
+ REG_MSU_MINTCTL
)) {
686 dev_info(msc_dev(msc
), "MINTCTL ignores writes: no usable interrupts\n");
691 msusts
= ioread32(msc
->msu_base
+ REG_MSU_MSUSTS
);
692 iowrite32(msusts
, msc
->msu_base
+ REG_MSU_MSUSTS
);
697 static void intel_th_msu_deinit(struct msc
*msc
)
704 mintctl
= ioread32(msc
->msu_base
+ REG_MSU_MINTCTL
);
705 mintctl
&= msc
->index
? ~M1BLIE
: ~M0BLIE
;
706 iowrite32(mintctl
, msc
->msu_base
+ REG_MSU_MINTCTL
);
709 static int msc_win_set_lockout(struct msc_window
*win
,
710 enum lockout_state expect
,
711 enum lockout_state
new)
713 enum lockout_state old
;
720 spin_lock_irqsave(&win
->lo_lock
, flags
);
730 if (old
== expect
&& new == WIN_LOCKED
)
731 atomic_inc(&win
->msc
->user_count
);
732 else if (old
== expect
&& old
== WIN_LOCKED
)
733 atomic_dec(&win
->msc
->user_count
);
736 spin_unlock_irqrestore(&win
->lo_lock
, flags
);
739 if (expect
== WIN_READY
&& old
== WIN_LOCKED
)
742 /* from intel_th_msc_window_unlock(), don't warn if not locked */
743 if (expect
== WIN_LOCKED
&& old
== new)
746 dev_warn_ratelimited(msc_dev(win
->msc
),
747 "expected lockout state %d, got %d\n",
754 * msc_configure() - set up MSC hardware
755 * @msc: the MSC device to configure
757 * Program storage mode, wrapping, burst length and trace buffer address
758 * into a given MSC. Then, enable tracing and set msc::enabled.
759 * The latter is serialized on msc::buf_mutex, so make sure to hold it.
761 static int msc_configure(struct msc
*msc
)
765 lockdep_assert_held(&msc
->buf_mutex
);
767 if (msc
->mode
> MSC_MODE_MULTI
)
770 if (msc
->mode
== MSC_MODE_MULTI
) {
771 if (msc_win_set_lockout(msc
->cur_win
, WIN_READY
, WIN_INUSE
))
774 msc_buffer_clear_hw_header(msc
);
777 msc
->orig_addr
= ioread32(msc
->reg_base
+ REG_MSU_MSC0BAR
);
778 msc
->orig_sz
= ioread32(msc
->reg_base
+ REG_MSU_MSC0SIZE
);
780 reg
= msc
->base_addr
>> PAGE_SHIFT
;
781 iowrite32(reg
, msc
->reg_base
+ REG_MSU_MSC0BAR
);
783 if (msc
->mode
== MSC_MODE_SINGLE
) {
785 iowrite32(reg
, msc
->reg_base
+ REG_MSU_MSC0SIZE
);
788 reg
= ioread32(msc
->reg_base
+ REG_MSU_MSC0CTL
);
789 reg
&= ~(MSC_MODE
| MSC_WRAPEN
| MSC_EN
| MSC_RD_HDR_OVRD
);
792 reg
|= msc
->mode
<< __ffs(MSC_MODE
);
793 reg
|= msc
->burst_len
<< __ffs(MSC_LEN
);
798 iowrite32(reg
, msc
->reg_base
+ REG_MSU_MSC0CTL
);
800 intel_th_msu_init(msc
);
802 msc
->thdev
->output
.multiblock
= msc
->mode
== MSC_MODE_MULTI
;
803 intel_th_trace_enable(msc
->thdev
);
806 if (msc
->mbuf
&& msc
->mbuf
->activate
)
807 msc
->mbuf
->activate(msc
->mbuf_priv
);
813 * msc_disable() - disable MSC hardware
814 * @msc: MSC device to disable
816 * If @msc is enabled, disable tracing on the switch and then disable MSC
817 * storage. Caller must hold msc::buf_mutex.
819 static void msc_disable(struct msc
*msc
)
821 struct msc_window
*win
= msc
->cur_win
;
824 lockdep_assert_held(&msc
->buf_mutex
);
826 if (msc
->mode
== MSC_MODE_MULTI
)
827 msc_win_set_lockout(win
, WIN_INUSE
, WIN_LOCKED
);
829 if (msc
->mbuf
&& msc
->mbuf
->deactivate
)
830 msc
->mbuf
->deactivate(msc
->mbuf_priv
);
831 intel_th_msu_deinit(msc
);
832 intel_th_trace_disable(msc
->thdev
);
834 if (msc
->mode
== MSC_MODE_SINGLE
) {
835 reg
= ioread32(msc
->reg_base
+ REG_MSU_MSC0STS
);
836 msc
->single_wrap
= !!(reg
& MSCSTS_WRAPSTAT
);
838 reg
= ioread32(msc
->reg_base
+ REG_MSU_MSC0MWP
);
839 msc
->single_sz
= reg
& ((msc
->nr_pages
<< PAGE_SHIFT
) - 1);
840 dev_dbg(msc_dev(msc
), "MSCnMWP: %08x/%08lx, wrap: %d\n",
841 reg
, msc
->single_sz
, msc
->single_wrap
);
844 reg
= ioread32(msc
->reg_base
+ REG_MSU_MSC0CTL
);
846 iowrite32(reg
, msc
->reg_base
+ REG_MSU_MSC0CTL
);
848 if (msc
->mbuf
&& msc
->mbuf
->ready
)
849 msc
->mbuf
->ready(msc
->mbuf_priv
, win
->sgt
,
850 msc_win_total_sz(win
));
854 iowrite32(msc
->orig_addr
, msc
->reg_base
+ REG_MSU_MSC0BAR
);
855 iowrite32(msc
->orig_sz
, msc
->reg_base
+ REG_MSU_MSC0SIZE
);
857 dev_dbg(msc_dev(msc
), "MSCnNWSA: %08x\n",
858 ioread32(msc
->reg_base
+ REG_MSU_MSC0NWSA
));
860 reg
= ioread32(msc
->reg_base
+ REG_MSU_MSC0STS
);
861 dev_dbg(msc_dev(msc
), "MSCnSTS: %08x\n", reg
);
863 reg
= ioread32(msc
->reg_base
+ REG_MSU_MSUSTS
);
864 reg
&= msc
->index
? MSUSTS_MSC1BLAST
: MSUSTS_MSC0BLAST
;
865 iowrite32(reg
, msc
->reg_base
+ REG_MSU_MSUSTS
);
868 static int intel_th_msc_activate(struct intel_th_device
*thdev
)
870 struct msc
*msc
= dev_get_drvdata(&thdev
->dev
);
873 if (!atomic_inc_unless_negative(&msc
->user_count
))
876 mutex_lock(&msc
->buf_mutex
);
878 /* if there are readers, refuse */
879 if (list_empty(&msc
->iter_list
))
880 ret
= msc_configure(msc
);
882 mutex_unlock(&msc
->buf_mutex
);
885 atomic_dec(&msc
->user_count
);
890 static void intel_th_msc_deactivate(struct intel_th_device
*thdev
)
892 struct msc
*msc
= dev_get_drvdata(&thdev
->dev
);
894 mutex_lock(&msc
->buf_mutex
);
897 atomic_dec(&msc
->user_count
);
899 mutex_unlock(&msc
->buf_mutex
);
903 * msc_buffer_contig_alloc() - allocate a contiguous buffer for SINGLE mode
905 * @size: allocation size in bytes
907 * This modifies msc::base, which requires msc::buf_mutex to serialize, so the
908 * caller is expected to hold it.
910 * Return: 0 on success, -errno otherwise.
912 static int msc_buffer_contig_alloc(struct msc
*msc
, unsigned long size
)
914 unsigned long nr_pages
= size
>> PAGE_SHIFT
;
915 unsigned int order
= get_order(size
);
922 ret
= sg_alloc_table(&msc
->single_sgt
, 1, GFP_KERNEL
);
927 page
= alloc_pages(GFP_KERNEL
| __GFP_ZERO
| GFP_DMA32
, order
);
931 split_page(page
, order
);
932 sg_set_buf(msc
->single_sgt
.sgl
, page_address(page
), size
);
934 ret
= dma_map_sg(msc_dev(msc
)->parent
->parent
, msc
->single_sgt
.sgl
, 1,
939 msc
->nr_pages
= nr_pages
;
940 msc
->base
= page_address(page
);
941 msc
->base_addr
= sg_dma_address(msc
->single_sgt
.sgl
);
946 __free_pages(page
, order
);
949 sg_free_table(&msc
->single_sgt
);
956 * msc_buffer_contig_free() - free a contiguous buffer
957 * @msc: MSC configured in SINGLE mode
959 static void msc_buffer_contig_free(struct msc
*msc
)
963 dma_unmap_sg(msc_dev(msc
)->parent
->parent
, msc
->single_sgt
.sgl
,
965 sg_free_table(&msc
->single_sgt
);
967 for (off
= 0; off
< msc
->nr_pages
<< PAGE_SHIFT
; off
+= PAGE_SIZE
) {
968 struct page
*page
= virt_to_page(msc
->base
+ off
);
970 page
->mapping
= NULL
;
978 * msc_buffer_contig_get_page() - find a page at a given offset
979 * @msc: MSC configured in SINGLE mode
980 * @pgoff: page offset
982 * Return: page, if @pgoff is within the range, NULL otherwise.
984 static struct page
*msc_buffer_contig_get_page(struct msc
*msc
,
987 if (pgoff
>= msc
->nr_pages
)
990 return virt_to_page(msc
->base
+ (pgoff
<< PAGE_SHIFT
));
993 static int __msc_buffer_win_alloc(struct msc_window
*win
,
994 unsigned int nr_segs
)
996 struct scatterlist
*sg_ptr
;
1000 ret
= sg_alloc_table(win
->sgt
, nr_segs
, GFP_KERNEL
);
1004 for_each_sg(win
->sgt
->sgl
, sg_ptr
, nr_segs
, i
) {
1005 block
= dma_alloc_coherent(msc_dev(win
->msc
)->parent
->parent
,
1006 PAGE_SIZE
, &sg_dma_address(sg_ptr
),
1011 sg_set_buf(sg_ptr
, block
, PAGE_SIZE
);
1017 for_each_sg(win
->sgt
->sgl
, sg_ptr
, i
, ret
)
1018 dma_free_coherent(msc_dev(win
->msc
)->parent
->parent
, PAGE_SIZE
,
1019 sg_virt(sg_ptr
), sg_dma_address(sg_ptr
));
1021 sg_free_table(win
->sgt
);
1027 static void msc_buffer_set_uc(struct msc_window
*win
, unsigned int nr_segs
)
1029 struct scatterlist
*sg_ptr
;
1032 for_each_sg(win
->sgt
->sgl
, sg_ptr
, nr_segs
, i
) {
1033 /* Set the page as uncached */
1034 set_memory_uc((unsigned long)sg_virt(sg_ptr
),
1035 PFN_DOWN(sg_ptr
->length
));
1039 static void msc_buffer_set_wb(struct msc_window
*win
)
1041 struct scatterlist
*sg_ptr
;
1044 for_each_sg(win
->sgt
->sgl
, sg_ptr
, win
->nr_segs
, i
) {
1045 /* Reset the page to write-back */
1046 set_memory_wb((unsigned long)sg_virt(sg_ptr
),
1047 PFN_DOWN(sg_ptr
->length
));
1052 msc_buffer_set_uc(struct msc_window
*win
, unsigned int nr_segs
) {}
1053 static inline void msc_buffer_set_wb(struct msc_window
*win
) {}
1054 #endif /* CONFIG_X86 */
1057 * msc_buffer_win_alloc() - alloc a window for a multiblock mode
1059 * @nr_blocks: number of pages in this window
1061 * This modifies msc::win_list and msc::base, which requires msc::buf_mutex
1062 * to serialize, so the caller is expected to hold it.
1064 * Return: 0 on success, -errno otherwise.
1066 static int msc_buffer_win_alloc(struct msc
*msc
, unsigned int nr_blocks
)
1068 struct msc_window
*win
;
1074 win
= kzalloc(sizeof(*win
), GFP_KERNEL
);
1079 win
->sgt
= &win
->_sgt
;
1080 win
->lockout
= WIN_READY
;
1081 spin_lock_init(&win
->lo_lock
);
1083 if (!list_empty(&msc
->win_list
)) {
1084 struct msc_window
*prev
= list_last_entry(&msc
->win_list
,
1088 win
->pgoff
= prev
->pgoff
+ prev
->nr_blocks
;
1091 if (msc
->mbuf
&& msc
->mbuf
->alloc_window
)
1092 ret
= msc
->mbuf
->alloc_window(msc
->mbuf_priv
, &win
->sgt
,
1093 nr_blocks
<< PAGE_SHIFT
);
1095 ret
= __msc_buffer_win_alloc(win
, nr_blocks
);
1100 msc_buffer_set_uc(win
, ret
);
1103 win
->nr_blocks
= nr_blocks
;
1105 if (list_empty(&msc
->win_list
)) {
1106 msc
->base
= msc_win_base(win
);
1107 msc
->base_addr
= msc_win_base_dma(win
);
1111 list_add_tail(&win
->entry
, &msc
->win_list
);
1112 msc
->nr_pages
+= nr_blocks
;
1122 static void __msc_buffer_win_free(struct msc
*msc
, struct msc_window
*win
)
1124 struct scatterlist
*sg
;
1127 for_each_sg(win
->sgt
->sgl
, sg
, win
->nr_segs
, i
) {
1128 struct page
*page
= sg_page(sg
);
1130 page
->mapping
= NULL
;
1131 dma_free_coherent(msc_dev(win
->msc
)->parent
->parent
, PAGE_SIZE
,
1132 sg_virt(sg
), sg_dma_address(sg
));
1134 sg_free_table(win
->sgt
);
1138 * msc_buffer_win_free() - free a window from MSC's window list
1140 * @win: window to free
1142 * This modifies msc::win_list and msc::base, which requires msc::buf_mutex
1143 * to serialize, so the caller is expected to hold it.
1145 static void msc_buffer_win_free(struct msc
*msc
, struct msc_window
*win
)
1147 msc
->nr_pages
-= win
->nr_blocks
;
1149 list_del(&win
->entry
);
1150 if (list_empty(&msc
->win_list
)) {
1155 msc_buffer_set_wb(win
);
1157 if (msc
->mbuf
&& msc
->mbuf
->free_window
)
1158 msc
->mbuf
->free_window(msc
->mbuf_priv
, win
->sgt
);
1160 __msc_buffer_win_free(msc
, win
);
1166 * msc_buffer_relink() - set up block descriptors for multiblock mode
1169 * This traverses msc::win_list, which requires msc::buf_mutex to serialize,
1170 * so the caller is expected to hold it.
1172 static void msc_buffer_relink(struct msc
*msc
)
1174 struct msc_window
*win
, *next_win
;
1176 /* call with msc::mutex locked */
1177 list_for_each_entry(win
, &msc
->win_list
, entry
) {
1178 struct scatterlist
*sg
;
1183 * Last window's next_win should point to the first window
1184 * and MSC_SW_TAG_LASTWIN should be set.
1186 if (msc_is_last_win(win
)) {
1187 sw_tag
|= MSC_SW_TAG_LASTWIN
;
1188 next_win
= list_first_entry(&msc
->win_list
,
1189 struct msc_window
, entry
);
1191 next_win
= list_next_entry(win
, entry
);
1194 for_each_sg(win
->sgt
->sgl
, sg
, win
->nr_segs
, blk
) {
1195 struct msc_block_desc
*bdesc
= sg_virt(sg
);
1197 memset(bdesc
, 0, sizeof(*bdesc
));
1199 bdesc
->next_win
= msc_win_base_pfn(next_win
);
1202 * Similarly to last window, last block should point
1205 if (blk
== win
->nr_segs
- 1) {
1206 sw_tag
|= MSC_SW_TAG_LASTBLK
;
1207 bdesc
->next_blk
= msc_win_base_pfn(win
);
1209 dma_addr_t addr
= sg_dma_address(sg_next(sg
));
1211 bdesc
->next_blk
= PFN_DOWN(addr
);
1214 bdesc
->sw_tag
= sw_tag
;
1215 bdesc
->block_sz
= sg
->length
/ 64;
1220 * Make the above writes globally visible before tracing is
1221 * enabled to make sure hardware sees them coherently.
1226 static void msc_buffer_multi_free(struct msc
*msc
)
1228 struct msc_window
*win
, *iter
;
1230 list_for_each_entry_safe(win
, iter
, &msc
->win_list
, entry
)
1231 msc_buffer_win_free(msc
, win
);
1234 static int msc_buffer_multi_alloc(struct msc
*msc
, unsigned long *nr_pages
,
1235 unsigned int nr_wins
)
1239 for (i
= 0; i
< nr_wins
; i
++) {
1240 ret
= msc_buffer_win_alloc(msc
, nr_pages
[i
]);
1242 msc_buffer_multi_free(msc
);
1247 msc_buffer_relink(msc
);
1253 * msc_buffer_free() - free buffers for MSC
1256 * Free MSC's storage buffers.
1258 * This modifies msc::win_list and msc::base, which requires msc::buf_mutex to
1259 * serialize, so the caller is expected to hold it.
1261 static void msc_buffer_free(struct msc
*msc
)
1263 if (msc
->mode
== MSC_MODE_SINGLE
)
1264 msc_buffer_contig_free(msc
);
1265 else if (msc
->mode
== MSC_MODE_MULTI
)
1266 msc_buffer_multi_free(msc
);
1270 * msc_buffer_alloc() - allocate a buffer for MSC
1272 * @size: allocation size in bytes
1274 * Allocate a storage buffer for MSC, depending on the msc::mode, it will be
1275 * either done via msc_buffer_contig_alloc() for SINGLE operation mode or
1276 * msc_buffer_win_alloc() for multiblock operation. The latter allocates one
1277 * window per invocation, so in multiblock mode this can be called multiple
1278 * times for the same MSC to allocate multiple windows.
1280 * This modifies msc::win_list and msc::base, which requires msc::buf_mutex
1281 * to serialize, so the caller is expected to hold it.
1283 * Return: 0 on success, -errno otherwise.
1285 static int msc_buffer_alloc(struct msc
*msc
, unsigned long *nr_pages
,
1286 unsigned int nr_wins
)
1290 /* -1: buffer not allocated */
1291 if (atomic_read(&msc
->user_count
) != -1)
1294 if (msc
->mode
== MSC_MODE_SINGLE
) {
1298 ret
= msc_buffer_contig_alloc(msc
, nr_pages
[0] << PAGE_SHIFT
);
1299 } else if (msc
->mode
== MSC_MODE_MULTI
) {
1300 ret
= msc_buffer_multi_alloc(msc
, nr_pages
, nr_wins
);
1306 /* allocation should be visible before the counter goes to 0 */
1307 smp_mb__before_atomic();
1309 if (WARN_ON_ONCE(atomic_cmpxchg(&msc
->user_count
, -1, 0) != -1))
1317 * msc_buffer_unlocked_free_unless_used() - free a buffer unless it's in use
1320 * This will free MSC buffer unless it is in use or there is no allocated
1322 * Caller needs to hold msc::buf_mutex.
1324 * Return: 0 on successful deallocation or if there was no buffer to
1325 * deallocate, -EBUSY if there are active users.
1327 static int msc_buffer_unlocked_free_unless_used(struct msc
*msc
)
1331 count
= atomic_cmpxchg(&msc
->user_count
, 0, -1);
1333 /* > 0: buffer is allocated and has users */
1336 /* 0: buffer is allocated, no users */
1338 msc_buffer_free(msc
);
1339 /* < 0: no buffer, nothing to do */
1345 * msc_buffer_free_unless_used() - free a buffer unless it's in use
1348 * This is a locked version of msc_buffer_unlocked_free_unless_used().
1350 static int msc_buffer_free_unless_used(struct msc
*msc
)
1354 mutex_lock(&msc
->buf_mutex
);
1355 ret
= msc_buffer_unlocked_free_unless_used(msc
);
1356 mutex_unlock(&msc
->buf_mutex
);
1362 * msc_buffer_get_page() - get MSC buffer page at a given offset
1364 * @pgoff: page offset into the storage buffer
1366 * This traverses msc::win_list, so holding msc::buf_mutex is expected from
1369 * Return: page if @pgoff corresponds to a valid buffer page or NULL.
1371 static struct page
*msc_buffer_get_page(struct msc
*msc
, unsigned long pgoff
)
1373 struct msc_window
*win
;
1374 struct scatterlist
*sg
;
1377 if (msc
->mode
== MSC_MODE_SINGLE
)
1378 return msc_buffer_contig_get_page(msc
, pgoff
);
1380 list_for_each_entry(win
, &msc
->win_list
, entry
)
1381 if (pgoff
>= win
->pgoff
&& pgoff
< win
->pgoff
+ win
->nr_blocks
)
1387 pgoff
-= win
->pgoff
;
1389 for_each_sg(win
->sgt
->sgl
, sg
, win
->nr_segs
, blk
) {
1390 struct page
*page
= sg_page(sg
);
1391 size_t pgsz
= PFN_DOWN(sg
->length
);
1394 return page
+ pgoff
;
1403 * struct msc_win_to_user_struct - data for copy_to_user() callback
1404 * @buf: userspace buffer to copy data to
1405 * @offset: running offset
1407 struct msc_win_to_user_struct
{
1409 unsigned long offset
;
1413 * msc_win_to_user() - iterator for msc_buffer_iterate() to copy data to user
1414 * @data: callback's private data
1415 * @src: source buffer
1416 * @len: amount of data to copy from the source buffer
1418 static unsigned long msc_win_to_user(void *data
, void *src
, size_t len
)
1420 struct msc_win_to_user_struct
*u
= data
;
1423 ret
= copy_to_user(u
->buf
+ u
->offset
, src
, len
);
1424 u
->offset
+= len
- ret
;
1431 * file operations' callbacks
1434 static int intel_th_msc_open(struct inode
*inode
, struct file
*file
)
1436 struct intel_th_device
*thdev
= file
->private_data
;
1437 struct msc
*msc
= dev_get_drvdata(&thdev
->dev
);
1438 struct msc_iter
*iter
;
1440 if (!capable(CAP_SYS_RAWIO
))
1443 iter
= msc_iter_install(msc
);
1445 return PTR_ERR(iter
);
1447 file
->private_data
= iter
;
1449 return nonseekable_open(inode
, file
);
1452 static int intel_th_msc_release(struct inode
*inode
, struct file
*file
)
1454 struct msc_iter
*iter
= file
->private_data
;
1455 struct msc
*msc
= iter
->msc
;
1457 msc_iter_remove(iter
, msc
);
1463 msc_single_to_user(struct msc
*msc
, char __user
*buf
, loff_t off
, size_t len
)
1465 unsigned long size
= msc
->nr_pages
<< PAGE_SHIFT
, rem
= len
;
1466 unsigned long start
= off
, tocopy
= 0;
1468 if (msc
->single_wrap
) {
1469 start
+= msc
->single_sz
;
1471 tocopy
= min(rem
, size
- start
);
1472 if (copy_to_user(buf
, msc
->base
+ start
, tocopy
))
1482 tocopy
= min(rem
, msc
->single_sz
- start
);
1483 if (copy_to_user(buf
, msc
->base
+ start
, tocopy
))
1492 if (copy_to_user(buf
, msc
->base
+ start
, rem
))
1498 static ssize_t
intel_th_msc_read(struct file
*file
, char __user
*buf
,
1499 size_t len
, loff_t
*ppos
)
1501 struct msc_iter
*iter
= file
->private_data
;
1502 struct msc
*msc
= iter
->msc
;
1507 if (!atomic_inc_unless_negative(&msc
->user_count
))
1510 if (msc
->mode
== MSC_MODE_SINGLE
&& !msc
->single_wrap
)
1511 size
= msc
->single_sz
;
1513 size
= msc
->nr_pages
<< PAGE_SHIFT
;
1521 if (off
+ len
>= size
)
1524 if (msc
->mode
== MSC_MODE_SINGLE
) {
1525 ret
= msc_single_to_user(msc
, buf
, off
, len
);
1528 } else if (msc
->mode
== MSC_MODE_MULTI
) {
1529 struct msc_win_to_user_struct u
= {
1534 ret
= msc_buffer_iterate(iter
, len
, &u
, msc_win_to_user
);
1536 *ppos
= iter
->offset
;
1542 atomic_dec(&msc
->user_count
);
1548 * vm operations callbacks (vm_ops)
1551 static void msc_mmap_open(struct vm_area_struct
*vma
)
1553 struct msc_iter
*iter
= vma
->vm_file
->private_data
;
1554 struct msc
*msc
= iter
->msc
;
1556 atomic_inc(&msc
->mmap_count
);
1559 static void msc_mmap_close(struct vm_area_struct
*vma
)
1561 struct msc_iter
*iter
= vma
->vm_file
->private_data
;
1562 struct msc
*msc
= iter
->msc
;
1565 if (!atomic_dec_and_mutex_lock(&msc
->mmap_count
, &msc
->buf_mutex
))
1568 /* drop page _refcounts */
1569 for (pg
= 0; pg
< msc
->nr_pages
; pg
++) {
1570 struct page
*page
= msc_buffer_get_page(msc
, pg
);
1572 if (WARN_ON_ONCE(!page
))
1576 page
->mapping
= NULL
;
1579 /* last mapping -- drop user_count */
1580 atomic_dec(&msc
->user_count
);
1581 mutex_unlock(&msc
->buf_mutex
);
1584 static vm_fault_t
msc_mmap_fault(struct vm_fault
*vmf
)
1586 struct msc_iter
*iter
= vmf
->vma
->vm_file
->private_data
;
1587 struct msc
*msc
= iter
->msc
;
1589 vmf
->page
= msc_buffer_get_page(msc
, vmf
->pgoff
);
1591 return VM_FAULT_SIGBUS
;
1593 get_page(vmf
->page
);
1594 vmf
->page
->mapping
= vmf
->vma
->vm_file
->f_mapping
;
1595 vmf
->page
->index
= vmf
->pgoff
;
1600 static const struct vm_operations_struct msc_mmap_ops
= {
1601 .open
= msc_mmap_open
,
1602 .close
= msc_mmap_close
,
1603 .fault
= msc_mmap_fault
,
1606 static int intel_th_msc_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1608 unsigned long size
= vma
->vm_end
- vma
->vm_start
;
1609 struct msc_iter
*iter
= vma
->vm_file
->private_data
;
1610 struct msc
*msc
= iter
->msc
;
1613 if (!size
|| offset_in_page(size
))
1619 /* grab user_count once per mmap; drop in msc_mmap_close() */
1620 if (!atomic_inc_unless_negative(&msc
->user_count
))
1623 if (msc
->mode
!= MSC_MODE_SINGLE
&&
1624 msc
->mode
!= MSC_MODE_MULTI
)
1627 if (size
>> PAGE_SHIFT
!= msc
->nr_pages
)
1630 atomic_set(&msc
->mmap_count
, 1);
1635 atomic_dec(&msc
->user_count
);
1637 vma
->vm_page_prot
= pgprot_noncached(vma
->vm_page_prot
);
1638 vma
->vm_flags
|= VM_DONTEXPAND
| VM_DONTCOPY
;
1639 vma
->vm_ops
= &msc_mmap_ops
;
1643 static const struct file_operations intel_th_msc_fops
= {
1644 .open
= intel_th_msc_open
,
1645 .release
= intel_th_msc_release
,
1646 .read
= intel_th_msc_read
,
1647 .mmap
= intel_th_msc_mmap
,
1648 .llseek
= no_llseek
,
1649 .owner
= THIS_MODULE
,
1652 static void intel_th_msc_wait_empty(struct intel_th_device
*thdev
)
1654 struct msc
*msc
= dev_get_drvdata(&thdev
->dev
);
1655 unsigned long count
;
1658 for (reg
= 0, count
= MSC_PLE_WAITLOOP_DEPTH
;
1659 count
&& !(reg
& MSCSTS_PLE
); count
--) {
1660 reg
= __raw_readl(msc
->reg_base
+ REG_MSU_MSC0STS
);
1665 dev_dbg(msc_dev(msc
), "timeout waiting for MSC0 PLE\n");
1668 static int intel_th_msc_init(struct msc
*msc
)
1670 atomic_set(&msc
->user_count
, -1);
1672 msc
->mode
= msc
->multi_is_broken
? MSC_MODE_SINGLE
: MSC_MODE_MULTI
;
1673 mutex_init(&msc
->buf_mutex
);
1674 INIT_LIST_HEAD(&msc
->win_list
);
1675 INIT_LIST_HEAD(&msc
->iter_list
);
1678 (ioread32(msc
->reg_base
+ REG_MSU_MSC0CTL
) & MSC_LEN
) >>
1684 static int msc_win_switch(struct msc
*msc
)
1686 struct msc_window
*first
;
1688 if (list_empty(&msc
->win_list
))
1691 first
= list_first_entry(&msc
->win_list
, struct msc_window
, entry
);
1693 if (msc_is_last_win(msc
->cur_win
))
1694 msc
->cur_win
= first
;
1696 msc
->cur_win
= list_next_entry(msc
->cur_win
, entry
);
1698 msc
->base
= msc_win_base(msc
->cur_win
);
1699 msc
->base_addr
= msc_win_base_dma(msc
->cur_win
);
1701 intel_th_trace_switch(msc
->thdev
);
1707 * intel_th_msc_window_unlock - put the window back in rotation
1708 * @dev: MSC device to which this relates
1709 * @sgt: buffer's sg_table for the window, does nothing if NULL
1711 void intel_th_msc_window_unlock(struct device
*dev
, struct sg_table
*sgt
)
1713 struct msc
*msc
= dev_get_drvdata(dev
);
1714 struct msc_window
*win
;
1719 win
= msc_find_window(msc
, sgt
, false);
1723 msc_win_set_lockout(win
, WIN_LOCKED
, WIN_READY
);
1724 if (msc
->switch_on_unlock
== win
) {
1725 msc
->switch_on_unlock
= NULL
;
1726 msc_win_switch(msc
);
1729 EXPORT_SYMBOL_GPL(intel_th_msc_window_unlock
);
1731 static void msc_work(struct work_struct
*work
)
1733 struct msc
*msc
= container_of(work
, struct msc
, work
);
1735 intel_th_msc_deactivate(msc
->thdev
);
1738 static irqreturn_t
intel_th_msc_interrupt(struct intel_th_device
*thdev
)
1740 struct msc
*msc
= dev_get_drvdata(&thdev
->dev
);
1741 u32 msusts
= ioread32(msc
->msu_base
+ REG_MSU_MSUSTS
);
1742 u32 mask
= msc
->index
? MSUSTS_MSC1BLAST
: MSUSTS_MSC0BLAST
;
1743 struct msc_window
*win
, *next_win
;
1745 if (!msc
->do_irq
|| !msc
->mbuf
)
1751 return msc
->enabled
? IRQ_HANDLED
: IRQ_NONE
;
1753 iowrite32(msusts
, msc
->msu_base
+ REG_MSU_MSUSTS
);
1758 /* grab the window before we do the switch */
1762 next_win
= msc_next_window(win
);
1766 /* next window: if READY, proceed, if LOCKED, stop the trace */
1767 if (msc_win_set_lockout(next_win
, WIN_READY
, WIN_INUSE
)) {
1768 if (msc
->stop_on_full
)
1769 schedule_work(&msc
->work
);
1771 msc
->switch_on_unlock
= next_win
;
1776 /* current window: INUSE -> LOCKED */
1777 msc_win_set_lockout(win
, WIN_INUSE
, WIN_LOCKED
);
1779 msc_win_switch(msc
);
1781 if (msc
->mbuf
&& msc
->mbuf
->ready
)
1782 msc
->mbuf
->ready(msc
->mbuf_priv
, win
->sgt
,
1783 msc_win_total_sz(win
));
1788 static const char * const msc_mode
[] = {
1789 [MSC_MODE_SINGLE
] = "single",
1790 [MSC_MODE_MULTI
] = "multi",
1791 [MSC_MODE_EXI
] = "ExI",
1792 [MSC_MODE_DEBUG
] = "debug",
1796 wrap_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1798 struct msc
*msc
= dev_get_drvdata(dev
);
1800 return scnprintf(buf
, PAGE_SIZE
, "%d\n", msc
->wrap
);
1804 wrap_store(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
1807 struct msc
*msc
= dev_get_drvdata(dev
);
1811 ret
= kstrtoul(buf
, 10, &val
);
1820 static DEVICE_ATTR_RW(wrap
);
1822 static void msc_buffer_unassign(struct msc
*msc
)
1824 lockdep_assert_held(&msc
->buf_mutex
);
1829 msc
->mbuf
->unassign(msc
->mbuf_priv
);
1830 msu_buffer_put(msc
->mbuf
);
1831 msc
->mbuf_priv
= NULL
;
1836 mode_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1838 struct msc
*msc
= dev_get_drvdata(dev
);
1839 const char *mode
= msc_mode
[msc
->mode
];
1842 mutex_lock(&msc
->buf_mutex
);
1844 mode
= msc
->mbuf
->name
;
1845 ret
= scnprintf(buf
, PAGE_SIZE
, "%s\n", mode
);
1846 mutex_unlock(&msc
->buf_mutex
);
1852 mode_store(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
1855 const struct msu_buffer
*mbuf
= NULL
;
1856 struct msc
*msc
= dev_get_drvdata(dev
);
1861 if (!capable(CAP_SYS_RAWIO
))
1864 cp
= memchr(buf
, '\n', len
);
1868 mode
= kstrndup(buf
, len
, GFP_KERNEL
);
1872 i
= match_string(msc_mode
, ARRAY_SIZE(msc_mode
), mode
);
1878 /* Buffer sinks only work with a usable IRQ */
1884 mbuf
= msu_buffer_get(mode
);
1892 if (i
== MSC_MODE_MULTI
&& msc
->multi_is_broken
)
1895 mutex_lock(&msc
->buf_mutex
);
1898 /* Same buffer: do nothing */
1899 if (mbuf
&& mbuf
== msc
->mbuf
) {
1900 /* put the extra reference we just got */
1901 msu_buffer_put(mbuf
);
1905 ret
= msc_buffer_unlocked_free_unless_used(msc
);
1910 void *mbuf_priv
= mbuf
->assign(dev
, &i
);
1917 msc_buffer_unassign(msc
);
1918 msc
->mbuf_priv
= mbuf_priv
;
1921 msc_buffer_unassign(msc
);
1928 msu_buffer_put(mbuf
);
1929 mutex_unlock(&msc
->buf_mutex
);
1931 return ret
? ret
: size
;
1934 static DEVICE_ATTR_RW(mode
);
1937 nr_pages_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1939 struct msc
*msc
= dev_get_drvdata(dev
);
1940 struct msc_window
*win
;
1943 mutex_lock(&msc
->buf_mutex
);
1945 if (msc
->mode
== MSC_MODE_SINGLE
)
1946 count
= scnprintf(buf
, PAGE_SIZE
, "%ld\n", msc
->nr_pages
);
1947 else if (msc
->mode
== MSC_MODE_MULTI
) {
1948 list_for_each_entry(win
, &msc
->win_list
, entry
) {
1949 count
+= scnprintf(buf
+ count
, PAGE_SIZE
- count
,
1950 "%d%c", win
->nr_blocks
,
1951 msc_is_last_win(win
) ? '\n' : ',');
1954 count
= scnprintf(buf
, PAGE_SIZE
, "unsupported\n");
1957 mutex_unlock(&msc
->buf_mutex
);
1963 nr_pages_store(struct device
*dev
, struct device_attribute
*attr
,
1964 const char *buf
, size_t size
)
1966 struct msc
*msc
= dev_get_drvdata(dev
);
1967 unsigned long val
, *win
= NULL
, *rewin
;
1969 const char *p
= buf
;
1971 int ret
, nr_wins
= 0;
1973 if (!capable(CAP_SYS_RAWIO
))
1976 ret
= msc_buffer_free_unless_used(msc
);
1980 /* scan the comma-separated list of allocation sizes */
1981 end
= memchr(buf
, '\n', len
);
1986 end
= memchr(p
, ',', len
);
1987 s
= kstrndup(p
, end
? end
- p
: len
, GFP_KERNEL
);
1993 ret
= kstrtoul(s
, 10, &val
);
1999 if (nr_wins
&& msc
->mode
== MSC_MODE_SINGLE
) {
2005 rewin
= krealloc_array(win
, nr_wins
, sizeof(*win
), GFP_KERNEL
);
2012 win
[nr_wins
- 1] = val
;
2017 /* consume the number and the following comma, hence +1 */
2022 mutex_lock(&msc
->buf_mutex
);
2023 ret
= msc_buffer_alloc(msc
, win
, nr_wins
);
2024 mutex_unlock(&msc
->buf_mutex
);
2029 return ret
? ret
: size
;
2032 static DEVICE_ATTR_RW(nr_pages
);
2035 win_switch_store(struct device
*dev
, struct device_attribute
*attr
,
2036 const char *buf
, size_t size
)
2038 struct msc
*msc
= dev_get_drvdata(dev
);
2042 ret
= kstrtoul(buf
, 10, &val
);
2050 mutex_lock(&msc
->buf_mutex
);
2052 * Window switch can only happen in the "multi" mode.
2053 * If a external buffer is engaged, they have the full
2054 * control over window switching.
2056 if (msc
->mode
== MSC_MODE_MULTI
&& !msc
->mbuf
)
2057 ret
= msc_win_switch(msc
);
2058 mutex_unlock(&msc
->buf_mutex
);
2060 return ret
? ret
: size
;
2063 static DEVICE_ATTR_WO(win_switch
);
2065 static ssize_t
stop_on_full_show(struct device
*dev
,
2066 struct device_attribute
*attr
, char *buf
)
2068 struct msc
*msc
= dev_get_drvdata(dev
);
2070 return sprintf(buf
, "%d\n", msc
->stop_on_full
);
2073 static ssize_t
stop_on_full_store(struct device
*dev
,
2074 struct device_attribute
*attr
,
2075 const char *buf
, size_t size
)
2077 struct msc
*msc
= dev_get_drvdata(dev
);
2080 ret
= kstrtobool(buf
, &msc
->stop_on_full
);
2087 static DEVICE_ATTR_RW(stop_on_full
);
2089 static struct attribute
*msc_output_attrs
[] = {
2090 &dev_attr_wrap
.attr
,
2091 &dev_attr_mode
.attr
,
2092 &dev_attr_nr_pages
.attr
,
2093 &dev_attr_win_switch
.attr
,
2094 &dev_attr_stop_on_full
.attr
,
2098 static struct attribute_group msc_output_group
= {
2099 .attrs
= msc_output_attrs
,
2102 static int intel_th_msc_probe(struct intel_th_device
*thdev
)
2104 struct device
*dev
= &thdev
->dev
;
2105 struct resource
*res
;
2110 res
= intel_th_device_get_resource(thdev
, IORESOURCE_MEM
, 0);
2114 base
= devm_ioremap(dev
, res
->start
, resource_size(res
));
2118 msc
= devm_kzalloc(dev
, sizeof(*msc
), GFP_KERNEL
);
2122 res
= intel_th_device_get_resource(thdev
, IORESOURCE_IRQ
, 1);
2126 if (INTEL_TH_CAP(to_intel_th(thdev
), multi_is_broken
))
2127 msc
->multi_is_broken
= 1;
2129 msc
->index
= thdev
->id
;
2132 msc
->reg_base
= base
+ msc
->index
* 0x100;
2133 msc
->msu_base
= base
;
2135 INIT_WORK(&msc
->work
, msc_work
);
2136 err
= intel_th_msc_init(msc
);
2140 dev_set_drvdata(dev
, msc
);
2145 static void intel_th_msc_remove(struct intel_th_device
*thdev
)
2147 struct msc
*msc
= dev_get_drvdata(&thdev
->dev
);
2150 intel_th_msc_deactivate(thdev
);
2153 * Buffers should not be used at this point except if the
2154 * output character device is still open and the parent
2155 * device gets detached from its bus, which is a FIXME.
2157 ret
= msc_buffer_free_unless_used(msc
);
2161 static struct intel_th_driver intel_th_msc_driver
= {
2162 .probe
= intel_th_msc_probe
,
2163 .remove
= intel_th_msc_remove
,
2164 .irq
= intel_th_msc_interrupt
,
2165 .wait_empty
= intel_th_msc_wait_empty
,
2166 .activate
= intel_th_msc_activate
,
2167 .deactivate
= intel_th_msc_deactivate
,
2168 .fops
= &intel_th_msc_fops
,
2169 .attr_group
= &msc_output_group
,
2172 .owner
= THIS_MODULE
,
2176 module_driver(intel_th_msc_driver
,
2177 intel_th_driver_register
,
2178 intel_th_driver_unregister
);
2180 MODULE_LICENSE("GPL v2");
2181 MODULE_DESCRIPTION("Intel(R) Trace Hub Memory Storage Unit driver");
2182 MODULE_AUTHOR("Alexander Shishkin <alexander.shishkin@linux.intel.com>");