LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 09-30-2010, 12:34 AM   #1
arsci
LQ Newbie
 
Registered: Sep 2010
Posts: 17

Rep: Reputation: 0
No mouse after suspend


Hello everyone,

I have a minor problem with resuming from suspend. For some reason, and completely randomly upon resuming I have no mouse (touchpad) control. I'm running openSUSE 11.3 on a Dell Studio XPS 16 (M1640) laptop. I've previously had Fedora 12 and 13 and had the same issue, so I know it's not distro specific. Like I said, it's completely random. Sometimes it does it after the 4th suspend, sometimes after the 1st, and sometimes after the 10th. It's almost as if it isn't loading the drivers or something upon resume. (I say drivers very loosely, because I don't really know how it all works) The only way I've found to get the mouse back it to hold the power button and force it to restart. It makes it VERY difficult while at school when I'm going from class to class having to constantly reboot and everything. If anyone can help point me in the right direction for fixing this it would be much appreciated!! I'm new to linux, but I'm very good with instructions. I've spend hours on google with no luck.

Thanks!

Ryan

Last edited by arsci; 09-30-2010 at 12:35 AM.
 
Old 09-30-2010, 06:24 PM   #2
kaz2100
Senior Member
 
Registered: Apr 2005
Location: Penguin land, with apple, no gates
Distribution: SlackWare > Debian testing woody(32) sarge etch lenny squeeze(+64) wheezy .. bullseye bookworm
Posts: 1,832

Rep: Reputation: 108Reputation: 108
Hya,

If you have no mouse after suspend, make sure that there is absolutely no cat around you. LOL

I assume you have lost control over mouse pointer (mouse cursor). You could try if it is possible to log onto your computer through network, Once you can, you can check various logs (under /var/log/) to look for any suspicious message.
If you cannot, your kernel may be frozen.

Make sure that you can log onto your computer when it is alive. (sshd needs be installed)

Good luck!

Happy Penguins!
 
Old 09-30-2010, 11:32 PM   #3
arsci
LQ Newbie
 
Registered: Sep 2010
Posts: 17

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by kaz2100 View Post
Hya,

If you have no mouse after suspend, make sure that there is absolutely no cat around you. LOL

I assume you have lost control over mouse pointer (mouse cursor). You could try if it is possible to log onto your computer through network, Once you can, you can check various logs (under /var/log/) to look for any suspicious message.
If you cannot, your kernel may be frozen.

Make sure that you can log onto your computer when it is alive. (sshd needs be installed)

Good luck!

Happy Penguins!
haha yes, lost control of the mouse pointer. I have not tried it with a USB mouse though as I am usually at school when it happens. I know everything else works (keyboard, etc), just not the mouse. I have it setup so it automatically logs in and goes straight to my desktop, just without a working mouse. Once I reboot, all is well again. Do you know which log I should look at?
 
Old 10-01-2010, 01:35 AM   #4
arsci
LQ Newbie
 
Registered: Sep 2010
Posts: 17

Original Poster
Rep: Reputation: 0
Okay, well I did some poking around. This time it awoke with no touchpad control after 3 sleep cycles. I plugged in a USB mouse, and it worked. Sent it to sleep again, and woke it back up, still with no touchpad, but a working USB mouse. I did some poking around in var/log and took a look at the suspend log. I mean a VERY close look. I saved a copy of one in my home folder (after an unsuccessful resume) and rebooted, did a sleep cycle and saved a copy of that one with the touchpad working in my home folder. Compared the two side by side and they were near identical. Not sure where to really go from here. Oh...and if I send it to hibernate and turn it on again the touchpad is working again. Any ideas? Thanks!
 
Old 10-02-2010, 06:28 AM   #5
kaz2100
Senior Member
 
Registered: Apr 2005
Location: Penguin land, with apple, no gates
Distribution: SlackWare > Debian testing woody(32) sarge etch lenny squeeze(+64) wheezy .. bullseye bookworm
Posts: 1,832

Rep: Reputation: 108Reputation: 108
Hya,

Under /var syslog, messages and X log are usually useful. Also dmesg may have something useful.

So, you have ps/2 mouse on laptop. I guess it is a little bit vintage, hardware error is another possibility.

Good luck.

Happy Penguins!
 
Old 10-02-2010, 07:14 AM   #6
carltm
Member
 
Registered: Jan 2007
Location: Canton, MI
Distribution: CentOS, SuSE, Red Hat, Debian, etc.
Posts: 703

Rep: Reputation: 99
This sounds like what I am seeing on a CentOS laptop. The problem is with
the PS2 driver. If you unload the module before shutdown/suspend and then
reload it after poweron/waking, the touchpad works perfectly.

In my case I recompile the kernel, since the PS2 driver is built in and I
compile it as a module.

I don't recall which file(s) you have to edit to load/unload modules at
a suspend or wakeup event, but I'm sure a quick search will find them.
It's very likely to be distro specific.
 
Old 10-02-2010, 07:17 AM   #7
carltm
Member
 
Registered: Jan 2007
Location: Canton, MI
Distribution: CentOS, SuSE, Red Hat, Debian, etc.
Posts: 703

Rep: Reputation: 99
I just found my notes about this for CentOS.

Code:
cat > /etc/pm/hooks/10psmouse <<EoT
#!/bin/sh
case "$1" in
        hibernate|suspend)
                /sbin/lsmod | grep -q psmouse || exit 0
                { /sbin/modprobe -r psmouse ; } 2>/dev/null
                ;;
        thaw|resume)
                { /sbin/modprobe psmouse ; } 2>/dev/null
                ;;
esac
EoT
cat > /sbin/halt.local <<EoT
#! /bin/sh
/sbin/modprobe -r psmouse
EoT
chmod 700 /sbin/halt.local
 
Old 10-03-2010, 03:11 AM   #8
arsci
LQ Newbie
 
Registered: Sep 2010
Posts: 17

Original Poster
Rep: Reputation: 0
This has got to be one of the most frustrating things I have ever dealt with on this computer, by far. How can the touchpad simply just not work randomly. I have spent HOURS googling and there are other people with this problem, but not ONE solution to it. Is it just my computer? I'm starting to doubt it more and more, as I found this page (link below), with a supposed solution, but it doesn't seem to do jack for me. Maybe I'm just stupid? Here's what I tried to do:

Found this: http://en.opensuse.org/SDB:Pm-utils#...ting_the_mouse
but for the life of me, I couldn't get it to make a difference.

