[Bug 945246] Re: Suspend not working on ASUS u30SD

Christopher M. Penalver christopher.penalver at gmx.com
Wed Aug 1 20:04:46 UTC 2012


Laurent Dinclaux, this bug was reported a while ago and there hasn't
been any activity in it recently. We were wondering if this is still an
issue? If so, could you please provide the information following
https://wiki.ubuntu.com/DebuggingKernelSuspend ?

Also, could you please test the latest upstream kernel available
following https://wiki.ubuntu.com/KernelMainlineBuilds ? It will allow
additional upstream developers to examine the issue. Please do not test
the kernel in the daily folder, but the one all the way at the bottom.
Once you've tested the upstream kernel, please comment on which kernel
version specifically you tested and remove the 'needs-upstream-testing'
tag. This can be done by clicking on the yellow pencil icon next to the
tag located at the bottom of the bug description and deleting the
'needs-upstream-testing' text.

If this bug is fixed in the mainline kernel, please add the following
tag 'kernel-fixed-upstream-VERSION-NUMBER', where VERSION-NUMBER is the
version number of the kernel you tested.

If the mainline kernel does not fix this bug, please add the tag:
'kernel-bug-exists-upstream-VERSION-NUMBER', where VERSION-NUMBER is the
version number of the kernel you tested.

If you are unable to test the mainline kernel, please comment as to why
specifically you were unable to test it and add the tag: 'kernel-unable-
to-test-upstream'.

Please let us know your results. Thank you for your understanding.

Helpful Bug Reporting Links:
https://help.ubuntu.com/community/ReportingBugs#Bug_Reporting_Etiquette
https://help.ubuntu.com/community/ReportingBugs#A3._Make_sure_the_bug_hasn.27t_already_been_reported
https://help.ubuntu.com/community/ReportingBugs#Adding_Apport_Debug_Information_to_an_Existing_Launchpad_Bug
https://help.ubuntu.com/community/ReportingBugs#Adding_Additional_Attachments_to_an_Existing_Launchpad_Bug

** No longer affects: acpid (Ubuntu)

** Changed in: acpid
       Status: New => Invalid

** Tags removed: kernel-request-3.2.0-18.28 kernel-request-3.2.0-18.29
** Tags added: bot-stop-nagging regression-release

** Attachment removed: "AcpiTables.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803564/+files/AcpiTables.txt

** Attachment removed: "AplayDevices.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803583/+files/AplayDevices.txt

** Attachment removed: "AlsaDevices.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803582/+files/AlsaDevices.txt

** Attachment removed: "BootDmesg.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803584/+files/BootDmesg.txt

** Attachment removed: "CRDA.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803585/+files/CRDA.txt

** Attachment removed: "Card0.Amixer.values.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803586/+files/Card0.Amixer.values.txt

** Attachment removed: "Card0.Codecs.codec.0.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803587/+files/Card0.Codecs.codec.0.txt

** Attachment removed: "Card0.Codecs.codec.3.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803588/+files/Card0.Codecs.codec.3.txt

** Attachment removed: "CurrentDmesg.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803589/+files/CurrentDmesg.txt

** Attachment removed: "IwConfig.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803590/+files/IwConfig.txt

** Attachment removed: "Lspci.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803591/+files/Lspci.txt

** Attachment removed: "Lsusb.txt"
   https://bugs.launchpad.net/acpid/+bug/945246/+attachment/2803593/+files/Lsusb.txt

** Description changed:

  Hello,
  
  I just installed the 12.04 beta1 and suspend is not working anymore.
  When I installed it I choosed "replace the ubuntu 11.10 install" option.
  
  The screen goes black but the LCD backlight is still on. Then, there is
  no way to bring it back, tried CTRL+ALT+F1 to bring the console, tried
  the syst req magic keys to reboot. No way.
  
  Hard shutdown is the only thing to do ...
  
  But it was working very good on 11.10.
