Cosmetics, coding style fixes (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 <sysinfo.h>
32 #include <coreboot_tables.h>
33
34 /*
35  * Some of this is x86 specific, and the rest of it is generic. Right now,
36  * since we only support x86, we'll avoid trying to make lots of infrastructure
37  * we don't need. If in the future, we want to use coreboot on some other
38  * architecture, then take out the generic parsing code and move it elsewhere.
39  */
40
41 /* === Parsing code === */
42 /* This is the generic parsing code. */
43
44 static void cb_parse_memory(unsigned char *ptr, struct sysinfo_t *info)
45 {
46         struct cb_memory *mem = (struct cb_memory *)ptr;
47         int count = MEM_RANGE_COUNT(mem);
48         int i;
49
50         if (count > SYSINFO_MAX_MEM_RANGES)
51                 count = SYSINFO_MAX_MEM_RANGES;
52
53         info->n_memranges = 0;
54
55         for (i = 0; i < count; i++) {
56                 struct cb_memory_range *range =
57                     (struct cb_memory_range *)MEM_RANGE_PTR(mem, i);
58
59                 if (range->type != CB_MEM_RAM)
60                         continue;
61
62                 info->memrange[info->n_memranges].base =
63                     UNPACK_CB64(range->start);
64
65                 info->memrange[info->n_memranges].size =
66                     UNPACK_CB64(range->size);
67
68                 info->n_memranges++;
69         }
70 }
71
72 static void cb_parse_serial(unsigned char *ptr, struct sysinfo_t *info)
73 {
74         struct cb_serial *ser = (struct cb_serial *)ptr;
75         info->ser_ioport = ser->ioport;
76 }
77
78 static int cb_parse_header(void *addr, int len, struct sysinfo_t *info)
79 {
80         struct cb_header *header;
81         unsigned char *ptr = (unsigned char *)addr;
82         int i;
83
84         for (i = 0; i < len; i += 16, ptr += 16) {
85                 header = (struct cb_header *)ptr;
86                 if (!strncmp(header->signature, "LBIO", 4))
87                         break;
88         }
89
90         /* We walked the entire space and didn't find anything. */
91         if (i >= len)
92                 return -1;
93
94         if (!header->table_bytes)
95                 return 0;
96
97         /* Make sure the checksums match. */
98         if (ipchksum((uint16_t *) header, sizeof(*header)) != 0)
99                 return -1;
100
101         if (ipchksum((uint16_t *) (ptr + sizeof(*header)),
102                      header->table_bytes) != header->table_checksum)
103                 return -1;
104
105         /* Now, walk the tables. */
106         ptr += header->header_bytes;
107
108         for (i = 0; i < header->table_entries; i++) {
109                 struct cb_record *rec = (struct cb_record *)ptr;
110
111                 /* We only care about a few tags here (maybe more later). */
112                 switch (rec->tag) {
113                 case CB_TAG_MEMORY:
114                         cb_parse_memory(ptr, info);
115                         break;
116                 case CB_TAG_SERIAL:
117                         cb_parse_serial(ptr, info);
118                         break;
119                 }
120
121                 ptr += rec->size;
122         }
123
124         return 1;
125 }
126
127 /* == Architecture specific == */
128 /* This is the x86 specific stuff. */
129
130 int get_coreboot_info(struct sysinfo_t *info)
131 {
132         int ret = cb_parse_header((void *)0x0, 0x1000, info);
133
134         if (ret != 1)
135                 ret = cb_parse_header((void *)0xf0000, 0x1000, info);
136
137         return (ret == 1) ? 0 : -1;
138 }