I tried to follow your notes carltm, but with no luck.

I really don't know what I'm doing, and have no idea where to look to learn some of it to try and fix it. i can pull up instructions, but they can be so vague that I literally am just randomly creating/editing files that look like they match directions I've found, and that really scares me because I'm afraid I'm going to mess something up, but I need this fixed, and soon. I've found sites that have instructions for the exact distro, KDE update whatever that I do and I find over and over that I either don't have complete sections of these directories/files listed, that everyone else seems to have.

What really gets me, is that there is no trace of something going wrong (well, except for the fact that I have no touchpad) and it's making me seriously consider shelling out the $100ish to switch back to windows. It's making it very difficult during class. I can't rely on it at all.
 
Old 10-03-2010, 03:49 AM   #9
arsci
LQ Newbie
 
Registered: Sep 2010
Posts: 17

Original Poster
Rep: Reputation: 0
pm-suspend after a successful sleep cycle (touchpad works)

Code:
Initial commandline parameters: 
Thu Sep 30 23:25:06 PDT 2010: Running hooks for suspend.
/usr/lib/pm-utils/sleep.d/00logging suspend suspend:suspend initiated: Thu Sep 30 23:25:06 PDT 2010

Linux linux-jmmm.site 2.6.34.7-0.3-default #1 SMP 2010-09-20 15:27:38 +0200 i686 i686 i386 GNU/Linux
kernel command line: 'root=/dev/disk/by-id/ata-ST9500325AS_5VE2YEJT-part6 resume=/dev/disk/by-id/ata-ST9500325AS_5VE2YEJT-part5 splash=silent quiet vga=0x345'
Module                  Size  Used by
ndiswrapper           198974  0 
autofs4                24235  1 
af_packet              19192  4 
rfcomm                 68951  4 
sco                    16647  2 
snd_pcm_oss            47343  0 
snd_mixer_oss          16449  1 snd_pcm_oss
ircomm_tty             19466  0 
ircomm                 10105  1 ircomm_tty
snd_seq                57073  0 
snd_seq_device          6566  1 snd_seq
irda                  118144  2 ircomm_tty,ircomm
crc_ccitt               1403  1 irda
bridge                 71014  1 
stp                     1719  1 bridge
llc                     4967  2 bridge,stp
bnep                   14600  2 
l2cap                  53274  16 rfcomm,bnep
edd                     8720  0 
vboxnetadp              7018  0 
vboxnetflt             16903  0 
vboxdrv               203822  2 vboxnetadp,vboxnetflt
cpufreq_conservative    10064  0 
cpufreq_userspace       2583  0 
cpufreq_powersave        914  0 
acpi_cpufreq            7407  1 
speedstep_lib           4985  0 
mperf                   1255  1 acpi_cpufreq
fuse                   65514  7 
loop                   14417  0 
dm_mod                 72644  0 
btusb                  15571  2 
bluetooth              95471  9 rfcomm,sco,bnep,l2cap,btusb
snd_hda_codec_atihdmi     2559  1 
arc4                    1281  2 
snd_hda_codec_idt      58337  1 
ecb                     1967  2 
firewire_ohci          23401  0 
firewire_core          52007  1 firewire_ohci
crc_itu_t               1435  1 firewire_core
uvcvideo               60811  0 
sdhci_pci               7046  0 
iwlagn                216041  0 
snd_hda_intel          24694  2 
i2400m_usb             30387  0 
videodev               39358  1 uvcvideo
i2400m                100819  1 i2400m_usb
sdhci                  19828  1 sdhci_pci
ohci1394               29812  0 
iwlcore               266656  1 iwlagn
dell_wmi                3096  0 
mac80211              243928  2 iwlagn,iwlcore
video                  21141  0 
sr_mod                 14351  0 
snd_hda_codec          98336  3 snd_hda_codec_atihdmi,snd_hda_codec_idt,snd_hda_intel
cdrom                  37760  1 sr_mod
output                  2031  1 video
wimax                  26397  1 i2400m
v4l1_compat            14629  2 uvcvideo,videodev
sg                     27412  0 
ieee1394               87766  1 ohci1394
mmc_core               72312  1 sdhci
snd_hwdep               5990  1 snd_hda_codec
snd_pcm                86800  3 snd_pcm_oss,snd_hda_intel,snd_hda_codec
wmi                     7467  1 dell_wmi
battery                 9698  0 
dell_laptop             6177  0 
dcdbas                  7861  1 dell_laptop
pcspkr                  1614  0 
ac                      3051  0 
cfg80211              155823  3 iwlagn,iwlcore,mac80211
rfkill                 17106  5 bluetooth,wimax,dell_laptop,cfg80211
snd_timer              21318  2 snd_seq,snd_pcm
tg3                   133061  0 
iTCO_wdt                9926  0 
iTCO_vendor_support     2570  1 iTCO_wdt
snd                    64702  14 snd_pcm_oss,snd_mixer_oss,snd_seq,snd_seq_device,snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
i2c_i801                9949  0 
joydev                  9327  0 
soundcore               7013  1 snd
snd_page_alloc          7817  2 snd_hda_intel,snd_pcm
button                  5417  0 
ext4                  360788  2 
jbd2                   78904  1 ext4
crc16                   1403  2 l2cap,ext4
usbhid                 44717  0 
hid                    68626  1 usbhid
sd_mod                 36723  6 
uhci_hcd               25788  0 
rtc_cmos               10902  0 
ahci                   36734  5 
radeon                794695  2 
rtc_core               17653  1 rtc_cmos
ehci_hcd               52259  0 
libata                185875  1 ahci
ttm                    55320  1 radeon
rtc_lib                 2441  1 rtc_core
drm_kms_helper         29179  1 radeon
drm                   177722  4 radeon,ttm,drm_kms_helper
i2c_algo_bit            5572  1 radeon
scsi_mod              159241  4 sr_mod,sg,sd_mod,libata
i2c_core               26632  6 videodev,i2c_i801,radeon,drm_kms_helper,drm,i2c_algo_bit
intel_agp              27571  0 
usbcore               191575  8 ndiswrapper,btusb,uvcvideo,i2400m_usb,usbhid,uhci_hcd,ehci_hcd
fan                     3539  0 
thermal                17293  0 
processor              40311  3 acpi_cpufreq
thermal_sys            14735  4 video,fan,thermal,processor
hwmon                   2060  1 thermal_sys

             total       used       free     shared    buffers     cached
