1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| /*++
|
| Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
|
| SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
| **/
|
| #ifndef _I2C_PORT_H
| #define _I2C_PORT_H
|
| //
| // Types
| //
|
| //
| // Context passed from platform (board) layer to the I2C port driver.
| //
| typedef struct {
| EFI_PHYSICAL_ADDRESS BaseAddress;
| UINT32 InputFrequencyHertz;
| } I2C_PIO_PLATFORM_CONTEXT;
|
| #endif // _I2C_PORT_A0_H
|
|