+ 
+ WORKAROUND: Create and edit the file /etc/pm/sleep.d/20_custom-ehci_hcd and paste in this content:
+ #!/bin/sh
+ #inspired by http://art.ubuntuforums.org/showpost.php?p=9744970&postcount=19
+ #...and http://thecodecentral.com/2011/01/18/fix-ubuntu-10-10-suspendhibernate-not-working-bug
+ # tidied by tqzzaa :)
+ 
+ VERSION=1.1
+ DEV_LIST=/tmp/usb-dev-list
+ DRIVERS_DIR=/sys/bus/pci/drivers
+ DRIVERS="ehci xhci" # ehci_hcd, xhci_hcd
+ HEX="[[:xdigit:]]"
+ MAX_BIND_ATTEMPTS=2
+ BIND_WAIT=0.1
+ 
+ unbindDev() {
+   echo -n > $DEV_LIST 2>/dev/null
+   for driver in $DRIVERS; do
+     DDIR=$DRIVERS_DIR/${driver}_hcd
+     for dev in `ls $DDIR 2>/dev/null | egrep "^$HEX+:$HEX+:$HEX"`; do
+       echo -n "$dev" > $DDIR/unbind
+       echo "$driver $dev" >> $DEV_LIST
+     done
+   done
+ }
+ 
+ bindDev() {
+   if [ -s $DEV_LIST ]; then
+     while read driver dev; do
+       DDIR=$DRIVERS_DIR/${driver}_hcd
+       while [ $((MAX_BIND_ATTEMPTS)) -gt 0 ]; do
+           echo -n "$dev" > $DDIR/bind
+           if [ ! -L "$DDIR/$dev" ]; then
+             sleep $BIND_WAIT
+           else
+             break
+           fi
+           MAX_BIND_ATTEMPTS=$((MAX_BIND_ATTEMPTS-1))
+       done
+     done < $DEV_LIST
+   fi
+   rm $DEV_LIST 2>/dev/null
+ }
+ 
+ case "$1" in
+   hibernate|suspend) unbindDev;;
+   resume|thaw) bindDev;;
+ esac
+ 
+ and make the file executable.
+ Original Source: https://gist.github.com/2212526
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: acpi-support 0.138
  ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
  Uname: Linux 3.2.0-17-generic x86_64
  ApportVersion: 1.94-0ubuntu1
  Architecture: amd64
  Date: Sat Mar  3 10:37:11 2012
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  SourcePackage: acpi-support
  UpgradeStatus: No upgrade log present (probably fresh install)
- --- 
+ ---
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 1.94-0ubuntu1
  Architecture: amd64
  ArecordDevices:
-  **** List of CAPTURE Hardware Devices ****
-  card 0: PCH [HDA Intel PCH], device 0: VT1802 Analog [VT1802 Analog]
-    Subdevices: 2/2
-    Subdevice #0: subdevice #0
-    Subdevice #1: subdevice #1
+  **** List of CAPTURE Hardware Devices ****
+  card 0: PCH [HDA Intel PCH], device 0: VT1802 Analog [VT1802 Analog]
+    Subdevices: 2/2
+    Subdevice #0: subdevice #0
+    Subdevice #1: subdevice #1
  AudioDevicesInUse:
-  USER        PID ACCESS COMMAND
-  /dev/snd/controlC0:  lox        2215 F.... pulseaudio
+  USER        PID ACCESS COMMAND
+  /dev/snd/controlC0:  lox        2215 F.... pulseaudio
  Card0.Amixer.info:
-  Card hw:0 'PCH'/'HDA Intel PCH at 0xdf600000 irq 44'
-    Mixer name	: 'Intel CougarPoint HDMI'
-    Components	: 'HDA:11068446,10431053,00100000 HDA:80862805,80860101,00100000'
-    Controls      : 37
-    Simple ctrls  : 19
+  Card hw:0 'PCH'/'HDA Intel PCH at 0xdf600000 irq 44'
+    Mixer name	: 'Intel CougarPoint HDMI'
+    Components	: 'HDA:11068446,10431053,00100000 HDA:80862805,80860101,00100000'
+    Controls      : 37
+    Simple ctrls  : 19
  DistroRelease: Ubuntu 12.04
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
  MachineType: ASUSTeK Computer Inc. U30Sd
  Package: linux (not installed)
  ProcEnviron:
-  TERM=xterm
-  PATH=(custom, no user)
-  LANG=fr_FR.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=fr_FR.UTF-8
+  SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-17-generic root=UUID=30a646df-2e56-4842-b0ae-3c78db7c0b05 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
  RelatedPackageVersions:
