blob: 480049224258adf3c03876f6f1d0005f07bdc2d5 [file] [log] [blame]
Stefan Reinauer6540ae52007-07-12 16:35:42 +00001/*****************************************************************************\
2 * opts.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.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000025\*****************************************************************************/
26
Uwe Hermann6e565942008-03-01 19:06:32 +000027#ifndef OPTS_H
28#define OPTS_H
Stefan Reinauer6540ae52007-07-12 16:35:42 +000029
30#include "common.h"
31
Stefan Reinauer90b96b62010-01-13 21:00:23 +000032typedef enum { NVRAMTOOL_OP_SHOW_VERSION = 0,
33 NVRAMTOOL_OP_SHOW_USAGE,
34 NVRAMTOOL_OP_LBTABLE_SHOW_INFO,
35 NVRAMTOOL_OP_LBTABLE_DUMP,
36 NVRAMTOOL_OP_SHOW_PARAM_VALUES,
37 NVRAMTOOL_OP_CMOS_SHOW_ONE_PARAM,
38 NVRAMTOOL_OP_CMOS_SHOW_ALL_PARAMS,
39 NVRAMTOOL_OP_CMOS_SET_ONE_PARAM,
40 NVRAMTOOL_OP_CMOS_SET_PARAMS_STDIN,
41 NVRAMTOOL_OP_CMOS_SET_PARAMS_FILE,
42 NVRAMTOOL_OP_CMOS_CHECKSUM,
43 NVRAMTOOL_OP_SHOW_LAYOUT,
44 NVRAMTOOL_OP_WRITE_CMOS_DUMP,
45 NVRAMTOOL_OP_READ_CMOS_DUMP,
46 NVRAMTOOL_OP_SHOW_CMOS_HEX_DUMP,
Vikram Narayanana8111cf2012-04-14 15:25:13 +053047 NVRAMTOOL_OP_SHOW_CMOS_DUMPFILE,
48 NVRAMTOOL_OP_WRITE_BINARY_FILE,
49 NVRAMTOOL_OP_WRITE_HEADER_FILE
Stefan Reinauer90b96b62010-01-13 21:00:23 +000050} nvramtool_op_t;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000051
Stefan Reinauer90b96b62010-01-13 21:00:23 +000052typedef struct {
53 nvramtool_op_t op;
54 char *param;
55} nvramtool_op_info_t;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000056
Stefan Reinauer90b96b62010-01-13 21:00:23 +000057typedef enum { NVRAMTOOL_MOD_SHOW_VALUE_ONLY = 0,
58 NVRAMTOOL_MOD_USE_CMOS_LAYOUT_FILE,
Patrick Georgi269e9322011-01-21 07:24:08 +000059 NVRAMTOOL_MOD_USE_CBFS_FILE,
Patrick Georgi202be7b2011-01-21 07:29:40 +000060 NVRAMTOOL_MOD_USE_CMOS_FILE,
Stefan Reinauer90b96b62010-01-13 21:00:23 +000061 NVRAMTOOL_MOD_USE_CMOS_OPT_TABLE,
62 NVRAMTOOL_NUM_OP_MODIFIERS /* must always be last */
63} nvramtool_op_modifier_t;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000064
Stefan Reinauer90b96b62010-01-13 21:00:23 +000065typedef struct {
66 int found;
67 int found_seq;
68 char *param;
69} nvramtool_op_modifier_info_t;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000070
Uwe Hermann6e565942008-03-01 19:06:32 +000071extern nvramtool_op_info_t nvramtool_op;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000072
Uwe Hermann6e565942008-03-01 19:06:32 +000073extern nvramtool_op_modifier_info_t nvramtool_op_modifiers[];
Stefan Reinauer6540ae52007-07-12 16:35:42 +000074
Stefan Reinauer90b96b62010-01-13 21:00:23 +000075void parse_nvramtool_args(int argc, char *argv[]);
Stefan Reinauer6540ae52007-07-12 16:35:42 +000076
Stefan Reinauer90b96b62010-01-13 21:00:23 +000077#endif /* OPTS_H */