[Kernel-packages] [Bug 1093237] Re: [Dell Inspiron 17R SE 7720] TouchPad detected as Generic Mouse

2014-10-02 Thread Jason
Awhile back I decided I would just look into fixing this myself but only
got as far as finding out that the code would not match my device at
all. The testing was getting beyond the point of a solution. It seems
like there was hope that it would magically be fixed.. I provided the
information that showed the code would not match the device.. "alps:
Unknown ALPS touchpad: E7=73 03 50, EC=73 02 02"..  There was no way the
code would match that ec sequence. This was the point where I left it as
I got busy doing other things and did not have the time or desire to fix
this anymore.

I have found since then that this was resolved in the commit
2013-12-26 Input: ALPS - add support for "Dolphin" devices

I am not sure if the device is really considered a "Dolphin" device
however I don't really care because the touchpad seems to work and has
no issues that I know of or have experienced. The following snippet
shows the change to now match the existing ec sequence by correctly
matching the second byte.

@@ -1845,11 +1975,13 @@ static int alps_identify(struct psmouse *psmouse, 
struct alps_data *priv)
if (alps_match_table(psmouse, priv, e7, ec) == 0) {
return 0;
} else if (e7[0] == 0x73 && e7[1] == 0x03 && e7[2] == 0x50 &&
- ec[0] == 0x73 && ec[1] == 0x01) {
+ ec[0] == 0x73 && (ec[1] == 0x01 || ec[1] == 0x02)) {

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1093237

Title:
  [Dell Inspiron 17R SE 7720] TouchPad detected as Generic Mouse

Status in The Linux Kernel:
  Unknown
Status in “linux” package in Ubuntu:
  Fix Released

Bug description:
  Laptop is a Dell Inspiron 17R SE.
  Ubuntu 12.10 Desktop x64
  The touchpad is detected a Generic Mouse.

  ⎡ Virtual core pointerid=2[master pointer  (3)]
  ⎜   ↳ Virtual core XTEST pointer  id=4[slave  pointer 
 (2)]
  ⎜   ↳ PS/2 Generic Mouse  id=13   [slave  pointer 
 (2)]
  ⎣ Virtual core keyboard   id=3[master keyboard (2)]
  ↳ Virtual core XTEST keyboard id=5[slave  
keyboard (3)]
  ↳ Power Buttonid=6[slave  
keyboard (3)]
  ↳ Video Bus   id=7[slave  
keyboard (3)]
  ↳ Video Bus   id=8[slave  
keyboard (3)]
  ↳ Power Buttonid=9[slave  
keyboard (3)]
  ↳ Sleep Buttonid=10   [slave  
keyboard (3)]
  ↳ Integrated Webcam   id=11   [slave  
keyboard (3)]
  ↳ AT Translated Set 2 keyboardid=12   [slave  
keyboard (3)]
  ↳ Dell WMI hotkeysid=14   [slave  
keyboard (3)]

  I: Bus=0011 Vendor=0002 Product=0001 Version=
  N: Name="PS/2 Generic Mouse"
  P: Phys=isa0060/serio1/input0
  S: Sysfs=/devices/platform/i8042/serio1/input/input7
  U: Uniq=
  H: Handlers=mouse0 event7
  B: PROP=0
  B: EV=7
  B: KEY=7 0 0 0 0
  B: REL=3

  [20.643] (II) config/udev: Adding input device PS/2 Generic Mouse 
(/dev/input/event7)
  [20.643] (**) PS/2 Generic Mouse: Applying InputClass "evdev pointer 
catchall"
  [20.643] (II) Using input driver 'evdev' for 'PS/2 Generic Mouse'
  [20.643] (**) PS/2 Generic Mouse: always reports core events
  [20.643] (**) evdev: PS/2 Generic Mouse: Device: "/dev/input/event7"
  [20.643] (--) evdev: PS/2 Generic Mouse: Vendor 0x2 Product 0x1
  [20.643] (--) evdev: PS/2 Generic Mouse: Found 3 mouse buttons
  [20.643] (--) evdev: PS/2 Generic Mouse: Found relative axes
  [20.643] (--) evdev: PS/2 Generic Mouse: Found x and y relative axes
  [20.643] (II) evdev: PS/2 Generic Mouse: Configuring as mouse
  [20.643] (**) evdev: PS/2 Generic Mouse: YAxisMapping: buttons 4 and 5
  [20.643] (**) evdev: PS/2 Generic Mouse: EmulateWheelButton: 4, 
EmulateWheelInertia: 10, EmulateWheelTimeout: 200
  [20.643] (**) Option "config_info" 
"udev:/sys/devices/platform/i8042/serio1/input/input7/event7"
  [20.643] (II) XINPUT: Adding extended input device "PS/2 Generic Mouse" 
(type: MOUSE, id 13)
  [20.643] (II) evdev: PS/2 Generic Mouse: initialized for relative axes.
  [20.643] (**) PS/2 Generic Mouse: (accel) keeping acceleration scheme 1
  [20.643] (**) PS/2 Generic Mouse: (accel) acceleration profile 0
  [20.643] (**) PS/2 Generic Mouse: (accel) acceleration factor: 2.000
  [20.643] (**) PS/2 Generic Mouse: (accel) acceleration threshold: 4
  [20.643] (II) config/udev: Adding input device PS/2 Generic Mouse 
(/dev/input/mouse0)
  [20.643] (II) No input driver specified, ignoring this device.
  [20.643] (II) This device may have been added with another device file.
  ---
  A

[Kernel-packages] [Bug 1093237] Re: [Dell Inspiron 17R SE 7720] TouchPad detected as Generic Mouse

2013-12-08 Thread Christopher M. Penalver
Jason, as per 
http://www.dell.com/support/drivers/us/en/19/Product/inspiron-17r-se-7720 an 
update is available for your BIOS (A16). If you update to this following 
https://help.ubuntu.com/community/BiosUpdate , does it change anything? If it 
doesn't, could you please both specify what happened, and provide the output of 
the following terminal command:
sudo dmidecode -s bios-version && sudo dmidecode -s bios-release-date

For more on BIOS updates and linux, please see
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette
.

Thank you for your understanding.

** Summary changed:

- [Dell Inspiron Inspiron 17R SE 7720] TouchPad detected as Generic Mouse
+ [Dell Inspiron 17R SE 7720] TouchPad detected as Generic Mouse

** Tags removed: latest-bios-a15
** Tags added: bios-outdate-a16

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

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1093237

Title:
  [Dell Inspiron 17R SE 7720] TouchPad detected as Generic Mouse

Status in The Linux Kernel:
  Unknown
Status in “linux” package in Ubuntu:
  Incomplete

Bug description:
  Laptop is a Dell Inspiron 17R SE.
  Ubuntu 12.10 Desktop x64
  The touchpad is detected a Generic Mouse.

  ⎡ Virtual core pointerid=2[master pointer  (3)]
  ⎜   ↳ Virtual core XTEST pointer  id=4[slave  pointer 
 (2)]
  ⎜   ↳ PS/2 Generic Mouse  id=13   [slave  pointer 
 (2)]
  ⎣ Virtual core keyboard   id=3[master keyboard (2)]
  ↳ Virtual core XTEST keyboard id=5[slave  
keyboard (3)]
  ↳ Power Buttonid=6[slave  
keyboard (3)]
  ↳ Video Bus   id=7[slave  
keyboard (3)]
  ↳ Video Bus   id=8[slave  
keyboard (3)]
  ↳ Power Buttonid=9[slave  
keyboard (3)]
  ↳ Sleep Buttonid=10   [slave  
keyboard (3)]
  ↳ Integrated Webcam   id=11   [slave  
keyboard (3)]
  ↳ AT Translated Set 2 keyboardid=12   [slave  
keyboard (3)]
  ↳ Dell WMI hotkeysid=14   [slave  
keyboard (3)]

  I: Bus=0011 Vendor=0002 Product=0001 Version=
  N: Name="PS/2 Generic Mouse"
  P: Phys=isa0060/serio1/input0
  S: Sysfs=/devices/platform/i8042/serio1/input/input7
  U: Uniq=
  H: Handlers=mouse0 event7
  B: PROP=0
  B: EV=7
  B: KEY=7 0 0 0 0
  B: REL=3

  [20.643] (II) config/udev: Adding input device PS/2 Generic Mouse 
(/dev/input/event7)
  [20.643] (**) PS/2 Generic Mouse: Applying InputClass "evdev pointer 
catchall"
  [20.643] (II) Using input driver 'evdev' for 'PS/2 Generic Mouse'
  [20.643] (**) PS/2 Generic Mouse: always reports core events
  [20.643] (**) evdev: PS/2 Generic Mouse: Device: "/dev/input/event7"
  [20.643] (--) evdev: PS/2 Generic Mouse: Vendor 0x2 Product 0x1
  [20.643] (--) evdev: PS/2 Generic Mouse: Found 3 mouse buttons
  [20.643] (--) evdev: PS/2 Generic Mouse: Found relative axes
  [20.643] (--) evdev: PS/2 Generic Mouse: Found x and y relative axes
  [20.643] (II) evdev: PS/2 Generic Mouse: Configuring as mouse
  [20.643] (**) evdev: PS/2 Generic Mouse: YAxisMapping: buttons 4 and 5
  [20.643] (**) evdev: PS/2 Generic Mouse: EmulateWheelButton: 4, 
EmulateWheelInertia: 10, EmulateWheelTimeout: 200
  [20.643] (**) Option "config_info" 
"udev:/sys/devices/platform/i8042/serio1/input/input7/event7"
  [20.643] (II) XINPUT: Adding extended input device "PS/2 Generic Mouse" 
(type: MOUSE, id 13)
  [20.643] (II) evdev: PS/2 Generic Mouse: initialized for relative axes.
  [20.643] (**) PS/2 Generic Mouse: (accel) keeping acceleration scheme 1
  [20.643] (**) PS/2 Generic Mouse: (accel) acceleration profile 0
  [20.643] (**) PS/2 Generic Mouse: (accel) acceleration factor: 2.000
  [20.643] (**) PS/2 Generic Mouse: (accel) acceleration threshold: 4
  [20.643] (II) config/udev: Adding input device PS/2 Generic Mouse 
(/dev/input/mouse0)
  [20.643] (II) No input driver specified, ignoring this device.
  [20.643] (II) This device may have been added with another device file.
  ---
  ApportVersion: 2.6.1-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  jason  2244 F pulseaudio
  DistroRelease: Ubuntu 12.10
  HibernationDevice: RESUME=UUID=9c6a3506-b1a5-4429-92ef-d044e5c28fbf
  InstallationDate: Installed on 2012-12-23 (4 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MachineType: Dell Inc. Inspiron 7720
  MarkForUpload: True
  Package: linux (not installed)
  ProcEnviron:
   T