blob: a75654b8169e95acc932179d0d4f6873f018e397 [file] [log] [blame]
Stefan Reinauer6540ae52007-07-12 16:35:42 +00001/*****************************************************************************\
2 * layout.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.
Paul Menzela8843de2017-06-05 12:33:23 +020012 * For details, see https://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 LAYOUT_H
28#define LAYOUT_H
Stefan Reinauer6540ae52007-07-12 16:35:42 +000029
30#include "common.h"
Stefan Reinauer7223ab72008-01-18 16:17:44 +000031#include "coreboot_tables.h"
Stefan Reinauer6540ae52007-07-12 16:35:42 +000032
33#define LAYOUT_ENTRY_OVERLAP (LAYOUT_RESULT_START + 0)
34#define LAYOUT_ENTRY_BAD_LENGTH (LAYOUT_RESULT_START + 1)
35#define LAYOUT_DUPLICATE_ENUM (LAYOUT_RESULT_START + 2)
36#define LAYOUT_SUMMED_AREA_START_NOT_ALIGNED (LAYOUT_RESULT_START + 3)
37#define LAYOUT_SUMMED_AREA_END_NOT_ALIGNED (LAYOUT_RESULT_START + 4)
38#define LAYOUT_CHECKSUM_LOCATION_NOT_ALIGNED (LAYOUT_RESULT_START + 5)
39#define LAYOUT_INVALID_SUMMED_AREA (LAYOUT_RESULT_START + 6)
40#define LAYOUT_CHECKSUM_OVERLAPS_SUMMED_AREA (LAYOUT_RESULT_START + 7)
41#define LAYOUT_SUMMED_AREA_OUT_OF_RANGE (LAYOUT_RESULT_START + 8)
42#define LAYOUT_CHECKSUM_LOCATION_OUT_OF_RANGE (LAYOUT_RESULT_START + 9)
Nico Huber3af69852017-01-26 23:22:46 +010043#define LAYOUT_MULTIBYTE_ENTRY_NOT_ALIGNED (LAYOUT_RESULT_START + 10)
Stefan Reinauer6540ae52007-07-12 16:35:42 +000044
Stefan Reinauer90b96b62010-01-13 21:00:23 +000045typedef enum {
Vikram Narayanana8111cf2012-04-14 15:25:13 +053046 CMOS_ENTRY_ENUM = 'e',
47 CMOS_ENTRY_HEX = 'h',
48 CMOS_ENTRY_STRING = 's',
49 CMOS_ENTRY_RESERVED = 'r',
Stefan Reinauer90b96b62010-01-13 21:00:23 +000050} cmos_entry_config_t;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000051
52/* This represents a CMOS parameter. */
Stefan Reinauer90b96b62010-01-13 21:00:23 +000053typedef struct {
54 unsigned bit;
55 unsigned length;
56 cmos_entry_config_t config;
57 unsigned config_id;
58 char name[CMOS_MAX_NAME_LENGTH + 1];
59} cmos_entry_t;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000060
61/* This represents a possible value for a CMOS parameter of type
62 * CMOS_ENTRY_ENUM.
63 */
Stefan Reinauer90b96b62010-01-13 21:00:23 +000064typedef struct {
65 unsigned config_id;
66 unsigned long long value;
67 char text[CMOS_MAX_TEXT_LENGTH + 1];
68} cmos_enum_t;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000069
Stefan Reinauer90b96b62010-01-13 21:00:23 +000070/* This represents the location of the CMOS checksum and the area over
71 * which it is computed. Depending on the context, the values may be
72 * represented as either bit positions or byte positions.
Stefan Reinauer6540ae52007-07-12 16:35:42 +000073 */
Stefan Reinauer90b96b62010-01-13 21:00:23 +000074typedef struct {
75 unsigned summed_area_start; /* first checksummed location */
76 unsigned summed_area_end; /* last checksummed location */
77 unsigned checksum_at; /* location of checksum */
78} cmos_checksum_layout_t;
Stefan Reinauer6540ae52007-07-12 16:35:42 +000079
80extern const char checksum_param_name[];
81
82extern unsigned cmos_checksum_start;
83
84extern unsigned cmos_checksum_end;
85
86extern unsigned cmos_checksum_index;
87
88typedef void (*cmos_layout_get_fn_t) (void);
89
Stefan Reinauer90b96b62010-01-13 21:00:23 +000090void register_cmos_layout_get_fn(cmos_layout_get_fn_t fn);
91void get_cmos_layout(void);
92int add_cmos_entry(const cmos_entry_t * e, const cmos_entry_t ** conflict);
93const cmos_entry_t *find_cmos_entry(const char name[]);
94const cmos_entry_t *first_cmos_entry(void);
95const cmos_entry_t *next_cmos_entry(const cmos_entry_t * last);
96int add_cmos_enum(const cmos_enum_t * e);
97const cmos_enum_t *find_cmos_enum(unsigned config_id, unsigned long long value);
98const cmos_enum_t *first_cmos_enum(void);
99const cmos_enum_t *next_cmos_enum(const cmos_enum_t * last);
100const cmos_enum_t *first_cmos_enum_id(unsigned config_id);
101const cmos_enum_t *next_cmos_enum_id(const cmos_enum_t * last);
102int is_checksum_name(const char name[]);
103int checksum_layout_to_bytes(cmos_checksum_layout_t * layout);
104void checksum_layout_to_bits(cmos_checksum_layout_t * layout);
Stefan Reinauer6540ae52007-07-12 16:35:42 +0000105
Stefan Reinauer90b96b62010-01-13 21:00:23 +0000106#endif /* LAYOUT_H */