]> git.proxmox.com Git - mirror_edk2.git/blob - OvmfPkg/QemuVideoDxe/UnalignedIoIcc.c
OvmfPkg/Gop: clear the screen to black in SetMode()
[mirror_edk2.git] / OvmfPkg / QemuVideoDxe / UnalignedIoIcc.c
1 /** @file
2 Unaligned port I/O. This file has compiler specifics for ICC as there
3 is no ANSI C standard for doing IO.
4
5 Based on IoLibIcc.c.
6
7 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
8 This program and the accompanying materials are licensed and made available
9 under the terms and conditions of the BSD License which accompanies this
10 distribution. The full text of the license may be found at
11 http://opensource.org/licenses/bsd-license.php.
12
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15
16 **/
17
18
19 #include "UnalignedIoInternal.h"
20
21 /**
22 Performs a 32-bit write to the specified, possibly unaligned I/O-type
23 address.
24
25 Writes the 32-bit I/O port specified by Port with the value specified by
26 Value and returns Value. This function must guarantee that all I/O read and
27 write operations are serialized.
28
29 If 32-bit unaligned I/O port operations are not supported, then ASSERT().
30
31 @param[in] Port I/O port address
32 @param[in] Value 32-bit word to write
33
34 @return The value written to the I/O port.
35
36 **/
37 UINT32
38 UnalignedIoWrite32 (
39 IN UINTN Port,
40 IN UINT32 Value
41 )
42 {
43 __asm {
44 mov eax, dword ptr [Value]
45 mov dx, word ptr [Port]
46 out dx, eax
47 }
48
49 return Value;
50 }
51
52 /**
53 Reads a 32-bit word from the specified, possibly unaligned I/O-type address.
54
55 Reads the 32-bit I/O port specified by Port. The 32-bit read value is
56 returned. This function must guarantee that all I/O read and write operations
57 are serialized.
58
59 If 32-bit unaligned I/O port operations are not supported, then ASSERT().
60
61 @param[in] Port The I/O port to read.
62
63 @return The value read.
64
65 **/
66 UINT32
67 UnalignedIoRead32 (
68 IN UINTN Port
69 )
70 {
71 UINT32 Data;
72
73 __asm {
74 mov dx, word ptr [Port]
75 in eax, dx
76 mov dword ptr [Data], eax
77 }
78
79 return Data;
80 }