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