Page 66 of 169 FirstFirst ... 1656646566676876116166 ... LastLast
Results 651 to 660 of 1689

Thread: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

  1. #651
    Join Date
    Apr 2007
    Location
    Mount Horeb, WI
    Beans
    4,312
    Distro
    Kubuntu Development Release

    Re: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

    Quote Originally Posted by Favux View Post
    I think you need to set the '--enable-debug' flag at configure when compiling to enable changing debug level while the driver is running.
    I guess I should have tested that out first... I just always figured that was a kernel module option instead of the xorg driver option. You can turn the debug messages on and off in xorg.conf or xsetwacom so why is that option needed in configure? I am sure that they have a reason though.

    And Ayuthia is there a problem if I change "wanted=$1" in check_driver to hid-ntrig so it reads "check_driver hid-ntrig $devpath $env{ID_BUS}"?
    I think that it does. The kernel module is defined as ntrig in the code and so when the system goes looking for the module in check_driver, it will find the file as /sys/bus/hid/drivers/ntrig. So changing the name to hid-ntrig will most likely cause it to not find the kernel module to bind.

    As for the Lucid xf86-input-wacom naming, it is acutally called xserver-xorg-input-wacom. It is using the xf86-input-wacom source.

    I have not played around with touch pressure as of yet. I know that it could be emulated with the N-trig device because of the finger width. Based on the conversations in the input mailing list, the finger width is smaller on lighter touches and gets wider as you press harder. It would not be too hard to emulate that in a driver to set a max width and convert it to a pressure value. Of course that is in theory. I have not tried it yet.

  2. #652
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

    Hi Ayuthia,

    I think that it does. The kernel module is defined as ntrig in the code and so when the system goes looking for the module in check_driver, it will find the file as /sys/bus/hid/drivers/ntrig. So changing the name to hid-ntrig will most likely cause it to not find the kernel module to bind.
    Sure enough it's ntrig in the hid-ntrig.c code. So let's see if you've manage to sort out my confusion.

    It doesn't matter that lsmod calls it, or that it's name is, hid-ntrig(.ko). What matters is what it calls itself in it's code. The x11_driver is still "wacom" in Lucid, so that's OK too.

    Which is by the way what was confusing me, as you know. The rule for Wacom/linuxwacom used "wacom" for the kernel module, which is also it's X server (x11_driver) name. Do I finally have it right?

    the finger width is smaller on lighter touches and gets wider as you press harder. It would not be too hard to emulate that in a driver to set a max width and convert it to a pressure value.
    They just "shut the door" on finger pressure with xf86-input-wacom. They updated the man to make clear pressure only applies to stylus/pen and eraser: http://sourceforge.net/mailarchive/f...nuxwacom-devel along with some patches to update the pressure code: http://sourceforge.net/mailarchive/f...nuxwacom-devel & http://sourceforge.net/mailarchive/f...nuxwacom-devel

  3. #653
    Join Date
    Apr 2007
    Location
    Mount Horeb, WI
    Beans
    4,312
    Distro
    Kubuntu Development Release

    Re: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

    Quote Originally Posted by Favux View Post
    Hi Ayuthia,


    Sure enough it's ntrig in the hid-ntrig.c code. So let's see if you've manage to sort out my confusion.

    It doesn't matter that lsmod calls it, or that it's name is, hid-ntrig(.ko). What matters is what it calls itself in it's code. The x11_driver is still "wacom" in Lucid, so that's OK too.

    Which is by the way what was confusing me, as you know. The rule for Wacom/linuxwacom used "wacom" for the kernel module, which is also it's X server (x11_driver) name. Do I finally have it right?
    You are correct. The kernel modules have a section where they define the name of the kernel module. It can be different than the actual .ko filename ans you can see with the hid-ntrig version. If I recall correctly the x11_drivers have a similar naming convention in theirs too which is why the driver is not called wacom_drv instead of wacom.


    They just "shut the door" on finger pressure with xf86-input-wacom. They updated the man to make clear pressure only applies to stylus/pen and eraser: http://sourceforge.net/mailarchive/f...nuxwacom-devel along with some patches to update the pressure code: http://sourceforge.net/mailarchive/f...nuxwacom-devel & http://sourceforge.net/mailarchive/f...nuxwacom-devel
    I am not too surprised by that. It has been a while since I last looked at the touch source for the Wacom kernel module and I have forgotten if they are supplying anything like a width on theirs. I don't recall it having one. It is not to say that it will not come in the future though.

  4. #654
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

    Hi Ubuntiac,

    Now that Ayuthia has straightened me out on the udev rules I'm reassured they work.

    Sorry about the lshal, that was a reflex. HAL is no longer used in Lucid. You'd have to install it and there is no need.

    Your Xorg.0.log shows the stylus and eraser setting up OK but then:
    Code:
    (**) Option "Device" "/dev/input/n-trig-mttouch"
    (WW) mttouch: failed to open /dev/input/n-trig-mttouch in wcmDeviceTypeKeys.
    (II) UnloadModule: "wacom"
    (EE) PreInit returned NULL for "mttouch"
    Then evdev goes on to setup N-trig. So it looks like you aren't using the xf86-input-wacom drivers. Since the udev rules are OK, and you have Vista firmware let's see if we can use the rules to keep evdev off mttouch and make the change in xorg.conf. You should just need to comment out the mmtouch line in "ServerLayout":
    Code:
    #	InputDevice	"mttouch"	"SendCoreEvents"
    to disable it. You might want to comment out it's section also to be sure. Let's see if it can handle touch with the new hid-ntrig.ko and your "Vista" firmware.

    By the way Peter Hutterer said the other day we no longer need "SendCoreEvents" in X server 1.7. It is obsolete because the 'slave pointer' is assumed for the main ('master') usb device, i.e. N-trig in our case. If so you can remove it from all the lines in "ServerLayout". I don't think it's hurting anything leaving them in but the experiment is probably worthwhile.

  5. #655
    Join Date
    Jul 2009
    Beans
    114
    Distro
    Ubuntu Development Release

    Re: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

    Hi, sorry I haven't had time to look at the testing responses and I still haven't had a chance to read the posts as carefully as I'd like.

    So a few quick answers.

    Both of those new versions of the driver split off the stylus/pen. The 2-5 driver always sends the single touch events to "Touchscreen" and mt events come out of the "MultiTouch" device if they are there. With the multitouch firmware the single touch events are interpreted a bit and redirected.

    The 2-16 does not do the redirection so the st events come out of the device they are associated with (in kernel space). So mt firmwares get st events on the MultiiTouch device and single touch firmwares get those events out of the "Touchscreen" device (at least as far as I've seen, I haven't tested that many different versions).

    I don't like having the single touch events flop around as a result of firmware versions. I just haven't had time to deal with the non-coding aspects of pushing that feature.

    The firmware on my laptop sends out points for up to 4 fingers, though I think there's a comment in the release notes that it only supports 3. In mt mode it always sends out full state for 5 fingers + an extra contact for the pen every time it sends out anything. So its completely conceivable that it might or was at some point intended to support up to 5 fingers (just a guess). I have no affiliation with ntrig and no access to any special documentation. So I'm just working from what I see.

    If you're using xinput 2, you can disable cursor movement for touch (or any other dev) with
    $ xinput float touch
    gimp and other should still be able to use the touch for their own purposes.

    Also if you're using xi2, the patch you'll need for xf86-input-wacom (formerly linuxwacom) really just modifies two lines of code. http://ofb.net/~rafi/xf86-input-waco...10_02_03.patch
    I haven't used the 0.8.* versions of the driver since upgrading to the mt firmware.


    Thanks again for trying the updates.

    Rafi

  6. #656
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

    Hi rafiyr,
    Quote Originally Posted by rafiyr View Post
    Both of those new versions of the driver split off the stylus/pen. The 2-5 driver always sends the single touch events to "Touchscreen" and mt events come out of the "MultiTouch" device if they are there. With the multitouch firmware the single touch events are interpreted a bit and redirected.
    OK, I think that was our understanding.
    Quote Originally Posted by rafiyr View Post
    The 2-16 does not do the redirection so the st events come out of the device they are associated with (in kernel space). So mt firmwares get st events on the MultiiTouch device and single touch firmwares get those events out of the "Touchscreen" device (at least as far as I've seen, I haven't tested that many different versions).
    Alright, that clears up a misunderstanding on at least my part. The touch streams are multiplexed again but:
    single touch firmware > st stream over "Touchscreen"
    multi-touch firmware > mt and st stream over "MultiTouch"

    Do I have that correct?
    Quote Originally Posted by rafiyr View Post
    Also if you're using xi2, the patch you'll need for xf86-input-wacom (formerly linuxwacom) really just modifies two lines of code. http://ofb.net/~rafi/xf86-input-waco...10_02_03.patch
    I haven't used the 0.8.* versions of the driver since upgrading to the mt firmware.
    Already done.
    Quote Originally Posted by rafiyr View Post
    Thanks again for trying the updates.
    Rafi
    Thanks for making them!

  7. #657
    Join Date
    Jan 2007
    Location
    Here.
    Beans
    419
    Distro
    Ubuntu

    Lightbulb Re: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

    Quote Originally Posted by Favux View Post
    Since the udev rules are OK, and you have Vista firmware let's see if we can use the rules to keep evdev off mttouch and make the change in xorg.conf. You should just need to comment out the mmtouch line in "ServerLayout" to disable it. You might want to comment out it's section also to be sure. Let's see if it can handle touch with the new hid-ntrig.ko and your "Vista" firmware.
    Ok, I've commented out that section in xorg.conf and restarted. As far as I can see on the surface, everything is working exactly the same as before. Stylus, stylus click, stylus pressure, touch but no visible multi touch (though not sure how to test).

    Here are the logs:
    Code:
    X.Org X Server 1.7.5
    Release Date: 2010-02-16
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.24-23-server x86_64 Ubuntu
    Current Operating System: Linux neo 2.6.32-14-generic #20-Ubuntu SMP Sat Feb 20 05:18:19 UTC 2010 x86_64
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-14-generic root=UUID=a8958942-ab37-44d7-a374-6e2830445e94 ro crashkernel=384M-2G:64M,2G-:128M quiet splash nomodeset
    Build Date: 19 February 2010  11:38:32AM
    xorg-server 2:1.7.5-1ubuntu1 (buildd@) 
    Current version of pixman: 0.16.4
    	Before reporting problems, check http://wiki.x.org
    	to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    	(++) from command line, (!!) notice, (II) informational,
    	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 26 00:13:24 2010
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Default Screen" (0)
    (**) |   |-->Monitor "Configured Monitor"
    (**) |   |-->Device "Configured Video Device"
    (**) |-->Input Device "stylus"
    (**) |-->Input Device "eraser"
    (**) |-->Input Device "touch"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
    	Entry deleted from font path.
    (==) FontPath set to:
    	/usr/share/fonts/X11/misc,
    	/usr/share/fonts/X11/100dpi/:unscaled,
    	/usr/share/fonts/X11/75dpi/:unscaled,
    	/usr/share/fonts/X11/Type1,
    	/usr/share/fonts/X11/100dpi,
    	/usr/share/fonts/X11/75dpi,
    	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
    	built-ins
    (==) ModulePath set to "/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on udev to provide the list of input devices.
    	If no devices become available, reconfigure udev or disable AutoAddDevices.
    (II) Loader magic: 0x7c8300
    (II) Module ABI versions:
    	X.Org ANSI C Emulation: 0.4
    	X.Org Video Driver: 6.0
    	X.Org XInput driver : 7.0
    	X.Org Server Extension : 2.0
    (--) using VT number 7
    
    (--) PCI:*(0:1:5:0) 1002:7942:1028:0204 ATI Technologies Inc Radeon Xpress 1250 rev 0, Mem @ 0xe0000000/268435456, 0xfeaf0000/65536, I/O @ 0x0000ee00/256
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 1.0.0
    	Module class: X.Org Server Extension
    	ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 1.0.0
    	Module class: X.Org Server Extension
    	ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 1.0.0
    	ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 1.13.0
    	Module class: X.Org Server Extension
    	ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 1.0.0
    	ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 1.1.0
    	ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (==) Matched ati for the autoconfigured driver
    (==) Assigned the driver to the xf86ConfigLayout
    (II) LoadModule: "ati"
    (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    (II) Module ati: vendor="X.Org Foundation"
    	compiled for 1.7.3.902, module version = 6.12.99
    	Module class: X.Org Video Driver
    	ABI class: X.Org Video Driver, version 6.0
    (II) LoadModule: "radeon"
    (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
    	compiled for 1.7.3.902, module version = 6.12.99
    	Module class: X.Org Video Driver
    	ABI class: X.Org Video Driver, version 6.0
    (II) LoadModule: "wacom"
    (II) Loading /usr/lib/xorg/modules/input/wacom_drv.so
    (II) Module wacom: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 0.10.4
    	Module class: X.Org XInput Driver
    	ABI class: X.Org XInput driver, version 7.0
    (II) RADEON: Driver for ATI Radeon chipsets:
    	ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    	ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    	ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE),
    	ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    	ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    	ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    	ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    	ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    	ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    	ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP),
    	ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337,
    	ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    	ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    	ATI Radeon X800PRO (R420) JI (AGP),
    	ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    	ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    	ATI Radeon Mobility 9800 (M18) JN (AGP),
    	ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    	ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    	ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    	ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    	ATI Radeon Mobility M7 LW (AGP),
    	ATI Mobility FireGL 7800 M7 LX (AGP),
    	ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    	ATI FireGL Mobility 9000 (M9) Ld (AGP),
    	ATI Radeon Mobility 9000 (M9) Lf (AGP),
    	ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    	ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    	ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    	ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    	ATI Radeon 9800XT NJ (AGP),
    	ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    	ATI Radeon Mobility 9600 (M10) NQ (AGP),
    	ATI Radeon Mobility 9600 (M11) NR (AGP),
    	ATI Radeon Mobility 9600 (M10) NS (AGP),
    	ATI FireGL Mobility T2 (M10) NT (AGP),
    	ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    	ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    	ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    	ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    	ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    	ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    	ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    	ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    	ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    	ATI Radeon X800PRO (R423) UI (PCIE),
    	ATI Radeon X800LE (R423) UJ (PCIE),
    	ATI Radeon X800SE (R423) UK (PCIE),
    	ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    	ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    	ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    	ATI FireGL unknown (R423) UR (PCIE),
    	ATI FireGL unknown (R423) UT (PCIE),
    	ATI Mobility FireGL V5000 (M26) (PCIE),
    	ATI Mobility FireGL V5000 (M26) (PCIE),
    	ATI Mobility Radeon X700 XL (M26) (PCIE),
    	ATI Mobility Radeon X700 (M26) (PCIE),
    	ATI Mobility Radeon X700 (M26) (PCIE),
    	ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    	ATI Radeon Mobility 9100 IGP (U3) 5835,
    	ATI Radeon XPRESS 200 5954 (PCIE),
    	ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    	ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    	ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    	ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    	ATI Radeon XPRESS 200M 5975 (PCIE),
    	ATI Radeon XPRESS 200 5A41 (PCIE),
    	ATI Radeon XPRESS 200M 5A42 (PCIE),
    	ATI Radeon XPRESS 200 5A61 (PCIE),
    	ATI Radeon XPRESS 200M 5A62 (PCIE),
    	ATI Radeon X300 (RV370) 5B60 (PCIE),
    	ATI Radeon X600 (RV370) 5B62 (PCIE),
    	ATI Radeon X550 (RV370) 5B63 (PCIE),
    	ATI FireGL V3100 (RV370) 5B64 (PCIE),
    	ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    	ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    	ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    	ATI Mobility Radeon X800 XT (M28) (PCIE),
    	ATI Mobility FireGL V5100 (M28) (PCIE),
    	ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    	ATI Radeon X850 XT PE (R480) (PCIE),
    	ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    	ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    	ATI Radeon X850 XT (R480) (PCIE),
    	ATI Radeon X800XT (R423) 5D57 (PCIE),
    	ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    	ATI Radeon X700 PRO (RV410) (PCIE),
    	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    	ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    	ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    	ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    	ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    	ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    	ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    	ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    	ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    	ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    	ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    	ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    	ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    	ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    	ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    	ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    	ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    	ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    	ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    	ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    	ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    	ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    	ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    	ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    	ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    	ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    	ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    	ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    	ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    	ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    	ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    	ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    	ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    	ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    	ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    	ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    	ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    	ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    	AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    	ATI Radeon 4800 Series, ATI Radeon 4800 Series, ATI FirePro M7750,
    	ATI M98, ATI M98, ATI M98, ATI Mobility Radeon HD 4650,
    	ATI Radeon RV730 (AGP), ATI Mobility Radeon HD 4670,
    	ATI FirePro M5750, ATI Radeon RV730 (AGP),
    	ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    	ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    	ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    	ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    	ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    	ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    	ATI Mobility Radeon HD 3850 X2, ATI RV670,
    	ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    	ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    	ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    	ATI Radeon RV710, ATI Radeon RV710, ATI Radeon HD 4350,
    	ATI Mobility Radeon 4300 Series, ATI Mobility Radeon 4500 Series,
    	ATI Mobility Radeon 4500 Series, ATI FirePro RG220, ATI RV630,
    	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    	ATI FireGL V3600, ATI Radeon HD 2600 LE,
    	ATI Mobility FireGL Graphics Processor, ATI Radeon RV710,
    	ATI Radeon HD 3470, ATI Mobility Radeon HD 3430,
    	ATI Mobility Radeon HD 3400 Series, ATI Radeon HD 3450,
    	ATI Radeon HD 3450, ATI Radeon HD 3430, ATI Radeon HD 3450,
    	ATI FirePro V3700, ATI FireMV 2450, ATI FireMV 2260, ATI FireMV 2260,
    	ATI Radeon HD 3600 Series, ATI Radeon HD 3650 AGP,
    	ATI Radeon HD 3600 PRO, ATI Radeon HD 3600 XT,
    	ATI Radeon HD 3600 PRO, ATI Mobility Radeon HD 3650,
    	ATI Mobility Radeon HD 3670, ATI Mobility FireGL V5700,
    	ATI Mobility FireGL V5725, ATI Radeon HD 3200 Graphics,
    	ATI Radeon 3100 Graphics, ATI Radeon HD 3200 Graphics,
    	ATI Radeon 3100 Graphics, ATI Radeon HD 3300 Graphics,
    	ATI Radeon HD 3200 Graphics, ATI Radeon 3000 Graphics,
    	ATI Radeon HD 4200, ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    	ATI Mobility Radeon 4100, ATI RS880
    (II) Primary Device is: PCI 01@00:05:0
    (II) [KMS] drm report modesetting isn't supported.
    (II) RADEON(0): TOTO SAYS 00000000feaf0000
    (II) RADEON(0): MMIO registers at 0x00000000feaf0000: size 64KB
    (II) RADEON(0): PCI bus 1 card 5 func 0
    (II) RADEON(0): Creating default Display subsection in Screen section
    	"Default Screen" for depth/fbbpp 24/32
    (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) RADEON(0): Default visual is TrueColor
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules/libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 0.1.0
    	ABI class: X.Org Video Driver, version 6.0
    (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (==) RADEON(0): RGB weight 888
    (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    (--) RADEON(0): Chipset: "ATI Radeon X1200" (ChipID = 0x7942)
    (--) RADEON(0): Linear framebuffer at 0x00000000e0000000
    (II) RADEON(0): PCI card detected
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules/libint10.so
    (II) Module int10: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 1.0.0
    	ABI class: X.Org Video Driver, version 6.0
    (II) RADEON(0): initializing int10
    (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    (II) RADEON(0): ATOM BIOS detected
    (II) RADEON(0): ATOM BIOS Rom: 
    	SubsystemVendorID: 0x1028 SubsystemID: 0x0204
    	IOBaseAddress: 0xee00
    	Filename: br26397.bin 
    	BIOS Bootup Message: 
    ATI Radeon Xpress 1250 for Dell/Parker                                      
    
    (II) RADEON(0): Framebuffer space used by Firmware (kb): 20
    (II) RADEON(0): Start of VRAM area used by Firmware: 0xfffb000
    (II) RADEON(0): AtomBIOS requests 20kB of VRAM scratch space
    (II) RADEON(0): AtomBIOS VRAM scratch base: 0xfffb000
    (II) RADEON(0): Cannot get VRAM scratch space. Allocating in main memory instead
    (II) RADEON(0): Default Engine Clock: 350000
    (II) RADEON(0): Default Memory Clock: 333000
    (II) RADEON(0): Maximum Pixel ClockPLL Frequency Output: 1200000
    (II) RADEON(0): Minimum Pixel ClockPLL Frequency Output: 0
    (II) RADEON(0): Maximum Pixel ClockPLL Frequency Input: 13500
    (II) RADEON(0): Minimum Pixel ClockPLL Frequency Input: 1000
    (II) RADEON(0): Maximum Pixel Clock: 400000
    (II) RADEON(0): Reference Clock: 14320
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:05.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:01:05.0
    (II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.31.0
    (==) RADEON(0): Page Flipping disabled on r5xx and newer chips.
    
    (II) RADEON(0): Will try to use DMA for Xv image transfers
    (II) RADEON(0): Generation 2 PCI interface, using max accessible memory
    (II) RADEON(0): Detected total video RAM=262144K, accessible=262144K (PCI BAR=262144K)
    (--) RADEON(0): Mapped VideoRAM: 262144 kByte (128 bit DDR SDRAM)
    (II) RADEON(0): Color tiling enabled by default
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) RADEON(0): PLL parameters: rf=1432 rd=12 min=70000 max=120000; xclk=40000
    (WW) RADEON(0): LVDS Info:
    XRes: 1280, YRes: 800, DotClock: 71450
    HBlank: 168, HOverPlus: 48, HSyncWidth: 32
    VBlank: 22, VOverPlus: 3, VSyncWidth: 6
    (II) RADEON(0): Output VGA-0 using monitor section Configured Monitor
    (II) RADEON(0): I2C bus "VGA-0" initialized.
    (II) RADEON(0): Output LVDS has no monitor section
    (II) RADEON(0): I2C bus "LVDS" initialized.
    (II) RADEON(0): Output DVI-0 has no monitor section
    (II) RADEON(0): I2C bus "DVI-0" initialized.
    (II) RADEON(0): Port0:
      XRANDR name: VGA-0
      Connector: VGA
      CRT1: INTERNAL_KLDSCP_DAC1
      DDC reg: 0x7e40
    (II) RADEON(0): Port1:
      XRANDR name: LVDS
      Connector: LVDS
      LCD1: INTERNAL_LVTM1
      DDC reg: 0x7e40
    (II) RADEON(0): Port2:
      XRANDR name: DVI-0
      Connector: DVI-D
      DFP2: INTERNAL_DDI
      DDC reg: 0x7e40
    (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    Dac detection success
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    finished output detect: 0
    (II) RADEON(0): I2C device "LVDS:ddc2" registered at address 0xA0.
    (II) RADEON(0): EDID for output LVDS
    (II) RADEON(0): Manufacturer: AUO  Model: 4214  Serial#: 0
    (II) RADEON(0): Year: 2007  Week: 1
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Digital Display Input
    (II) RADEON(0): Max Image Size [cm]: horiz.: 26  vert.: 16
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): No DPMS capabilities specified
    (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.330 greenY: 0.575
    (II) RADEON(0): blueX: 0.155 blueY: 0.135   whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 71.5 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1448 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 70.3 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1424 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0):  KX774B121EW4
    (II) RADEON(0):  	4`��
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 	00ffffffffffff0006af144200000000
    (II) RADEON(0): 	01110103801a10780a89e59457549327
    (II) RADEON(0): 	22505400000001010101010101010101
    (II) RADEON(0): 	010101010101e91b00a8502016303020
    (II) RADEON(0): 	360005a310000019761b009050201630
    (II) RADEON(0): 	3020360005a310000000000000fe004b
    (II) RADEON(0): 	583737340242313231455734000000fe
    (II) RADEON(0): 	00090f151a346084ff01010a2020001b
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    (II) RADEON(0): Manufacturer: AUO  Model: 4214  Serial#: 0
    (II) RADEON(0): Year: 2007  Week: 1
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Digital Display Input
    (II) RADEON(0): Max Image Size [cm]: horiz.: 26  vert.: 16
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): No DPMS capabilities specified
    (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.330 greenY: 0.575
    (II) RADEON(0): blueX: 0.155 blueY: 0.135   whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 71.5 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1448 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 70.3 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1424 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0):  KX774B121EW4
    (II) RADEON(0):  	4`��
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 	00ffffffffffff0006af144200000000
    (II) RADEON(0): 	01110103801a10780a89e59457549327
    (II) RADEON(0): 	22505400000001010101010101010101
    (II) RADEON(0): 	010101010101e91b00a8502016303020
    (II) RADEON(0): 	360005a310000019761b009050201630
    (II) RADEON(0): 	3020360005a310000000000000fe004b
    (II) RADEON(0): 	583737340242313231455734000000fe
    (II) RADEON(0): 	00090f151a346084ff01010a2020001b
    finished output detect: 1
    (II) RADEON(0): I2C device "DVI-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    finished output detect: 2
    finished all detect
    before xf86InitialConfiguration
    Dac detection success
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    (II) RADEON(0): EDID for output VGA-0
    (II) RADEON(0): EDID for output LVDS
    (II) RADEON(0): Manufacturer: AUO  Model: 4214  Serial#: 0
    (II) RADEON(0): Year: 2007  Week: 1
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Digital Display Input
    (II) RADEON(0): Max Image Size [cm]: horiz.: 26  vert.: 16
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): No DPMS capabilities specified
    (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.330 greenY: 0.575
    (II) RADEON(0): blueX: 0.155 blueY: 0.135   whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 71.5 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1448 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 70.3 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1424 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0):  KX774B121EW4
    (II) RADEON(0):  	4`��
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 	00ffffffffffff0006af144200000000
    (II) RADEON(0): 	01110103801a10780a89e59457549327
    (II) RADEON(0): 	22505400000001010101010101010101
    (II) RADEON(0): 	010101010101e91b00a8502016303020
    (II) RADEON(0): 	360005a310000019761b009050201630
    (II) RADEON(0): 	3020360005a310000000000000fe004b
    (II) RADEON(0): 	583737340242313231455734000000fe
    (II) RADEON(0): 	00090f151a346084ff01010a2020001b
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    (II) RADEON(0): Manufacturer: AUO  Model: 4214  Serial#: 0
    (II) RADEON(0): Year: 2007  Week: 1
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Digital Display Input
    (II) RADEON(0): Max Image Size [cm]: horiz.: 26  vert.: 16
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): No DPMS capabilities specified
    (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.330 greenY: 0.575
    (II) RADEON(0): blueX: 0.155 blueY: 0.135   whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 71.5 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1448 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 70.3 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1424 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0):  KX774B121EW4
    (II) RADEON(0):  	4`��
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 	00ffffffffffff0006af144200000000
    (II) RADEON(0): 	01110103801a10780a89e59457549327
    (II) RADEON(0): 	22505400000001010101010101010101
    (II) RADEON(0): 	010101010101e91b00a8502016303020
    (II) RADEON(0): 	360005a310000019761b009050201630
    (II) RADEON(0): 	3020360005a310000000000000fe004b
    (II) RADEON(0): 	583737340242313231455734000000fe
    (II) RADEON(0): 	00090f151a346084ff01010a2020001b
    (II) RADEON(0): EDID vendor "AUO", prod id 16916
    (II) RADEON(0): DDCModeFromDetailedTiming: 1280x800 Warning: We only handle separate sync.
    (II) RADEON(0): Printing probed modes for output LVDS
    (II) RADEON(0): Modeline "1280x800"x60.0   71.45  1280 1328 1360 1448  800 803 809 822 -hsync -vsync (49.3 kHz)
    (II) RADEON(0): Modeline "1280x800"x60.1   70.30  1280 1328 1360 1424  800 803 809 822 -hsync -vsync (49.4 kHz)
    (II) RADEON(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz)
    (II) RADEON(0): Modeline "1152x768"x59.8   71.75  1152 1216 1328 1504  768 771 781 798 -hsync +vsync (47.7 kHz)
    (II) RADEON(0): Modeline "1024x768"x59.9   63.50  1024 1072 1176 1328  768 771 775 798 -hsync +vsync (47.8 kHz)
    (II) RADEON(0): Modeline "800x600"x59.9   38.25  800 832 912 1024  600 603 607 624 -hsync +vsync (37.4 kHz)
    (II) RADEON(0): Modeline "640x480"x59.4   23.75  640 664 720 800  480 483 487 500 -hsync +vsync (29.7 kHz)
    (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    (II) RADEON(0): EDID for output DVI-0
    (II) RADEON(0): Output VGA-0 disconnected
    (II) RADEON(0): Output LVDS connected
    (II) RADEON(0): Output DVI-0 disconnected
    (II) RADEON(0): Using exact sizes for initial modes
    (II) RADEON(0): Output LVDS using initial mode 1280x800
    (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    (==) RADEON(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules/libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 1.0.0
    	ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (==) RADEON(0): Using EXA acceleration architecture
    (II) Loading sub module "exa"
    (II) LoadModule: "exa"
    (II) Loading /usr/lib/xorg/modules/libexa.so
    (II) Module exa: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 2.5.0
    	ABI class: X.Org Video Driver, version 6.0
    (!!) RADEON(0): MergedFB support has been removed and replaced with xrandr 1.2 support
    (--) Depth 24 pixmap format is 32 bpp
    (II) RADEON(0): RADEONScreenInit e0000000 0 0
    Output LCD1 disable success
    Blank CRTC 0 success
    Disable CRTC 0 success
    Blank CRTC 1 success
    Disable CRTC 1 success
    (II) RADEON(0): Dynamic Power Management Disabled
    (==) RADEON(0): Using 24 bit depth buffer
    (II) RADEON(0): RADEONInitMemoryMap() : 
    (II) RADEON(0):   mem_size         : 0x10000000
    (II) RADEON(0):   MC_FB_LOCATION   : 0xbfffb000
    (II) RADEON(0):   MC_AGP_LOCATION  : 0x003f0000
    (II) RADEON(0): Depth moves disabled by default
    (II) RADEON(0): Allocating from a screen of 262080 kb
    (II) RADEON(0): Will use 32 kb for hardware cursor 0 at offset 0x00640000
    (II) RADEON(0): Will use 32 kb for hardware cursor 1 at offset 0x00644000
    (II) RADEON(0): Will use 6400 kb for front buffer at offset 0x00000000
    (II) RADEON(0): Will use 64 kb for PCI GART at offset 0x0fff0000
    (II) RADEON(0): Will use 6400 kb for back buffer at offset 0x00648000
    (II) RADEON(0): Will use 6400 kb for depth buffer at offset 0x00c88000
    (II) RADEON(0): Will use 120832 kb for textures at offset 0x012c8000
    (II) RADEON(0): Will use 122016 kb for X Server offscreen at offset 0x088c8000
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:05.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:01:05.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) RADEON(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) RADEON(0): [drm] framebuffer handle = 0xe0000000
    (II) RADEON(0): [drm] added 1 reserved context for kernel
    (II) RADEON(0): X context handle = 0x1
    (II) RADEON(0): [drm] installed DRM signal handler
    (II) RADEON(0): [pci] 32768 kB allocated with handle 0x0603b900
    (II) RADEON(0): [pci] ring handle = 0x1b7ff000
    (II) RADEON(0): [pci] Ring mapped at 0x7f9459bd0000
    (II) RADEON(0): [pci] Ring contents 0x00000000
    (II) RADEON(0): [pci] ring read ptr handle = 0x2b800000
    (II) RADEON(0): [pci] Ring read ptr mapped at 0x7f946e726000
    (II) RADEON(0): [pci] Ring read ptr contents 0x00000000
    (II) RADEON(0): [pci] vertex/indirect buffers handle = 0x1b800000
    (II) RADEON(0): [pci] Vertex/indirect buffers mapped at 0x7f94599d0000
    (II) RADEON(0): [pci] Vertex/indirect buffers contents 0x00000000
    (II) RADEON(0): [pci] GART texture map handle = 0x1b801000
    (II) RADEON(0): [pci] GART Texture map mapped at 0x7f9457d50000
    (II) RADEON(0): [drm] register handle = 0x2fff8000
    (II) RADEON(0): [dri] Visual configs initialized
    (II) RADEON(0): RADEONRestoreMemMapRegisters() : 
    (II) RADEON(0):   MC_FB_LOCATION   : 0xbfffb000 0xbfffb000
    (II) RADEON(0):   MC_AGP_LOCATION  : 0x003f0000
    (==) RADEON(0): Backing store disabled
    (II) RADEON(0): [DRI] installation complete
    (II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
    (II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
    (II) RADEON(0): [drm] dma control initialized, using IRQ 18
    (II) RADEON(0): [drm] Initialized kernel GART heap manager, 29884416
    (WW) RADEON(0): DRI init changed memory map, adjusting ...
    (WW) RADEON(0):   MC_FB_LOCATION  was: 0xbfffb000 is: 0xbfffb000
    (WW) RADEON(0):   MC_AGP_LOCATION was: 0x003f0000 is: 0x00000000
    (II) RADEON(0): RADEONRestoreMemMapRegisters() : 
    (II) RADEON(0):   MC_FB_LOCATION   : 0xbfffb000 0xbfffb000
    (II) RADEON(0):   MC_AGP_LOCATION  : 0x00000000
    (II) RADEON(0): Direct rendering enabled
    (II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards.
    (II) RADEON(0): Setting EXA maxPitchBytes
    (II) RADEON(0): num quad-pipes is 1
    (II) EXA(0): Offscreen pixmap area of 124944384 bytes
    (II) EXA(0): Driver registered support for the following operations:
    (II)         Solid
    (II)         Copy
    (II)         Composite (RENDER acceleration)
    (II)         UploadToScreen
    (II)         DownloadFromScreen
    (II) RADEON(0): Acceleration enabled
    (==) RADEON(0): DPMS enabled
    (==) RADEON(0): Silken mouse enabled
    (II) RADEON(0): Set up textured video
    Output CRT1 disable success
    Output LCD1 disable success
    Output DFP2 disable success
    Blank CRTC 0 success
    Disable CRTC 0 success
    Blank CRTC 1 success
    Disable CRTC 1 success
    Output LCD1 disable success
    Blank CRTC 0 success
    Disable CRTC 0 success
    Mode 1280x800 - 1448 822 10
    (II) RADEON(0): RADEONRestoreMemMapRegisters() : 
    (II) RADEON(0):   MC_FB_LOCATION   : 0xbfffb000 0xbfffb000
    (II) RADEON(0):   MC_AGP_LOCATION  : 0x00000000
    ffreq: 71450.000000
    best_freq: 71450
    best_feedback_div: 159.6
    best_ref_div: 2
    best_post_div: 16
    (II) RADEON(0): crtc(0) Clock: mode 71450, PLL 71450
    (II) RADEON(0): crtc(0) PLL  : refdiv 2, fbdiv 0x9F(159), fracfbdiv 6, pdiv 16
    Set CRTC 0 PLL success
    Set CRTC Timing success
    Set CRTC 0 Overscan success
    Not using RMX
    scaler 0 setup success
    Set CRTC 0 Source success
    crtc 0 YUV disable setup success
    Output digital setup success
    Output LCD1 enable success
    Enable CRTC 0 success
    Unblank CRTC 0 success
    Output CRT1 disable success
    Output DFP2 disable success
    Blank CRTC 1 success
    Disable CRTC 1 success
    (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    record: RECORD extension enabled at configure time.
    record: This extension is known to be broken, disabling extension now..
    record: http://bugs.freedesktop.org/show_bug.cgi?id=20500
    (II) AIGLX: Screen 0 is not DRI2 capable
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 12, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:05.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 12, (OK)
    drmOpenByBusid: drmOpenMinor returns 12
    drmOpenByBusid: drmGetBusid reports pci:0000:01:05.0
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_make_current_read
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_texture_from_pixmap with driver support
    (II) AIGLX: Loaded and initialized /usr/lib/dri/r300_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) RADEON(0): Setting screen physical size to 338 x 211
    (II) XKB: generating xkmfile /tmp/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
    (**) Option "Device" "/dev/input/n-trig"
    (**) Option "SendCoreEvents"
    (**) stylus: always reports core events
    (**) Option "CommonDBG" "12"
    (**) Option "TopX" "0"
    (**) Option "TopY" "0"
    (**) Option "BottomX" "9600"
    (**) Option "BottomY" "7200"
    (**) Option "Button2" "3"
    (II) XINPUT: Adding extended input device "stylus" (type: STYLUS)
    (--) stylus: using pressure threshold of 15 for button 1
    (--) stylus: Wacom USB TabletPC tablet speed=38400 maxX=9600 maxY=7200 maxZ=256 resX=934 resY=1122  tilt=disabled
    (--) stylus: top X=0 top Y=0 bottom X=9600 bottom Y=7200 resol X=934 resol Y=1122
    (**) Option "Device" "/dev/input/n-trig"
    (**) Option "SendCoreEvents"
    (**) eraser: always reports core events
    (II) XINPUT: Adding extended input device "eraser" (type: ERASER)
    (--) eraser: top X=0 top Y=0 bottom X=9600 bottom Y=7200 resol X=934 resol Y=1122
    (**) Option "Device" "/dev/input/n-trig-touch"
    (**) Option "SendCoreEvents"
    (**) touch: always reports core events
    (**) Option "TopX" "0"
    (**) Option "TopY" "0"
    (**) Option "BottomX" "9600"
    (**) Option "BottomY" "7200"
    (II) XINPUT: Adding extended input device "touch" (type: TOUCH)
    (--) touch: using pressure threshold of 0 for button 1
    (--) touch: Wacom USB TabletPC tablet speed=38400 maxX=0 maxY=0 maxZ=0 resX=934 resY=1122  tilt=disabled
    (--) touch: top X=0 top Y=0 bottom X=9600 bottom Y=7200 resol X=934 resol Y=1122
    (II) config/udev: Adding input device "Video Bus" (/dev/input/event5)
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    	compiled for 1.7.5, module version = 2.3.2
    	Module class: X.Org XInput Driver
    	ABI class: X.Org XInput driver, version 7.0
    (**) "Video Bus": always reports core events
    (**) "Video Bus": Device: "/dev/input/event5"
    (II) "Video Bus": Found keys
    (II) "Video Bus": Configuring as keyboard
    (II) XINPUT: Adding extended input device ""Video Bus"" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "pc105"
    (**) Option "xkb_layout" "us"
    (II) config/udev: Adding input device "Power Button" (/dev/input/event1)
    (**) "Power Button": always reports core events
    (**) "Power Button": Device: "/dev/input/event1"
    (II) "Power Button": Found keys
    (II) "Power Button": Configuring as keyboard
    (II) XINPUT: Adding extended input device ""Power Button"" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "pc105"
    (**) Option "xkb_layout" "us"
    (II) config/udev: Adding input device "Sleep Button" (/dev/input/event2)
    (**) "Sleep Button": always reports core events
    (**) "Sleep Button": Device: "/dev/input/event2"
    (II) "Sleep Button": Found keys
    (II) "Sleep Button": Configuring as keyboard
    (II) XINPUT: Adding extended input device ""Sleep Button"" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "pc105"
    (**) Option "xkb_layout" "us"
    (II) config/udev: Adding input device "N-Trig Pen" (/dev/input/event6)
    (**) Option "Device" "/dev/input/event6"
    (II) "N-Trig Pen": type not specified, assuming 'stylus'.
    (II) "N-Trig Pen": other types will be automatically added.
    (**) "N-Trig Pen": always reports core events
    (II) "N-Trig Pen": hotplugging dependent devices.
    (**) Option "Device" "/dev/input/event6"
    (**) "N-Trig Pen" eraser: always reports core events
    (II) XINPUT: Adding extended input device ""N-Trig Pen" eraser" (type: ERASER)
    (--) "N-Trig Pen" eraser: using pressure threshold of 15 for button 1
    (--) "N-Trig Pen" eraser: Wacom USB TabletPC tablet speed=38400 maxX=9600 maxY=7200 maxZ=256 resX=934 resY=1122  tilt=disabled
    (--) "N-Trig Pen" eraser: top X=0 top Y=0 bottom X=9600 bottom Y=7200 resol X=934 resol Y=1122
    (II) "N-Trig Pen": hotplugging completed.
    (II) XINPUT: Adding extended input device ""N-Trig Pen"" (type: STYLUS)
    (--) "N-Trig Pen": top X=0 top Y=0 bottom X=9600 bottom Y=7200 resol X=934 resol Y=1122
    (II) config/udev: Adding input device "N-Trig Touchscreen" (/dev/input/event7)
    (**) Option "Device" "/dev/input/event7"
    (II) "N-Trig Touchscreen": type not specified, assuming 'touch'.
    (II) "N-Trig Touchscreen": other types will be automatically added.
    (WW) "N-Trig Touchscreen": device file already in use by touch. Ignoring.
    (II) UnloadModule: "wacom"
    (EE) PreInit returned NULL for ""N-Trig Touchscreen""
    (II) config/udev: Adding input device "N-Trig Touchscreen" (/dev/input/mouse2)
    (**) "N-Trig Touchscreen": always reports core events
    (**) "N-Trig Touchscreen": Device: "/dev/input/mouse2"
    (II) UnloadModule: "evdev"
    (EE) PreInit returned NULL for ""N-Trig Touchscreen""
    (II) config/udev: Adding input device "N-Trig Pen" (/dev/input/event8)
    (**) Option "Device" "/dev/input/event8"
    (II) "N-Trig Pen": type not specified, assuming 'stylus'.
    (II) "N-Trig Pen": other types will be automatically added.
    (WW) "N-Trig Pen": device file already in use by stylus. Ignoring.
    (II) UnloadModule: "wacom"
    (EE) PreInit returned NULL for ""N-Trig Pen""
    (II) config/udev: Adding input device "N-Trig Touchscreen" (/dev/input/event9)
    (**) Option "Device" "/dev/input/event9"
    (II) "N-Trig Touchscreen": type not specified, assuming 'touch'.
    (II) "N-Trig Touchscreen": other types will be automatically added.
    (**) "N-Trig Touchscreen": always reports core events
    (II) "N-Trig Touchscreen": hotplugging dependent devices.
    (II) "N-Trig Touchscreen": hotplugging completed.
    (II) XINPUT: Adding extended input device ""N-Trig Touchscreen"" (type: TOUCH)
    (--) "N-Trig Touchscreen": using pressure threshold of 0 for button 1
    (--) "N-Trig Touchscreen": Wacom USB TabletPC tablet speed=38400 maxX=0 maxY=0 maxZ=0 resX=934 resY=1122  tilt=disabled
    (--) "N-Trig Touchscreen": top X=0 top Y=0 bottom X=9600 bottom Y=7200 resol X=934 resol Y=1122
    (II) config/udev: Adding input device "N-Trig Touchscreen" (/dev/input/mouse4)
    (**) "N-Trig Touchscreen": always reports core events
    (**) "N-Trig Touchscreen": Device: "/dev/input/mouse4"
    (II) UnloadModule: "evdev"
    (EE) PreInit returned NULL for ""N-Trig Touchscreen""
    (II) config/udev: Adding input device "AT Translated Set 2 keyboard" (/dev/input/event4)
    (**) "AT Translated Set 2 keyboard": always reports core events
    (**) "AT Translated Set 2 keyboard": Device: "/dev/input/event4"
    (II) "AT Translated Set 2 keyboard": Found keys
    (II) "AT Translated Set 2 keyboard": Configuring as keyboard
    (II) XINPUT: Adding extended input device ""AT Translated Set 2 keyboard"" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "pc105"
    (**) Option "xkb_layout" "us"
    (II) config/udev: Adding input device "PS/2 Generic Mouse" (/dev/input/event14)
    (**) "PS/2 Generic Mouse": always reports core events
    (**) "PS/2 Generic Mouse": Device: "/dev/input/event14"
    (II) "PS/2 Generic Mouse": Found 3 mouse buttons
    (II) "PS/2 Generic Mouse": Found relative axes
    (II) "PS/2 Generic Mouse": Found x and y relative axes
    (II) "PS/2 Generic Mouse": Configuring as mouse
    (**) "PS/2 Generic Mouse": YAxisMapping: buttons 4 and 5
    (**) "PS/2 Generic Mouse": EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device ""PS/2 Generic Mouse"" (type: MOUSE)
    (**) "PS/2 Generic Mouse": (accel) keeping acceleration scheme 1
    (**) "PS/2 Generic Mouse": (accel) acceleration profile 0
    (II) "PS/2 Generic Mouse": initialized for relative axes.
    (II) config/udev: Adding input device "PS/2 Generic Mouse" (/dev/input/mouse5)
    (**) "PS/2 Generic Mouse": always reports core events
    (**) "PS/2 Generic Mouse": Device: "/dev/input/mouse5"
    (II) UnloadModule: "evdev"
    (EE) PreInit returned NULL for ""PS/2 Generic Mouse""
    (II) config/udev: Adding input device "Dell WMI hotkeys" (/dev/input/event10)
    (**) "Dell WMI hotkeys": always reports core events
    (**) "Dell WMI hotkeys": Device: "/dev/input/event10"
    (II) "Dell WMI hotkeys": Found keys
    (II) "Dell WMI hotkeys": Configuring as keyboard
    (II) XINPUT: Adding extended input device ""Dell WMI hotkeys"" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "pc105"
    (**) Option "xkb_layout" "us"
    (II) config/udev: Adding input device "Macintosh mouse button emulation" (/dev/input/event3)
    (**) "Macintosh mouse button emulation": always reports core events
    (**) "Macintosh mouse button emulation": Device: "/dev/input/event3"
    (II) "Macintosh mouse button emulation": Found 3 mouse buttons
    (II) "Macintosh mouse button emulation": Found relative axes
    (II) "Macintosh mouse button emulation": Found x and y relative axes
    (II) "Macintosh mouse button emulation": Configuring as mouse
    (**) "Macintosh mouse button emulation": YAxisMapping: buttons 4 and 5
    (**) "Macintosh mouse button emulation": EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device ""Macintosh mouse button emulation"" (type: MOUSE)
    (**) "Macintosh mouse button emulation": (accel) keeping acceleration scheme 1
    (**) "Macintosh mouse button emulation": (accel) acceleration profile 0
    (II) "Macintosh mouse button emulation": initialized for relative axes.
    (II) config/udev: Adding input device "Macintosh mouse button emulation" (/dev/input/mouse0)
    (**) "Macintosh mouse button emulation": always reports core events
    (**) "Macintosh mouse button emulation": Device: "/dev/input/mouse0"
    (II) UnloadModule: "evdev"
    (EE) PreInit returned NULL for ""Macintosh mouse button emulation""
    Dac detection success
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    (II) RADEON(0): EDID vendor "AUO", prod id 16916
    (II) RADEON(0): DDCModeFromDetailedTiming: 1280x800 Warning: We only handle separate sync.
    (II) RADEON(0): Printing DDC gathered Modelines:
    (II) RADEON(0): Modeline "1280x800"x0.0   71.45  1280 1328 1360 1448  800 803 809 822 -hsync -vsync (49.3 kHz)
    (II) RADEON(0): Modeline "1280x800"x0.0   70.30  1280 1328 1360 1424  800 803 809 822 -hsync -vsync (49.4 kHz)
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    (II) RADEON(0): Manufacturer: AUO  Model: 4214  Serial#: 0
    (II) RADEON(0): Year: 2007  Week: 1
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Digital Display Input
    (II) RADEON(0): Max Image Size [cm]: horiz.: 26  vert.: 16
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): No DPMS capabilities specified
    (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.330 greenY: 0.575
    (II) RADEON(0): blueX: 0.155 blueY: 0.135   whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 71.5 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1448 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 70.3 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1424 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0):  KX774B121EW4
    (II) RADEON(0):  	4`��
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 	00ffffffffffff0006af144200000000
    (II) RADEON(0): 	01110103801a10780a89e59457549327
    (II) RADEON(0): 	22505400000001010101010101010101
    (II) RADEON(0): 	010101010101e91b00a8502016303020
    (II) RADEON(0): 	360005a310000019761b009050201630
    (II) RADEON(0): 	3020360005a310000000000000fe004b
    (II) RADEON(0): 	583737340242313231455734000000fe
    (II) RADEON(0): 	00090f151a346084ff01010a2020001b
    (II) RADEON(0): EDID vendor "AUO", prod id 16916
    (II) RADEON(0): DDCModeFromDetailedTiming: 1280x800 Warning: We only handle separate sync.
    (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    Dac detection success
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    (II) RADEON(0): EDID vendor "AUO", prod id 16916
    (II) RADEON(0): DDCModeFromDetailedTiming: 1280x800 Warning: We only handle separate sync.
    (II) RADEON(0): Printing DDC gathered Modelines:
    (II) RADEON(0): Modeline "1280x800"x0.0   71.45  1280 1328 1360 1448  800 803 809 822 -hsync -vsync (49.3 kHz)
    (II) RADEON(0): Modeline "1280x800"x0.0   70.30  1280 1328 1360 1424  800 803 809 822 -hsync -vsync (49.4 kHz)
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    (II) RADEON(0): Manufacturer: AUO  Model: 4214  Serial#: 0
    (II) RADEON(0): Year: 2007  Week: 1
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Digital Display Input
    (II) RADEON(0): Max Image Size [cm]: horiz.: 26  vert.: 16
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): No DPMS capabilities specified
    (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.330 greenY: 0.575
    (II) RADEON(0): blueX: 0.155 blueY: 0.135   whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 71.5 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1448 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 70.3 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1424 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0):  KX774B121EW4
    (II) RADEON(0):  	4`��
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 	00ffffffffffff0006af144200000000
    (II) RADEON(0): 	01110103801a10780a89e59457549327
    (II) RADEON(0): 	22505400000001010101010101010101
    (II) RADEON(0): 	010101010101e91b00a8502016303020
    (II) RADEON(0): 	360005a310000019761b009050201630
    (II) RADEON(0): 	3020360005a310000000000000fe004b
    (II) RADEON(0): 	583737340242313231455734000000fe
    (II) RADEON(0): 	00090f151a346084ff01010a2020001b
    (II) RADEON(0): EDID vendor "AUO", prod id 16916
    (II) RADEON(0): DDCModeFromDetailedTiming: 1280x800 Warning: We only handle separate sync.
    (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    Dac detection success
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    (II) RADEON(0): EDID vendor "AUO", prod id 16916
    (II) RADEON(0): DDCModeFromDetailedTiming: 1280x800 Warning: We only handle separate sync.
    (II) RADEON(0): Printing DDC gathered Modelines:
    (II) RADEON(0): Modeline "1280x800"x0.0   71.45  1280 1328 1360 1448  800 803 809 822 -hsync -vsync (49.3 kHz)
    (II) RADEON(0): Modeline "1280x800"x0.0   70.30  1280 1328 1360 1424  800 803 809 822 -hsync -vsync (49.4 kHz)
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 2
    (II) RADEON(0): EDID data from the display on output: LVDS ----------------------
    (II) RADEON(0): Manufacturer: AUO  Model: 4214  Serial#: 0
    (II) RADEON(0): Year: 2007  Week: 1
    (II) RADEON(0): EDID Version: 1.3
    (II) RADEON(0): Digital Display Input
    (II) RADEON(0): Max Image Size [cm]: horiz.: 26  vert.: 16
    (II) RADEON(0): Gamma: 2.20
    (II) RADEON(0): No DPMS capabilities specified
    (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
    (II) RADEON(0): First detailed timing is preferred mode
    (II) RADEON(0): redX: 0.580 redY: 0.340   greenX: 0.330 greenY: 0.575
    (II) RADEON(0): blueX: 0.155 blueY: 0.135   whiteX: 0.313 whiteY: 0.329
    (II) RADEON(0): Manufacturer's mask: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 71.5 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1448 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0): Supported detailed timing:
    (II) RADEON(0): clock: 70.3 MHz   Image Size:  261 x 163 mm
    (II) RADEON(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1424 h_border: 0
    (II) RADEON(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 822 v_border: 0
    (II) RADEON(0):  KX774B121EW4
    (II) RADEON(0):  	4`��
    (II) RADEON(0): EDID (in hex):
    (II) RADEON(0): 	00ffffffffffff0006af144200000000
    (II) RADEON(0): 	01110103801a10780a89e59457549327
    (II) RADEON(0): 	22505400000001010101010101010101
    (II) RADEON(0): 	010101010101e91b00a8502016303020
    (II) RADEON(0): 	360005a310000019761b009050201630
    (II) RADEON(0): 	3020360005a310000000000000fe004b
    (II) RADEON(0): 	583737340242313231455734000000fe
    (II) RADEON(0): 	00090f151a346084ff01010a2020001b
    (II) RADEON(0): EDID vendor "AUO", prod id 16916
    (II) RADEON(0): DDCModeFromDetailedTiming: 1280x800 Warning: We only handle separate sync.
    (II) RADEON(0): Output: DVI-0, Detected Monitor Type: 0
    Xorg.conf:
    Code:
    # xorg.conf (X.Org X Window System server configuration file)
    #
    # This file was generated by dexconf, the Debian X Configuration tool, using
    # values from the debconf database.
    #
    # Edit this file with caution, and see the xorg.conf manual page.
    # (Type "man xorg.conf" at the shell prompt.)
    #
    # This file is automatically updated on xserver-xorg package upgrades *only*
    # if it has not been modified since the last upgrade of the xserver-xorg
    # package.
    #
    # Note that some configuration settings that could be done previously
    # in this file, now are automatically configured by the server and settings
    # here are ignored.
    #
    # If you have edited this file but would like it to be automatically updated
    # again, run the following command:
    #   sudo dpkg-reconfigure -phigh xserver-xorg
    
    Section "InputDevice"
    	Identifier	"stylus"
    	Driver		"wacom"
    	Option		"Device"	"/dev/input/n-trig"
    	Option		"Type"		"stylus"
    	Option		"USB"		"on"
    	Option		"Button2"	"3"	# make stylus button R mouse click
    	Option		"TopX"		"0"
    	Option		"TopY"		"0"
    	Option		"BottomX"	"9600"
    	Option		"BottomY"	"7200"
            Option          "CommonDBG"     "12"
    EndSection
    
    #   Remove the comments below if you have an eraser.  Dell XT & XT2?
    Section "InputDevice"
    	Identifier	"eraser"
    	Driver		"wacom"
    	Option		"Device"	"/dev/input/n-trig"
    	Option		"Type"		"eraser"
    	Option		"USB"		"on"
    EndSection
    
    Section "InputDevice"
    	Identifier	"touch"
    	Driver		"wacom"
    	Option		"Device"	"/dev/input/n-trig-touch"
    	Option		"Type"		"touch"
    	Option		"USB"		"on"
    	Option		"TopX"		"0"
    	Option		"TopY"		"0"
    	Option		"BottomX"	"9600"
    	Option		"BottomY"	"7200"
    EndSection
    
    #Section "InputDevice"
    #	Identifier	"mttouch"
    #	Driver		"wacom"
    #	Option		"Device"	"/dev/input/n-trig-mttouch"
    #	Option		"Type"		"touch"
    #	Option		"USB"		"on"
    #	Option		"TopX"		"0"
    #	Option		"TopY"		"0"
    #	Option		"BottomX"	"9600"
    #	Option		"BottomY"	"7200"
    #EndSection
    
    Section "Device"
    	Identifier	"Configured Video Device"
    EndSection
    
    Section "Monitor"
    	Identifier	"Configured Monitor"
    EndSection
    
    Section "Screen"
    	Identifier	"Default Screen"
    	Monitor		"Configured Monitor"
    	Device		"Configured Video Device"
    EndSection
    
    Section "ServerLayout"
    	Identifier	"X.org Configured"
    #	Identifier	"Default Layout"
    #	Screen		"Default Screen"
    	InputDevice	"stylus"	"SendCoreEvents"
    #   Remove the comment below if you have an eraser.
    	InputDevice	"eraser"	"SendCoreEvents"
    	InputDevice	"touch"		"SendCoreEvents"
    #	InputDevice	"mttouch"	"SendCoreEvents"
    EndSection
    
    #   Developed with Ayuthia (using Rafi Rubin's Wacom sections as a starting point).
    Xinput --list:
    Code:
    ⎡ Virtual core pointer                          id=2    [master pointer  (3)]
    ⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
    ⎜   ↳ stylus                                    id=6    [slave  pointer  (2)]
    ⎜   ↳ eraser                                    id=7    [slave  pointer  (2)]
    ⎜   ↳ touch                                     id=8    [slave  pointer  (2)]
    ⎜   ↳ "N-Trig Pen" eraser                       id=12   [slave  pointer  (2)]
    ⎜   ↳ "N-Trig Pen"                              id=13   [slave  pointer  (2)]
    ⎜   ↳ "N-Trig Touchscreen"                      id=14   [slave  pointer  (2)]
    ⎜   ↳ "PS/2 Generic Mouse"                      id=16   [slave  pointer  (2)]
    ⎜   ↳ "Macintosh mouse button emulation"        id=18   [slave  pointer  (2)]
    ⎣ Virtual core keyboard                         id=3    [master keyboard (2)]
        ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
        ↳ "Video Bus"                               id=9    [slave  keyboard (3)]
        ↳ "Power Button"                            id=10   [slave  keyboard (3)]
        ↳ "Sleep Button"                            id=11   [slave  keyboard (3)]
        ↳ "AT Translated Set 2 keyboard"            id=15   [slave  keyboard (3)]
        ↳ "Dell WMI hotkeys"                        id=17   [slave  keyboard (3)]
    Gimp still works with stylus pressure. KDE apps still don't
    Facebook, Apple, Google, corrupt governments, the ISP's and Telco's
    can be beaten at their own game by free and open source software.
    Here's how. (Extra credit)

  8. #658
    Join Date
    Jan 2007
    Location
    Here.
    Beans
    419
    Distro
    Ubuntu

    Re: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

    Quote Originally Posted by Ayuthia View Post
    Based on the conversations in the input mailing list, the finger width is smaller on lighter touches and gets wider as you press harder. It would not be too hard to emulate that in a driver to set a max width and convert it to a pressure value.
    That would be brain-bogglingly awesome. I'm *really* hoping something somes of this one way or another.
    Facebook, Apple, Google, corrupt governments, the ISP's and Telco's
    can be beaten at their own game by free and open source software.
    Here's how. (Extra credit)

  9. #659
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

    Hi Ubuntiac,

    I think it worked! It looks like you did it. And by the way adding "CommonDBG" did seem to give us some more information.

    As far as I can tell you are now set up with xf86-input-wacom/xserver-xorg-input-wacom as your X driver. The mttouch error is gone. While evdev tries to setup on it later it keeps unloading its module. It's probably trying to set up on spurious devices (as is wacom) as well as devices already spoken for:
    Code:
    (WW) "N-Trig Touchscreen": device file already in use by touch. Ignoring.
    (II) UnloadModule: "wacom"
    (EE) PreInit returned NULL for ""N-Trig Touchscreen""
    (II) config/udev: Adding input device "N-Trig Touchscreen" (/dev/input/mouse2)
    (**) "N-Trig Touchscreen": always reports core events
    (**) "N-Trig Touchscreen": Device: "/dev/input/mouse2"
    (II) UnloadModule: "evdev"
    (EE) PreInit returned NULL for ""N-Trig Touchscreen""
    We could check:
    Code:
    ls -l /dev/input/by-path
    and try and trace device by-paths.

    Touch appears set up correctly. The reason you do not have multi-touch is your firmware version ("Vista") does not support it. That's why we commented it out in the udev rules.

    Couple of questions. Did you uninstall xserver-xorg-input-wacom before cloning the git xf86-input-wacom? If you didn't have you located in udev where the new udev equivalent of the Wacom .fdi is? I'd love to see what it looks like. We could maybe develop a n-trig version instead of the xorg.conf

  10. #660
    Join Date
    Jan 2007
    Location
    Here.
    Beans
    419
    Distro
    Ubuntu

    Re: HOW TO: Set up the HP TX2z and Dell XT & XT2 (N-trig digitizer) in Ubuntu

    Quote Originally Posted by Favux View Post
    Hi Ubuntiac,

    I think it worked! It looks like you did it. And by the way adding "CommonDBG" did seem to give us some more information.
    Uh, cool! I think *you guys* did it though. I just copy and pasted.

    We could check:
    Code:
    ls -l /dev/input/by-path
    and try and trace device by-paths.
    ls -l /dev/input/by-path:
    Code:
    lrwxrwxrwx 1 root root  9 2010-02-26 00:12 pci-0000:00:13.1-usb-0:2:1.0-event -> ../event7
    lrwxrwxrwx 1 root root  9 2010-02-26 00:12 pci-0000:00:13.1-usb-0:2:1.0-event-mouse -> ../event6
    lrwxrwxrwx 1 root root  9 2010-02-26 00:12 pci-0000:00:13.1-usb-0:2:1.0-mouse -> ../mouse1
    lrwxrwxrwx 1 root root  9 2010-02-26 00:12 pci-0000:00:13.1-usb-0:2:1.1-event -> ../event9
    lrwxrwxrwx 1 root root  9 2010-02-26 00:12 pci-0000:00:13.1-usb-0:2:1.1-event-mouse -> ../event8
    lrwxrwxrwx 1 root root  9 2010-02-26 00:12 pci-0000:00:13.1-usb-0:2:1.1-mouse -> ../mouse3
    lrwxrwxrwx 1 root root  9 2010-02-26 00:12 platform-i8042-serio-0-event-kbd -> ../event4
    lrwxrwxrwx 1 root root 10 2010-02-26 00:12 platform-i8042-serio-1-event-mouse -> ../event14
    lrwxrwxrwx 1 root root  9 2010-02-26 00:12 platform-i8042-serio-1-mouse -> ../mouse5
    The reason you do not have multi-touch is your firmware version ("Vista") does not support it.
    So does this mean that to get mt I need to install Windows 7 (Ewwwww!), then create a new hid-ntrig.ko / xorg.conf?

    That's why we commented it out in the udev rules.
    I didn't do anything with udev...

    Couple of questions. Did you uninstall xserver-xorg-input-wacom before cloning the git xf86-input-wacom?
    Nope. Fresh install of Lucid. Never uninstalled anything.

    If you didn't have you located in udev where the new udev equivalent of the Wacom .fdi is? I'd love to see what it looks like. We could maybe develop a n-trig version instead of the xorg.conf
    Let me know where to look and I'll post the results...
    Last edited by Ubuntiac; February 26th, 2010 at 07:58 AM. Reason: is madness
    Facebook, Apple, Google, corrupt governments, the ISP's and Telco's
    can be beaten at their own game by free and open source software.
    Here's how. (Extra credit)

Page 66 of 169 FirstFirst ... 1656646566676876116166 ... LastLast

Tags for this Thread

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
  •