-  linux-restricted-modules-3.2.0-17-generic N/A
-  linux-backports-modules-3.2.0-17-generic  N/A
-  linux-firmware                            1.71
+  linux-restricted-modules-3.2.0-17-generic N/A
+  linux-backports-modules-3.2.0-17-generic  N/A
+  linux-firmware                            1.71
  StagingDrivers: mei
  Tags:  precise staging
  Uname: Linux 3.2.0-17-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 07/06/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: U30Sd.211
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: U30Sd
  dmi.board.vendor: ASUSTeK Computer Inc.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK Computer Inc.
  dmi.chassis.version: 1.0
  dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrU30Sd.211:bd07/06/2011:svnASUSTeKComputerInc.:pnU30Sd:pvr1.0:rvnASUSTeKComputerInc.:rnU30Sd:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
  dmi.product.name: U30Sd
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK Computer Inc.
- --- 
+ ---
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 1.94-0ubuntu1
  Architecture: amd64
  ArecordDevices:
-  **** List of CAPTURE Hardware Devices ****
-  card 0: PCH [HDA Intel PCH], device 0: VT1802 Analog [VT1802 Analog]
-    Subdevices: 2/2
-    Subdevice #0: subdevice #0
-    Subdevice #1: subdevice #1
+  **** List of CAPTURE Hardware Devices ****
+  card 0: PCH [HDA Intel PCH], device 0: VT1802 Analog [VT1802 Analog]
+    Subdevices: 2/2
+    Subdevice #0: subdevice #0
+    Subdevice #1: subdevice #1
  AudioDevicesInUse:
-  USER        PID ACCESS COMMAND
-  /dev/snd/controlC0:  lox        2215 F.... pulseaudio
+  USER        PID ACCESS COMMAND
+  /dev/snd/controlC0:  lox        2215 F.... pulseaudio
  Card0.Amixer.info:
-  Card hw:0 'PCH'/'HDA Intel PCH at 0xdf600000 irq 44'
-    Mixer name	: 'Intel CougarPoint HDMI'
-    Components	: 'HDA:11068446,10431053,00100000 HDA:80862805,80860101,00100000'
-    Controls      : 37
-    Simple ctrls  : 19
+  Card hw:0 'PCH'/'HDA Intel PCH at 0xdf600000 irq 44'
+    Mixer name	: 'Intel CougarPoint HDMI'
+    Components	: 'HDA:11068446,10431053,00100000 HDA:80862805,80860101,00100000'
+    Controls      : 37
+    Simple ctrls  : 19
  DistroRelease: Ubuntu 12.04
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
  MachineType: ASUSTeK Computer Inc. U30Sd
  Package: linux (not installed)
  ProcEnviron:
-  TERM=xterm
-  PATH=(custom, no user)
-  LANG=C
-  SHELL=/bin/bash
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=C
+  SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-17-generic root=UUID=30a646df-2e56-4842-b0ae-3c78db7c0b05 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
  RelatedPackageVersions:
-  linux-restricted-modules-3.2.0-17-generic N/A
-  linux-backports-modules-3.2.0-17-generic  N/A
-  linux-firmware                            1.71
+  linux-restricted-modules-3.2.0-17-generic N/A
+  linux-backports-modules-3.2.0-17-generic  N/A
+  linux-firmware                            1.71
  StagingDrivers: mei
  Tags:  precise staging
  Uname: Linux 3.2.0-17-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 07/06/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: U30Sd.211
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: U30Sd
  dmi.board.vendor: ASUSTeK Computer Inc.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK Computer Inc.
  dmi.chassis.version: 1.0
  dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrU30Sd.211:bd07/06/2011:svnASUSTeKComputerInc.:pnU30Sd:pvr1.0:rvnASUSTeKComputerInc.:rnU30Sd:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
  dmi.product.name: U30Sd
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK Computer Inc.

