From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=53267 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PA0TM-0001VE-0f for qemu-devel@nongnu.org; Sun, 24 Oct 2010 09:18:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PA0TL-0005LJ-5I for qemu-devel@nongnu.org; Sun, 24 Oct 2010 09:18:51 -0400 Received: from mx1.redhat.com ([209.132.183.28]:10710) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PA0TK-0005LC-U1 for qemu-devel@nongnu.org; Sun, 24 Oct 2010 09:18:51 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o9ODIniA028899 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 24 Oct 2010 09:18:49 -0400 Received: from playa.tlv.redhat.com (dhcp-2-227.tlv.redhat.com [10.35.2.227]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o9ODImrB021003 for ; Sun, 24 Oct 2010 09:18:48 -0400 From: Alon Levy Date: Sun, 24 Oct 2010 15:18:43 +0200 Message-Id: <1287926327-31544-1-git-send-email-alevy@redhat.com> Subject: [Qemu-devel] [PATCH 0/4] usb-ccid (v4) List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This patchset adds three new devices, usb-ccid, ccid-card-passthru and ccid-card-emulated, providing a CCID bus, a simple passthru protocol implementing card requiring a client, and a standalone emulated card. v4 changes just the bus following Markus remarks, but I'm resending everything since nothing has been ack'ed yet and it eases review. v3->v4: * remove ccid field in CCIDBus * remove static debug * add back docs v2->v3: * split into bus (usb-ccid.c, uses ccid.h) and card (ccid-card-passthru.c). * removed documentation (being revised). v1->v2: * all QSIMPLEQ turned into fixed sized rings * all allocated buffers turned into fixed size buffers * added migration support * added a message to tell client qemu has migrated to ip:port * for lack of monitor commands ip:port are 0:0, which causes the updated vscclient to connect to one port higher on the same host. will add monitor commands in a separate patch. tested with current setup. Alon Levy (4): usb-ccid: add CCID bus ccid: add passthru card device add ccid-card-emulated device (v2) ccid: add docs Makefile.objs | 1 + configure | 32 ++ docs/ccid.txt | 133 +++++ hw/ccid-card-emulated.c | 495 +++++++++++++++++ hw/ccid-card-passthru.c | 278 ++++++++++ hw/ccid.h | 34 ++ hw/usb-ccid.c | 1346 +++++++++++++++++++++++++++++++++++++++++++++++ hw/vscard_common.h | 130 +++++ 8 files changed, 2449 insertions(+), 0 deletions(-) create mode 100644 docs/ccid.txt create mode 100644 hw/ccid-card-emulated.c create mode 100644 hw/ccid-card-passthru.c create mode 100644 hw/ccid.h create mode 100644 hw/usb-ccid.c create mode 100644 hw/vscard_common.h -- 1.7.3.1