Gentoo Archives: gentoo-user

From: Robert Morris <robertm@××××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] usb wacom tablet
Date: Wed, 25 Jan 2006 02:58:28
Message-Id: 1138157591.32740.6.camel@apollo.twilightsedge.com
In Reply to: [gentoo-user] usb wacom tablet by Roger Mason
1 On Tue, 2006-01-24 at 12:38 -0330, Roger Mason wrote:
2 > Hello,
3 >
4 > I'm installing a wacom tablet, following the instructions here:
5 >
6 > http://gentoo-wiki.com/HOWTO_Wacom_Tablet
7 >
8 > Problem:
9 >
10 > The tablet does not show up in /proc/bus/input/devices ->
11 >
12 > cat /proc/bus/input/devices
13 > I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
14 > N: Name="AT Translated Set 2 keyboard"
15 > P: Phys=isa0060/serio0/input0
16 > H: Handlers=kbd event0
17 > B: EV=120013
18 > B: KEY=4 2000000 3802078 f840d001 f2ffffdf ffefffff ffffffff fffffffe
19 > B: MSC=10
20 > B: LED=7
21 >
22 > I: Bus=0011 Vendor=0002 Product=0001 Version=0001
23 > N: Name="PS/2 Logitech Mouse"
24 > P: Phys=isa0060/serio1/input0
25 > H: Handlers=mouse0 event1
26 > B: EV=7
27 > B: KEY=70000 0 0 0 0 0 0 0 0
28 > B: REL=3
29 >
30 > Background:
31 >
32 > The tablet is plugged into a NEC usb controller card. dmesg shows
33 >
34 > ehci_hcd 0000:00:0a.2: NEC Corporation USB 2.0
35 > ehci_hcd 0000:00:0a.2: new USB bus registered, assigned bus number 1
36 > ehci_hcd 0000:00:0a.2: irq 11, io mem 0xe0000000
37 > ehci_hcd 0000:00:0a.2: park 0
38 > ehci_hcd 0000:00:0a.2: USB 2.0 initialized, EHCI 1.00, driver 10 Dec 2004
39 > hub 1-0:1.0: USB hub found
40 > hub 1-0:1.0: 5 ports detected
41 > usbcore: registered new driver wacom
42 > drivers/usb/input/wacom.c: v1.43:USB Wacom Graphire and Wacom Intuos tablet driver
43 >
44 > The wacom driver is compiled into the kernel (last line of dmesg
45 > output, above)
46 >
47 > I have recompiled xorg with the sdk use flag and emerged
48 > linuxwacom-0.6.7.
49 >
50 > The following usb related kernel options are set:
51 >
52 > CONFIG_USB_ARCH_HAS_HCD=y
53 > CONFIG_USB_ARCH_HAS_OHCI=y
54 > CONFIG_USB=y
55 > CONFIG_USB_DEVICEFS=y
56 > CONFIG_USB_EHCI_HCD=y
57 > CONFIG_USB_WACOM=y
58 > CONFIG_USB_MON=y
59 >
60 > The following are the hotplug settings for the kernel:
61 >
62 > CONFIG_HOTPLUG=y
63 > # CONFIG_HOTPLUG_PCI is not set
64 >
65 > The kernel event detection stuff is built in:
66 >
67 > CONFIG_KOBJECT_UEVENT=y
68 > CONFIG_PREVENT_FIRMWARE_BUILD=y
69 >
70 > Can anyone suggest what may be wrong?
71 >
72 > Thanks,
73 >
74 > Roger Mason
75
76 It doen't look like you have USB HID turned on in your kernel.
77 Here is what I have for the USB portion of my kernel config:
78 CONFIG_USB_ARCH_HAS_HCD=y
79 CONFIG_USB_ARCH_HAS_OHCI=y
80 CONFIG_USB=y
81 CONFIG_USB_DEVICEFS=y
82 CONFIG_USB_EHCI_HCD=m
83 CONFIG_USB_OHCI_HCD=m
84 CONFIG_USB_OHCI_LITTLE_ENDIAN=y
85 CONFIG_USB_UHCI_HCD=m
86 CONFIG_USB_PRINTER=m
87 CONFIG_USB_STORAGE=m
88 CONFIG_USB_HID=m
89 CONFIG_USB_HIDINPUT=y
90 CONFIG_USB_WACOM=m
91 CONFIG_USB_EGALAX=m
92
93 If that doesn't work, maybe try to plug it directly into the computer
94 instead of the hub. I've had devices not like being plugged into a hub
95 before.
96
97 For what it's worth, here is what I have showing up in dmesg when I plug
98 my tablet in:
99 ohci_hcd 0000:00:02.0: wakeup
100 usb 1-1: new full speed USB device using ohci_hcd and address 2
101 input: Wacom Intuos2 6x8 on usb-0000:00:02.0-1
102
103 cat /proc/bus/input/devices shows this for the tablet:
104 I: Bus=0003 Vendor=056a Product=0042 Version=0126
105 N: Name="Wacom Intuos2 6x8"
106 P: Phys=usb-0000:00:02.0-1/input0
107 H: Handlers=mouse2 event4
108 B: EV=1f
109 B: KEY=1cdf 0 1f0000 0 0 0 0 0 0 0 0
110 B: REL=100
111 B: ABS=f000163
112 B: MSC=1
113
114 Robert
115
116 --
117 gentoo-user@g.o mailing list

Replies

Subject Author
Re: [gentoo-user] usb wacom tablet Roger Mason <rmason@×××××××.ca>