blob: 3c2efce1e1f05dae16247b3bc5df0d5c3048adc1 [file] [log] [blame]
Stefan Reinauer6540ae52007-07-12 16:35:42 +00001/*****************************************************************************\
2 * cmos_lowlevel.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 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
Uwe Hermann6e565942008-03-01 19:06:32 +000031#ifndef NVRAMTOOL_CMOS_LOWLEVEL_H
32#define NVRAMTOOL_CMOS_LOWLEVEL_H
Stefan Reinauer6540ae52007-07-12 16:35:42 +000033
34#include "common.h"
Stefan Reinauera67aab72008-09-27 10:08:28 +000035#include "layout.h"
Stefan Reinauer6540ae52007-07-12 16:35:42 +000036
Patrick Georgi9cd7eba2011-01-21 07:19:59 +000037typedef enum { HAL_CMOS, HAL_MEMORY } hal_t;
38void select_hal(hal_t hal, void *data);
39
Stefan Reinauer6540ae52007-07-12 16:35:42 +000040#define CMOS_AREA_OUT_OF_RANGE (CMOS_RESULT_START + 0)
41#define CMOS_AREA_OVERLAPS_RTC (CMOS_RESULT_START + 1)
42#define CMOS_AREA_TOO_WIDE (CMOS_RESULT_START + 2)
43
Stefan Reinauer90b96b62010-01-13 21:00:23 +000044unsigned long long cmos_read(const cmos_entry_t * e);
45void cmos_write(const cmos_entry_t * e, unsigned long long value);
46unsigned char cmos_read_byte(unsigned index);
47void cmos_write_byte(unsigned index, unsigned char value);
48void cmos_read_all(unsigned char data[]);
49void cmos_write_all(unsigned char data[]);
50void set_iopl(int level);
51int verify_cmos_op(unsigned bit, unsigned length, cmos_entry_config_t config);
Stefan Reinauer6540ae52007-07-12 16:35:42 +000052
Stefan Reinauer90b96b62010-01-13 21:00:23 +000053#define CMOS_SIZE 256 /* size of CMOS memory in bytes */
54#define CMOS_RTC_AREA_SIZE 14 /* first 14 bytes control real time clock */
Stefan Reinauer6540ae52007-07-12 16:35:42 +000055
56/****************************************************************************
57 * verify_cmos_byte_index
58 *
59 * Return 1 if 'index' does NOT specify a valid CMOS memory location. Else
60 * return 0.
61 ****************************************************************************/
Stefan Reinauer90b96b62010-01-13 21:00:23 +000062static inline int verify_cmos_byte_index(unsigned index)
63{
64 return (index < CMOS_RTC_AREA_SIZE) || (index >= CMOS_SIZE);
65}
Stefan Reinauer6540ae52007-07-12 16:35:42 +000066
Stefan Reinauer90b96b62010-01-13 21:00:23 +000067#endif /* NVRAMTOOL_CMOS_LOWLEVEL_H */