From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42387) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WmoTA-000688-PS for qemu-devel@nongnu.org; Tue, 20 May 2014 14:09:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WmoT1-0003Yf-Ou for qemu-devel@nongnu.org; Tue, 20 May 2014 14:08:56 -0400 Received: from mail-qg0-x231.google.com ([2607:f8b0:400d:c04::231]:40412) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WmoT1-0003YZ-LJ for qemu-devel@nongnu.org; Tue, 20 May 2014 14:08:47 -0400 Received: by mail-qg0-f49.google.com with SMTP id a108so1357955qge.22 for ; Tue, 20 May 2014 11:08:47 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <537B9A2B.7030807@redhat.com> Date: Tue, 20 May 2014 20:08:43 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1400594447-16637-1-git-send-email-kraxel@redhat.com> <1400594447-16637-7-git-send-email-kraxel@redhat.com> In-Reply-To: <1400594447-16637-7-git-send-email-kraxel@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 6/6] docs: add multiseat.txt List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann , qemu-devel@nongnu.org Il 20/05/2014 16:00, Gerd Hoffmann ha scritto: > + -device pci-bridge,addr=12.0,chassis_nr=2,id=head.2 \ > + -device secondary-vga,bus=head.2,addr=02.0,id=video.2 \ > + -device nec-usb-xhci,bus=head.2,addr=0f.0,id=usb.2 \ > + -device usb-kbd,bus=usb.2.0,port=1,display=video.2 \ > + -device usb-tablet,bus=usb.2.0,port=2,display=video.2 > + > +This places a pci bridge in slot 12, connects a display adapter and > +xhci (usb) controller to the bridge. Then it adds a usb keyboard and > +usb mouse, both connected to the xhci and linked to the display. > + > +The "display=video2" sets up the input routing. Any input coming from > +the window which belongs to the video.2 display adapter will be routed > +to these input devices. > + Is there anything about the window that we would like to configure? If so, should this be something like -object window,id=window.2 \ -device pci-bridge,addr=12.0,chassis_nr=2,id=head.2 \ -device secondary-vga,bus=head.2,addr=02.0,window=window.2 \ -device nec-usb-xhci,bus=head.2,addr=0f.0,id=usb.2 \ -device usb-kbd,bus=usb.2.0,port=1,window=window.2 \ -device usb-tablet,bus=usb.2.0,port=2,window=window.2 ? Paolo