blob: 70c2b1760d1af856ef3e8870aba836f8b7ac272b [file] [log] [blame]
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +00001/*
2 * This file is part of the libpayload project.
3 *
4 * Copyright (C) 2008 coresystems GmbH
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
Patrick Georgi5febb002012-02-02 15:51:29 +010033u8 *mem_accessor_base;
34
35static u8 mem_read(u8 reg)
36{
37 return mem_accessor_base[reg];
38}
39
40static void mem_write(u8 val, u8 reg)
41{
42 mem_accessor_base[reg] = val;
43}
44
Patrick Georgi317ca0d2012-01-16 10:14:24 +010045struct nvram_accessor *use_nvram = &(struct nvram_accessor) {
46 nvram_read,
47 nvram_write
48};
49
Patrick Georgi5febb002012-02-02 15:51:29 +010050struct nvram_accessor *use_mem = &(struct nvram_accessor) {
51 mem_read,
52 mem_write
53};
54
Patrick Georgi317ca0d2012-01-16 10:14:24 +010055struct cb_cmos_option_table *get_system_option_table(void)
56{
Nico Huber425973c2012-11-13 17:11:01 +010057 return lib_sysinfo.option_table;
Patrick Georgi317ca0d2012-01-16 10:14:24 +010058}
59
Patrick Georgi56f468d2012-01-16 15:03:11 +010060int options_checksum_valid(const struct nvram_accessor *nvram)
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000061{
62 int i;
Stefan Reinauer71c006f2008-09-26 18:39:06 +000063 int range_start = lib_sysinfo.cmos_range_start / 8;
64 int range_end = lib_sysinfo.cmos_range_end / 8;
65 int checksum_location = lib_sysinfo.cmos_checksum_location / 8;
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000066 u16 checksum = 0, checksum_old;
67
68 for(i = range_start; i <= range_end; i++) {
Patrick Georgi317ca0d2012-01-16 10:14:24 +010069 checksum += nvram->read(i);
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000070 }
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000071
Patrick Georgi317ca0d2012-01-16 10:14:24 +010072 checksum_old = ((nvram->read(checksum_location)<<8) | nvram->read(checksum_location+1));
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000073
74 return (checksum_old == checksum);
75}
76
Patrick Georgi317ca0d2012-01-16 10:14:24 +010077void fix_options_checksum_with(const struct nvram_accessor *nvram)
Stefan Reinauer59a1b7f2010-08-17 10:14:50 +000078{
79 int i;
80 int range_start = lib_sysinfo.cmos_range_start / 8;
81 int range_end = lib_sysinfo.cmos_range_end / 8;
82 int checksum_location = lib_sysinfo.cmos_checksum_location / 8;
83 u16 checksum = 0;
84
85 for(i = range_start; i <= range_end; i++) {
Patrick Georgi317ca0d2012-01-16 10:14:24 +010086 checksum += nvram->read(i);
Stefan Reinauer59a1b7f2010-08-17 10:14:50 +000087 }
Stefan Reinauer59a1b7f2010-08-17 10:14:50 +000088
Patrick Georgi317ca0d2012-01-16 10:14:24 +010089 nvram->write((checksum >> 8), checksum_location);
90 nvram->write((checksum & 0xff), checksum_location + 1);
Stefan Reinauer59a1b7f2010-08-17 10:14:50 +000091}
92
Patrick Georgi317ca0d2012-01-16 10:14:24 +010093void fix_options_checksum(void)
94{
95 fix_options_checksum_with(use_nvram);
96}
97
98static int get_cmos_value(const struct nvram_accessor *nvram, u32 bitnum, u32 len, void *valptr)
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +000099{
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100100 u8 *value = valptr;
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000101 int offs = 0;
102 u32 addr, bit;
103 u8 reg8;
104
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000105 /* Convert to byte borders */
106 addr=(bitnum / 8);
107 bit=(bitnum % 8);
108
109 /* Handle single byte or less */
110 if(len <= 8) {
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100111 reg8 = nvram->read(addr);
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000112 reg8 >>= bit;
113 value[0] = reg8 & ((1 << len) -1);
114 return 0;
115 }
116
117 /* When handling more than a byte, copy whole bytes */
118 while (len > 0) {
119 len -= 8;
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100120 value[offs++]=nvram->read(addr++);
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000121 }
122
123 return 0;
124}
125
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100126static int set_cmos_value(const struct nvram_accessor *nvram, u32 bitnum, u32 len, const void *valptr)
Patrick Georgidbde8092011-11-22 13:07:45 +0100127{
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100128 const u8 *value = valptr;
Patrick Georgidbde8092011-11-22 13:07:45 +0100129 int offs = 0;
130 u32 addr, bit;
131 u8 reg8;
132
133 /* Convert to byte borders */
134 addr=(bitnum / 8);
135 bit=(bitnum % 8);
136
137 /* Handle single byte or less */
138 if (len <= 8) {
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100139 reg8 = nvram->read(addr);
Patrick Georgidbde8092011-11-22 13:07:45 +0100140 reg8 &= ~(((1 << len) - 1) << bit);
141 reg8 |= (value[0] & ((1 << len) - 1)) << bit;
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100142 nvram->write(reg8, addr);
Patrick Georgidbde8092011-11-22 13:07:45 +0100143 return 0;
144 }
145
146 /* When handling more than a byte, copy whole bytes */
147 while (len > 0) {
148 len -= 8;
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100149 nvram->write(value[offs++], addr++);
Patrick Georgidbde8092011-11-22 13:07:45 +0100150 }
151
152 return 0;
153}
154
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100155static struct cb_cmos_entries *lookup_cmos_entry(struct cb_cmos_option_table *option_table, const char *name)
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000156{
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000157 struct cb_cmos_entries *cmos_entry;
Gabe Blackd94512e2012-10-01 18:05:50 -0700158 int len = name ? strnlen(name, CB_CMOS_MAX_NAME_LENGTH) : 0;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000159
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000160 /* cmos entries are located right after the option table */
Patrick Georgid357e622012-09-24 20:47:03 +0200161 cmos_entry = first_cmos_entry(option_table);
162 while (cmos_entry) {
163 if (memcmp((const char*)cmos_entry->name, name, len) == 0)
164 return cmos_entry;
165 cmos_entry = next_cmos_entry(cmos_entry);
Patrick Georgidbde8092011-11-22 13:07:45 +0100166 }
167
168 printf("ERROR: No such CMOS option (%s)\n", name);
169 return NULL;
170}
171
Patrick Georgi0a595112012-01-16 15:39:57 +0100172struct cb_cmos_entries *first_cmos_entry(struct cb_cmos_option_table *option_table)
173{
Patrick Georgid357e622012-09-24 20:47:03 +0200174 return (struct cb_cmos_entries*)((unsigned char *)option_table + option_table->header_length);
Patrick Georgi0a595112012-01-16 15:39:57 +0100175}
176
177struct cb_cmos_entries *next_cmos_entry(struct cb_cmos_entries *cmos_entry)
178{
179 struct cb_cmos_entries *next = (struct cb_cmos_entries*)((unsigned char *)cmos_entry + cmos_entry->size);
180 if (next->tag == CB_TAG_OPTION)
181 return next;
182 else
183 return NULL;
184}
185
Patrick Georgi08ed5a82012-09-24 20:06:27 +0200186struct cb_cmos_enums *first_cmos_enum(struct cb_cmos_option_table *option_table)
Patrick Georgida59f9a2012-01-16 13:47:33 +0100187{
188 struct cb_cmos_entries *cmos_entry;
Patrick Georgida59f9a2012-01-16 13:47:33 +0100189 /* cmos entries are located right after the option table. Skip them */
Patrick Georgi08ed5a82012-09-24 20:06:27 +0200190 cmos_entry = (struct cb_cmos_entries *)((unsigned char *)option_table + option_table->header_length);
Patrick Georgida59f9a2012-01-16 13:47:33 +0100191 while (cmos_entry->tag == CB_TAG_OPTION)
192 cmos_entry = (struct cb_cmos_entries*)((unsigned char *)cmos_entry + cmos_entry->size);
193
194 /* cmos enums are located after cmos entries. */
Patrick Georgi08ed5a82012-09-24 20:06:27 +0200195 return (struct cb_cmos_enums *)cmos_entry;
196}
197
198struct cb_cmos_enums *next_cmos_enum(struct cb_cmos_enums *cmos_enum)
199{
200 if (!cmos_enum) {
201 return NULL;
202 }
203
204 cmos_enum = (struct cb_cmos_enums*)((unsigned char *)cmos_enum + cmos_enum->size);
205 if (cmos_enum->tag == CB_TAG_OPTION_ENUM) {
206 return cmos_enum;
207 } else {
208 return NULL;
209 }
210}
211
212struct cb_cmos_enums *next_cmos_enum_of_id(struct cb_cmos_enums *cmos_enum, int id)
213{
214 while ((cmos_enum = next_cmos_enum(cmos_enum))) {
215 if (cmos_enum->config_id == id) {
216 return cmos_enum;
217 }
218 }
219 return NULL;
220}
221
222struct cb_cmos_enums *first_cmos_enum_of_id(struct cb_cmos_option_table *option_table, int id)
223{
224 struct cb_cmos_enums *cmos_enum = first_cmos_enum(option_table);
225 if (!cmos_enum) {
226 return NULL;
227 }
228 if (cmos_enum->config_id == id) {
229 return cmos_enum;
230 }
231
232 return next_cmos_enum_of_id(cmos_enum, id);
233}
234
235/* Either value or text must be NULL. Returns the field that matches "the other" for a given config_id */
236static struct cb_cmos_enums *lookup_cmos_enum_core(struct cb_cmos_option_table *option_table, int config_id, const u8 *value, const char *text)
237{
Gabe Blackd94512e2012-10-01 18:05:50 -0700238 int len = strnlen(text, CB_CMOS_MAX_TEXT_LENGTH);
Patrick Georgi08ed5a82012-09-24 20:06:27 +0200239
240 /* cmos enums are located after cmos entries. */
Patrick Georgida59f9a2012-01-16 13:47:33 +0100241 struct cb_cmos_enums *cmos_enum;
Patrick Georgi08ed5a82012-09-24 20:06:27 +0200242 for ( cmos_enum = first_cmos_enum_of_id(option_table, config_id);
243 cmos_enum;
244 cmos_enum = next_cmos_enum_of_id(cmos_enum, config_id)) {
245 if (((value == NULL) || (cmos_enum->value == *value)) &&
Nico Huber0227dec2012-11-09 18:12:21 +0100246 ((text == NULL) || (memcmp((const char*)cmos_enum->text, text, len) == 0))) {
Patrick Georgida59f9a2012-01-16 13:47:33 +0100247 return cmos_enum;
248 }
249 }
250
251 return NULL;
252}
253
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100254static struct cb_cmos_enums *lookup_cmos_enum_by_value(struct cb_cmos_option_table *option_table, int config_id, const u8 *value)
Patrick Georgida59f9a2012-01-16 13:47:33 +0100255{
256 return lookup_cmos_enum_core(option_table, config_id, value, NULL);
257}
258
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100259static struct cb_cmos_enums *lookup_cmos_enum_by_label(struct cb_cmos_option_table *option_table, int config_id, const char *label)
Patrick Georgida59f9a2012-01-16 13:47:33 +0100260{
261 return lookup_cmos_enum_core(option_table, config_id, NULL, label);
262}
263
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100264int get_option_with(const struct nvram_accessor *nvram, struct cb_cmos_option_table *option_table, void *dest, const char *name)
Patrick Georgidbde8092011-11-22 13:07:45 +0100265{
266 struct cb_cmos_entries *cmos_entry = lookup_cmos_entry(option_table, name);
267 if (cmos_entry) {
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100268 if(get_cmos_value(nvram, cmos_entry->bit, cmos_entry->length, dest))
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000269 return 1;
270
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100271 if(!options_checksum_valid(nvram))
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000272 return 1;
273
274 return 0;
275 }
Stefan Reinauer95a6e1c2008-08-07 10:21:05 +0000276 return 1;
277}
Patrick Georgic2300582011-07-12 11:40:29 +0200278
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100279int get_option_from(struct cb_cmos_option_table *option_table, void *dest, const char *name)
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100280{
281 return get_option_with(use_nvram, option_table, dest, name);
282}
283
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100284int get_option(void *dest, const char *name)
Patrick Georgic2300582011-07-12 11:40:29 +0200285{
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100286 return get_option_from(get_system_option_table(), dest, name);
Patrick Georgic2300582011-07-12 11:40:29 +0200287}
Patrick Georgidbde8092011-11-22 13:07:45 +0100288
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100289int set_option_with(const struct nvram_accessor *nvram, struct cb_cmos_option_table *option_table, const void *value, const char *name)
Patrick Georgidbde8092011-11-22 13:07:45 +0100290{
Patrick Georgidbde8092011-11-22 13:07:45 +0100291 struct cb_cmos_entries *cmos_entry = lookup_cmos_entry(option_table, name);
292 if (cmos_entry) {
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100293 set_cmos_value(nvram, cmos_entry->bit, cmos_entry->length, value);
294 fix_options_checksum_with(nvram);
Patrick Georgidbde8092011-11-22 13:07:45 +0100295 return 0;
296 }
297 return 1;
298}
299
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100300int set_option(const void *value, const char *name)
Patrick Georgi317ca0d2012-01-16 10:14:24 +0100301{
302 return set_option_with(use_nvram, get_system_option_table(), value, name);
303}
Patrick Georgida59f9a2012-01-16 13:47:33 +0100304
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100305int get_option_as_string(const struct nvram_accessor *nvram, struct cb_cmos_option_table *option_table, char **dest, const char *name)
Patrick Georgida59f9a2012-01-16 13:47:33 +0100306{
307 void *raw;
308 struct cb_cmos_entries *cmos_entry = lookup_cmos_entry(option_table, name);
309 if (!cmos_entry)
310 return 1;
311 int cmos_length = (cmos_entry->length+7)/8;
312
Vladimir Serbinenko7ea00152014-01-15 22:06:56 +0100313 /* ensure we have enough space for u64 */
314 if (cmos_length < 8)
315 cmos_length = 8;
316
Patrick Georgida59f9a2012-01-16 13:47:33 +0100317 /* extra byte to ensure 0-terminated strings */
318 raw = malloc(cmos_length+1);
319 memset(raw, 0, cmos_length+1);
320
321 int ret = get_option_with(nvram, option_table, raw, name);
322
323 struct cb_cmos_enums *cmos_enum;
324 switch (cmos_entry->config) {
325 case 'h':
326 /* only works on little endian.
327 26 bytes is enough for a 64bit value in decimal */
328 *dest = malloc(26);
Patrick Georgif78c7002012-09-26 15:11:48 +0200329 sprintf(*dest, "%llu", *(u64*)raw);
Patrick Georgida59f9a2012-01-16 13:47:33 +0100330 break;
331 case 's':
332 *dest = strdup(raw);
333 break;
334 case 'e':
335 cmos_enum = lookup_cmos_enum_by_value(option_table, cmos_entry->config_id, (u8*)raw);
336 *dest = strdup((const char*)cmos_enum->text);
337 break;
338 default: /* fail */
Mathias Krause9a4114a2012-02-08 10:31:42 +0100339 ret = 1;
Patrick Georgida59f9a2012-01-16 13:47:33 +0100340 }
341 free(raw);
342 return ret;
343}
344
Mathias Kraused6a6eef2012-02-17 12:02:47 +0100345int set_option_from_string(const struct nvram_accessor *nvram, struct cb_cmos_option_table *option_table, const char *value, const char *name)
Patrick Georgida59f9a2012-01-16 13:47:33 +0100346{
347 void *raw;
348 struct cb_cmos_entries *cmos_entry = lookup_cmos_entry(option_table, name);
349 if (!cmos_entry)
350 return 1;
351
352 struct cb_cmos_enums *cmos_enum;
353 switch (cmos_entry->config) {
354 case 'h':
355 /* only works on little endian */
Mathias Krause50759ed2012-02-08 10:32:57 +0100356 raw = malloc(sizeof(u64));
Patrick Georgida59f9a2012-01-16 13:47:33 +0100357 *(u64*)raw = strtoull(value, NULL, 0);
358 break;
359 case 's':
360 raw = strdup(value);
361 break;
362 case 'e':
363 cmos_enum = lookup_cmos_enum_by_label(option_table, cmos_entry->config_id, value);
364 raw = malloc(sizeof(u32));
365 *(u32*)raw = cmos_enum->value;
366 break;
367 default: /* fail */
368 return 1;
369 }
370
371 int ret = set_option_with(nvram, option_table, raw, name);
372 free(raw);
373 return ret;
374}