Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: ATI/AMD Driver Installed | Suspend Fails | Suggestions?

  1. #1
    neu5eeCh is offline Grande Half-n-Half Cinnamon Ubuntu
    Join Date
    Dec 2009
    Beans
    912
    Distro
    Ubuntu

    ATI/AMD Driver Installed | Suspend Fails | Suggestions?

    And... on to the next problem.

    Having successfully installed and tweaked video driver and video playback performance, I find that Suspend no longer works. I'm going to start googling now, but any suggestions are welcome.

    Xubuntu 12.04 | Mobility Radeon HD 3650 |64bit | Sony VAIO VGN-FW373J

  2. #2
    neu5eeCh is offline Grande Half-n-Half Cinnamon Ubuntu
    Join Date
    Dec 2009
    Beans
    912
    Distro
    Ubuntu

    Re: ATI/AMD Driver Installed | Suspend Fails | Suggestions?

    Yeah. OK. Cold shoulder, eh? I get the message. I filed a bug report here.

  3. #3
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: ATI/AMD Driver Installed | Suspend Fails | Suggestions?

    Hi VTPoet. What does /var/log/pm-suspend say? Also, run the following command to see if there is anything related in syslog:
    Code:
    cat /var/log/syslog* | grep PM:
    On a long shot (mostly because its worked on other Sny vaios), have you/can you try: http://thecodecentral.com/2011/01/18...ot-working-bug?

  4. #4
    neu5eeCh is offline Grande Half-n-Half Cinnamon Ubuntu
    Join Date
    Dec 2009
    Beans
    912
    Distro
    Ubuntu

    Re: ATI/AMD Driver Installed | Suspend Fails | Suggestions?

    Quote Originally Posted by Toz View Post
    Hi VTPoet. What does /var/log/pm-suspend say? Also, run the following command to see if there is anything related in syslog:
    Code:
    cat /var/log/syslog* | grep PM:
    On a long shot (mostly because its worked on other Sny vaios), have you/can you try: http://thecodecentral.com/2011/01/18...ot-working-bug?
    Hi Toz, I just saw your response. I ran your command in terminal, but the output goes on a bit. How do a post this stuff without using up the whole page? I notice that some here post clickable extracts.

    Edit: I tried the link you provided, but unfortunately it didn't work on my system.
    Last edited by neu5eeCh; July 2nd, 2012 at 03:11 PM.

  5. #5
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: ATI/AMD Driver Installed | Suspend Fails | Suggestions?

    Quote Originally Posted by VTPoet View Post
    Hi Toz, I just saw your response. I ran your command in terminal, but the output goes on a bit. How do a post this stuff without using up the whole page? I notice that some here post clickable extracts.
    Try:
    Code:
    pastebinit /var/log/pm-suspend
    ...and post back the link that gets generated.
    Edit: I tried the link you provided, but unfortunately it didn't work on my system.
    Here it is in a nutshell:
    1. Create a file:
    Code:
    gksudo leafpad /etc/pm/sleep.d/20_custom-ehci_hcd
    2. Copy/Paste the following code to the file:
    Code:
    #!/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
    3. Save the file.

    4. Make the file executable:
    Code:
    sudo chmod 755 /etc/pm/sleep.d/20_custom-ehci_hcd
    5. Try suspend again.

    This code unloads specific usb modules prior to suspend (and reloads them on resume) that can be problematic on some systems that have suspend issues.

  6. #6
    neu5eeCh is offline Grande Half-n-Half Cinnamon Ubuntu
    Join Date
    Dec 2009
    Beans
    912
    Distro
    Ubuntu

    Re: ATI/AMD Driver Installed | Suspend Fails | Suggestions?

    Thanks again. I tried the script but, in my case, it didn't help.

    My impression is that this problem is directly related to the video drivers.

    I also tried the pastebinit command but the terminal responded that it was "Unable to read from: /var/log/pm-suspend"

  7. #7
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: ATI/AMD Driver Installed | Suspend Fails | Suggestions?

    oops, my bad. It should be:
    Code:
    pastebinit /var/log/pm-suspend.log
    Lets see if there's anything in the log file. If not, we can go deeper down the rabbit hole and get more debugging info.

  8. #8
    neu5eeCh is offline Grande Half-n-Half Cinnamon Ubuntu
    Join Date
    Dec 2009
    Beans
    912
    Distro
    Ubuntu

    Re: ATI/AMD Driver Installed | Suspend Fails | Suggestions?

    Quote Originally Posted by Toz View Post
    oops, my bad. It should be:
    Code:
    pastebinit /var/log/pm-suspend.log
    Lets see if there's anything in the log file. If not, we can go deeper down the rabbit hole and get more debugging info.
    Oh... that's kewel! Never done this before. The link to the log is here.

  9. #9
    Join Date
    Jun 2005
    Location
    Toronto, Canada
    Beans
    Hidden!
    Distro
    Xubuntu 16.04 Xenial Xerus

    Re: ATI/AMD Driver Installed | Suspend Fails | Suggestions?

    Ok, nothing there. Let's go deeper.

    Code:
    sudo bash
    mv /var/log/pm-suspend.log /var/log/pm-suspend.log.BAK
    export PM_DEBUG=true
    pm-suspend
    After you recover, post back the link to your /var/log/pm-suspend.log file (it will be considerably larger).

    EDIT: Had a look at your bug report (https://bugs.launchpad.net/ubuntu/+s...62/comments/27). When you run 'dmesg > dmesg.txt', it will create a dmesg.txt file. Post that one back as well (and attach to bug report). There might be some useful info in there.
    Last edited by Toz; July 3rd, 2012 at 02:41 AM.

  10. #10
    neu5eeCh is offline Grande Half-n-Half Cinnamon Ubuntu
    Join Date
    Dec 2009
    Beans
    912
    Distro
    Ubuntu

    Re: ATI/AMD Driver Installed | Suspend Fails | Suggestions?

    OK. I'll do that tomorrow. I'm burned out for tonight. I had installed the upstream kernel. When I received the installation error message (vis-a-vis the upstream kernel), I assumed I couldn't use it. Silly me. I rebooted and didn't realize I was running it because I didn't pay attention to grub. The upstream kernel deactivated my FGLRX install. Had to uninstall the upstream kernels and reinstall AMD's drivers. What a mess - but my own doing.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •