From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41428) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZHa1b-0002ml-Eq for qemu-devel@nongnu.org; Tue, 21 Jul 2015 12:04:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZHa1V-0002mf-UD for qemu-devel@nongnu.org; Tue, 21 Jul 2015 12:04:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:55478) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZHa1V-0002jC-MZ for qemu-devel@nongnu.org; Tue, 21 Jul 2015 12:04:05 -0400 From: =?UTF-8?q?Marc=20Mar=C3=AD?= Date: Tue, 21 Jul 2015 18:03:39 +0200 Message-Id: <1437494626-3773-1-git-send-email-markmb@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [RFC 0/7] fw_cfg dma interface List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Paolo Bonzini , =?UTF-8?q?Marc=20Mar=C3=AD?= , 'Kevin O'Connor' , Gerd Hoffmann , Stefan Hajnoczi Work done by Gerd Hoffmann for ARM. Extended to be used in x86 platforms These patches, with the support in SeaBIOS (patches in the SeaBIOS mailing list) make the Linux kernel setup and boot approximately 10x faster. TODO: * Optimizations. For example, use memcpy instead of a loop if the transaction is big * Is 0xfef00000 a good address? Is there any better address? Is it possible to not make it hardcoded (and can be read by the BIOS)? * Maybe have both DMA and IO interfaces enabled, to improve compatibility? Gabriel L. Somlo (1): fw_cfg: document fw_cfg_modify_iXX() update functions Gerd Hoffmann (4): fw_cfg dma interface fw_cfg dma: adapt to vmstate changes enable fw_cfg dma for arm virt fw_cfg file sort Marc Mar=C3=AD (2): Add offset register to fw_cfg DMA interface fw_cfg DMA for x86 docs/specs/fw_cfg.txt | 52 ++++++++++++ hw/arm/virt.c | 11 ++- hw/i386/pc.c | 21 ++++- hw/i386/pc_piix.c | 25 +++++- hw/i386/pc_q35.c | 26 +++++- hw/nvram/fw_cfg.c | 199 ++++++++++++++++++++++++++++++++++++++++= +++--- include/hw/i386/pc.h | 1 + include/hw/nvram/fw_cfg.h | 5 +- 8 files changed, 318 insertions(+), 22 deletions(-) --=20 2.4.3