coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
iobp.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SOUTHBRIDGE_INTEL_LYNXPOINT_IOBP_H
4 #define SOUTHBRIDGE_INTEL_LYNXPOINT_IOBP_H
5 
6 #include <stdint.h>
7 
9 void pch_iobp_write(u32 address, u32 data);
10 void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue);
11 void pch_iobp_exec(u32 addr, u16 op_dcode, u8 route_id, u32 *data, u8 *resp);
12 
13 #endif
static u32 addr
Definition: cirrus.c:14
uint64_t address
Definition: fw_cfg_if.h:0
void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue)
Definition: pch.c:86
void pch_iobp_exec(u32 addr, u16 op_dcode, u8 route_id, u32 *data, u8 *resp)
Definition: iobp.c:113
void pch_iobp_write(u32 address, u32 data)
Definition: iobp.c:63
u32 pch_iobp_read(u32 address)
Definition: iobp.c:25
uint32_t u32
Definition: stdint.h:51
uint16_t u16
Definition: stdint.h:48
uint8_t u8
Definition: stdint.h:45