** Description changed:

  Hello,
  
  I just installed the 12.04 beta1 and suspend is not working anymore.
  When I installed it I choosed "replace the ubuntu 11.10 install" option.
  
  The screen goes black but the LCD backlight is still on. Then, there is
  no way to bring it back, tried CTRL+ALT+F1 to bring the console, tried
  the syst req magic keys to reboot. No way.
  
  Hard shutdown is the only thing to do ...
  
  But it was working very good on 11.10.
  
  WORKAROUND: Create and edit the file /etc/pm/sleep.d/20_custom-ehci_hcd and paste in this content:
  #!/bin/sh
  #inspired by http://art.ubuntuforums.org/showpost.php?p=9744970&postcount=19
  #...and http://thecodecentral.com/2011/01/18/fix-ubuntu-10-10-suspendhibernate-not-working-bug
  # tidied by tqzzaa :)
  
  VERSION=1.1
  DEV_LIST=/tmp/usb-dev-list
  DRIVERS_DIR=/sys/bus/pci/drivers
  DRIVERS="ehci xhci" # ehci_hcd, xhci_hcd
  HEX="[[:xdigit:]]"
  MAX_BIND_ATTEMPTS=2
  BIND_WAIT=0.1
  
  unbindDev() {
-   echo -n > $DEV_LIST 2>/dev/null
-   for driver in $DRIVERS; do
-     DDIR=$DRIVERS_DIR/${driver}_hcd
-     for dev in `ls $DDIR 2>/dev/null | egrep "^$HEX+:$HEX+:$HEX"`; do
-       echo -n "$dev" > $DDIR/unbind
-       echo "$driver $dev" >> $DEV_LIST
-     done
-   done
+   echo -n > $DEV_LIST 2>/dev/null
+   for driver in $DRIVERS; do
+     DDIR=$DRIVERS_DIR/${driver}_hcd
+     for dev in `ls $DDIR 2>/dev/null | egrep "^$HEX+:$HEX+:$HEX"`; do
+       echo -n "$dev" > $DDIR/unbind
+       echo "$driver $dev" >> $DEV_LIST
+     done
+   done
  }
  
  bindDev() {
-   if [ -s $DEV_LIST ]; then
-     while read driver dev; do
-       DDIR=$DRIVERS_DIR/${driver}_hcd
-       while [ $((MAX_BIND_ATTEMPTS)) -gt 0 ]; do
-           echo -n "$dev" > $DDIR/bind
-           if [ ! -L "$DDIR/$dev" ]; then
-             sleep $BIND_WAIT
-           else
-             break
-           fi
-           MAX_BIND_ATTEMPTS=$((MAX_BIND_ATTEMPTS-1))
-       done
-     done < $DEV_LIST
-   fi
-   rm $DEV_LIST 2>/dev/null
+   if [ -s $DEV_LIST ]; then
+     while read driver dev; do
+       DDIR=$DRIVERS_DIR/${driver}_hcd
+       while [ $((MAX_BIND_ATTEMPTS)) -gt 0 ]; do
+           echo -n "$dev" > $DDIR/bind
+           if [ ! -L "$DDIR/$dev" ]; then
+             sleep $BIND_WAIT
+           else
+             break
+           fi
+           MAX_BIND_ATTEMPTS=$((MAX_BIND_ATTEMPTS-1))
+       done
+     done < $DEV_LIST
+   fi
+   rm $DEV_LIST 2>/dev/null
  }
  
  case "$1" in
