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