Mem:       3076624     673736    2402888          0      26936     259696
-/+ buffers/cache:     387104    2689520
Swap:      2105340       7908    2097432

success.
/usr/lib/pm-utils/sleep.d/00powersave suspend suspend:success.
/usr/lib/pm-utils/sleep.d/02rtcwake suspend suspend:rtcwake alarm not enabled in /etc/pm/config.d/rtcwake.config, doing nothing...
not applicable.
/usr/lib/pm-utils/sleep.d/06autofs suspend suspend:Shutting down automount ..done
success.
/usr/lib/pm-utils/sleep.d/30s2disk-check suspend suspend:success.
/usr/lib/pm-utils/sleep.d/45pcmcia suspend suspend:ejecting PCMCIA cards...
success.
/usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/50rcnetwork suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/75modules suspend suspend:success.
/usr/lib/pm-utils/sleep.d/75ndiswrapper suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/80acpi-fan suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/80videobios suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/90clock suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend:success.
/usr/lib/pm-utils/sleep.d/95led suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/95packagekit suspend suspend:success.
/usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend:success.
/usr/lib/pm-utils/sleep.d/99Zgrub suspend suspend:success.
/usr/lib/pm-utils/sleep.d/99info suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/99video suspend suspend:disabled.
Thu Sep 30 23:25:06 PDT 2010: performing suspend
INFO: using built-in quirks database from HAL.
INFO: S2RAM_OPTS from HAL quirks: ' '.
switching from vt7 to vt1... succeeded
fbcon fb0 state 1
fbcon fb0 state 0
switching back to vt7... succeeded
Thu Sep 30 23:25:17 PDT 2010: Awake.
Thu Sep 30 23:25:17 PDT 2010: Running hooks for resume
/usr/lib/pm-utils/sleep.d/99video resume suspend:disabled.
/usr/lib/pm-utils/sleep.d/99info resume suspend:success.
/usr/lib/pm-utils/sleep.d/99Zgrub resume suspend:success.
/usr/lib/pm-utils/sleep.d/98video-quirk-db-handler resume suspend:success.
/usr/lib/pm-utils/sleep.d/95packagekit resume suspend:method return sender=:1.353 -> dest=:1.352 reply_serial=2
success.
/usr/lib/pm-utils/sleep.d/95led resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/94cpufreq resume suspend:success.
/usr/lib/pm-utils/sleep.d/90clock resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/80videobios resume suspend:success.
/usr/lib/pm-utils/sleep.d/80acpi-fan resume suspend:success.
/usr/lib/pm-utils/sleep.d/75ndiswrapper resume suspend:success.
/usr/lib/pm-utils/sleep.d/75modules resume suspend:success.
/usr/lib/pm-utils/sleep.d/55NetworkManager resume suspend:method return sender=:1.26 -> dest=:1.356 reply_serial=2
success.
/usr/lib/pm-utils/sleep.d/50rcnetwork resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/49bluetooth resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/45pcmcia resume suspend:inserting PCMCIA cards...
success.
/usr/lib/pm-utils/sleep.d/30s2disk-check resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/06autofs resume suspend:Shutting down automount ..done
Starting automount ..done
success.
/usr/lib/pm-utils/sleep.d/02rtcwake resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/00powersave resume suspend:success.
/usr/lib/pm-utils/sleep.d/00logging resume suspend:success.
Thu Sep 30 23:25:19 PDT 2010: Finished.
 
Old 10-03-2010, 03:50 AM   #10
arsci
LQ Newbie
 
Registered: Sep 2010
Posts: 17

Original Poster
Rep: Reputation: 0
pm-suspend after unsuccessful sleep cycle (no touchpad)

Code:
Initial commandline parameters: 
Thu Sep 30 23:18:31 PDT 2010: Running hooks for suspend.
/usr/lib/pm-utils/sleep.d/00logging suspend suspend:suspend initiated: Thu Sep 30 23:18:31 PDT 2010