-   hibernate|suspend) unbindDev;;
-   resume|thaw) bindDev;;
+   hibernate|suspend) unbindDev;;
+   resume|thaw) bindDev;;
  esac
  
  and make the file executable.
  Original Source: https://gist.github.com/2212526
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: acpi-support 0.138
  ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
  Uname: Linux 3.2.0-17-generic x86_64
  ApportVersion: 1.94-0ubuntu1
  Architecture: amd64
  Date: Sat Mar  3 10:37:11 2012
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  SourcePackage: acpi-support
  UpgradeStatus: No upgrade log present (probably fresh install)
  ---
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 1.94-0ubuntu1
  Architecture: amd64
  ArecordDevices:
   **** List of CAPTURE Hardware Devices ****
   card 0: PCH [HDA Intel PCH], device 0: VT1802 Analog [VT1802 Analog]
     Subdevices: 2/2
     Subdevice #0: subdevice #0
     Subdevice #1: subdevice #1
  AudioDevicesInUse:
   USER        PID ACCESS COMMAND
   /dev/snd/controlC0:  lox        2215 F.... pulseaudio
  Card0.Amixer.info:
   Card hw:0 'PCH'/'HDA Intel PCH at 0xdf600000 irq 44'
     Mixer name	: 'Intel CougarPoint HDMI'
     Components	: 'HDA:11068446,10431053,00100000 HDA:80862805,80860101,00100000'
     Controls      : 37
     Simple ctrls  : 19
  DistroRelease: Ubuntu 12.04
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
  MachineType: ASUSTeK Computer Inc. U30Sd
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-17-generic root=UUID=30a646df-2e56-4842-b0ae-3c78db7c0b05 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
  RelatedPackageVersions:
   linux-restricted-modules-3.2.0-17-generic N/A
   linux-backports-modules-3.2.0-17-generic  N/A
   linux-firmware                            1.71
  StagingDrivers: mei
  Tags:  precise staging
  Uname: Linux 3.2.0-17-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 07/06/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: U30Sd.211
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: U30Sd
  dmi.board.vendor: ASUSTeK Computer Inc.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK Computer Inc.
  dmi.chassis.version: 1.0
  dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrU30Sd.211:bd07/06/2011:svnASUSTeKComputerInc.:pnU30Sd:pvr1.0:rvnASUSTeKComputerInc.:rnU30Sd:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
  dmi.product.name: U30Sd
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK Computer Inc.
- ---
- AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
- ApportVersion: 1.94-0ubuntu1
- Architecture: amd64
- ArecordDevices:
-  **** List of CAPTURE Hardware Devices ****
-  card 0: PCH [HDA Intel PCH], device 0: VT1802 Analog [VT1802 Analog]
-    Subdevices: 2/2
-    Subdevice #0: subdevice #0
-    Subdevice #1: subdevice #1
- AudioDevicesInUse:
-  USER        PID ACCESS COMMAND
-  /dev/snd/controlC0:  lox        2215 F.... pulseaudio
- Card0.Amixer.info:
-  Card hw:0 'PCH'/'HDA Intel PCH at 0xdf600000 irq 44'
-    Mixer name	: 'Intel CougarPoint HDMI'
-    Components	: 'HDA:11068446,10431053,00100000 HDA:80862805,80860101,00100000'
-    Controls      : 37
-    Simple ctrls  : 19
- DistroRelease: Ubuntu 12.04
- EcryptfsInUse: Yes
- InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
- MachineType: ASUSTeK Computer Inc. U30Sd
- Package: linux (not installed)
- ProcEnviron:
-  TERM=xterm
-  PATH=(custom, no user)
-  LANG=C
-  SHELL=/bin/bash
- ProcFB: 0 inteldrmfb
- ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-17-generic root=UUID=30a646df-2e56-4842-b0ae-3c78db7c0b05 ro quiet splash vt.handoff=7
- ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
- RelatedPackageVersions:
-  linux-restricted-modules-3.2.0-17-generic N/A
-  linux-backports-modules-3.2.0-17-generic  N/A
-  linux-firmware                            1.71
- StagingDrivers: mei
- Tags:  precise staging
- Uname: Linux 3.2.0-17-generic x86_64
- UpgradeStatus: No upgrade log present (probably fresh install)
- UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
- dmi.bios.date: 07/06/2011
- dmi.bios.vendor: American Megatrends Inc.
- dmi.bios.version: U30Sd.211
- dmi.board.asset.tag: ATN12345678901234567
- dmi.board.name: U30Sd
- dmi.board.vendor: ASUSTeK Computer Inc.
- dmi.board.version: 1.0
- dmi.chassis.asset.tag: No Asset Tag
- dmi.chassis.type: 10
- dmi.chassis.vendor: ASUSTeK Computer Inc.
- dmi.chassis.version: 1.0
- dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrU30Sd.211:bd07/06/2011:svnASUSTeKComputerInc.:pnU30Sd:pvr1.0:rvnASUSTeKComputerInc.:rnU30Sd:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
- dmi.product.name: U30Sd
- dmi.product.version: 1.0
- dmi.sys.vendor: ASUSTeK Computer Inc.

** Tags removed: kernel-bug-exists-upstream
** Tags added: needs-upstream-testing

** Changed in: linux (Ubuntu)
       Status: Confirmed => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Foundations Bugs, which is subscribed to acpid in Ubuntu.
https://bugs.launchpad.net/bugs/945246

Title:
  Suspend not working on ASUS u30SD

Status in acpid:
  Invalid
