Drop unneeded #includes, add EXIT_SUCCESS/EXIT_FAILURE (trivial).
[coreboot.git] / payloads / libpayload / i386 / coreboot.c
1 /*
2  * This file is part of the libpayload project.
3  *
4  * Copyright (C) 2008 Advanced Micro Devices, Inc.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <libpayload.h>
31 #include <coreboot_tables.h>
32
33 /*
34  * Some of this is x86 specific, and the rest of it is generic. Right now,
35  * since we only support x86, we'll avoid trying to make lots of infrastructure
36  * we don't need. If in the future, we want to use coreboot on some other
37  * architecture, then take out the generic parsing code and move it elsewhere.
38  */
39
40 /* === Parsing code === */
41 /* This is the generic parsing code. */
42
43 static void cb_parse_memory(unsigned char *ptr, struct sysinfo_t *info)
44 {
45         struct cb_memory *mem = (struct cb_memory *)ptr;
46         int count = MEM_RANGE_COUNT(mem);
47         int i;
48
49         if (count > SYSINFO_MAX_MEM_RANGES)
50                 count = SYSINFO_MAX_MEM_RANGES;
51
52         info->n_memranges = 0;
53
54         for (i = 0; i < count; i++) {
55                 struct cb_memory_range *range =
56                     (struct cb_memory_range *)MEM_RANGE_PTR(mem, i);
57
58                 if (range->type != CB_MEM_RAM)
59                         continue;
60
61                 info->memrange[info->n_memranges].base =
62                     UNPACK_CB64(range->start);
63
64                 info->memrange[info->n_memranges].size =
65                     UNPACK_CB64(range->size);
66
67                 info->n_memranges++;
68         }
69 }
70
71 static void cb_parse_serial(unsigned char *ptr, struct sysinfo_t *info)
72 {
73         struct cb_serial *ser = (struct cb_serial *)ptr;
74         info->ser_ioport = ser->ioport;
75 }
76
77 static int cb_parse_header(void *addr, int len, struct sysinfo_t *info)
78 {
79         struct cb_header *header;
80         unsigned char *ptr = (unsigned char *)addr;
81         int i;
82
83         for (i = 0; i < len; i += 16, ptr += 16) {
84                 header = (struct cb_header *)ptr;
85                 if (!strncmp((const char *)header->signature, "LBIO", 4))
86                         break;
87         }
88
89         /* We walked the entire space and didn't find anything. */
90         if (i >= len)
91                 return -1;
92
93         if (!header->table_bytes)
94                 return 0;
95
96         /* Make sure the checksums match. */
97         if (ipchksum((u16 *) header, sizeof(*header)) != 0)
98                 return -1;
99
100         if (ipchksum((u16 *) (ptr + sizeof(*header)),
101                      header->table_bytes) != header->table_checksum)
102                 return -1;
103
104         /* Now, walk the tables. */
105         ptr += header->header_bytes;
106
107         for (i = 0; i < header->table_entries; i++) {
108                 struct cb_record *rec = (struct cb_record *)ptr;
109
110                 /* We only care about a few tags here (maybe more later). */
111                 switch (rec->tag) {
112                 case CB_TAG_MEMORY:
113                         cb_parse_memory(ptr, info);
114                         break;
115                 case CB_TAG_SERIAL:
116                         cb_parse_serial(ptr, info);
117                         break;
118                 }
119
120                 ptr += rec->size;
121         }
122
123         return 1;
124 }
125
126 /* == Architecture specific == */
127 /* This is the x86 specific stuff. */
128
129 int get_coreboot_info(struct sysinfo_t *info)
130 {
131         int ret = cb_parse_header((void *)0x0, 0x1000, info);
132
133         if (ret != 1)
134                 ret = cb_parse_header((void *)0xf0000, 0x1000, info);
135
136         return (ret == 1) ? 0 : -1;
137 }