mb/google/brox/var/jubilant: Disable Tccold Handshake
[coreboot.git] / src / southbridge / intel / lynxpoint / iobp.h
blob458e6be977dd3c5b88bcfdab15bf0a326ed97739
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef SOUTHBRIDGE_INTEL_LYNXPOINT_IOBP_H
4 #define SOUTHBRIDGE_INTEL_LYNXPOINT_IOBP_H
6 #include <stdint.h>
8 u32 pch_iobp_read(u32 address);
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);
13 #endif