Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / ipxe / src / core / acpi.c
1 /*
2  * Copyright (C) 2006 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  */
19
20 FILE_LICENCE ( GPL2_OR_LATER );
21
22 #include <errno.h>
23 #include <ipxe/acpi.h>
24 #include <ipxe/interface.h>
25
26 /** @file
27  *
28  * ACPI support functions
29  *
30  */
31
32 /******************************************************************************
33  *
34  * Utility functions
35  *
36  ******************************************************************************
37  */
38
39 /**
40  * Fix up ACPI table checksum
41  *
42  * @v acpi              ACPI table header
43  */
44 void acpi_fix_checksum ( struct acpi_description_header *acpi ) {
45         unsigned int i = 0;
46         uint8_t sum = 0;
47
48         for ( i = 0 ; i < acpi->length ; i++ ) {
49                 sum += *( ( ( uint8_t * ) acpi ) + i );
50         }
51         acpi->checksum -= sum;
52 }
53
54 /******************************************************************************
55  *
56  * Interface methods
57  *
58  ******************************************************************************
59  */
60
61 /**
62  * Describe object in an ACPI table
63  *
64  * @v intf              Interface
65  * @v acpi              ACPI table
66  * @v len               Length of ACPI table
67  * @ret rc              Return status code
68  */
69 int acpi_describe ( struct interface *intf,
70                     struct acpi_description_header *acpi, size_t len ) {
71         struct interface *dest;
72         acpi_describe_TYPE ( void * ) *op =
73                 intf_get_dest_op ( intf, acpi_describe, &dest );
74         void *object = intf_object ( dest );
75         int rc;
76
77         if ( op ) {
78                 rc = op ( object, acpi, len );
79         } else {
80                 /* Default is to fail to describe */
81                 rc = -EOPNOTSUPP;
82         }
83
84         intf_put ( dest );
85         return rc;
86 }