From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ny5FW-0002YV-F9 for qemu-devel@nongnu.org; Sat, 03 Apr 2010 11:27:02 -0400 Received: from [140.186.70.92] (port=33548 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ny5FU-0002W4-D9 for qemu-devel@nongnu.org; Sat, 03 Apr 2010 11:27:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Ny5FT-0001cs-0s for qemu-devel@nongnu.org; Sat, 03 Apr 2010 11:27:00 -0400 Received: from mx20.gnu.org ([199.232.41.8]:56152) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Ny5FS-0001co-Tv for qemu-devel@nongnu.org; Sat, 03 Apr 2010 11:26:58 -0400 Received: from mail.codesourcery.com ([38.113.113.100]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ny5FS-0006pB-CD for qemu-devel@nongnu.org; Sat, 03 Apr 2010 11:26:58 -0400 From: Paul Brook Subject: Re: [Qemu-devel] Absolute Mouse in VNC and debug ports patch Date: Sat, 3 Apr 2010 16:26:52 +0100 References: In-Reply-To: MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201004031626.52399.paul@codesourcery.com> List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerhard Wiesinger > This is my first contribution to QEMU: I've written a virtual piece of > hardware (e.g. ports) that the mouse pointer can be used as an absolute > pointing device even with non USB devices, e.g. with DOS and doesn't need > any high memory usage USB driver. This is necessary for e.g. VNC remote > access, this was my primary motivation. Why not just use the existing vmmouse? > To use it you need a mouse driver (e.g. cutemouse, > http://cutemouse.sourceforge.net/) and an QEMU mouse TSR. > Further the mouse TSR emulates also a HP-HIL 45911 tablet digitizer. This > device has been chosen because an Interrupt interface exists at INT 6Fh and > therefore it is relativly easy to emulate (all other devices I've evaluated > use the serial port and are therefore much more complex to emulate) However emulating an actual tablet connected to the serial port means you don't need any custom guest software. >Further I've written a simple logging debug ports functionality to debug the >driver This looks a lot like the existing isa-debugcon. Paul