0ccd:00ab [Asus 901] Won't suspend using DVB-t USB stick

Bug #1404976 reported by sander
8
This bug affects 1 person
Affects Status Importance Assigned to Milestone
linux (Ubuntu)
Triaged
Low
Unassigned

Bug Description

I have a Terratec Cinergy T USB XXS DVB-t USB stick, but when you suspend the system while a radio or TV channel is actively playing in for example VLC, the system does not correctly suspend the device. The system will not wake up again and you have to reset the computer.

WORKAROUND: I have created a script /etc/pm/sleep.d/50_dvb_usb_dib0700_quirk:

#!/bin/sh

PASS=<enter password for LUA telnet access to VLC>

case "$1" in
hibernate|suspend)
 # check whether a stream with "telx" (Teletext) is active or not
  if [ "`{ echo $PASS; echo "info"; } | netcat localhost 4212 -q 1 | grep -c telx`" -eq "0" ]
  then
   continue
  else
   { echo $PASS; echo "stop"; } | netcat localhost 4212 -q 1 > /dev/null
  fi
  modprobe -r dvb_usb_dib0700
  sleep 1
  ;;
thaw|resume)
  modprobe dvb_usb_dib0700
  # automatically start playing after wake up
  { echo $PASS; echo "play"; } | netcat localhost 4212 -q 1 > /dev/null
  ;;
*) exit $NA
  ;;
esac

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: linux-image-3.2.0-74-generic 3.2.0-74.109
ProcVersionSignature: Ubuntu 3.2.0-74.109-generic 3.2.64
Uname: Linux 3.2.0-74-generic i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
AplayDevices:
 **** List of PLAYBACK Hardware Devices ****
 card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
ApportVersion: 2.0.1-0ubuntu17.8
Architecture: i386
ArecordDevices:
 **** List of CAPTURE Hardware Devices ****
 card 0: Intel [HDA Intel], device 0: ALC269 Analog [ALC269 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USER PID ACCESS COMMAND
 /dev/snd/controlC0: sander 4909 F.... pulseaudio
CRDA:
 country BE:
  (2402 - 2482 @ 40), (N/A, 20)
  (5170 - 5250 @ 40), (N/A, 20)
  (5250 - 5330 @ 40), (N/A, 20), DFS
  (5490 - 5710 @ 40), (N/A, 27), DFS
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xf7eb8000 irq 44'
   Mixer name : 'Realtek ALC269'
   Components : 'HDA:10ec0269,1043831a,00100004'
   Controls : 17
   Simple ctrls : 9
Date: Mon Dec 22 21:03:12 2014
MachineType: ASUSTeK Computer INC. 901
MarkForUpload: True
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-74-generic root=UUID=7f7edf1b-e27e-4af3-977b-a174a3317497 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.2.0-74-generic N/A
 linux-backports-modules-3.2.0-74-generic N/A
 linux-firmware 1.79.18
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/11/2009
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 2103
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: 901
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: x.xx
dmi.chassis.asset.tag: 0x00000000
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTek Computer INC.
dmi.chassis.version: x.x
dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr2103:bd06/11/2009:svnASUSTeKComputerINC.:pn901:pvrx.x:rvnASUSTeKComputerINC.:rn901:rvrx.xx:cvnASUSTekComputerINC.:ct10:cvrx.x:
dmi.product.name: 901
dmi.product.version: x.x
dmi.sys.vendor: ASUSTeK Computer INC.

Revision history for this message
sander (s-devrieze) wrote :
Revision history for this message
Brad Figg (brad-figg) wrote : Status changed to Confirmed

This change was made by a bot.

Changed in linux (Ubuntu):
status: New → Confirmed
Revision history for this message
penalvch (penalvch) wrote :

sander, thank you for reporting this and helping make Ubuntu better. Could you please test the latest upstream kernel available from the very top line at the top of the page (the release names are irrelevant for testing, and please do not test the daily folder) following https://wiki.ubuntu.com/KernelMainlineBuilds ? It will allow additional upstream developers to examine the issue.

If the test did not allow you to test to the issue (ex. you couldn't boot into the OS) please make a comment in your report about this, and continue to test the next most recent kernel version until you can test to the issue. Once you've tested the upstream kernel, please comment on which kernel version specifically you tested. If this bug is fixed in the mainline kernel, please add the following tags:
kernel-fixed-upstream
kernel-fixed-upstream-VERSION-NUMBER

where VERSION-NUMBER is the version number of the kernel you tested exactly shown as:
kernel-fixed-upstream-3.19-rc1

This can be done by clicking on the yellow circle with a black pencil icon next to the word Tags located at the bottom of the bug description.

If the mainline kernel does not fix this bug, please add the following tags:
kernel-bug-exists-upstream
kernel-bug-exists-upstream-VERSION-NUMBER

Once testing of the upstream kernel is complete, please mark this bug's Status as Confirmed. Please let us know your results. Thank you for your understanding.

tags: added: latest-bios-2103
summary: - 0ccd:00ab Won't suspend using DVB-t USB stick
+ 0ccd:00ab [Asus 901] Won't suspend using DVB-t USB stick
Changed in linux (Ubuntu):
importance: Undecided → Low
status: Confirmed → Incomplete
sander (s-devrieze)
tags: added: kernel-bug-exists-upstream kernel-bug-exists-upstream-3.19-rc1
Revision history for this message
sander (s-devrieze) wrote :

dmesg.txt following instructions of https://wiki.ubuntu.com/DebuggingKernelSuspend

Revision history for this message
sander (s-devrieze) wrote :

wakeup file following instructions on https://wiki.ubuntu.com/DebuggingKernelSuspend

penalvch (penalvch)
description: updated
Revision history for this message
penalvch (penalvch) wrote :

sander, the issue you are reporting is an upstream one. Could you please report this problem to the appropriate mailing list (linux-media) by following the instructions verbatim at https://wiki.ubuntu.com/Bugs/Upstream/kernel ?

Please provide a direct URL to your e-mail to the mailing list once you have made it so that it may be tracked via http://vger.kernel.org/vger-lists.html . It can take a day for the new e-mail to show up in the respective archive.

Thank you for your understanding.

Changed in linux (Ubuntu):
status: Incomplete → Triaged
Revision history for this message
sander (s-devrieze) wrote :

Ok, I'll read that long page first when I have time one of the next days.

Revision history for this message
sander (s-devrieze) wrote :
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.