blob: a247380bce053e72f23ece389870394675f6e7af [file] [log] [blame]
Stefan Reinauer6540ae52007-07-12 16:35:42 +00001/*****************************************************************************\
2 * common.h
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 Dave 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.,
28 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
29\*****************************************************************************/
30
Uwe Hermann6e565942008-03-01 19:06:32 +000031#ifndef COMMON_H
32#define COMMON_H
Stefan Reinauer6540ae52007-07-12 16:35:42 +000033
34#include <sys/types.h>
35#include <sys/stat.h>
36#include <assert.h>
37#include <errno.h>
38#include <unistd.h>
39#include <fcntl.h>
40#include <stdint.h>
41#include <stdlib.h>
42#include <stdio.h>
43#include <string.h>
44#include <ctype.h>
45
Andriy Gapon6a4bf982008-10-30 15:41:39 +000046#if defined(__FreeBSD__)
47#include <sys/types.h>
48#include <machine/cpufunc.h>
49#define OUTB(x, y) do { u_int tmp = (y); outb(tmp, (x)); } while (0)
50#define OUTW(x, y) do { u_int tmp = (y); outw(tmp, (x)); } while (0)
51#define OUTL(x, y) do { u_int tmp = (y); outl(tmp, (x)); } while (0)
52#define INB(x) __extension__ ({ u_int tmp = (x); inb(tmp); })
53#define INW(x) __extension__ ({ u_int tmp = (x); inw(tmp); })
54#define INL(x) __extension__ ({ u_int tmp = (x); inl(tmp); })
55#else
56#include <sys/io.h>
57#define OUTB outb
58#define OUTW outw
59#define OUTL outl
60#define INB inb
61#define INW inw
62#define INL inl
63#endif
64
Stefan Reinauer6540ae52007-07-12 16:35:42 +000065#define FALSE 0
66#define TRUE 1
67
68#define BUG() assert(0)
69
70#define COMMON_RESULT_START 0x10000
71#define LAYOUT_RESULT_START 0x20000
72#define CMOS_RESULT_START 0x30000
73#define CMOS_OP_RESULT_START 0x40000
74
75#define OK 0 /* 0 is used universally to indicate success. */
76
77#define LINE_EOF (COMMON_RESULT_START + 0)
78#define LINE_TOO_LONG (COMMON_RESULT_START + 1)
79
80/* basename of this program, as reported by argv[0] */
81extern const char prog_name[];
82
83/* version of this program */
84extern const char prog_version[];
85
86int get_line_from_file (FILE *f, char line[], int line_buf_size);
87void out_of_memory (void);
88void usage (FILE *outfile);
89
Uwe Hermann6e565942008-03-01 19:06:32 +000090#endif /* COMMON_H */