Linux linux-jmmm.site 2.6.34.7-0.3-default #1 SMP 2010-09-20 15:27:38 +0200 i686 i686 i386 GNU/Linux
kernel command line: 'root=/dev/disk/by-id/ata-ST9500325AS_5VE2YEJT-part6 resume=/dev/disk/by-id/ata-ST9500325AS_5VE2YEJT-part5 splash=silent quiet vga=0x345'
Module                  Size  Used by
ndiswrapper           198974  0 
autofs4                24235  1 
af_packet              19192  4 
rfcomm                 68951  4 
sco                    16647  2 
snd_pcm_oss            47343  0 
snd_mixer_oss          16449  1 snd_pcm_oss
ircomm_tty             19466  0 
ircomm                 10105  1 ircomm_tty
snd_seq                57073  0 
snd_seq_device          6566  1 snd_seq
irda                  118144  2 ircomm_tty,ircomm
crc_ccitt               1403  1 irda
bridge                 71014  1 
stp                     1719  1 bridge
llc                     4967  2 bridge,stp
bnep                   14600  2 
l2cap                  53274  16 rfcomm,bnep
edd                     8720  0 
vboxnetadp              7018  0 
vboxnetflt             16903  0 
vboxdrv               203822  2 vboxnetadp,vboxnetflt
cpufreq_conservative    10064  0 
cpufreq_userspace       2583  0 
cpufreq_powersave        914  0 
acpi_cpufreq            7407  1 
speedstep_lib           4985  0 
mperf                   1255  1 acpi_cpufreq
fuse                   65514  7 
loop                   14417  0 
dm_mod                 72644  0 
btusb                  15571  2 
bluetooth              95471  9 rfcomm,sco,bnep,l2cap,btusb
snd_hda_codec_atihdmi     2559  1 
arc4                    1281  2 
snd_hda_codec_idt      58337  1 
ecb                     1967  2 
firewire_ohci          23401  0 
firewire_core          52007  1 firewire_ohci
crc_itu_t               1435  1 firewire_core
uvcvideo               60811  0 
sdhci_pci               7046  0 
iwlagn                216041  0 
snd_hda_intel          24694  2 
i2400m_usb             30387  0 
videodev               39358  1 uvcvideo
i2400m                100819  1 i2400m_usb
sdhci                  19828  1 sdhci_pci
ohci1394               29812  0 
iwlcore               266656  1 iwlagn
dell_wmi                3096  0 
mac80211              243928  2 iwlagn,iwlcore
video                  21141  0 
sr_mod                 14351  0 
snd_hda_codec          98336  3 snd_hda_codec_atihdmi,snd_hda_codec_idt,snd_hda_intel
cdrom                  37760  1 sr_mod
output                  2031  1 video
wimax                  26397  1 i2400m
v4l1_compat            14629  2 uvcvideo,videodev
sg                     27412  0 
ieee1394               87766  1 ohci1394
mmc_core               72312  1 sdhci
snd_hwdep               5990  1 snd_hda_codec
snd_pcm                86800  3 snd_pcm_oss,snd_hda_intel,snd_hda_codec
wmi                     7467  1 dell_wmi
battery                 9698  0 
dell_laptop             6177  0 
dcdbas                  7861  1 dell_laptop
pcspkr                  1614  0 
ac                      3051  0 
cfg80211              155823  3 iwlagn,iwlcore,mac80211
rfkill                 17106  5 bluetooth,wimax,dell_laptop,cfg80211
snd_timer              21318  2 snd_seq,snd_pcm
tg3                   133061  0 
iTCO_wdt                9926  0 
iTCO_vendor_support     2570  1 iTCO_wdt
snd                    64702  14 snd_pcm_oss,snd_mixer_oss,snd_seq,snd_seq_device,snd_hda_codec_idt,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_timer
i2c_i801                9949  0 
joydev                  9327  0 
soundcore               7013  1 snd
snd_page_alloc          7817  2 snd_hda_intel,snd_pcm
button                  5417  0 
ext4                  360788  2 
jbd2                   78904  1 ext4
crc16                   1403  2 l2cap,ext4
usbhid                 44717  0 
hid                    68626  1 usbhid
sd_mod                 36723  6 
uhci_hcd               25788  0 
rtc_cmos               10902  0 
ahci                   36734  5 
radeon                794695  2 
rtc_core               17653  1 rtc_cmos
ehci_hcd               52259  0 
libata                185875  1 ahci
ttm                    55320  1 radeon
rtc_lib                 2441  1 rtc_core
drm_kms_helper         29179  1 radeon
drm                   177722  4 radeon,ttm,drm_kms_helper
i2c_algo_bit            5572  1 radeon
scsi_mod              159241  4 sr_mod,sg,sd_mod,libata
i2c_core               26632  6 videodev,i2c_i801,radeon,drm_kms_helper,drm,i2c_algo_bit
intel_agp              27571  0 
usbcore               191575  8 ndiswrapper,btusb,uvcvideo,i2400m_usb,usbhid,uhci_hcd,ehci_hcd
fan                     3539  0 
thermal                17293  0 
processor              40311  3 acpi_cpufreq
thermal_sys            14735  4 video,fan,thermal,processor
hwmon                   2060  1 thermal_sys

             total       used       free     shared    buffers     cached
Mem:       3076624    2136332     940292          0      41432    1773356
-/+ buffers/cache:     321544    2755080
Swap:      2105340          0    2105340

success.
/usr/lib/pm-utils/sleep.d/00powersave suspend suspend:success.
/usr/lib/pm-utils/sleep.d/02rtcwake suspend suspend:rtcwake alarm not enabled in /etc/pm/config.d/rtcwake.config, doing nothing...
not applicable.
/usr/lib/pm-utils/sleep.d/06autofs suspend suspend:Shutting down automount ..done
success.
/usr/lib/pm-utils/sleep.d/30s2disk-check suspend suspend:success.
/usr/lib/pm-utils/sleep.d/45pcmcia suspend suspend:ejecting PCMCIA cards...
success.
/usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/50rcnetwork suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/75modules suspend suspend:success.
/usr/lib/pm-utils/sleep.d/75ndiswrapper suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/80acpi-fan suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/80videobios suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/90clock suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend:success.
/usr/lib/pm-utils/sleep.d/95led suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/95packagekit suspend suspend:success.
/usr/lib/pm-utils/sleep.d/98video-quirk-db-handler suspend suspend:success.
/usr/lib/pm-utils/sleep.d/99Zgrub suspend suspend:success.
/usr/lib/pm-utils/sleep.d/99info suspend suspend:not applicable.
/usr/lib/pm-utils/sleep.d/99video suspend suspend:disabled.
Thu Sep 30 23:18:31 PDT 2010: performing suspend
INFO: using built-in quirks database from HAL.
INFO: S2RAM_OPTS from HAL quirks: ' '.
switching from vt7 to vt1... succeeded
fbcon fb0 state 1
fbcon fb0 state 0
switching back to vt7... succeeded
Thu Sep 30 23:18:43 PDT 2010: Awake.
Thu Sep 30 23:18:43 PDT 2010: Running hooks for resume
/usr/lib/pm-utils/sleep.d/99video resume suspend:disabled.
/usr/lib/pm-utils/sleep.d/99info resume suspend:success.
/usr/lib/pm-utils/sleep.d/99Zgrub resume suspend:success.
/usr/lib/pm-utils/sleep.d/98video-quirk-db-handler resume suspend:success.
/usr/lib/pm-utils/sleep.d/95packagekit resume suspend:method return sender=:1.232 -> dest=:1.231 reply_serial=2
success.
/usr/lib/pm-utils/sleep.d/95led resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/94cpufreq resume suspend:success.
/usr/lib/pm-utils/sleep.d/90clock resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/80videobios resume suspend:success.
/usr/lib/pm-utils/sleep.d/80acpi-fan resume suspend:success.
/usr/lib/pm-utils/sleep.d/75ndiswrapper resume suspend:success.
/usr/lib/pm-utils/sleep.d/75modules resume suspend:success.
/usr/lib/pm-utils/sleep.d/55NetworkManager resume suspend:method return sender=:1.26 -> dest=:1.235 reply_serial=2
success.
/usr/lib/pm-utils/sleep.d/50rcnetwork resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/49bluetooth resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/45pcmcia resume suspend:inserting PCMCIA cards...
success.
/usr/lib/pm-utils/sleep.d/30s2disk-check resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/06autofs resume suspend:Shutting down automount ..done
Starting automount ..done
success.
/usr/lib/pm-utils/sleep.d/02rtcwake resume suspend:not applicable.
/usr/lib/pm-utils/sleep.d/00powersave resume suspend:success.
/usr/lib/pm-utils/sleep.d/00logging resume suspend:success.
Thu Sep 30 23:18:44 PDT 2010: Finished.
 
