VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/OvmfPkg/PlatformPei/Cmos.c@ 58466

Last change on this file since 58466 was 48674, checked in by vboxsync, 11 years ago

EFI: Export newly imported tinaocore UEFI sources to OSE.

  • Property svn:eol-style set to native
File size: 1.4 KB
Line 
1/** @file
2 PC/AT CMOS access routines
3
4 Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13**/
14
15
16#include "Cmos.h"
17#include "Library/IoLib.h"
18
19/**
20 Reads 8-bits of CMOS data.
21
22 Reads the 8-bits of CMOS data at the location specified by Index.
23 The 8-bit read value is returned.
24
25 @param Index The CMOS location to read.
26
27 @return The value read.
28
29**/
30UINT8
31EFIAPI
32CmosRead8 (
33 IN UINTN Index
34 )
35{
36 IoWrite8 (0x70, (UINT8) Index);
37 return IoRead8 (0x71);
38}
39
40
41/**
42 Writes 8-bits of CMOS data.
43
44 Writes 8-bits of CMOS data to the location specified by Index
45 with the value specified by Value and returns Value.
46
47 @param Index The CMOS location to write.
48 @param Value The value to write to CMOS.
49
50 @return The value written to CMOS.
51
52**/
53UINT8
54EFIAPI
55CmosWrite8 (
56 IN UINTN Index,
57 IN UINT8 Value
58 )
59{
60 IoWrite8 (0x70, (UINT8) Index);
61 IoWrite8 (0x71, Value);
62 return Value;
63}
64
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette