blob: 67d561b26761a2c22959e04d89a5716f994f3dbb [file] [log] [blame]
Stefan Reinauer6540ae52007-07-12 16:35:42 +00001/*****************************************************************************\
2 * cmos_lowlevel.c
Stefan Reinauer6540ae52007-07-12 16:35:42 +00003 *****************************************************************************
4 * Copyright (C) 2002-2005 The Regents of the University of California.
5 * Produced at the Lawrence Livermore National Laboratory.
6 * Written by David S. Peterson <dsp@llnl.gov> <dave_peterson@pobox.com>.
7 * UCRL-CODE-2003-012
8 * All rights reserved.
9 *
Uwe Hermann6e565942008-03-01 19:06:32 +000010 * This file is part of nvramtool, a utility for reading/writing coreboot
Stefan Reinauerf527e702008-01-18 15:33:49 +000011 * parameters and displaying information from the coreboot table.
Uwe Hermann6e565942008-03-01 19:06:32 +000012 * For details, see http://coreboot.org/nvramtool.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000013 *
14 * Please also read the file DISCLAIMER which is included in this software
15 * distribution.
16 *
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License (as published by the
19 * Free Software Foundation) version 2, dated June 1991.
20 *
21 * This program is distributed in the hope that it will be useful, but
22 * WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
24 * conditions of the GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License along
27 * with this program; if not, write to the Free Software Foundation, Inc.,
Stefan Reinauerac7a2d22009-09-23 21:53:25 +000028 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000029\*****************************************************************************/
30
Andriy Gapon6a4bf982008-10-30 15:41:39 +000031#if defined(__FreeBSD__)
32#include <fcntl.h>
33#include <unistd.h>
34#endif
35
Stefan Reinauer6540ae52007-07-12 16:35:42 +000036#include "common.h"
37#include "cmos_lowlevel.h"
38
Stefan Reinauer90b96b62010-01-13 21:00:23 +000039typedef struct {
40 unsigned byte_index;
41 unsigned bit_offset;
42} cmos_bit_op_location_t;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000043
Stefan Reinauer90b96b62010-01-13 21:00:23 +000044static unsigned cmos_bit_op_strategy(unsigned bit, unsigned bits_left,
45 cmos_bit_op_location_t * where);
46static unsigned char cmos_read_bits(const cmos_bit_op_location_t * where,
47 unsigned nr_bits);
48static void cmos_write_bits(const cmos_bit_op_location_t * where,
49 unsigned nr_bits, unsigned char value);
50static unsigned char get_bits(unsigned long long value, unsigned bit,
51 unsigned nr_bits);
52static void put_bits(unsigned char value, unsigned bit, unsigned nr_bits,
53 unsigned long long *result);
Stefan Reinauer6540ae52007-07-12 16:35:42 +000054
55/****************************************************************************
56 * get_bits
57 *
58 * Extract a value 'nr_bits' bits wide starting at bit position 'bit' from
59 * 'value' and return the result. It is assumed that 'nr_bits' is at most 8.
60 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +000061static inline unsigned char get_bits(unsigned long long value, unsigned bit,
62 unsigned nr_bits)
63{
64 return (value >> bit) & ((unsigned char)((1 << nr_bits) - 1));
65}
Stefan Reinauer6540ae52007-07-12 16:35:42 +000066
67/****************************************************************************
68 * put_bits
69 *
70 * Extract the low order 'nr_bits' bits from 'value' and store them in the
71 * value pointed to by 'result' starting at bit position 'bit'. The bit
72 * positions in 'result' where the result is stored are assumed to be
73 * initially zero.
74 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +000075static inline void put_bits(unsigned char value, unsigned bit,
76 unsigned nr_bits, unsigned long long *result)
77{
78 *result += ((unsigned long long)(value &
79 ((unsigned char)((1 << nr_bits) - 1)))) << bit;
80}
Stefan Reinauer6540ae52007-07-12 16:35:42 +000081
82/****************************************************************************
83 * cmos_read
84 *
85 * Read value from nonvolatile RAM at position given by 'bit' and 'length'
86 * and return this value. The I/O privilege level of the currently executing
87 * process must be set appropriately.
88 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +000089unsigned long long cmos_read(const cmos_entry_t * e)
90{
91 cmos_bit_op_location_t where;
92 unsigned bit = e->bit, length = e->length;
93 unsigned next_bit, bits_left, nr_bits;
94 unsigned long long result = 0;
95 unsigned char value;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000096
Stefan Reinauer90b96b62010-01-13 21:00:23 +000097 assert(!verify_cmos_op(bit, length, e->config));
98 result = 0;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000099
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000100 if (e->config == CMOS_ENTRY_STRING) {
101 char *newstring = calloc(1, (length + 7) / 8);
102 unsigned usize = (8 * sizeof(unsigned long long));
Stefan Reinauera67aab72008-09-27 10:08:28 +0000103
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000104 if (!newstring) {
105 out_of_memory();
106 }
Stefan Reinauera67aab72008-09-27 10:08:28 +0000107
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000108 for (next_bit = 0, bits_left = length;
109 bits_left; next_bit += nr_bits, bits_left -= nr_bits) {
110 nr_bits = cmos_bit_op_strategy(bit + next_bit,
111 bits_left > usize ? usize : bits_left, &where);
112 value = cmos_read_bits(&where, nr_bits);
113 put_bits(value, next_bit % usize, nr_bits,
114 &((unsigned long long *)newstring)[next_bit /
115 usize]);
116 result = (unsigned long)newstring;
117 }
118 } else {
119 for (next_bit = 0, bits_left = length;
120 bits_left; next_bit += nr_bits, bits_left -= nr_bits) {
121 nr_bits =
122 cmos_bit_op_strategy(bit + next_bit, bits_left,
123 &where);
124 value = cmos_read_bits(&where, nr_bits);
125 put_bits(value, next_bit, nr_bits, &result);
126 }
127 }
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000128
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000129 return result;
130}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000131
132/****************************************************************************
133 * cmos_write
134 *
135 * Write 'data' to nonvolatile RAM at position given by 'bit' and 'length'.
136 * The I/O privilege level of the currently executing process must be set
137 * appropriately.
138 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000139void cmos_write(const cmos_entry_t * e, unsigned long long value)
140{
141 cmos_bit_op_location_t where;
142 unsigned bit = e->bit, length = e->length;
143 unsigned next_bit, bits_left, nr_bits;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000144
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000145 assert(!verify_cmos_op(bit, length, e->config));
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000146
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000147 if (e->config == CMOS_ENTRY_STRING) {
148 unsigned long long *data =
149 (unsigned long long *)(unsigned long)value;
150 unsigned usize = (8 * sizeof(unsigned long long));
Stefan Reinauera67aab72008-09-27 10:08:28 +0000151
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000152 for (next_bit = 0, bits_left = length;
153 bits_left; next_bit += nr_bits, bits_left -= nr_bits) {
154 nr_bits = cmos_bit_op_strategy(bit + next_bit,
155 bits_left > usize ? usize : bits_left,
156 &where);
157 value = data[next_bit / usize];
158 cmos_write_bits(&where, nr_bits,
159 get_bits(value, next_bit % usize, nr_bits));
160 }
161 } else {
162 for (next_bit = 0, bits_left = length;
163 bits_left; next_bit += nr_bits, bits_left -= nr_bits) {
164 nr_bits = cmos_bit_op_strategy(bit + next_bit,
165 bits_left, &where);
166 cmos_write_bits(&where, nr_bits,
167 get_bits(value, next_bit, nr_bits));
168 }
169 }
170}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000171
172/****************************************************************************
173 * cmos_read_byte
174 *
175 * Read a byte from nonvolatile RAM at a position given by 'index' and return
176 * the result. An 'index' value of 0 represents the first byte of
177 * nonvolatile RAM.
178 *
179 * Note: the first 14 bytes of nonvolatile RAM provide an interface to the
180 * real time clock.
181 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000182unsigned char cmos_read_byte(unsigned index)
183{
184 unsigned short port_0, port_1;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000185
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000186 assert(!verify_cmos_byte_index(index));
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000187
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000188 if (index < 128) {
189 port_0 = 0x70;
190 port_1 = 0x71;
191 } else {
192 port_0 = 0x72;
193 port_1 = 0x73;
194 }
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000195
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000196 OUTB(index, port_0);
197 return INB(port_1);
198}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000199
200/****************************************************************************
201 * cmos_write_byte
202 *
203 * Write 'value' to nonvolatile RAM at a position given by 'index'. An
204 * 'index' of 0 represents the first byte of nonvolatile RAM.
205 *
206 * Note: the first 14 bytes of nonvolatile RAM provide an interface to the
207 * real time clock. Writing to any of these bytes will therefore
208 * affect its functioning.
209 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000210void cmos_write_byte(unsigned index, unsigned char value)
211{
212 unsigned short port_0, port_1;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000213
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000214 assert(!verify_cmos_byte_index(index));
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000215
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000216 if (index < 128) {
217 port_0 = 0x70;
218 port_1 = 0x71;
219 } else {
220 port_0 = 0x72;
221 port_1 = 0x73;
222 }
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000223
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000224 OUTB(index, port_0);
225 OUTB(value, port_1);
226}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000227
228/****************************************************************************
229 * cmos_read_all
230 *
231 * Read all contents of CMOS memory into array 'data'. The first 14 bytes of
232 * 'data' are set to zero since this corresponds to the real time clock area.
233 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000234void cmos_read_all(unsigned char data[])
235{
236 unsigned i;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000237
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000238 for (i = 0; i < CMOS_RTC_AREA_SIZE; i++)
239 data[i] = 0;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000240
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000241 for (; i < CMOS_SIZE; i++)
242 data[i] = cmos_read_byte(i);
243}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000244
245/****************************************************************************
246 * cmos_write_all
247 *
248 * Update all of CMOS memory with the contents of array 'data'. The first 14
249 * bytes of 'data' are ignored since this corresponds to the real time clock
250 * area.
251 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000252void cmos_write_all(unsigned char data[])
253{
254 unsigned i;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000255
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000256 for (i = CMOS_RTC_AREA_SIZE; i < CMOS_SIZE; i++)
257 cmos_write_byte(i, data[i]);
258}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000259
260/****************************************************************************
261 * set_iopl
262 *
263 * Set the I/O privilege level of the executing process. Root privileges are
264 * required for performing this action. A sufficient I/O privilege level
265 * allows the process to access x86 I/O address space and to disable/reenable
266 * interrupts while executing in user space. Messing with the I/O privilege
267 * level is therefore somewhat dangerous.
268 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000269void set_iopl(int level)
270{
Andriy Gapon6a4bf982008-10-30 15:41:39 +0000271#if defined(__FreeBSD__)
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000272 static int io_fd = -1;
Andriy Gapon6a4bf982008-10-30 15:41:39 +0000273#endif
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000274
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000275 assert((level >= 0) && (level <= 3));
Andriy Gapon6a4bf982008-10-30 15:41:39 +0000276
277#if defined(__FreeBSD__)
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000278 if (level == 0) {
279 if (io_fd != -1) {
280 close(io_fd);
281 io_fd = -1;
282 }
283 } else {
284 if (io_fd == -1) {
285 io_fd = open("/dev/io", O_RDWR);
286 if (io_fd < 0) {
287 perror("/dev/io");
288 exit(1);
289 }
290 }
291 }
Andriy Gapon6a4bf982008-10-30 15:41:39 +0000292#else
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000293 if (iopl(level)) {
294 fprintf(stderr, "%s: iopl() system call failed. "
295 "You must be root to do this.\n", prog_name);
296 exit(1);
297 }
Andriy Gapon6a4bf982008-10-30 15:41:39 +0000298#endif
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000299}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000300
301/****************************************************************************
302 * verify_cmos_op
303 *
304 * 'bit' represents a bit position in the nonvolatile RAM. The first bit
305 * (i.e. the lowest order bit of the first byte) of nonvolatile RAM is
306 * labeled as bit 0. 'length' represents the width in bits of a value we
307 * wish to read or write. Perform sanity checking on 'bit' and 'length'. If
308 * no problems were encountered, return OK. Else return an error code.
309 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000310int verify_cmos_op(unsigned bit, unsigned length, cmos_entry_config_t config)
311{
312 if ((bit >= (8 * CMOS_SIZE)) || ((bit + length) > (8 * CMOS_SIZE)))
313 return CMOS_AREA_OUT_OF_RANGE;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000314
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000315 if (bit < (8 * CMOS_RTC_AREA_SIZE))
316 return CMOS_AREA_OVERLAPS_RTC;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000317
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000318 if (config == CMOS_ENTRY_STRING)
319 return OK;
Stefan Reinauera67aab72008-09-27 10:08:28 +0000320
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000321 if (length > (8 * sizeof(unsigned long long)))
322 return CMOS_AREA_TOO_WIDE;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000323
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000324 return OK;
325}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000326
327/****************************************************************************
328 * cmos_bit_op_strategy
329 *
330 * Helper function used by cmos_read() and cmos_write() to determine which
331 * bits to read or write next.
332 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000333static unsigned cmos_bit_op_strategy(unsigned bit, unsigned bits_left,
334 cmos_bit_op_location_t * where)
335{
336 unsigned max_bits;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000337
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000338 where->byte_index = bit >> 3;
339 where->bit_offset = bit & 0x07;
340 max_bits = 8 - where->bit_offset;
341 return (bits_left > max_bits) ? max_bits : bits_left;
342}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000343
344/****************************************************************************
345 * cmos_read_bits
346 *
347 * Read a chunk of bits from a byte location within CMOS memory. Return the
348 * value represented by the chunk of bits.
349 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000350static unsigned char cmos_read_bits(const cmos_bit_op_location_t * where,
351 unsigned nr_bits)
352{
353 return (cmos_read_byte(where->byte_index) >> where->bit_offset) &
354 ((unsigned char)((1 << nr_bits) - 1));
355}
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000356
357/****************************************************************************
358 * cmos_write_bits
359 *
360 * Write a chunk of bits (the low order 'nr_bits' bits of 'value') to an area
361 * within a particular byte of CMOS memory.
362 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000363static void cmos_write_bits(const cmos_bit_op_location_t * where,
364 unsigned nr_bits, unsigned char value)
365{
366 unsigned char n, mask;
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000367
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000368 if (nr_bits == 8) {
369 cmos_write_byte(where->byte_index, value);
370 return;
371 }
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000372
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000373 n = cmos_read_byte(where->byte_index);
374 mask = ((unsigned char)((1 << nr_bits) - 1)) << where->bit_offset;
375 n = (n & ~mask) + ((value << where->bit_offset) & mask);
376 cmos_write_byte(where->byte_index, n);
377}