Old 10-03-2010, 03:57 AM   #11
arsci
LQ Newbie
 
Registered: Sep 2010
Posts: 17

Original Poster
Rep: Reputation: 0
end of /var/log/Xorg.0.log after unsuccessful sleep cycle

Code:
...

	
[    33.297] (II) FBDEV: driver for framebuffer: fbdev
[    33.297] (II) VESA: driver for VESA chipsets: vesa
[    33.297] (++) using VT number 7

[    33.302] (II) Primary Device is: PCI 01@00:00:0
[    33.303] drmOpenDevice: node name is /dev/dri/card0
[    33.303] drmOpenDevice: open result is 9, (OK)
[    33.303] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
[    33.303] drmOpenDevice: node name is /dev/dri/card0
[    33.303] drmOpenDevice: open result is 9, (OK)
[    33.303] drmOpenByBusid: drmOpenMinor returns 9
[    33.303] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
[    33.303] (II) [DRM] Kernel mode setting enabled
[    33.303] (EE) FATAL: RadeonHD presently does not work with kernel modesetting (KMS).
Please disable KMS in your kernel.
[    33.303] (II) [KMS] Kernel modesetting enabled.
[    33.303] (WW) Falling back to old probe method for fbdev
[    33.303] (II) Loading sub module "fbdevhw"
[    33.303] (II) LoadModule: "fbdevhw"
[    33.303] (II) Loading /usr/lib/xorg/modules/linux/libfbdevhw.so
[    33.303] (II) Module fbdevhw: vendor="X.Org Foundation"
[    33.303] 	compiled for 1.8.0, module version = 0.0.2
[    33.303] 	ABI class: X.Org Video Driver, version 7.0
[    33.303] (WW) Falling back to old probe method for vesa
[    33.303] (II) RADEON(1): Creating default Display subsection in Screen section
	"Default Screen" for depth/fbbpp 24/32