Status in The Linux Kernel:
  Confirmed
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  I just installed the 12.04 beta1 and suspend is not working anymore.
  When I installed it I choosed "replace the ubuntu 11.10 install"
  option.

  The screen goes black but the LCD backlight is still on. Then, there
  is no way to bring it back, tried CTRL+ALT+F1 to bring the console,
  tried the syst req magic keys to reboot. No way.

  Hard shutdown is the only thing to do ...

  But it was working very good on 11.10.

  WORKAROUND: Create and edit the file /etc/pm/sleep.d/20_custom-ehci_hcd and paste in this content:
  #!/bin/sh
  #inspired by http://art.ubuntuforums.org/showpost.php?p=9744970&postcount=19
  #...and http://thecodecentral.com/2011/01/18/fix-ubuntu-10-10-suspendhibernate-not-working-bug
  # tidied by tqzzaa :)

  VERSION=1.1
  DEV_LIST=/tmp/usb-dev-list
  DRIVERS_DIR=/sys/bus/pci/drivers
  DRIVERS="ehci xhci" # ehci_hcd, xhci_hcd
  HEX="[[:xdigit:]]"
  MAX_BIND_ATTEMPTS=2
  BIND_WAIT=0.1

  unbindDev() {
    echo -n > $DEV_LIST 2>/dev/null
    for driver in $DRIVERS; do
      DDIR=$DRIVERS_DIR/${driver}_hcd
      for dev in `ls $DDIR 2>/dev/null | egrep "^$HEX+:$HEX+:$HEX"`; do
        echo -n "$dev" > $DDIR/unbind
        echo "$driver $dev" >> $DEV_LIST
      done
    done
  }

  bindDev() {
    if [ -s $DEV_LIST ]; then
      while read driver dev; do
        DDIR=$DRIVERS_DIR/${driver}_hcd
        while [ $((MAX_BIND_ATTEMPTS)) -gt 0 ]; do
            echo -n "$dev" > $DDIR/bind
            if [ ! -L "$DDIR/$dev" ]; then
              sleep $BIND_WAIT
            else
              break
            fi
            MAX_BIND_ATTEMPTS=$((MAX_BIND_ATTEMPTS-1))
        done
      done < $DEV_LIST
    fi
    rm $DEV_LIST 2>/dev/null
  }

  case "$1" in
    hibernate|suspend) unbindDev;;
    resume|thaw) bindDev;;
  esac

  and make the file executable.
  Original Source: https://gist.github.com/2212526

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: acpi-support 0.138
  ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
  Uname: Linux 3.2.0-17-generic x86_64
  ApportVersion: 1.94-0ubuntu1
  Architecture: amd64
  Date: Sat Mar  3 10:37:11 2012
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  SourcePackage: acpi-support
  UpgradeStatus: No upgrade log present (probably fresh install)
  ---
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 1.94-0ubuntu1
  Architecture: amd64
  ArecordDevices:
   **** List of CAPTURE Hardware Devices ****
   card 0: PCH [HDA Intel PCH], device 0: VT1802 Analog [VT1802 Analog]
     Subdevices: 2/2
     Subdevice #0: subdevice #0
     Subdevice #1: subdevice #1
  AudioDevicesInUse:
   USER        PID ACCESS COMMAND
   /dev/snd/controlC0:  lox        2215 F.... pulseaudio
  Card0.Amixer.info:
   Card hw:0 'PCH'/'HDA Intel PCH at 0xdf600000 irq 44'
     Mixer name	: 'Intel CougarPoint HDMI'
     Components	: 'HDA:11068446,10431053,00100000 HDA:80862805,80860101,00100000'
     Controls      : 37
     Simple ctrls  : 19
  DistroRelease: Ubuntu 12.04
  EcryptfsInUse: Yes
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120301)
  MachineType: ASUSTeK Computer Inc. U30Sd
  Package: linux (not installed)
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   LANG=fr_FR.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.2.0-17-generic root=UUID=30a646df-2e56-4842-b0ae-3c78db7c0b05 ro quiet splash vt.handoff=7
  ProcVersionSignature: Ubuntu 3.2.0-17.27-generic 3.2.6
  RelatedPackageVersions:
   linux-restricted-modules-3.2.0-17-generic N/A
   linux-backports-modules-3.2.0-17-generic  N/A
   linux-firmware                            1.71
  StagingDrivers: mei
  Tags:  precise staging
  Uname: Linux 3.2.0-17-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  dmi.bios.date: 07/06/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: U30Sd.211
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: U30Sd
  dmi.board.vendor: ASUSTeK Computer Inc.
  dmi.board.version: 1.0
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK Computer Inc.
  dmi.chassis.version: 1.0
  dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvrU30Sd.211:bd07/06/2011:svnASUSTeKComputerInc.:pnU30Sd:pvr1.0:rvnASUSTeKComputerInc.:rnU30Sd:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr1.0:
  dmi.product.name: U30Sd
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK Computer Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/acpid/+bug/945246/+subscriptions




More information about the foundations-bugs mailing list