From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YG5H0-0003Hp-75 for qemu-devel@nongnu.org; Tue, 27 Jan 2015 07:29:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YG50N-0007Qp-Mh for qemu-devel@nongnu.org; Tue, 27 Jan 2015 07:12:31 -0500 Received: from mail-pa0-f48.google.com ([209.85.220.48]:41115) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YG50N-0007Qi-IN for qemu-devel@nongnu.org; Tue, 27 Jan 2015 07:12:27 -0500 Received: by mail-pa0-f48.google.com with SMTP id ey11so18194406pad.7 for ; Tue, 27 Jan 2015 04:12:26 -0800 (PST) Message-ID: <54C780A3.4030206@linaro.org> Date: Tue, 27 Jan 2015 20:12:19 +0800 From: Hanjun Guo MIME-Version: 1.0 References: <1422091280-14532-1-git-send-email-zhaoshenglong@huawei.com> <1422091280-14532-3-git-send-email-zhaoshenglong@huawei.com> In-Reply-To: <1422091280-14532-3-git-send-email-zhaoshenglong@huawei.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [RFC PATCH 02/11] hw/arm/virt-acpi-build: Basic framework for building ACPI tables List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Shannon Zhao , qemu-devel@nongnu.org, peter.maydell@linaro.org, pbonzini@redhat.com, christoffer.dall@linaro.org, a.spyridakis@virtualopensystems.com, claudio.fontana@huawei.com, imammedo@redhat.com, mst@redhat.com, lersek@redhat.com Cc: wanghaibin.wang@huawei.com, hangaohuai@huawei.com, peter.huangpeng@huawei.com On 2015年01月24日 17:21, Shannon Zhao wrote: > Introduce a preliminary framework in virt-acpi-build.c with the main > ACPI build functions. It exposes the generated ACPI contents to > guest over fw_cfg. Some codes borrowed from hw/i386/acpi-build.c. > > The minimum required ACPI v5.1 tables for ARM are: > - RSDP: Initial table that points to XSDT > - XSDT: Points to all other tables (except FACS & DSDT) > - FADT: Generic information about the machine > - DSDT: Holds all information about system devices/peripherals > - FACS: Needs to be pointed from FADT For ARM, GTDT and MADT are required also, or we can not init SMP, GIC and Arch timer, you need to update the change log for this patch :) Thanks Hanjun