[    33.303] (==) RADEON(1): Depth 24, (--) framebuffer bpp 32
[    33.303] (II) RADEON(1): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    33.303] (==) RADEON(1): Default visual is TrueColor
[    33.303] (==) RADEON(1): RGB weight 888
[    33.303] (II) RADEON(1): Using 8 bits per RGB (8 bit DAC)
[    33.303] (--) RADEON(1): Chipset: "ATI Mobility Radeon HD 3670" (ChipID = 0x9593)
[    33.303] (II) RADEON(1): PCIE card detected
[    33.303] (WW) RADEON(1): Color tiling is not yet supported on R600/R700
[    33.303] (II) RADEON(1): KMS Color Tiling: disabled
[    33.303] drmOpenDevice: node name is /dev/dri/card0
[    33.303] drmOpenDevice: open result is 10, (OK)
[    33.303] drmOpenByBusid: Searching for BusID pci:0000:01:00.0
[    33.303] drmOpenDevice: node name is /dev/dri/card0
[    33.303] drmOpenDevice: open result is 10, (OK)
[    33.303] drmOpenByBusid: drmOpenMinor returns 10
[    33.303] drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
[    33.320] (II) RADEON(1): Output VGA-0 using monitor section Default Monitor
[    33.324] (II) RADEON(1): Output HDMI-0 has no monitor section
[    33.324] (II) RADEON(1): Output LVDS has no monitor section
[    33.332] (II) RADEON(1): Output DisplayPort-0 has no monitor section
[    33.348] (II) RADEON(1): EDID for output VGA-0
[    33.352] (II) RADEON(1): EDID for output HDMI-0
[    33.352] (II) RADEON(1): EDID for output LVDS
[    33.352] (II) RADEON(1): Manufacturer: SEC  Model: 5448  Serial#: 0
[    33.352] (II) RADEON(1): Year: 2008  Week: 0
[    33.352] (II) RADEON(1): EDID Version: 1.3
[    33.352] (II) RADEON(1): Digital Display Input
[    33.352] (II) RADEON(1): Max Image Size [cm]: horiz.: 35  vert.: 20
[    33.352] (II) RADEON(1): Gamma: 2.20
[    33.352] (II) RADEON(1): No DPMS capabilities specified
[    33.352] (II) RADEON(1): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    33.352] (II) RADEON(1): First detailed timing is preferred mode
[    33.352] (II) RADEON(1): redX: 0.580 redY: 0.340   greenX: 0.310 greenY: 0.550
[    33.352] (II) RADEON(1): blueX: 0.155 blueY: 0.155   whiteX: 0.313 whiteY: 0.329
[    33.352] (II) RADEON(1): Manufacturer's mask: 0
[    33.352] (II) RADEON(1): Supported detailed timing:
[    33.352] (II) RADEON(1): clock: 153.5 MHz   Image Size:  353 x 198 mm
[    33.352] (II) RADEON(1): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2280 h_border: 0
[    33.352] (II) RADEON(1): v_active: 1080  v_sync: 1082  v_sync_end 1087 v_blanking: 1122 v_border: 0
[    33.352] (II) RADEON(1): Supported detailed timing:
[    33.352] (II) RADEON(1): clock: 153.5 MHz   Image Size:  353 x 198 mm
[    33.352] (II) RADEON(1): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2280 h_border: 0
[    33.352] (II) RADEON(1): v_active: 1080  v_sync: 1082  v_sync_end 1087 v_blanking: 1122 v_border: 0
[    33.352] (II) RADEON(1):  M077D�160HT
[    33.352] (II) RADEON(1): Unknown vendor-specific block 0
[    33.352] (II) RADEON(1): EDID (in hex):
[    33.352] (II) RADEON(1): 	00ffffffffffff004ca3485400000000
[    33.352] (II) RADEON(1): 	00120103902314780a87f594574f8c27
[    33.352] (II) RADEON(1): 	27505400000001010101010101010101
[    33.352] (II) RADEON(1): 	010101010101f53b806871382a403020
[    33.352] (II) RADEON(1): 	250061c61000001af53b806871382a40
[    33.352] (II) RADEON(1): 	3020250061c61000001a000000fe004d
[    33.352] (II) RADEON(1): 	303737448031363048540a2000000000
[    33.352] (II) RADEON(1): 	00000000000000000006010a2020009b
[    33.352] (II) RADEON(1): Printing probed modes for output LVDS
[    33.352] (II) RADEON(1): Modeline "1920x1080"x60.0  153.49  1920 1968 2000 2280  1080 1082 1087 1122 +hsync -vsync (67.3 kHz)
[    33.352] (II) RADEON(1): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
[    33.352] (II) RADEON(1): Modeline "1400x1050"x60.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz)
[    33.352] (II) RADEON(1): Modeline "1280x1024"x59.9  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync (63.7 kHz)
[    33.352] (II) RADEON(1): Modeline "1440x900"x59.9  106.50  1440 1528 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz)
[    33.352] (II) RADEON(1): Modeline "1280x960"x59.9  101.25  1280 1360 1488 1696  960 963 967 996 -hsync +vsync (59.7 kHz)
[    33.352] (II) RADEON(1): Modeline "1280x854"x59.9   89.25  1280 1352 1480 1680  854 857 867 887 -hsync +vsync (53.1 kHz)
[    33.352] (II) RADEON(1): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz)
[    33.352] (II) RADEON(1): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz)
[    33.352] (II) RADEON(1): Modeline "1152x768"x59.8   71.75  1152 1216 1328 1504  768 771 781 798 -hsync +vsync (47.7 kHz)
[    33.352] (II) RADEON(1): Modeline "1024x768"x59.9   63.50  1024 1072 1176 1328  768 771 775 798 -hsync +vsync (47.8 kHz)
[    33.352] (II) RADEON(1): Modeline "800x600"x59.9   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync (37.4 kHz)
[    33.352] (II) RADEON(1): Modeline "848x480"x59.7   31.50  848 872 952 1056  480 483 493 500 -hsync +vsync (29.8 kHz)
[    33.352] (II) RADEON(1): Modeline "720x480"x59.7   26.75  720 744 808 896  480 483 493 500 -hsync +vsync (29.9 kHz)
[    33.352] (II) RADEON(1): Modeline "640x480"x59.4   23.75  640 664 720 800  480 483 487 500 -hsync +vsync (29.7 kHz)
[    33.360] (II) RADEON(1): EDID for output DisplayPort-0
[    33.360] (II) RADEON(1): Output VGA-0 disconnected
[    33.360] (II) RADEON(1): Output HDMI-0 disconnected
[    33.360] (II) RADEON(1): Output LVDS connected
[    33.360] (II) RADEON(1): Output DisplayPort-0 disconnected
[    33.360] (II) RADEON(1): Using exact sizes for initial modes
[    33.360] (II) RADEON(1): Output LVDS using initial mode 1920x1080
[    33.360] (II) RADEON(1): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    33.360] (II) RADEON(1): mem size init: gart size :1fdff000 vram size: s:10000000 visible:f7d7000
[    33.360] (II) RADEON(1): EXA: Driver will allow EXA pixmaps in VRAM
[    33.360] (==) RADEON(1): DPI set to (96, 96)
[    33.360] (II) Loading sub module "fb"
[    33.360] (II) LoadModule: "fb"
[    33.360] (II) Loading /usr/lib/xorg/modules/libfb.so
[    33.360] (II) Module fb: vendor="X.Org Foundation"
[    33.360] 	compiled for 1.8.0, module version = 1.0.0
[    33.360] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    33.360] (II) Loading sub module "ramdac"
[    33.360] (II) LoadModule: "ramdac"
[    33.360] (II) Module "ramdac" already built-in
[    33.360] (II) Loading sub module "exa"
[    33.360] (II) LoadModule: "exa"
[    33.362] (II) Loading /usr/lib/xorg/modules/libexa.so
[    33.362] (II) Module exa: vendor="X.Org Foundation"
[    33.362] 	compiled for 1.8.0, module version = 2.5.0
[    33.362] 	ABI class: X.Org Video Driver, version 7.0
[    33.362] (II) UnloadModule: "radeonhd"
[    33.362] (II) UnloadModule: "fbdev"
[    33.362] (II) Unloading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    33.362] (II) UnloadModule: "fbdevhw"
[    33.362] (II) Unloading /usr/lib/xorg/modules/linux/libfbdevhw.so
[    33.362] (II) UnloadModule: "vesa"
[    33.362] (II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    33.362] (--) Depth 24 pixmap format is 32 bpp
[    33.362] (II) RADEON(0): [DRI2] Setup complete
[    33.362] (II) RADEON(0): [DRI2]   DRI driver: r600
[    33.362] (II) RADEON(0): Front buffer size: 8704K
[    33.362] (II) RADEON(0): VRAM usage limit set to 220575K
[    33.362] (==) RADEON(0): Backing store disabled
[    33.362] (II) RADEON(0): Direct rendering enabled
[    33.362] (II) RADEON(0): Setting EXA maxPitchBytes
[    33.362] (II) EXA(0): Driver allocated offscreen pixmaps
[    33.362] (II) EXA(0): Driver registered support for the following operations:
[    33.362] (II)         Solid
[    33.362] (II)         Copy
[    33.362] (II)         Composite (RENDER acceleration)
[    33.362] (II)         UploadToScreen
[    33.362] (II)         DownloadFromScreen
[    33.362] (II) RADEON(0): Acceleration enabled
[    33.362] (==) RADEON(0): DPMS enabled
[    33.362] (==) RADEON(0): Silken mouse enabled
[    33.362] (II) RADEON(0): Set up textured video
[    33.363] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    33.363] (--) RandR disabled
[    33.363] (II) Initializing built-in extension Generic Event Extension
[    33.363] (II) Initializing built-in extension SHAPE
[    33.363] (II) Initializing built-in extension MIT-SHM
[    33.363] (II) Initializing built-in extension XInputExtension
[    33.363] (II) Initializing built-in extension XTEST
[    33.363] (II) Initializing built-in extension BIG-REQUESTS
[    33.363] (II) Initializing built-in extension SYNC
[    33.363] (II) Initializing built-in extension XKEYBOARD
[    33.363] (II) Initializing built-in extension XC-MISC
[    33.363] (II) Initializing built-in extension SECURITY
[    33.363] (II) Initializing built-in extension XINERAMA
[    33.363] (II) Initializing built-in extension XFIXES
[    33.363] (II) Initializing built-in extension RENDER
[    33.363] (II) Initializing built-in extension RANDR
[    33.363] (II) Initializing built-in extension COMPOSITE
[    33.363] (II) Initializing built-in extension DAMAGE
[    33.371] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    33.371] (II) AIGLX: enabled GLX_INTEL_swap_event
[    33.371] (II) AIGLX: enabled GLX_SGI_make_current_read
[    33.371] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    33.371] (II) AIGLX: Loaded and initialized /usr/lib/dri/r600_dri.so
[    33.371] (II) GLX: Initialized DRI2 GL provider for screen 0
[    33.371] (II) RADEON(0): Setting screen physical size to 507 x 285
[    33.397] (II) XKB: reuse xkmfile /var/lib/xkb/compiled/server-8AA988DD479FAABEC4FC3CCCF4CC29B4948840B4.xkm
[    33.405] (II) config/udev: Adding input device Power Button (/dev/input/event8)
[    33.405] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    33.405] (**) Power Button: Applying InputClass "LocalKeyboard"
[    33.405] (II) LoadModule: "evdev"
[    33.406] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    33.406] (II) Module evdev: vendor="X.Org Foundation"
[    33.406] 	compiled for 1.8.0, module version = 2.4.0
[    33.406] 	Module class: X.Org XInput Driver
[    33.406] 	ABI class: X.Org XInput driver, version 9.0
[    33.406] (**) Power Button: always reports core events
[    33.406] (**) Power Button: Device: "/dev/input/event8"
[    33.416] (II) Power Button: Found keys
[    33.416] (II) Power Button: Configuring as keyboard
[    33.416] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[    33.416] (**) Option "xkb_rules" "evdev"
[    33.416] (**) Option "xkb_model" "evdev"
[    33.416] (**) Option "xkb_layout" "us"
[    33.418] (II) XKB: reuse xkmfile /var/lib/xkb/compiled/server-73AC8D4822B76BE375830D90D9DD145B2CBC4E27.xkm
[    33.419] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
[    33.419] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    33.419] (**) Video Bus: Applying InputClass "LocalKeyboard"
[    33.419] (**) Video Bus: always reports core events
[    33.419] (**) Video Bus: Device: "/dev/input/event11"
[    33.436] (II) Video Bus: Found keys
[    33.436] (II) Video Bus: Configuring as keyboard
[    33.436] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
[    33.436] (**) Option "xkb_rules" "evdev"
[    33.436] (**) Option "xkb_model" "evdev"
[    33.436] (**) Option "xkb_layout" "us"
[    33.438] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[    33.438] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    33.438] (**) Power Button: Applying InputClass "LocalKeyboard"
[    33.438] (**) Power Button: always reports core events
[    33.438] (**) Power Button: Device: "/dev/input/event4"
[    33.452] (II) Power Button: Found keys
[    33.452] (II) Power Button: Configuring as keyboard
[    33.452] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[    33.452] (**) Option "xkb_rules" "evdev"
[    33.452] (**) Option "xkb_model" "evdev"
[    33.452] (**) Option "xkb_layout" "us"
[    33.453] (II) config/udev: Adding input device Lid Switch (/dev/input/event6)
[    33.453] (EE) No input driver/identifier specified (ignoring)
[    33.453] (II) config/udev: Adding input device Sleep Button (/dev/input/event5)
[    33.453] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    33.453] (**) Sleep Button: Applying InputClass "LocalKeyboard"
[    33.454] (**) Sleep Button: always reports core events
[    33.454] (**) Sleep Button: Device: "/dev/input/event5"
[    33.468] (II) Sleep Button: Found keys
[    33.468] (II) Sleep Button: Configuring as keyboard
[    33.468] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
[    33.468] (**) Option "xkb_rules" "evdev"
[    33.468] (**) Option "xkb_model" "evdev"
[    33.468] (**) Option "xkb_layout" "us"
[    33.473] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event2)
[    33.474] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
[    33.474] (**) Logitech USB Receiver: always reports core events
[    33.474] (**) Logitech USB Receiver: Device: "/dev/input/event2"
[    33.492] (II) Logitech USB Receiver: Found 20 mouse buttons
[    33.492] (II) Logitech USB Receiver: Found scroll wheel(s)
[    33.492] (II) Logitech USB Receiver: Found relative axes
[    33.492] (II) Logitech USB Receiver: Found x and y relative axes
[    33.492] (II) Logitech USB Receiver: Configuring as mouse
[    33.492] (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
[    33.492] (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    33.492] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE)
[    33.492] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
[    33.492] (**) Logitech USB Receiver: (accel) acceleration profile 0
[    33.492] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
[    33.492] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
[    33.492] (II) Logitech USB Receiver: initialized for relative axes.
[    33.493] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse1)
[    33.493] (EE) No input driver/identifier specified (ignoring)
[    33.494] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event3)
[    33.494] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
[    33.494] (**) Logitech USB Receiver: Applying InputClass "LocalKeyboard"
[    33.494] (**) Logitech USB Receiver: always reports core events
[    33.494] (**) Logitech USB Receiver: Device: "/dev/input/event3"
[    33.512] (II) Logitech USB Receiver: Found 1 mouse buttons
[    33.512] (II) Logitech USB Receiver: Found scroll wheel(s)
[    33.512] (II) Logitech USB Receiver: Found relative axes
[    33.512] (II) Logitech USB Receiver: Found absolute axes
[    33.512] (II) Logitech USB Receiver: Found keys
[    33.512] (II) Logitech USB Receiver: Configuring as mouse
[    33.512] (II) Logitech USB Receiver: Configuring as keyboard
[    33.512] (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
[    33.512] (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    33.512] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD)
[    33.512] (**) Option "xkb_rules" "evdev"
[    33.512] (**) Option "xkb_model" "evdev"
[    33.512] (**) Option "xkb_layout" "us"
[    33.513] (EE) Logitech USB Receiver: failed to initialize for relative axes.
[    33.513] (II) Logitech USB Receiver: initialized for absolute axes.
[    33.515] (II) config/udev: Adding input device Integrated Webcam (/dev/input/event10)
[    33.515] (**) Integrated Webcam: Applying InputClass "evdev keyboard catchall"
[    33.515] (**) Integrated Webcam: Applying InputClass "LocalKeyboard"
[    33.515] (**) Integrated Webcam: always reports core events
[    33.515] (**) Integrated Webcam: Device: "/dev/input/event10"
[    33.532] (II) Integrated Webcam: Found keys
[    33.532] (II) Integrated Webcam: Configuring as keyboard
[    33.532] (II) XINPUT: Adding extended input device "Integrated Webcam" (type: KEYBOARD)
[    33.532] (**) Option "xkb_rules" "evdev"
[    33.532] (**) Option "xkb_model" "evdev"
[    33.532] (**) Option "xkb_layout" "us"
[    33.534] (II) config/udev: Adding input device HDA Intel Mic at Ext Left Jack (/dev/input/event12)
[    33.534] (EE) No input driver/identifier specified (ignoring)
[    33.534] (II) config/udev: Adding input device HDA Intel HP Out at Ext Left Jack (/dev/input/event13)
[    33.534] (EE) No input driver/identifier specified (ignoring)
[    33.535] (II) config/udev: Adding input device HDA Intel HP Out at Ext Left Jack (/dev/input/event14)
[    33.535] (EE) No input driver/identifier specified (ignoring)
[    33.548] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[    33.548] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    33.548] (**) AT Translated Set 2 keyboard: Applying InputClass "LocalKeyboard"
[    33.548] (**) AT Translated Set 2 keyboard: always reports core events
[    33.548] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[    33.560] (II) AT Translated Set 2 keyboard: Found keys
[    33.560] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[    33.560] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[    33.560] (**) Option "xkb_rules" "evdev"
[    33.560] (**) Option "xkb_model" "evdev"
[    33.560] (**) Option "xkb_layout" "us"
[    33.561] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event1)
[    33.561] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[    33.561] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    33.561] (II) LoadModule: "synaptics"
[    33.563] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    33.564] (II) Module synaptics: vendor="X.Org Foundation"
[    33.564] 	compiled for 1.8.0, module version = 1.2.2
[    33.564] 	Module class: X.Org XInput Driver
[    33.564] 	ABI class: X.Org XInput driver, version 9.0
[    33.564] (II) Synaptics touchpad driver version 1.2.2
[    33.564] (**) Option "Device" "/dev/input/event1"
[    33.608] (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
[    33.608] (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
[    33.608] (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    33.608] (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
[    33.608] (II) SynPS/2 Synaptics TouchPad: buttons: left right
[    33.608] (**) Option "HorizScrollDelta" "0"
[    33.648] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    33.648] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    33.664] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
[    33.664] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[    33.664] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
[    33.664] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    33.664] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    33.697] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    33.697] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[    33.697] (EE) No input driver/identifier specified (ignoring)
[    33.698] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
[    33.698] (EE) No input driver/identifier specified (ignoring)
[    33.703] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event9)
[    33.703] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[    33.703] (**) Dell WMI hotkeys: Applying InputClass "LocalKeyboard"
[    33.703] (**) Dell WMI hotkeys: always reports core events
[    33.703] (**) Dell WMI hotkeys: Device: "/dev/input/event9"
[    33.713] (II) Dell WMI hotkeys: Found keys
[    33.713] (II) Dell WMI hotkeys: Configuring as keyboard
[    33.713] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD)
[    33.713] (**) Option "xkb_rules" "evdev"
[    33.713] (**) Option "xkb_model" "evdev"
[    33.713] (**) Option "xkb_layout" "us"
[    33.749] (II) RADEON(0): EDID vendor "SEC", prod id 21576
[    33.749] (II) RADEON(0): Printing DDC gathered Modelines:
[    33.749] (II) RADEON(0): Modeline "1920x1080"x0.0  153.49  1920 1968 2000 2280  1080 1082 1087 1122 +hsync -vsync (67.3 kHz)
[    41.973] (II) RADEON(0): EDID vendor "SEC", prod id 21576
[    41.973] (II) RADEON(0): Printing DDC gathered Modelines:
[    41.973] (II) RADEON(0): Modeline "1920x1080"x0.0  153.49  1920 1968 2000 2280  1080 1082 1087 1122 +hsync -vsync (67.3 kHz)
[    42.160] (II) RADEON(0): EDID vendor "SEC", prod id 21576
[    42.160] (II) RADEON(0): Printing DDC gathered Modelines:
[    42.160] (II) RADEON(0): Modeline "1920x1080"x0.0  153.49  1920 1968 2000 2280  1080 1082 1087 1122 +hsync -vsync (67.3 kHz)
[    48.822] (II) XKB: reuse xkmfile /var/lib/xkb/compiled/server-A9ACCDF38EB1446AC7992CE0B930842F0AD908B1.xkm
[    49.077] (II) RADEON(0): EDID vendor "SEC", prod id 21576
[    49.077] (II) RADEON(0): Printing DDC gathered Modelines:
[    49.077] (II) RADEON(0): Modeline "1920x1080"x0.0  153.49  1920 1968 2000 2280  1080 1082 1087 1122 +hsync -vsync (67.3 kHz)
[    76.517] (II) AIGLX: Suspending AIGLX clients for VT switch
[    82.331] (II) config/udev: removing device SynPS/2 Synaptics TouchPad
[    82.332] (II) UnloadModule: "synaptics"
[    82.601] (II) Open ACPI successful (/var/run/acpid.socket)
[    82.601] (II) AIGLX: Resuming AIGLX clients after VT switch
[    82.630] (II) RADEON(0): EDID vendor "SEC", prod id 21576
[    82.630] (II) RADEON(0): Printing DDC gathered Modelines:
[    82.630] (II) RADEON(0): Modeline "1920x1080"x0.0  153.49  1920 1968 2000 2280  1080 1082 1087 1122 +hsync -vsync (67.3 kHz)
 
Old 03-06-2011, 09:48 PM   #12
venky80
LQ Newbie
 
Registered: Mar 2011
Posts: 1

Rep: Reputation: 0
I have the same issue

kernel 2.6.37 and xorg 1.9 ati no mouse after resume randomly
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Suspend/Resume - custom scripts and mouse issues Arcalyth Linux - Laptop and Netbook 0 02-17-2009 05:30 PM
touchpad mouse frozen after kpowersave suspend to ram durrrty Linux - Laptop and Netbook 3 08-20-2008 06:27 AM
Plz explain Suspend to Disk and Suspend to Ram pkhera_2001 Linux - Newbie 2 02-18-2008 07:23 AM
Invisible Mouse Pointer After Suspend Azizcoos Linux - Laptop and Netbook 3 05-31-2007 06:19 PM
Fedora Core 4 Suspend Resume Mouse Problems eat_laser_scumbag Linux - Laptop and Netbook 4 08-21-2005 04:36 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 06:48 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration