|
@@ -233,6 +233,18 @@ static int snd_pcm_update_hw_ptr_interrupt(struct snd_pcm_substream *substream)
|
|
xrun(substream);
|
|
xrun(substream);
|
|
return -EPIPE;
|
|
return -EPIPE;
|
|
}
|
|
}
|
|
|
|
+ if (xrun_debug(substream, 8)) {
|
|
|
|
+ char name[16];
|
|
|
|
+ pcm_debug_name(substream, name, sizeof(name));
|
|
|
|
+ snd_printd("period_update: %s: pos=0x%x/0x%x/0x%x, "
|
|
|
|
+ "hwptr=0x%lx, hw_base=0x%lx, hw_intr=0x%lx\n",
|
|
|
|
+ name, pos,
|
|
|
|
+ (int)runtime->period_size,
|
|
|
|
+ (int)runtime->buffer_size,
|
|
|
|
+ (long)old_hw_ptr,
|
|
|
|
+ (long)runtime->hw_ptr_base,
|
|
|
|
+ (long)runtime->hw_ptr_interrupt);
|
|
|
|
+ }
|
|
hw_base = runtime->hw_ptr_base;
|
|
hw_base = runtime->hw_ptr_base;
|
|
new_hw_ptr = hw_base + pos;
|
|
new_hw_ptr = hw_base + pos;
|
|
hw_ptr_interrupt = runtime->hw_ptr_interrupt + runtime->period_size;
|
|
hw_ptr_interrupt = runtime->hw_ptr_interrupt + runtime->period_size;
|
|
@@ -353,6 +365,19 @@ int snd_pcm_update_hw_ptr(struct snd_pcm_substream *substream)
|
|
xrun(substream);
|
|
xrun(substream);
|
|
return -EPIPE;
|
|
return -EPIPE;
|
|
}
|
|
}
|
|
|
|
+ if (xrun_debug(substream, 16)) {
|
|
|
|
+ char name[16];
|
|
|
|
+ pcm_debug_name(substream, name, sizeof(name));
|
|
|
|
+ snd_printd("hw_update: %s: pos=0x%x/0x%x/0x%x, "
|
|
|
|
+ "hwptr=0x%lx, hw_base=0x%lx, hw_intr=0x%lx\n",
|
|
|
|
+ name, pos,
|
|
|
|
+ (int)runtime->period_size,
|
|
|
|
+ (int)runtime->buffer_size,
|
|
|
|
+ (long)old_hw_ptr,
|
|
|
|
+ (long)runtime->hw_ptr_base,
|
|
|
|
+ (long)runtime->hw_ptr_interrupt);
|
|
|
|
+ }
|
|
|
|
+
|
|
hw_base = runtime->hw_ptr_base;
|
|
hw_base = runtime->hw_ptr_base;
|
|
new_hw_ptr = hw_base + pos;
|
|
new_hw_ptr = hw_base + pos;
|
|
|
|
|