ALSA: hda - add hdac stream trace
authorLibin Yang <libin.yang@intel.com>
Tue, 12 May 2015 01:43:20 +0000 (09:43 +0800)
committerTakashi Iwai <tiwai@suse.de>
Mon, 18 May 2015 08:06:20 +0000 (10:06 +0200)
Add the trace of snd_hdac_stream_start and snd_hdac_stream_stop.

Signed-off-by: Libin Yang <libin.yang@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/hda/hdac_stream.c
sound/hda/trace.h

index 1ba0462ef7caef0015e267d1d311f496108c87d4..52a894fe478fa65d0a94b7640b5fc561d160de7d 100644 (file)
@@ -10,6 +10,7 @@
 #include <sound/pcm.h>
 #include <sound/hdaudio.h>
 #include <sound/hda_register.h>
+#include "trace.h"
 
 /**
  * snd_hdac_stream_init - initialize each stream (aka device)
@@ -48,6 +49,8 @@ void snd_hdac_stream_start(struct hdac_stream *azx_dev, bool fresh_start)
 {
        struct hdac_bus *bus = azx_dev->bus;
 
+       trace_snd_hdac_stream_start(bus, azx_dev);
+
        azx_dev->start_wallclk = snd_hdac_chip_readl(bus, WALLCLK);
        if (!fresh_start)
                azx_dev->start_wallclk -= azx_dev->period_wallclk;
@@ -82,6 +85,8 @@ EXPORT_SYMBOL_GPL(snd_hdac_stream_clear);
  */
 void snd_hdac_stream_stop(struct hdac_stream *azx_dev)
 {
+       trace_snd_hdac_stream_stop(azx_dev->bus, azx_dev);
+
        snd_hdac_stream_clear(azx_dev);
        /* disable SIE */
        snd_hdac_chip_updatel(azx_dev->bus, INTCTL, 1 << azx_dev->index, 0);
index 33a7eb5573d4cebc2cb0def312360492d6a2b4fc..e27e2c0b7b17f456601111c5c748e3025bd9a15e 100644 (file)
@@ -50,6 +50,33 @@ TRACE_EVENT(hda_unsol_event,
        ),
        TP_printk("%s", __get_str(msg))
 );
+
+DECLARE_EVENT_CLASS(hdac_stream,
+       TP_PROTO(struct hdac_bus *bus, struct hdac_stream *azx_dev),
+
+       TP_ARGS(bus, azx_dev),
+
+       TP_STRUCT__entry(
+               __field(unsigned char, stream_tag)
+       ),
+
+       TP_fast_assign(
+               __entry->stream_tag = (azx_dev)->stream_tag;
+       ),
+
+       TP_printk("stream_tag: %d", __entry->stream_tag)
+);
+
+DEFINE_EVENT(hdac_stream, snd_hdac_stream_start,
+       TP_PROTO(struct hdac_bus *bus, struct hdac_stream *azx_dev),
+       TP_ARGS(bus, azx_dev)
+);
+
+DEFINE_EVENT(hdac_stream, snd_hdac_stream_stop,
+       TP_PROTO(struct hdac_bus *bus, struct hdac_stream *azx_dev),
+       TP_ARGS(bus, azx_dev)
+);
+
 #endif /* __HDAC_TRACE_H */
 
 /* This part must be outside protection */