blob: 458e6be977dd3c5b88bcfdab15bf0a326ed97739 [file] [log] [blame]
Angel Pons2178b722020-05-31 00:55:35 +02001/* 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
8u32 pch_iobp_read(u32 address);
9void pch_iobp_write(u32 address, u32 data);
10void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue);
Angel Ponsdfb29fd2021-04-19 15:58:21 +020011void pch_iobp_exec(u32 addr, u16 op_dcode, u8 route_id, u32 *data, u8 *resp);
Angel Pons2178b722020-05-31 00:55:35 +020012
13#endif